-- Laravel Native Database Backup
-- Generated: 2026-06-02 19:30:59
-- Database: hellopos_hellopos

CREATE DATABASE IF NOT EXISTS `hellopos_hellopos`;
USE `hellopos_hellopos`;


-- Table structure for table `areas`
DROP TABLE IF EXISTS `areas`;
CREATE TABLE `areas` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `area_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `areas_branch_id_foreign` (`branch_id`),
  CONSTRAINT `areas_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `areas`
INSERT INTO `areas` VALUES
('1', '3', 'Main Floor', '2025-11-27 01:33:53', '2025-11-27 01:33:53'),
('2', '4', 'AL CAPONE CLUB Kapana', '2025-11-27 10:21:00', '2025-11-27 10:21:00'),
('3', '5', 'Iztok', '2025-12-01 11:35:28', '2025-12-01 11:35:28');


-- Table structure for table `batch_consumptions`
DROP TABLE IF EXISTS `batch_consumptions`;
CREATE TABLE `batch_consumptions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `batch_stock_id` bigint unsigned NOT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `order_item_id` bigint unsigned DEFAULT NULL,
  `kot_item_id` bigint unsigned DEFAULT NULL,
  `quantity` decimal(16,3) DEFAULT NULL,
  `cost` decimal(16,3) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `batch_consumptions_branch_id_foreign` (`branch_id`),
  KEY `batch_consumptions_batch_stock_id_foreign` (`batch_stock_id`),
  KEY `batch_consumptions_order_id_foreign` (`order_id`),
  KEY `batch_consumptions_order_item_id_foreign` (`order_item_id`),
  KEY `batch_consumptions_kot_item_id_foreign` (`kot_item_id`),
  CONSTRAINT `batch_consumptions_batch_stock_id_foreign` FOREIGN KEY (`batch_stock_id`) REFERENCES `batch_stocks` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_consumptions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_consumptions_kot_item_id_foreign` FOREIGN KEY (`kot_item_id`) REFERENCES `kot_items` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `batch_consumptions_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `batch_consumptions_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `batch_productions`
DROP TABLE IF EXISTS `batch_productions`;
CREATE TABLE `batch_productions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `batch_recipe_id` bigint unsigned NOT NULL,
  `quantity` decimal(16,3) DEFAULT NULL,
  `total_cost` decimal(16,3) DEFAULT NULL,
  `produced_by` bigint unsigned DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `batch_productions_branch_id_foreign` (`branch_id`),
  KEY `batch_productions_batch_recipe_id_foreign` (`batch_recipe_id`),
  KEY `batch_productions_produced_by_foreign` (`produced_by`),
  CONSTRAINT `batch_productions_batch_recipe_id_foreign` FOREIGN KEY (`batch_recipe_id`) REFERENCES `batch_recipes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_productions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_productions_produced_by_foreign` FOREIGN KEY (`produced_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `batch_recipe_items`
DROP TABLE IF EXISTS `batch_recipe_items`;
CREATE TABLE `batch_recipe_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `batch_recipe_id` bigint unsigned NOT NULL,
  `inventory_item_id` bigint unsigned NOT NULL,
  `quantity` decimal(16,3) DEFAULT NULL,
  `unit_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `batch_recipe_items_batch_recipe_id_foreign` (`batch_recipe_id`),
  KEY `batch_recipe_items_inventory_item_id_foreign` (`inventory_item_id`),
  KEY `batch_recipe_items_unit_id_foreign` (`unit_id`),
  CONSTRAINT `batch_recipe_items_batch_recipe_id_foreign` FOREIGN KEY (`batch_recipe_id`) REFERENCES `batch_recipes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_recipe_items_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_recipe_items_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `batch_recipes`
DROP TABLE IF EXISTS `batch_recipes`;
CREATE TABLE `batch_recipes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `yield_unit_id` bigint unsigned NOT NULL,
  `default_batch_size` decimal(16,3) DEFAULT '1.000',
  `default_expiry_days` int DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `batch_recipes_branch_id_foreign` (`branch_id`),
  KEY `batch_recipes_yield_unit_id_foreign` (`yield_unit_id`),
  CONSTRAINT `batch_recipes_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_recipes_yield_unit_id_foreign` FOREIGN KEY (`yield_unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `batch_stocks`
DROP TABLE IF EXISTS `batch_stocks`;
CREATE TABLE `batch_stocks` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `batch_recipe_id` bigint unsigned NOT NULL,
  `batch_production_id` bigint unsigned NOT NULL,
  `quantity` decimal(16,3) DEFAULT NULL,
  `cost_per_unit` decimal(16,3) DEFAULT NULL,
  `total_cost` decimal(16,3) DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `status` enum('active','expired','finished') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `batch_stocks_branch_id_foreign` (`branch_id`),
  KEY `batch_stocks_batch_recipe_id_foreign` (`batch_recipe_id`),
  KEY `batch_stocks_batch_production_id_foreign` (`batch_production_id`),
  CONSTRAINT `batch_stocks_batch_production_id_foreign` FOREIGN KEY (`batch_production_id`) REFERENCES `batch_productions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_stocks_batch_recipe_id_foreign` FOREIGN KEY (`batch_recipe_id`) REFERENCES `batch_recipes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `batch_stocks_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `branch_delivery_settings`
DROP TABLE IF EXISTS `branch_delivery_settings`;
CREATE TABLE `branch_delivery_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `max_radius` decimal(8,2) NOT NULL DEFAULT '5.00',
  `unit` enum('km','miles') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'km',
  `fee_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
  `fixed_fee` decimal(8,2) DEFAULT NULL,
  `per_distance_rate` decimal(8,2) DEFAULT NULL,
  `free_delivery_over_amount` decimal(8,2) DEFAULT NULL,
  `free_delivery_within_radius` double DEFAULT NULL,
  `delivery_schedule_start` time DEFAULT NULL,
  `delivery_schedule_end` time DEFAULT NULL,
  `prep_time_minutes` int NOT NULL DEFAULT '20',
  `additional_eta_buffer_time` int DEFAULT NULL,
  `avg_delivery_speed_kmh` int NOT NULL DEFAULT '30',
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `branch_delivery_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `branch_delivery_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `branches`
DROP TABLE IF EXISTS `branches`;
CREATE TABLE `branches` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `unique_hash` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cloned_branch_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cloned_branch_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_menu_clone` tinyint(1) NOT NULL DEFAULT '0',
  `is_item_categories_clone` tinyint(1) NOT NULL DEFAULT '0',
  `is_menu_items_clone` tinyint(1) NOT NULL DEFAULT '0',
  `is_item_modifiers_clone` tinyint(1) NOT NULL DEFAULT '0',
  `is_clone_reservation_settings` tinyint(1) NOT NULL DEFAULT '0',
  `is_clone_delivery_settings` tinyint(1) NOT NULL DEFAULT '0',
  `is_clone_kot_setting` tinyint(1) NOT NULL DEFAULT '0',
  `is_modifiers_groups_clone` tinyint(1) NOT NULL DEFAULT '0',
  `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lat` decimal(10,7) DEFAULT NULL,
  `lng` decimal(10,7) DEFAULT NULL,
  `count_orders` int NOT NULL DEFAULT '0',
  `total_orders` int NOT NULL DEFAULT '-1',
  PRIMARY KEY (`id`),
  UNIQUE KEY `branches_unique_hash_unique` (`unique_hash`),
  KEY `branches_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `branches_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `branches`
INSERT INTO `branches` VALUES
('1', '1509c3185370a51937b8', '1', 'Carolyneton', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '90297 Keebler Trail Suite 119\nWest Harleyfort, MD 26661', '2025-11-27 00:00:51', '2026-01-19 08:40:06', NULL, NULL, '3', '-1'),
('2', 'd6bae4ac81cb20561cf6', '1', 'Watersmouth', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '7061 Schoen Fords\nHilariostad, TX 87004-5285', '2025-11-27 00:00:54', '2025-11-27 00:00:54', NULL, NULL, '0', '-1'),
('3', 'bc23429bbe041297328f', '2', 'Grafix', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', 'Plovdiv', '2025-11-27 01:20:35', '2026-01-16 00:00:06', NULL, NULL, '0', '-1'),
('4', '578ee0c6a4f55371349d', '3', 'AL CAPONE CLUB', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', '3 Evlogi Georgiev \nKapana\nPlovdiv', '2025-11-27 10:17:19', '2026-03-29 00:00:05', NULL, NULL, '0', '-1'),
('5', '98bfbbcd94969e689150', '4', 'Amant Iztok', NULL, NULL, '0', '0', '0', '0', '0', '0', '0', '0', 'Nikolay Haytov 6, Sofia', '2025-12-01 11:34:12', '2025-12-28 00:00:06', NULL, NULL, '0', '-1');


-- Table structure for table `cache`
DROP TABLE IF EXISTS `cache`;
CREATE TABLE `cache` (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cache_locks`
DROP TABLE IF EXISTS `cache_locks`;
CREATE TABLE `cache_locks` (
  `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `owner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_header_images`
DROP TABLE IF EXISTS `cart_header_images`;
CREATE TABLE `cart_header_images` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cart_header_setting_id` bigint unsigned NOT NULL,
  `image_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `alt_text` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_header_images_cart_header_setting_id_foreign` (`cart_header_setting_id`),
  CONSTRAINT `cart_header_images_cart_header_setting_id_foreign` FOREIGN KEY (`cart_header_setting_id`) REFERENCES `cart_header_settings` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_header_settings`
DROP TABLE IF EXISTS `cart_header_settings`;
CREATE TABLE `cart_header_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `header_type` enum('text','image') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
  `header_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_header_disabled` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_header_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `cart_header_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cart_header_settings`
INSERT INTO `cart_header_settings` VALUES
('1', '2', 'text', 'Ready to Satisfy Your Cravings? Place Your Order Now!', '0', '2025-11-28 05:31:53', '2025-11-28 05:31:53'),
('2', '3', 'text', 'Ready to Satisfy Your Cravings? Place Your Order Now!', '0', '2025-12-31 14:32:31', '2025-12-31 14:32:31');


-- Table structure for table `cart_item_modifier_options`
DROP TABLE IF EXISTS `cart_item_modifier_options`;
CREATE TABLE `cart_item_modifier_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cart_item_id` bigint unsigned DEFAULT NULL,
  `modifier_option_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_item_modifier_options_cart_item_id_foreign` (`cart_item_id`),
  KEY `cart_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `cart_item_modifier_options_cart_item_id_foreign` FOREIGN KEY (`cart_item_id`) REFERENCES `cart_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_items`
DROP TABLE IF EXISTS `cart_items`;
CREATE TABLE `cart_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cart_session_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `menu_item_id` bigint unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `quantity` int NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `tax_amount` decimal(16,2) DEFAULT NULL,
  `tax_percentage` decimal(8,4) DEFAULT NULL,
  `tax_breakup` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `kiosk_id` bigint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_items_cart_session_id_foreign` (`cart_session_id`),
  KEY `cart_items_branch_id_foreign` (`branch_id`),
  KEY `cart_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `cart_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `cart_items_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `cart_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_cart_session_id_foreign` FOREIGN KEY (`cart_session_id`) REFERENCES `cart_sessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cart_sessions`
DROP TABLE IF EXISTS `cart_sessions`;
CREATE TABLE `cart_sessions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `session_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `order_type_id` bigint unsigned DEFAULT NULL,
  `placed_via` enum('pos','shop','kiosk') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sub_total` decimal(16,2) NOT NULL,
  `total` decimal(16,2) NOT NULL,
  `total_tax_amount` decimal(16,2) NOT NULL DEFAULT '0.00',
  `tax_mode` enum('order','item') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'order',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `kiosk_id` bigint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cart_sessions_branch_id_foreign` (`branch_id`),
  KEY `cart_sessions_order_id_foreign` (`order_id`),
  KEY `cart_sessions_order_type_id_foreign` (`order_type_id`),
  KEY `cart_sessions_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `cart_sessions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `cart_sessions_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_denominations`
DROP TABLE IF EXISTS `cash_denominations`;
CREATE TABLE `cash_denominations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `value` int NOT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_approvals`
DROP TABLE IF EXISTS `cash_register_approvals`;
CREATE TABLE `cash_register_approvals` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint unsigned NOT NULL,
  `approved_by` bigint unsigned NOT NULL,
  `approved_at` datetime NOT NULL,
  `manager_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_counts`
DROP TABLE IF EXISTS `cash_register_counts`;
CREATE TABLE `cash_register_counts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint unsigned NOT NULL,
  `cash_denomination_id` bigint unsigned NOT NULL,
  `count` int NOT NULL DEFAULT '0',
  `subtotal` decimal(12,2) NOT NULL DEFAULT '0.00',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_global_settings`
DROP TABLE IF EXISTS `cash_register_global_settings`;
CREATE TABLE `cash_register_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_global_settings`
INSERT INTO `cash_register_global_settings` VALUES
('1', '384c0006-c196-4a86-bfa0-4a1d78192734', '2026-05-28 03:22:34', NULL, NULL, '1', '2025-11-27 01:01:32', '2025-11-27 01:01:34');


-- Table structure for table `cash_register_sessions`
DROP TABLE IF EXISTS `cash_register_sessions`;
CREATE TABLE `cash_register_sessions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_id` bigint unsigned NOT NULL,
  `restaurant_id` bigint unsigned NOT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `opened_by` bigint unsigned NOT NULL,
  `opened_at` datetime NOT NULL,
  `opening_float` decimal(12,2) NOT NULL DEFAULT '0.00',
  `closed_by` bigint unsigned DEFAULT NULL,
  `approved_by` bigint unsigned DEFAULT NULL,
  `approved_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `expected_cash` decimal(12,2) NOT NULL DEFAULT '0.00',
  `counted_cash` decimal(12,2) NOT NULL DEFAULT '0.00',
  `discrepancy` decimal(12,2) NOT NULL DEFAULT '0.00',
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `closing_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_sessions`
INSERT INTO `cash_register_sessions` VALUES
('1', '1', '3', '4', '5', '2026-03-27 20:30:18', '0.00', NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', 'open', NULL, '2026-03-27 20:30:18', '2026-03-27 20:30:18');


-- Table structure for table `cash_register_settings`
DROP TABLE IF EXISTS `cash_register_settings`;
CREATE TABLE `cash_register_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `force_open_after_login` tinyint(1) NOT NULL DEFAULT '0',
  `force_open_roles` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cash_register_settings_restaurant_id_unique` (`restaurant_id`),
  CONSTRAINT `cash_register_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `cash_register_transactions`
DROP TABLE IF EXISTS `cash_register_transactions`;
CREATE TABLE `cash_register_transactions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `cash_register_session_id` bigint unsigned NOT NULL,
  `restaurant_id` bigint unsigned NOT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `happened_at` datetime NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reference` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(12,2) NOT NULL,
  `currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `running_amount` decimal(12,2) NOT NULL DEFAULT '0.00',
  `created_by` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cash_register_transactions_order_id_index` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_register_transactions`
INSERT INTO `cash_register_transactions` VALUES
('1', '1', '3', '4', '1142', '2026-03-27 21:04:32', 'cash_sale', '655029c5-49b3-443a-8f66-b5a46a3756a1', 'POS cash sale', '9.50', NULL, '0.00', '5', '2026-03-27 21:04:32', '2026-03-27 21:04:32'),
('2', '1', '3', '4', '1141', '2026-03-27 21:59:37', 'cash_sale', '85565c4c-9297-4637-9a2c-cc6c975db7b7', 'POS cash sale', '29.00', NULL, '0.00', '5', '2026-03-27 21:59:37', '2026-03-27 21:59:37'),
('3', '1', '3', '4', '1140', '2026-03-27 23:37:49', 'cash_sale', '0cca9034-523f-4bca-be94-6a3da3a296e4', 'POS cash sale', '21.50', NULL, '0.00', '5', '2026-03-27 23:37:49', '2026-03-27 23:37:49'),
('4', '1', '3', '4', '1144', '2026-03-27 23:38:52', 'cash_sale', '02d1382c-4862-4dc2-98a1-654e7f3c37e9', 'POS cash sale', '15.50', NULL, '0.00', '5', '2026-03-27 23:38:52', '2026-03-27 23:38:52'),
('5', '1', '3', '4', '1145', '2026-03-27 23:41:12', 'cash_sale', '9283af43-3adf-4e47-a973-1b15b4723f3f', 'POS cash sale', '16.00', NULL, '0.00', '5', '2026-03-27 23:41:12', '2026-03-27 23:41:12'),
('6', '1', '3', '4', '1148', '2026-03-28 00:11:46', 'cash_sale', '8f97eb42-4ac3-4176-b7d0-cc41cfc3adb3', 'POS cash sale', '12.00', NULL, '0.00', '5', '2026-03-28 00:11:46', '2026-03-28 00:11:46'),
('7', '1', '3', '4', '1146', '2026-03-28 00:19:43', 'cash_sale', '48c8a795-2d6f-4566-ac97-1f5093615b84', 'POS cash sale', '19.50', NULL, '0.00', '5', '2026-03-28 00:19:43', '2026-03-28 00:19:43'),
('8', '1', '3', '4', '1150', '2026-03-28 00:53:53', 'cash_sale', 'd4fb4b73-c3dd-4ff0-8909-e6b984b0c839', 'POS cash sale', '6.00', NULL, '0.00', '5', '2026-03-28 00:53:53', '2026-03-28 00:53:53'),
('9', '1', '3', '4', '1151', '2026-03-28 01:01:26', 'cash_sale', '3e65021e-b06a-4159-b005-74e7e41814ed', 'POS cash sale', '8.00', NULL, '0.00', '5', '2026-03-28 01:01:26', '2026-03-28 01:01:26'),
('10', '1', '3', '4', '1152', '2026-03-28 01:28:20', 'cash_sale', '5422b47a-5022-409d-b5ff-e49a2533cd0f', 'POS cash sale', '3.00', NULL, '0.00', '5', '2026-03-28 01:28:20', '2026-03-28 01:28:20'),
('11', '1', '3', '4', '1153', '2026-03-28 01:30:59', 'cash_sale', '4b5213a3-e46c-409b-9877-07b6ecc18aaf', 'POS cash sale', '8.00', NULL, '0.00', '5', '2026-03-28 01:30:59', '2026-03-28 01:30:59'),
('12', '1', '3', '4', '1155', '2026-03-28 01:39:53', 'cash_sale', '7ec9b2a4-0af1-409a-a0c2-7b859c7f122f', 'POS cash sale', '1.50', NULL, '0.00', '5', '2026-03-28 01:39:53', '2026-03-28 01:39:53'),
('13', '1', '3', '4', '1156', '2026-03-28 01:49:16', 'cash_sale', '23350377-84de-4461-ad25-c7217f45986a', 'POS cash sale', '3.00', NULL, '0.00', '5', '2026-03-28 01:49:16', '2026-03-28 01:49:16'),
('14', '1', '3', '4', '1157', '2026-03-28 02:03:30', 'cash_sale', '35b6cbd9-1c5e-4168-a8df-be7749bc06fb', 'POS cash sale', '3.00', NULL, '0.00', '5', '2026-03-28 02:03:30', '2026-03-28 02:03:30');


-- Table structure for table `cash_registers`
DROP TABLE IF EXISTS `cash_registers`;
CREATE TABLE `cash_registers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `cash_registers`
INSERT INTO `cash_registers` VALUES
('1', '3', '4', 'Default Register', '1', '2026-02-02 02:32:10', '2026-02-02 02:32:10');


-- Table structure for table `contacts`
DROP TABLE IF EXISTS `contacts`;
CREATE TABLE `contacts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint unsigned DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_company` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `contacts_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `contacts_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `contacts`
INSERT INTO `contacts` VALUES
('1', '1', 'support@hellopos.online', 'HelloPOS', NULL, 'Victor Hugo 7, Sofia, Bulgaria', '2025-11-27 00:00:54', '2025-12-01 08:39:24');


-- Table structure for table `countries`
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `countries_code` char(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `countries_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phonecode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `countries_countries_code_index` (`countries_code`)
) ENGINE=InnoDB AUTO_INCREMENT=250 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `countries`
INSERT INTO `countries` VALUES
('1', 'AF', 'Afghanistan', '93'),
('2', 'AX', 'Åland Islands', '358'),
('3', 'AL', 'Albania', '355'),
('4', 'DZ', 'Algeria', '213'),
('5', 'AS', 'American Samoa', '1684'),
('6', 'AD', 'Andorra', '376'),
('7', 'AO', 'Angola', '244'),
('8', 'AI', 'Anguilla', '1264'),
('9', 'AQ', 'Antarctica', '0'),
('10', 'AG', 'Antigua and Barbuda', '1268'),
('11', 'AR', 'Argentina', '54'),
('12', 'AM', 'Armenia', '374'),
('13', 'AW', 'Aruba', '297'),
('14', 'AU', 'Australia', '61'),
('15', 'AT', 'Austria', '43'),
('16', 'AZ', 'Azerbaijan', '994'),
('17', 'BS', 'Bahamas', '1242'),
('18', 'BH', 'Bahrain', '973'),
('19', 'BD', 'Bangladesh', '880'),
('20', 'BB', 'Barbados', '1246'),
('21', 'BY', 'Belarus', '375'),
('22', 'BE', 'Belgium', '32'),
('23', 'BZ', 'Belize', '501'),
('24', 'BJ', 'Benin', '229'),
('25', 'BM', 'Bermuda', '1441'),
('26', 'BT', 'Bhutan', '975'),
('27', 'BO', 'Bolivia, Plurinational State of', '591'),
('28', 'BQ', 'Bonaire, Sint Eustatius and Saba', '599'),
('29', 'BA', 'Bosnia and Herzegovina', '387'),
('30', 'BW', 'Botswana', '267'),
('31', 'BV', 'Bouvet Island', '0'),
('32', 'BR', 'Brazil', '55'),
('33', 'IO', 'British Indian Ocean Territory', '246'),
('34', 'BN', 'Brunei Darussalam', '673'),
('35', 'BG', 'Bulgaria', '359'),
('36', 'BF', 'Burkina Faso', '226'),
('37', 'BI', 'Burundi', '257'),
('38', 'KH', 'Cambodia', '855'),
('39', 'CM', 'Cameroon', '237'),
('40', 'CA', 'Canada', '1'),
('41', 'CV', 'Cape Verde', '238'),
('42', 'KY', 'Cayman Islands', '1345'),
('43', 'CF', 'Central African Republic', '236'),
('44', 'TD', 'Chad', '235'),
('45', 'CL', 'Chile', '56'),
('46', 'CN', 'China', '86'),
('47', 'CX', 'Christmas Island', '61'),
('48', 'CC', 'Cocos (Keeling) Islands', '672'),
('49', 'CO', 'Colombia', '57'),
('50', 'KM', 'Comoros', '269'),
('51', 'CG', 'Congo', '242'),
('52', 'CD', 'Congo, the Democratic Republic of the', '242'),
('53', 'CK', 'Cook Islands', '682'),
('54', 'CR', 'Costa Rica', '506'),
('55', 'CI', 'Côte d\'Ivoire', '225'),
('56', 'HR', 'Croatia', '385'),
('57', 'CU', 'Cuba', '53'),
('58', 'CW', 'Curaçao', '599'),
('59', 'CY', 'Cyprus', '357'),
('60', 'CZ', 'Czech Republic', '420'),
('61', 'DK', 'Denmark', '45'),
('62', 'DJ', 'Djibouti', '253'),
('63', 'DM', 'Dominica', '1767'),
('64', 'DO', 'Dominican Republic', '1809'),
('65', 'EC', 'Ecuador', '593'),
('66', 'EG', 'Egypt', '20'),
('67', 'SV', 'El Salvador', '503'),
('68', 'GQ', 'Equatorial Guinea', '240'),
('69', 'ER', 'Eritrea', '291'),
('70', 'EE', 'Estonia', '372'),
('71', 'ET', 'Ethiopia', '251'),
('72', 'FK', 'Falkland Islands (Malvinas)', '500'),
('73', 'FO', 'Faroe Islands', '298'),
('74', 'FJ', 'Fiji', '679'),
('75', 'FI', 'Finland', '358'),
('76', 'FR', 'France', '33'),
('77', 'GF', 'French Guiana', '594'),
('78', 'PF', 'French Polynesia', '689'),
('79', 'TF', 'French Southern Territories', '0'),
('80', 'GA', 'Gabon', '241'),
('81', 'GM', 'Gambia', '220'),
('82', 'GE', 'Georgia', '995'),
('83', 'DE', 'Germany', '49'),
('84', 'GH', 'Ghana', '233'),
('85', 'GI', 'Gibraltar', '350'),
('86', 'GR', 'Greece', '30'),
('87', 'GL', 'Greenland', '299'),
('88', 'GD', 'Grenada', '1473'),
('89', 'GP', 'Guadeloupe', '590'),
('90', 'GU', 'Guam', '1671'),
('91', 'GT', 'Guatemala', '502'),
('92', 'GG', 'Guernsey', '44'),
('93', 'GN', 'Guinea', '224'),
('94', 'GW', 'Guinea-Bissau', '245'),
('95', 'GY', 'Guyana', '592'),
('96', 'HT', 'Haiti', '509'),
('97', 'HM', 'Heard Island and McDonald Islands', '0'),
('98', 'VA', 'Holy See (Vatican City State)', '39'),
('99', 'HN', 'Honduras', '504'),
('100', 'HK', 'Hong Kong', '852'),
('101', 'HU', 'Hungary', '36'),
('102', 'IS', 'Iceland', '354'),
('103', 'IN', 'India', '91'),
('104', 'ID', 'Indonesia', '62'),
('105', 'IR', 'Iran, Islamic Republic of', '98'),
('106', 'IQ', 'Iraq', '964'),
('107', 'IE', 'Ireland', '353'),
('108', 'IM', 'Isle of Man', '44'),
('109', 'IL', 'Israel', '972'),
('110', 'IT', 'Italy', '39'),
('111', 'JM', 'Jamaica', '1876'),
('112', 'JP', 'Japan', '81'),
('113', 'JE', 'Jersey', '44'),
('114', 'JO', 'Jordan', '962'),
('115', 'KZ', 'Kazakhstan', '7'),
('116', 'KE', 'Kenya', '254'),
('117', 'KI', 'Kiribati', '686'),
('118', 'KP', 'Korea, Democratic People\'s Republic of', '850'),
('119', 'KR', 'Korea, Republic of', '82'),
('120', 'KW', 'Kuwait', '965'),
('121', 'KG', 'Kyrgyzstan', '996'),
('122', 'LA', 'Lao People\'s Democratic Republic', '856'),
('123', 'LV', 'Latvia', '371'),
('124', 'LB', 'Lebanon', '961'),
('125', 'LS', 'Lesotho', '266'),
('126', 'LR', 'Liberia', '231'),
('127', 'LY', 'Libya', '218'),
('128', 'LI', 'Liechtenstein', '423'),
('129', 'LT', 'Lithuania', '370'),
('130', 'LU', 'Luxembourg', '352'),
('131', 'MO', 'Macao', '853'),
('132', 'MK', 'Macedonia, the Former Yugoslav Republic of', '389'),
('133', 'MG', 'Madagascar', '261'),
('134', 'MW', 'Malawi', '265'),
('135', 'MY', 'Malaysia', '60'),
('136', 'MV', 'Maldives', '960'),
('137', 'ML', 'Mali', '223'),
('138', 'MT', 'Malta', '356'),
('139', 'MH', 'Marshall Islands', '692'),
('140', 'MQ', 'Martinique', '596'),
('141', 'MR', 'Mauritania', '222'),
('142', 'MU', 'Mauritius', '230'),
('143', 'YT', 'Mayotte', '269'),
('144', 'MX', 'Mexico', '52'),
('145', 'FM', 'Micronesia, Federated States of', '691'),
('146', 'MD', 'Moldova, Republic of', '373'),
('147', 'MC', 'Monaco', '377'),
('148', 'MN', 'Mongolia', '976'),
('149', 'ME', 'Montenegro', '382'),
('150', 'MS', 'Montserrat', '1664'),
('151', 'MA', 'Morocco', '212'),
('152', 'MZ', 'Mozambique', '258'),
('153', 'MM', 'Myanmar', '95'),
('154', 'NA', 'Namibia', '264'),
('155', 'NR', 'Nauru', '674'),
('156', 'NP', 'Nepal', '977'),
('157', 'NL', 'Netherlands', '31'),
('158', 'NC', 'New Caledonia', '687'),
('159', 'NZ', 'New Zealand', '64'),
('160', 'NI', 'Nicaragua', '505'),
('161', 'NE', 'Niger', '227'),
('162', 'NG', 'Nigeria', '234'),
('163', 'NU', 'Niue', '683'),
('164', 'NF', 'Norfolk Island', '672'),
('165', 'MP', 'Northern Mariana Islands', '1670'),
('166', 'NO', 'Norway', '47'),
('167', 'OM', 'Oman', '968'),
('168', 'PK', 'Pakistan', '92'),
('169', 'PW', 'Palau', '680'),
('170', 'PS', 'Palestine, State of', '970'),
('171', 'PA', 'Panama', '507'),
('172', 'PG', 'Papua New Guinea', '675'),
('173', 'PY', 'Paraguay', '595'),
('174', 'PE', 'Peru', '51'),
('175', 'PH', 'Philippines', '63'),
('176', 'PN', 'Pitcairn', '0'),
('177', 'PL', 'Poland', '48'),
('178', 'PT', 'Portugal', '351'),
('179', 'PR', 'Puerto Rico', '1787'),
('180', 'QA', 'Qatar', '974'),
('181', 'RE', 'Réunion', '262'),
('182', 'RO', 'Romania', '40'),
('183', 'RU', 'Russian Federation', '7'),
('184', 'RW', 'Rwanda', '250'),
('185', 'BL', 'Saint Barthélemy', '590'),
('186', 'SH', 'Saint Helena, Ascension and Tristan da Cunha', '290'),
('187', 'KN', 'Saint Kitts and Nevis', '1869'),
('188', 'LC', 'Saint Lucia', '1758'),
('189', 'MF', 'Saint Martin (French part)', '590'),
('190', 'PM', 'Saint Pierre and Miquelon', '508'),
('191', 'VC', 'Saint Vincent and the Grenadines', '1784'),
('192', 'WS', 'Samoa', '684'),
('193', 'SM', 'San Marino', '378'),
('194', 'ST', 'Sao Tome and Principe', '239'),
('195', 'SA', 'Saudi Arabia', '966'),
('196', 'SN', 'Senegal', '221'),
('197', 'RS', 'Serbia', '381'),
('198', 'SC', 'Seychelles', '248'),
('199', 'SL', 'Sierra Leone', '232'),
('200', 'SG', 'Singapore', '65'),
('201', 'SX', 'Sint Maarten (Dutch part)', '1'),
('202', 'SK', 'Slovakia', '421'),
('203', 'SI', 'Slovenia', '386'),
('204', 'SB', 'Solomon Islands', '677'),
('205', 'SO', 'Somalia', '252'),
('206', 'ZA', 'South Africa', '27'),
('207', 'GS', 'South Georgia and the South Sandwich Islands', '0'),
('208', 'SS', 'South Sudan', '211'),
('209', 'ES', 'Spain', '34'),
('210', 'LK', 'Sri Lanka', '94'),
('211', 'SD', 'Sudan', '249'),
('212', 'SR', 'Suriname', '597'),
('213', 'SJ', 'Svalbard and Jan Mayen', '47'),
('214', 'SZ', 'Swaziland', '268'),
('215', 'SE', 'Sweden', '46'),
('216', 'CH', 'Switzerland', '41'),
('217', 'SY', 'Syrian Arab Republic', '963'),
('218', 'TW', 'Taiwan, Province of China', '886'),
('219', 'TJ', 'Tajikistan', '992'),
('220', 'TZ', 'Tanzania, United Republic of', '255'),
('221', 'TH', 'Thailand', '66'),
('222', 'TL', 'Timor-Leste', '670'),
('223', 'TG', 'Togo', '228'),
('224', 'TK', 'Tokelau', '690'),
('225', 'TO', 'Tonga', '676'),
('226', 'TT', 'Trinidad and Tobago', '1868'),
('227', 'TN', 'Tunisia', '216'),
('228', 'TR', 'Turkey', '90'),
('229', 'TM', 'Turkmenistan', '7370'),
('230', 'TC', 'Turks and Caicos Islands', '1649'),
('231', 'TV', 'Tuvalu', '688'),
('232', 'UG', 'Uganda', '256'),
('233', 'UA', 'Ukraine', '380'),
('234', 'AE', 'United Arab Emirates', '971'),
('235', 'GB', 'United Kingdom', '44'),
('236', 'US', 'United States', '1'),
('237', 'UM', 'United States Minor Outlying Islands', '1'),
('238', 'UY', 'Uruguay', '598'),
('239', 'UZ', 'Uzbekistan', '998'),
('240', 'VU', 'Vanuatu', '678'),
('241', 'VE', 'Venezuela, Bolivarian Republic of', '58'),
('242', 'VN', 'Viet Nam', '84'),
('243', 'VG', 'Virgin Islands, British', '1284'),
('244', 'VI', 'Virgin Islands, U.S.', '1340'),
('245', 'WF', 'Wallis and Futuna', '681'),
('246', 'EH', 'Western Sahara', '212'),
('247', 'YE', 'Yemen', '967'),
('248', 'ZM', 'Zambia', '260'),
('249', 'ZW', 'Zimbabwe', '263');


-- Table structure for table `currencies`
DROP TABLE IF EXISTS `currencies`;
CREATE TABLE `currencies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `currency_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_symbol` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_position` enum('left','right','left_with_space','right_with_space') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'left',
  `no_of_decimal` int unsigned NOT NULL DEFAULT '2',
  `thousand_separator` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT ',',
  `decimal_separator` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '.',
  `exchange_rate` decimal(16,2) DEFAULT NULL,
  `usd_price` decimal(16,2) DEFAULT NULL,
  `is_cryptocurrency` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  PRIMARY KEY (`id`),
  KEY `currencies_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `currencies_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `currencies`
INSERT INTO `currencies` VALUES
('1', '1', 'Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('2', '1', 'Rupee', 'INR', '₹', 'left', '2', ',', '.', NULL, NULL, 'no'),
('3', '1', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('4', '1', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('5', '2', 'Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('6', '2', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('7', '2', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('8', '2', 'BGN', 'BGN', 'лв', 'left', '2', ',', '.', NULL, NULL, 'no'),
('9', '3', 'Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('10', '3', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('11', '3', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('12', '3', 'BGN', 'BGN', 'лв', 'right_with_space', '2', ',', '.', NULL, NULL, 'no'),
('13', '4', 'Dollars', 'USD', '$', 'left', '2', ',', '.', NULL, NULL, 'no'),
('14', '4', 'Pounds', 'GBP', '£', 'left', '2', ',', '.', NULL, NULL, 'no'),
('15', '4', 'Euros', 'EUR', '€', 'left', '2', ',', '.', NULL, NULL, 'no'),
('16', '4', 'BGN', 'BGN', 'лв', 'right', '2', ',', '.', NULL, NULL, 'no');


-- Table structure for table `custom_menus`
DROP TABLE IF EXISTS `custom_menus`;
CREATE TABLE `custom_menus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `menu_slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `menu_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `position` enum('header','footer') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'header',
  `sort_order` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `custom_menus_menu_slug_unique` (`menu_slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `customer_addresses`
DROP TABLE IF EXISTS `customer_addresses`;
CREATE TABLE `customer_addresses` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` bigint unsigned DEFAULT NULL,
  `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `lat` decimal(10,7) DEFAULT NULL,
  `lng` decimal(10,7) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_addresses_customer_id_foreign` (`customer_id`),
  CONSTRAINT `customer_addresses_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `customers`
DROP TABLE IF EXISTS `customers`;
CREATE TABLE `customers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_otp` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `delivery_address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `customers_restaurant_email_unique` (`restaurant_id`,`email`),
  UNIQUE KEY `customers_email_restaurant_unique` (`email`,`restaurant_id`),
  CONSTRAINT `customers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `database_backup_settings`
DROP TABLE IF EXISTS `database_backup_settings`;
CREATE TABLE `database_backup_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `is_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `frequency` enum('daily','weekly','monthly') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'daily',
  `backup_time` time NOT NULL DEFAULT '02:00:00',
  `retention_days` int NOT NULL DEFAULT '30',
  `max_backups` int NOT NULL DEFAULT '10',
  `include_files` tinyint(1) NOT NULL DEFAULT '0',
  `include_modules` tinyint(1) NOT NULL DEFAULT '0',
  `storage_location` enum('local','storage_setting') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local',
  `storage_config` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `database_backup_settings`
INSERT INTO `database_backup_settings` VALUES
('1', NULL, '384c0006-c196-4a86-bfa0-4a1d78192734', NULL, '2026-05-28 03:22:34', '1', '1', 'daily', '02:00:00', '30', '10', '0', '0', 'local', '[]', '2025-11-27 00:59:34', '2025-12-30 01:02:15');


-- Table structure for table `database_backups`
DROP TABLE IF EXISTS `database_backups`;
CREATE TABLE `database_backups` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `filename` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_size` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('completed','failed','in_progress') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'in_progress',
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `backup_type` enum('manual','scheduled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual',
  `version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stored_on` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local',
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `database_backups`
INSERT INTO `database_backups` VALUES
('116', 'backup_v1.2.61_2026-04-24_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-24_02-00-02.sql.gz', '294484', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-24 02:00:03', '2026-04-24 02:00:02', '2026-04-24 02:00:03'),
('117', 'backup_v1.2.61_2026-04-25_02-00-03.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-25_02-00-03.sql.gz', '294496', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-25 02:00:03', '2026-04-25 02:00:03', '2026-04-25 02:00:03'),
('118', 'backup_v1.2.61_2026-04-26_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-26_02-00-02.sql.gz', '294498', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-26 02:00:02', '2026-04-26 02:00:02', '2026-04-26 02:00:02'),
('119', 'backup_v1.2.61_2026-04-27_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-27_02-00-02.sql.gz', '294485', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-27 02:00:02', '2026-04-27 02:00:02', '2026-04-27 02:00:02'),
('120', 'backup_v1.2.61_2026-04-28_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-28_02-00-02.sql.gz', '294497', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-28 02:00:02', '2026-04-28 02:00:02', '2026-04-28 02:00:02'),
('121', 'backup_v1.2.61_2026-04-29_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-04-29_02-00-02.sql.gz', '294490', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-04-29 02:00:02', '2026-04-29 02:00:02', '2026-04-29 02:00:02'),
('122', 'backup_v1.2.61_2026-05-01_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-05-01_02-00-02.sql.gz', '294486', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-05-01 02:00:03', '2026-05-01 02:00:02', '2026-05-01 02:00:03'),
('123', 'backup_v1.2.61_2026-05-02_02-00-02.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-05-02_02-00-02.sql.gz', '294496', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-05-02 02:00:02', '2026-05-02 02:00:02', '2026-05-02 02:00:02'),
('124', 'backup_v1.2.61_2026-05-03_02-00-03.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-05-03_02-00-03.sql.gz', '294496', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-05-03 02:00:03', '2026-05-03 02:00:03', '2026-05-03 02:00:03'),
('125', 'backup_v1.2.61_2026-05-04_02-00-03.sql.gz', '/home/hellopos/public_html/storage/app/backups/backup_v1.2.61_2026-05-04_02-00-03.sql.gz', '294499', 'completed', NULL, 'scheduled', '1.2.61', 'local', '2026-05-04 02:00:03', '2026-05-04 02:00:03', '2026-05-04 02:00:03'),
('126', 'backup_v1.2.61_2026-06-02_19-30-59.sql', '', NULL, 'in_progress', NULL, 'manual', '1.2.61', 'local', NULL, '2026-06-02 19:30:59', '2026-06-02 19:30:59');


-- Table structure for table `delivery_executives`
DROP TABLE IF EXISTS `delivery_executives`;
CREATE TABLE `delivery_executives` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `photo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('available','on_delivery','inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'available',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `delivery_executives_branch_id_foreign` (`branch_id`),
  CONSTRAINT `delivery_executives_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `delivery_fee_tiers`
DROP TABLE IF EXISTS `delivery_fee_tiers`;
CREATE TABLE `delivery_fee_tiers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `min_distance` double DEFAULT NULL,
  `max_distance` double DEFAULT NULL,
  `fee` decimal(8,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `delivery_fee_tiers_branch_id_foreign` (`branch_id`),
  CONSTRAINT `delivery_fee_tiers_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `delivery_platforms`
DROP TABLE IF EXISTS `delivery_platforms`;
CREATE TABLE `delivery_platforms` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `commission_type` enum('percent','fixed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percent',
  `commission_value` decimal(16,2) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `delivery_platforms_branch_id_foreign` (`branch_id`),
  CONSTRAINT `delivery_platforms_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `denominations`
DROP TABLE IF EXISTS `denominations`;
CREATE TABLE `denominations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` decimal(10,2) NOT NULL,
  `type` enum('coin','note','bill') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `branch_id` bigint unsigned DEFAULT NULL,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `denominations_uuid_unique` (`uuid`),
  UNIQUE KEY `unique_denomination_per_branch` (`value`,`type`,`branch_id`,`restaurant_id`),
  KEY `denominations_branch_id_restaurant_id_index` (`branch_id`,`restaurant_id`),
  KEY `denominations_type_is_active_index` (`type`,`is_active`),
  KEY `denominations_value_type_index` (`value`,`type`),
  KEY `denominations_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `denominations_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `denominations_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `desktop_applications`
DROP TABLE IF EXISTS `desktop_applications`;
CREATE TABLE `desktop_applications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `windows_file_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mac_file_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linux_file_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `desktop_applications`
INSERT INTO `desktop_applications` VALUES
('1', 'https://envato.froid.works/app/download/windows', 'https://envato.froid.works/app/download/macos', 'https://envato.froid.works/app/download/linux', '2025-11-27 00:00:42', '2025-11-27 00:00:43');


-- Table structure for table `email_settings`
DROP TABLE IF EXISTS `email_settings`;
CREATE TABLE `email_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `mail_from_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mail_from_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enable_queue` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `mail_driver` enum('mail','smtp') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'mail',
  `smtp_host` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `smtp_port` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `smtp_encryption` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mail_username` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mail_password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `email_verified` tinyint(1) NOT NULL DEFAULT '0',
  `verified` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `email_settings`
INSERT INTO `email_settings` VALUES
('1', 'HelloPOS', 'info@hellopos.online', 'yes', 'smtp', 'mail.hellopos.online', '465', 'ssl', 'info@hellopos.online', 'raGC%S!&zZPF', '2025-11-27 00:00:54', '2025-11-27 00:18:02', '0', '1');


-- Table structure for table `epay_payments`
DROP TABLE IF EXISTS `epay_payments`;
CREATE TABLE `epay_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `epay_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` json DEFAULT NULL,
  `epay_invoice_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `epay_secret_hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `epay_access_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `epay_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `epay_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `expense_categories`
DROP TABLE IF EXISTS `expense_categories`;
CREATE TABLE `expense_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `expense_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `expense_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `expense_categories`
INSERT INTO `expense_categories` VALUES
('1', '1', 'Rent', 'Monthly rent for restaurant space', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '1', 'Salaries', 'Employee salaries and wages', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '1', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', '1', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('6', '1', 'Marketing', 'Advertising and promotional expenses', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('7', '1', 'Insurance', 'Business insurance and liability coverage', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('8', '1', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('9', '1', 'Licenses', 'Business licenses and permits', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('10', '1', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('11', '2', 'Rent', 'Monthly rent for restaurant space', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('12', '2', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('13', '2', 'Salaries', 'Employee salaries and wages', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('14', '2', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('15', '2', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('16', '2', 'Marketing', 'Advertising and promotional expenses', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('17', '2', 'Insurance', 'Business insurance and liability coverage', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('18', '2', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('19', '2', 'Licenses', 'Business licenses and permits', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('20', '2', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('21', '3', 'Rent', 'Monthly rent for restaurant space', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('22', '3', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('23', '3', 'Salaries', 'Employee salaries and wages', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('24', '3', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('25', '3', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('26', '3', 'Marketing', 'Advertising and promotional expenses', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('27', '3', 'Insurance', 'Business insurance and liability coverage', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('28', '3', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('29', '3', 'Licenses', 'Business licenses and permits', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('30', '3', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('31', '4', 'Rent', 'Monthly rent for restaurant space', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('32', '4', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('33', '4', 'Salaries', 'Employee salaries and wages', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('34', '4', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('35', '4', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('36', '4', 'Marketing', 'Advertising and promotional expenses', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('37', '4', 'Insurance', 'Business insurance and liability coverage', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('38', '4', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('39', '4', 'Licenses', 'Business licenses and permits', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('40', '4', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('41', '5', 'Rent', 'Monthly rent for restaurant space', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('42', '5', 'Utilities', 'Electricity, water, gas, and other utilities', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('43', '5', 'Salaries', 'Employee salaries and wages', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('44', '5', 'Ingredients', 'Food ingredients and raw materials', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('45', '5', 'Equipment', 'Kitchen equipment and appliances', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('46', '5', 'Marketing', 'Advertising and promotional expenses', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('47', '5', 'Insurance', 'Business insurance and liability coverage', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('48', '5', 'Maintenance', 'Repairs and maintenance costs', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('49', '5', 'Licenses', 'Business licenses and permits', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('50', '5', 'Miscellaneous', 'Other miscellaneous expenses', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16');


-- Table structure for table `expenses`
DROP TABLE IF EXISTS `expenses`;
CREATE TABLE `expenses` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `expense_category_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `expense_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `amount` decimal(10,2) NOT NULL,
  `expense_date` date NOT NULL,
  `payment_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payment_date` date DEFAULT NULL,
  `payment_due_date` date DEFAULT NULL,
  `payment_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `receipt_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `expenses_expense_category_id_foreign` (`expense_category_id`),
  KEY `expenses_branch_id_foreign` (`branch_id`),
  CONSTRAINT `expenses_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `failed_jobs`
DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE `failed_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB AUTO_INCREMENT=20031 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `file_storage`
DROP TABLE IF EXISTS `file_storage`;
CREATE TABLE `file_storage` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `filename` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `size` int unsigned NOT NULL,
  `storage_location` enum('local','aws_s3','digitalocean','wasabi','minio') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `file_storage_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `file_storage_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `file_storage`
INSERT INTO `file_storage` VALUES
('1', '1', 'qrcodes', 'qrcode-branch-1-1.png', 'image/png', '2783', 'local', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'qrcodes', 'qrcode-branch-1-1.png', 'image/png', '2783', 'local', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '1', 'qrcodes', 'qrcode-branch-2-1.png', 'image/png', '2803', 'local', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '1', 'qrcodes', 'qrcode-branch-2-1.png', 'image/png', '2803', 'local', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', NULL, 'logo', '79f77b44048cfb567be61864be9047c0.png', 'image/png', '155656', 'local', '2025-11-27 00:34:10', '2025-11-27 00:34:10'),
('6', NULL, 'favicons/super-admin/', 'android-chrome-192x192.png', 'image/png', '69601', 'local', '2025-11-27 00:34:27', '2025-11-27 00:34:27'),
('7', NULL, 'favicons/super-admin/', 'android-chrome-512x512.png', 'image/png', '69601', 'local', '2025-11-27 00:34:35', '2025-11-27 00:34:35'),
('8', NULL, 'favicons/super-admin/', 'apple-touch-icon.png', 'image/png', '69601', 'local', '2025-11-27 00:35:45', '2025-11-27 00:35:45'),
('9', NULL, 'favicons/super-admin/', 'favicon-16x16.png', 'image/png', '69601', 'local', '2025-11-27 00:35:45', '2025-11-27 00:35:45'),
('10', NULL, 'favicons/super-admin/', 'favicon-32x32.png', 'image/png', '69601', 'local', '2025-11-27 00:35:45', '2025-11-27 00:35:45'),
('11', NULL, 'favicons/super-admin/', 'favicon.ico', 'image/vnd.microsoft.icon', '147957', 'local', '2025-11-27 00:35:45', '2025-11-27 00:35:45'),
('12', NULL, '/', 'b6c9bc49e36f6b8713640ece1a744bb7.ico', 'image/vnd.microsoft.icon', '147957', 'aws_s3', '2025-11-27 00:49:21', '2025-11-27 00:49:21'),
('13', NULL, '/', '5ced8dd12c8b67d0fb99835163075383.png', 'image/png', '179473', 'aws_s3', '2025-11-27 00:49:32', '2025-11-27 00:49:32'),
('14', NULL, '/', '37873e5f608c651294a1ea807e0f061e.pdf', 'application/pdf', '1849738', 'aws_s3', '2025-11-27 00:49:56', '2025-11-27 00:49:56'),
('15', '2', 'qrcodes', 'qrcode-branch-3-2.png', 'image/png', '2580', 'local', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('16', '2', 'qrcodes', 'qrcode-3-t1.png', 'image/png', '4279', 'local', '2025-11-27 01:34:13', '2025-11-27 01:34:13'),
('17', '2', 'logo', 'e2bcd87c8c2ad09c8c7569a7312161d5.png', 'image/png', '393714', 'local', '2025-11-27 01:37:27', '2025-11-27 01:37:27'),
('18', '3', 'qrcodes', 'qrcode-branch-4-3.png', 'image/png', '2784', 'local', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('19', '3', 'qrcodes', 'qrcode-4-1.png', 'image/png', '4189', 'local', '2025-11-27 10:21:52', '2025-11-27 10:21:52'),
('20', '3', 'qrcodes', 'qrcode-4-2.png', 'image/png', '4433', 'local', '2025-11-27 10:22:54', '2025-11-27 10:22:54'),
('21', '3', 'qrcodes', 'qrcode-4-3.png', 'image/png', '4458', 'local', '2025-11-27 10:23:04', '2025-11-27 10:23:04'),
('22', '3', 'qrcodes', 'qrcode-4-4.png', 'image/png', '4265', 'local', '2025-11-27 10:23:14', '2025-11-27 10:23:14'),
('23', '3', 'qrcodes', 'qrcode-4-5.png', 'image/png', '4339', 'local', '2025-11-27 10:23:24', '2025-11-27 10:23:24'),
('24', '3', 'qrcodes', 'qrcode-4-6.png', 'image/png', '4517', 'local', '2025-11-27 10:23:38', '2025-11-27 10:23:38'),
('25', '3', 'qrcodes', 'qrcode-4-7.png', 'image/png', '4266', 'local', '2025-11-27 10:24:03', '2025-11-27 10:24:03'),
('26', '3', 'qrcodes', 'qrcode-4-8.png', 'image/png', '4512', 'local', '2025-11-27 10:24:22', '2025-11-27 10:24:22'),
('27', '2', 'qrcodes', 'qrcode-3-t2.png', 'image/png', '4603', 'local', '2025-11-27 10:24:23', '2025-11-27 10:24:23'),
('28', '3', 'qrcodes', 'qrcode-4-9.png', 'image/png', '4521', 'local', '2025-11-27 10:24:53', '2025-11-27 10:24:53'),
('29', '3', 'qrcodes', 'qrcode-4-10.png', 'image/png', '4625', 'local', '2025-11-27 10:25:42', '2025-11-27 10:25:42'),
('30', '3', 'qrcodes', 'qrcode-4-11.png', 'image/png', '4095', 'local', '2025-11-27 10:25:54', '2025-11-27 10:25:54'),
('31', '3', 'item', '497ad40124ff4811d0efe8b2fef87809.jpg', 'image/jpeg', '1856252', 'local', '2025-11-27 14:13:31', '2025-11-27 14:13:31'),
('32', '2', 'qrcodes', 'qrcode-3-t3.png', 'image/png', '4642', 'local', '2025-11-30 08:47:58', '2025-11-30 08:47:58'),
('33', '4', 'qrcodes', 'qrcode-branch-5-4.png', 'image/png', '2781', 'local', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('34', '4', 'qrcodes', 'qrcode-5-t1.png', 'image/png', '4301', 'local', '2025-12-01 11:36:44', '2025-12-01 11:36:44'),
('35', '4', 'qrcodes', 'qrcode-5-t2.png', 'image/png', '4635', 'local', '2025-12-01 11:37:10', '2025-12-01 11:37:10'),
('36', '4', 'qrcodes', 'qrcode-5-t3.png', 'image/png', '4626', 'local', '2025-12-01 11:37:27', '2025-12-01 11:37:27'),
('37', '4', 'qrcodes', 'qrcode-5-t4.png', 'image/png', '4462', 'local', '2025-12-01 11:38:10', '2025-12-01 11:38:10'),
('38', '4', 'qrcodes', 'qrcode-5-t5.png', 'image/png', '4537', 'local', '2025-12-01 11:38:28', '2025-12-01 11:38:28'),
('39', '4', 'qrcodes', 'qrcode-5-t6.png', 'image/png', '4708', 'local', '2025-12-01 11:38:41', '2025-12-01 11:38:41'),
('40', '4', 'qrcodes', 'qrcode-5-t7.png', 'image/png', '4398', 'local', '2025-12-01 11:39:05', '2025-12-01 11:39:05'),
('41', '4', 'qrcodes', 'qrcode-5-t8.png', 'image/png', '4641', 'local', '2025-12-01 11:39:23', '2025-12-01 11:39:23'),
('42', '4', 'qrcodes', 'qrcode-5-t9.png', 'image/png', '4676', 'local', '2025-12-01 11:39:36', '2025-12-01 11:39:36'),
('43', '4', 'qrcodes', 'qrcode-5-t10.png', 'image/png', '4736', 'local', '2025-12-01 11:39:52', '2025-12-01 11:39:52'),
('44', '4', 'qrcodes', 'qrcode-5-tb1.png', 'image/png', '4354', 'local', '2025-12-01 11:40:21', '2025-12-01 11:40:21'),
('45', '4', 'qrcodes', 'qrcode-5-tb2.png', 'image/png', '4560', 'local', '2025-12-01 11:40:36', '2025-12-01 11:40:36'),
('46', '4', 'qrcodes', 'qrcode-5-tb3.png', 'image/png', '4600', 'local', '2025-12-01 11:40:53', '2025-12-01 11:40:53'),
('47', '4', 'qrcodes', 'qrcode-5-tb4.png', 'image/png', '4453', 'local', '2025-12-01 11:41:06', '2025-12-01 11:41:06'),
('48', '4', 'qrcodes', 'qrcode-5-tb5.png', 'image/png', '4488', 'local', '2025-12-01 11:41:24', '2025-12-01 11:41:24'),
('49', '4', 'qrcodes', 'qrcode-5-tb6.png', 'image/png', '4659', 'local', '2025-12-01 11:41:41', '2025-12-01 11:41:41'),
('50', '4', 'qrcodes', 'qrcode-5-tb7.png', 'image/png', '4410', 'local', '2025-12-01 11:41:57', '2025-12-01 11:41:57'),
('51', '4', 'qrcodes', 'qrcode-5-tb8.png', 'image/png', '4634', 'local', '2025-12-01 11:42:17', '2025-12-01 11:42:17'),
('52', '4', 'qrcodes', 'qrcode-5-tb9.png', 'image/png', '4682', 'local', '2025-12-01 11:42:27', '2025-12-01 11:42:27'),
('53', '3', 'logo', 'ad90bcb29c74651348a06547370745eb.png', 'image/png', '747286', 'local', '2025-12-03 09:31:15', '2025-12-03 09:31:15');


-- Table structure for table `file_storage_settings`
DROP TABLE IF EXISTS `file_storage_settings`;
CREATE TABLE `file_storage_settings` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `filesystem` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `auth_keys` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('enabled','disabled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'disabled',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `file_storage_settings`
INSERT INTO `file_storage_settings` VALUES
('1', 'local', NULL, 'enabled', '2025-11-27 00:00:30', '2025-11-27 00:55:05'),
('2', 'aws_s3', 'eyJpdiI6Im4xaXFIQ0U2L1ZqQzVPTXU0UlFXY1E9PSIsInZhbHVlIjoicmROY2Y4Rk1GZUcwakVxUUc0MVROUm1yY2RwU3o5K3ZodUgxYjgxMlFoNTV4elcrUURDbTVLSDErRm9LUVE5aklBcnUwNXVBMmZ1bGh4ZWRPanpjaDdUWWN3UjZWSG85Skg3UnNDN3VNeURnUUcwL0hqcXBvd0Z5STdJekc5bUw1clQrUmIxaE1wVk5VVFBRNkE1eWo4REx0Szd0elVxRllFaVlPd21RNEg0aXRwQ0ZJbk53ZmIzWHdFZTM0b2d6THExc0VmN1JYVzZqN3VaL3EzRHN0Zz09IiwibWFjIjoiYTU1OWU1MWIyZDkxNzhmNzQ3OTNjNTQ3OTk4ZjBlMDZhOTM1YTVlZmI5ZWE5NmU3NDNjMjRlYzQxYjhlYmYwOCIsInRhZyI6IiJ9', 'disabled', '2025-11-27 00:49:06', '2025-11-27 00:55:05');


-- Table structure for table `flags`
DROP TABLE IF EXISTS `flags`;
CREATE TABLE `flags` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `capital` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `continent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=267 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `flags`
INSERT INTO `flags` VALUES
('1', 'Kabul', 'af', 'Asia', 'Afghanistan'),
('2', 'Mariehamn', 'ax', 'Europe', 'Aland Islands'),
('3', 'Tirana', 'al', 'Europe', 'Albania'),
('4', 'Algiers', 'dz', 'Africa', 'Algeria'),
('5', 'Pago Pago', 'as', 'Oceania', 'American Samoa'),
('6', 'Andorra la Vella', 'ad', 'Europe', 'Andorra'),
('7', 'Luanda', 'ao', 'Africa', 'Angola'),
('8', 'The Valley', 'ai', 'North America', 'Anguilla'),
('9', '', 'aq', '', 'Antarctica'),
('10', 'St. John\'s', 'ag', 'North America', 'Antigua and Barbuda'),
('11', 'Buenos Aires', 'ar', 'South America', 'Argentina'),
('12', 'Yerevan', 'am', 'Asia', 'Armenia'),
('13', 'Oranjestad', 'aw', 'South America', 'Aruba'),
('14', 'Georgetown', 'ac', 'Africa', 'Ascension Island'),
('15', 'Canberra', 'au', 'Oceania', 'Australia'),
('16', 'Vienna', 'at', 'Europe', 'Austria'),
('17', 'Baku', 'az', 'Asia', 'Azerbaijan'),
('18', 'Nassau', 'bs', 'North America', 'Bahamas'),
('19', 'Manama', 'bh', 'Asia', 'Bahrain'),
('20', 'Dhaka', 'bd', 'Asia', 'Bangladesh'),
('21', 'Bridgetown', 'bb', 'North America', 'Barbados'),
('22', 'Minsk', 'by', 'Europe', 'Belarus'),
('23', 'Brussels', 'be', 'Europe', 'Belgium'),
('24', 'Belmopan', 'bz', 'North America', 'Belize'),
('25', 'Porto-Novo', 'bj', 'Africa', 'Benin'),
('26', 'Hamilton', 'bm', 'North America', 'Bermuda'),
('27', 'Thimphu', 'bt', 'Asia', 'Bhutan'),
('28', 'Sucre', 'bo', 'South America', 'Bolivia'),
('29', 'Kralendijk', 'bq', 'South America', 'Bonaire, Sint Eustatius and Saba'),
('30', 'Sarajevo', 'ba', 'Europe', 'Bosnia and Herzegovina'),
('31', 'Gaborone', 'bw', 'Africa', 'Botswana'),
('32', '', 'bv', '', 'Bouvet Island'),
('33', 'Brasília', 'br', 'South America', 'Brazil'),
('34', 'Diego Garcia', 'io', 'Asia', 'British Indian Ocean Territory'),
('35', 'Bandar Seri Begawan', 'bn', 'Asia', 'Brunei Darussalam'),
('36', 'Sofia', 'bg', 'Europe', 'Bulgaria'),
('37', 'Ouagadougou', 'bf', 'Africa', 'Burkina Faso'),
('38', 'Bujumbura', 'bi', 'Africa', 'Burundi'),
('39', 'Praia', 'cv', 'Africa', 'Cabo Verde'),
('40', 'Phnom Penh', 'kh', 'Asia', 'Cambodia'),
('41', 'Yaoundé', 'cm', 'Africa', 'Cameroon'),
('42', 'Ottawa', 'ca', 'North America', 'Canada'),
('43', '', 'ic', '', 'Canary Islands'),
('44', '', 'es-ct', '', 'Catalonia'),
('45', 'George Town', 'ky', 'North America', 'Cayman Islands'),
('46', 'Bangui', 'cf', 'Africa', 'Central African Republic'),
('47', '', 'cefta', '', 'Central European Free Trade Agreement'),
('48', '', 'ea', '', 'Ceuta & Melilla'),
('49', 'N\'Djamena', 'td', 'Africa', 'Chad'),
('50', 'Santiago', 'cl', 'South America', 'Chile'),
('51', 'Beijing', 'cn', 'Asia', 'China'),
('52', 'Flying Fish Cove', 'cx', 'Asia', 'Christmas Island'),
('53', '', 'cp', '', 'Clipperton Island'),
('54', 'West Island', 'cc', 'Asia', 'Cocos (Keeling) Islands'),
('55', 'Bogotá', 'co', 'South America', 'Colombia'),
('56', 'Moroni', 'km', 'Africa', 'Comoros'),
('57', 'Avarua', 'ck', 'Oceania', 'Cook Islands'),
('58', 'San José', 'cr', 'North America', 'Costa Rica'),
('59', 'Zagreb', 'hr', 'Europe', 'Croatia'),
('60', 'Havana', 'cu', 'North America', 'Cuba'),
('61', 'Willemstad', 'cw', 'South America', 'Curaçao'),
('62', 'Nicosia', 'cy', 'Europe', 'Cyprus'),
('63', 'Prague', 'cz', 'Europe', 'Czech Republic'),
('64', 'Yamoussoukro', 'ci', 'Africa', 'Côte d\'Ivoire'),
('65', 'Kinshasa', 'cd', 'Africa', 'Democratic Republic of the Congo'),
('66', 'Copenhagen', 'dk', 'Europe', 'Denmark'),
('67', '', 'dg', '', 'Diego Garcia'),
('68', 'Djibouti', 'dj', 'Africa', 'Djibouti'),
('69', 'Roseau', 'dm', 'North America', 'Dominica'),
('70', 'Santo Domingo', 'do', 'North America', 'Dominican Republic'),
('71', 'Quito', 'ec', 'South America', 'Ecuador'),
('72', 'Cairo', 'eg', 'Africa', 'Egypt'),
('73', 'San Salvador', 'sv', 'North America', 'El Salvador'),
('74', 'London', 'gb-eng', 'Europe', 'England'),
('75', 'Malabo', 'gq', 'Africa', 'Equatorial Guinea'),
('76', 'Asmara', 'er', 'Africa', 'Eritrea'),
('77', 'Tallinn', 'ee', 'Europe', 'Estonia'),
('78', 'Lobamba, Mbabane', 'sz', 'Africa', 'Eswatini'),
('79', 'Addis Ababa', 'et', 'Africa', 'Ethiopia'),
('80', '', 'eu', '', 'Europe'),
('81', 'Stanley', 'fk', 'South America', 'Falkland Islands'),
('82', 'Tórshavn', 'fo', 'Europe', 'Faroe Islands'),
('83', 'Palikir', 'fm', 'Oceania', 'Federated States of Micronesia'),
('84', 'Suva', 'fj', 'Oceania', 'Fiji'),
('85', 'Helsinki', 'fi', 'Europe', 'Finland'),
('86', 'Paris', 'fr', 'Europe', 'France'),
('87', 'Cayenne', 'gf', 'South America', 'French Guiana'),
('88', 'Papeete', 'pf', 'Oceania', 'French Polynesia'),
('89', 'Saint-Pierre, Réunion', 'tf', 'Africa', 'French Southern Territories'),
('90', 'Libreville', 'ga', 'Africa', 'Gabon'),
('91', '', 'es-ga', '', 'Galicia'),
('92', 'Banjul', 'gm', 'Africa', 'Gambia'),
('93', 'Tbilisi', 'ge', 'Asia', 'Georgia'),
('94', 'Berlin', 'de', 'Europe', 'Germany'),
('95', 'Accra', 'gh', 'Africa', 'Ghana'),
('96', 'Gibraltar', 'gi', 'Europe', 'Gibraltar'),
('97', 'Athens', 'gr', 'Europe', 'Greece'),
('98', 'Nuuk', 'gl', 'North America', 'Greenland'),
('99', 'St. George\'s', 'gd', 'North America', 'Grenada'),
('100', 'Basse-Terre', 'gp', 'North America', 'Guadeloupe'),
('101', 'Hagåtña', 'gu', 'Oceania', 'Guam'),
('102', 'Guatemala City', 'gt', 'North America', 'Guatemala'),
('103', 'Saint Peter Port', 'gg', 'Europe', 'Guernsey'),
('104', 'Conakry', 'gn', 'Africa', 'Guinea'),
('105', 'Bissau', 'gw', 'Africa', 'Guinea-Bissau'),
('106', 'Georgetown', 'gy', 'South America', 'Guyana'),
('107', 'Port-au-Prince', 'ht', 'North America', 'Haiti'),
('108', '', 'hm', '', 'Heard Island and McDonald Islands'),
('109', 'Vatican City', 'va', 'Europe', 'Holy See'),
('110', 'Tegucigalpa', 'hn', 'North America', 'Honduras'),
('111', 'Hong Kong', 'hk', 'Asia', 'Hong Kong'),
('112', 'Budapest', 'hu', 'Europe', 'Hungary'),
('113', 'Reykjavik', 'is', 'Europe', 'Iceland'),
('114', 'New Delhi', 'in', 'Asia', 'India'),
('115', 'Jakarta', 'id', 'Asia', 'Indonesia'),
('116', 'Tehran', 'ir', 'Asia', 'Iran'),
('117', 'Baghdad', 'iq', 'Asia', 'Iraq'),
('118', 'Dublin', 'ie', 'Europe', 'Ireland'),
('119', 'Douglas', 'im', 'Europe', 'Isle of Man'),
('120', 'Jerusalem', 'il', 'Asia', 'Israel'),
('121', 'Rome', 'it', 'Europe', 'Italy'),
('122', 'Kingston', 'jm', 'North America', 'Jamaica'),
('123', 'Tokyo', 'jp', 'Asia', 'Japan'),
('124', 'Saint Helier', 'je', 'Europe', 'Jersey'),
('125', 'Amman', 'jo', 'Asia', 'Jordan'),
('126', 'Astana', 'kz', 'Asia', 'Kazakhstan'),
('127', 'Nairobi', 'ke', 'Africa', 'Kenya'),
('128', 'South Tarawa', 'ki', 'Oceania', 'Kiribati'),
('129', 'Pristina', 'xk', 'Europe', 'Kosovo'),
('130', 'Kuwait City', 'kw', 'Asia', 'Kuwait'),
('131', 'Bishkek', 'kg', 'Asia', 'Kyrgyzstan'),
('132', 'Vientiane', 'la', 'Asia', 'Laos'),
('133', 'Riga', 'lv', 'Europe', 'Latvia'),
('134', 'Beirut', 'lb', 'Asia', 'Lebanon'),
('135', 'Maseru', 'ls', 'Africa', 'Lesotho'),
('136', 'Monrovia', 'lr', 'Africa', 'Liberia'),
('137', 'Tripoli', 'ly', 'Africa', 'Libya'),
('138', 'Vaduz', 'li', 'Europe', 'Liechtenstein'),
('139', 'Vilnius', 'lt', 'Europe', 'Lithuania'),
('140', 'Luxembourg City', 'lu', 'Europe', 'Luxembourg'),
('141', 'Macau', 'mo', 'Asia', 'Macau'),
('142', 'Antananarivo', 'mg', 'Africa', 'Madagascar'),
('143', 'Lilongwe', 'mw', 'Africa', 'Malawi'),
('144', 'Kuala Lumpur', 'my', 'Asia', 'Malaysia'),
('145', 'Malé', 'mv', 'Asia', 'Maldives'),
('146', 'Bamako', 'ml', 'Africa', 'Mali'),
('147', 'Valletta', 'mt', 'Europe', 'Malta'),
('148', 'Majuro', 'mh', 'Oceania', 'Marshall Islands'),
('149', 'Fort-de-France', 'mq', 'North America', 'Martinique'),
('150', 'Nouakchott', 'mr', 'Africa', 'Mauritania'),
('151', 'Port Louis', 'mu', 'Africa', 'Mauritius'),
('152', 'Mamoudzou', 'yt', 'Africa', 'Mayotte'),
('153', 'Mexico City', 'mx', 'North America', 'Mexico'),
('154', 'Chișinău', 'md', 'Europe', 'Moldova'),
('155', 'Monaco', 'mc', 'Europe', 'Monaco'),
('156', 'Ulaanbaatar', 'mn', 'Asia', 'Mongolia'),
('157', 'Podgorica', 'me', 'Europe', 'Montenegro'),
('158', 'Little Bay, Brades, Plymouth', 'ms', 'North America', 'Montserrat'),
('159', 'Rabat', 'ma', 'Africa', 'Morocco'),
('160', 'Maputo', 'mz', 'Africa', 'Mozambique'),
('161', 'Naypyidaw', 'mm', 'Asia', 'Myanmar'),
('162', 'Windhoek', 'na', 'Africa', 'Namibia'),
('163', 'Yaren District', 'nr', 'Oceania', 'Nauru'),
('164', 'Kathmandu', 'np', 'Asia', 'Nepal'),
('165', 'Amsterdam', 'nl', 'Europe', 'Netherlands'),
('166', 'Nouméa', 'nc', 'Oceania', 'New Caledonia'),
('167', 'Wellington', 'nz', 'Oceania', 'New Zealand'),
('168', 'Managua', 'ni', 'North America', 'Nicaragua'),
('169', 'Niamey', 'ne', 'Africa', 'Niger'),
('170', 'Abuja', 'ng', 'Africa', 'Nigeria'),
('171', 'Alofi', 'nu', 'Oceania', 'Niue'),
('172', 'Kingston', 'nf', 'Oceania', 'Norfolk Island'),
('173', 'Pyongyang', 'kp', 'Asia', 'North Korea'),
('174', 'Skopje', 'mk', 'Europe', 'North Macedonia'),
('175', 'Belfast', 'gb-nir', 'Europe', 'Northern Ireland'),
('176', 'Saipan', 'mp', 'Oceania', 'Northern Mariana Islands'),
('177', 'Oslo', 'no', 'Europe', 'Norway'),
('178', 'Muscat', 'om', 'Asia', 'Oman'),
('179', 'Islamabad', 'pk', 'Asia', 'Pakistan'),
('180', 'Ngerulmud', 'pw', 'Oceania', 'Palau'),
('181', 'Panama City', 'pa', 'North America', 'Panama'),
('182', 'Port Moresby', 'pg', 'Oceania', 'Papua New Guinea'),
('183', 'Asunción', 'py', 'South America', 'Paraguay'),
('184', 'Lima', 'pe', 'South America', 'Peru'),
('185', 'Manila', 'ph', 'Asia', 'Philippines'),
('186', 'Adamstown', 'pn', 'Oceania', 'Pitcairn'),
('187', 'Warsaw', 'pl', 'Europe', 'Poland'),
('188', 'Lisbon', 'pt', 'Europe', 'Portugal'),
('189', 'San Juan', 'pr', 'North America', 'Puerto Rico'),
('190', 'Doha', 'qa', 'Asia', 'Qatar'),
('191', 'Brazzaville', 'cg', 'Africa', 'Republic of the Congo'),
('192', 'Bucharest', 'ro', 'Europe', 'Romania'),
('193', 'Moscow', 'ru', 'Europe', 'Russia'),
('194', 'Kigali', 'rw', 'Africa', 'Rwanda'),
('195', 'Saint-Denis', 're', 'Africa', 'Réunion'),
('196', 'Gustavia', 'bl', 'North America', 'Saint Barthélemy'),
('197', 'Jamestown', 'sh', 'Africa', 'Saint Helena, Ascension and Tristan da Cunha'),
('198', 'Basseterre', 'kn', 'North America', 'Saint Kitts and Nevis'),
('199', 'Castries', 'lc', 'North America', 'Saint Lucia'),
('200', 'Marigot', 'mf', 'North America', 'Saint Martin'),
('201', 'Saint-Pierre', 'pm', 'North America', 'Saint Pierre and Miquelon'),
('202', 'Kingstown', 'vc', 'North America', 'Saint Vincent and the Grenadines'),
('203', 'Apia', 'ws', 'Oceania', 'Samoa'),
('204', 'San Marino', 'sm', 'Europe', 'San Marino'),
('205', 'São Tomé', 'st', 'Africa', 'Sao Tome and Principe'),
('206', 'Riyadh', 'sa', 'Asia', 'Saudi Arabia'),
('207', 'Edinburgh', 'gb-sct', 'Europe', 'Scotland'),
('208', 'Dakar', 'sn', 'Africa', 'Senegal'),
('209', 'Belgrade', 'rs', 'Europe', 'Serbia'),
('210', 'Victoria', 'sc', 'Africa', 'Seychelles'),
('211', 'Freetown', 'sl', 'Africa', 'Sierra Leone'),
('212', 'Singapore', 'sg', 'Asia', 'Singapore'),
('213', 'Philipsburg', 'sx', 'North America', 'Sint Maarten'),
('214', 'Bratislava', 'sk', 'Europe', 'Slovakia'),
('215', 'Ljubljana', 'si', 'Europe', 'Slovenia'),
('216', 'Honiara', 'sb', 'Oceania', 'Solomon Islands'),
('217', 'Mogadishu', 'so', 'Africa', 'Somalia'),
('218', 'Pretoria', 'za', 'Africa', 'South Africa'),
('219', 'King Edward Point', 'gs', 'Antarctica', 'South Georgia and the South Sandwich Islands'),
('220', 'Seoul', 'kr', 'Asia', 'South Korea'),
('221', 'Juba', 'ss', 'Africa', 'South Sudan'),
('222', 'Madrid', 'es', 'Europe', 'Spain'),
('223', 'Sri Jayawardenepura Kotte, Colombo', 'lk', 'Asia', 'Sri Lanka'),
('224', 'Ramallah', 'ps', 'Asia', 'State of Palestine'),
('225', 'Khartoum', 'sd', 'Africa', 'Sudan'),
('226', 'Paramaribo', 'sr', 'South America', 'Suriname'),
('227', 'Longyearbyen', 'sj', 'Europe', 'Svalbard and Jan Mayen'),
('228', 'Stockholm', 'se', 'Europe', 'Sweden'),
('229', 'Bern', 'ch', 'Europe', 'Switzerland'),
('230', 'Damascus', 'sy', 'Asia', 'Syria'),
('231', 'Taipei', 'tw', 'Asia', 'Taiwan'),
('232', 'Dushanbe', 'tj', 'Asia', 'Tajikistan'),
('233', 'Dodoma', 'tz', 'Africa', 'Tanzania'),
('234', 'Bangkok', 'th', 'Asia', 'Thailand'),
('235', 'Dili', 'tl', 'Asia', 'Timor-Leste'),
('236', 'Lomé', 'tg', 'Africa', 'Togo'),
('237', 'Nukunonu, Atafu,Tokelau', 'tk', 'Oceania', 'Tokelau'),
('238', 'Nukuʻalofa', 'to', 'Oceania', 'Tonga'),
('239', 'Port of Spain', 'tt', 'South America', 'Trinidad and Tobago'),
('240', '', 'ta', '', 'Tristan da Cunha'),
('241', 'Tunis', 'tn', 'Africa', 'Tunisia'),
('242', 'Ankara', 'tr', 'Asia', 'Turkey'),
('243', 'Ashgabat', 'tm', 'Asia', 'Turkmenistan'),
('244', 'Cockburn Town', 'tc', 'North America', 'Turks and Caicos Islands'),
('245', 'Funafuti', 'tv', 'Oceania', 'Tuvalu'),
('246', 'Kampala', 'ug', 'Africa', 'Uganda'),
('247', 'Kiev', 'ua', 'Europe', 'Ukraine'),
('248', 'Abu Dhabi', 'ae', 'Asia', 'United Arab Emirates'),
('249', 'London', 'gb', 'Europe', 'United Kingdom'),
('250', '', 'un', '', 'United Nations'),
('251', 'Washington, D.C.', 'um', 'North America', 'United States Minor Outlying Islands'),
('252', 'Washington, D.C.', 'us', 'North America', 'United States of America'),
('253', '', 'xx', '', 'Unknown'),
('254', 'Montevideo', 'uy', 'South America', 'Uruguay'),
('255', 'Tashkent', 'uz', 'Asia', 'Uzbekistan'),
('256', 'Port Vila', 'vu', 'Oceania', 'Vanuatu'),
('257', 'Caracas', 've', 'South America', 'Venezuela'),
('258', 'Hanoi', 'vn', 'Asia', 'Vietnam'),
('259', 'Road Town', 'vg', 'North America', 'Virgin Islands (British)'),
('260', 'Charlotte Amalie', 'vi', 'North America', 'Virgin Islands (U.S.)'),
('261', 'Cardiff', 'gb-wls', 'Europe', 'Wales'),
('262', 'Mata-Utu', 'wf', 'Oceania', 'Wallis and Futuna'),
('263', 'Laayoune', 'eh', 'Africa', 'Western Sahara'),
('264', 'Sana\'a', 'ye', 'Asia', 'Yemen'),
('265', 'Lusaka', 'zm', 'Africa', 'Zambia'),
('266', 'Harare', 'zw', 'Africa', 'Zimbabwe');


-- Table structure for table `flutterwave_payments`
DROP TABLE IF EXISTS `flutterwave_payments`;
CREATE TABLE `flutterwave_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `flutterwave_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `flutterwave_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `flutterwave_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `front_details`
DROP TABLE IF EXISTS `front_details`;
CREATE TABLE `front_details` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint unsigned DEFAULT NULL,
  `header_title` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `header_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `image` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `feature_with_image_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `review_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `feature_with_icon_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `comments_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price_description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `faq_heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `faq_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `contact_heading` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `footer_copyright_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_details_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_details_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_details`
INSERT INTO `front_details` VALUES
('1', '1', 'Restaurant POS software made simple!', 'Easily manage orders, menus, and tables in one place. Save time, reduce errors, and grow your business faster', NULL, 'Take Control of Your Restaurant', 'What Restaurant Owners Are Saying', 'Powerful Features Built to Elevate Your Restaurant Operations', NULL, 'Simple, Transparent Pricing', 'Get everything you need to manage your restaurant with one affordable plan.', 'Your questions, answered', 'Answers to the most frequently asked questions.', 'Contact', '© 2025 TableTrack. All Rights Reserved.', '2025-11-27 00:00:54', '2025-11-27 00:00:54');


-- Table structure for table `front_faq_settings`
DROP TABLE IF EXISTS `front_faq_settings`;
CREATE TABLE `front_faq_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint unsigned DEFAULT NULL,
  `question` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_faq_settings_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_faq_settings_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_faq_settings`
INSERT INTO `front_faq_settings` VALUES
('1', '1', 'What is HelloPOS?', '<div>&nbsp;HelloPOS is a modern cloud-based POS system designed for restaurants, cafés, and retail businesses. It helps you manage orders, tables, payments, and receipts in real time — all from one simple platform.&nbsp;</div>', NULL, '2025-12-27 21:40:19'),
('2', '1', 'Do I need special hardware to use HelloPOS?', '<div>&nbsp;No. HelloPOS works with standard POS equipment. For receipt printing, we recommend ESC/POS thermal printers with LAN (Ethernet) support for best performance and stability.&nbsp;</div>', NULL, '2025-12-27 21:40:39'),
('3', '1', 'Does HelloPOS work with receipt printers?', '<div>&nbsp;Yes. HelloPOS supports professional receipt printing through our local print agent, ensuring fast and reliable printing even if the internet connection is temporarily unavailable.&nbsp;</div>', NULL, '2025-12-27 21:40:56'),
('4', '1', 'Can I use HelloPOS on multiple devices?', '<div>&nbsp;Absolutely. HelloPOS works on PCs, tablets, and mobile devices. You can manage your business from anywhere with an internet connection.&nbsp;</div>', NULL, '2025-12-27 21:41:14'),
('5', '1', 'Is HelloPOS suitable for restaurants and cafés?', '<div>&nbsp;Yes. HelloPOS is built with hospitality in mind — including table management, order tracking, kitchen printing, and fast checkout.&nbsp;</div>', NULL, '2025-12-27 21:41:35'),
('6', '1', 'Is my data secure?', '<div>&nbsp;Yes. All data is securely stored in the cloud with encrypted connections, ensuring your business information is always protected.&nbsp;</div>', NULL, '2025-12-27 21:41:53'),
('7', '1', 'How fast is the setup?', '<div>&nbsp;How fast is the setup?&nbsp;</div>', '2025-12-27 21:42:08', '2025-12-27 21:42:08'),
('8', '1', 'Can HelloPOS grow with my business?', '<div>Definitely. HelloPOS is scalable — whether you run a single location or multiple outlets, the system grows with you.</div>', '2025-12-27 21:42:28', '2025-12-27 21:42:38');


-- Table structure for table `front_features`
DROP TABLE IF EXISTS `front_features`;
CREATE TABLE `front_features` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint unsigned DEFAULT NULL,
  `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `image` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `icon` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `type` enum('image','icon','task','bills','team','apps') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'image',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_features_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_features_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_features`
INSERT INTO `front_features` VALUES
('1', '1', 'Streamline Order Management', 'Never lose track of an order again. All your customer orders—from dine-in to takeout—are organized and easily accessible in one place.\n                                Speed up service and keep your kitchen running smoothly.', NULL, NULL, 'image', NULL, NULL),
('2', '1', 'Optimize Table Reservations', 'Maximize seating efficiency with real-time table tracking and reservations. Reduce wait times and ensure no table sits empty during peak hours, improving customer experience and turnover.', NULL, NULL, 'image', NULL, NULL),
('3', '1', 'Effortless Menu Management', 'Easily add, edit, or remove items from your menu on the go. Highlight specials, update prices, and keep everything in sync across all platforms, so your staff and customers always see the latest offerings.', NULL, NULL, 'image', NULL, NULL),
('4', '1', 'QR Code Menu', 'Contactless Ordering Made Easy', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                            class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                            <path\n                                d=\"M0 .5A.5.5 0 0 1 .5 0h3a.5.5 0 0 1 0 1H1v2.5a.5.5 0 0 1-1 0zm12 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V1h-2.5a.5.5 0 0 1-.5-.5M.5 12a.5.5 0 0 1 .5.5V15h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H15v-2.5a.5.5 0 0 1 .5-.5M4 4h1v1H4z\" />\n                            <path d=\"M7 2H2v5h5zM3 3h3v3H3zm2 8H4v1h1z\" />\n                            <path d=\"M7 9H2v5h5zm-4 1h3v3H3zm8-6h1v1h-1z\" />\n                            <path\n                                d=\"M9 2h5v5H9zm1 1v3h3V3zM8 8v2h1v1H8v1h2v-2h1v2h1v-1h2v-1h-3V8zm2 2H9V9h1zm4 2h-1v1h-2v1h3zm-4 2v-1H8v1z\" />\n                            <path d=\"M12 9h2V8h-2z\" />\n                        </svg>', 'bi-qr-code', 'icon', NULL, NULL),
('5', '1', 'Payment Gateway Integration', 'Fast, Secure, and Flexible Payments using Stripe and Razorpay', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm6.226 5.385c-.584 0-.937.164-.937.593 0 .468.607.674 1.36.93 1.228.415 2.844.963 2.851 2.993C11.5 11.868 9.924 13 7.63 13a7.7 7.7 0 0 1-3.009-.626V9.758c.926.506 2.095.88 3.01.88.617 0 1.058-.165 1.058-.671 0-.518-.658-.755-1.453-1.041C6.026 8.49 4.5 7.94 4.5 6.11 4.5 4.165 5.988 3 8.226 3a7.3 7.3 0 0 1 2.734.505v2.583c-.838-.45-1.896-.703-2.734-.703\" />\n                    </svg>', 'bi-credit-card', 'icon', NULL, NULL),
('6', '1', 'Staff Management', 'Separate login for every staff role with different permissions.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4\" />\n                    </svg>', 'bi-people', 'icon', NULL, NULL),
('7', '1', 'POS (Point of Sale)', 'Complete POS Integration', '<svg class=\"size-6 transition duration-75 text-skin-base dark:text-skin-base\" fill=\"currentColor\"\n                        viewBox=\"0 -0.5 25 25\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n                        <g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"></g>\n                        <g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></g>\n                        <g id=\"SVGRepo_iconCarrier\">\n                            <path fill-rule=\"evenodd\"\n                                d=\"M16,6 L20,6 C21.1045695,6 22,6.8954305 22,8 L22,16 C22,17.1045695 21.1045695,18 20,18 L16,18 L16,19.9411765 C16,21.0658573 15.1177541,22 14,22 L4,22 C2.88224586,22 2,21.0658573 2,19.9411765 L2,4.05882353 C2,2.93414267 2.88224586,2 4,2 L14,2 C15.1177541,2 16,2.93414267 16,4.05882353 L16,6 Z M20,11 L16,11 L16,16 L20,16 L20,11 Z M14,19.9411765 L14,4.05882353 C14,4.01396021 13.9868154,4 14,4 L4,4 C4.01318464,4 4,4.01396021 4,4.05882353 L4,19.9411765 C4,19.9860398 4.01318464,20 4,20 L14,20 C13.9868154,20 14,19.9860398 14,19.9411765 Z M5,19 L5,17 L7,17 L7,19 L5,19 Z M8,19 L8,17 L10,17 L10,19 L8,19 Z M11,19 L11,17 L13,17 L13,19 L11,19 Z M5,16 L5,14 L7,14 L7,16 L5,16 Z M8,16 L8,14 L10,14 L10,16 L8,16 Z M11,16 L11,14 L13,14 L13,16 L11,16 Z M13,5 L13,13 L5,13 L5,5 L13,5 Z M7,7 L7,11 L11,11 L11,7 L7,7 Z M20,9 L20,8 L16,8 L16,9 L20,9 Z\">\n                            </path>\n                        </g>\n                    </svg>', 'bi-pos', 'icon', NULL, NULL),
('8', '1', 'Custom Floor Plans', 'Design Your Restaurants Layout.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M8.235 1.559a.5.5 0 0 0-.47 0l-7.5 4a.5.5 0 0 0 0 .882L3.188 8 .264 9.559a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882L12.813 8l2.922-1.559a.5.5 0 0 0 0-.882zm3.515 7.008L14.438 10 8 13.433 1.562 10 4.25 8.567l3.515 1.874a.5.5 0 0 0 .47 0zM8 9.433 1.562 6 8 2.567 14.438 6z\" />\n                    </svg>', 'bi-grid-3x3-gap', 'icon', NULL, NULL),
('9', '1', 'Kitchen Order Tickets (KOT)', 'Efficient Kitchen Workflow.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path\n                            d=\"M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5M11.5 4a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1z\" />\n                        <path\n                            d=\"M2.354.646a.5.5 0 0 0-.801.13l-.5 1A.5.5 0 0 0 1 2v13H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1H15V2a.5.5 0 0 0-.053-.224l-.5-1a.5.5 0 0 0-.8-.13L13 1.293l-.646-.647a.5.5 0 0 0-.708 0L11 1.293l-.646-.647a.5.5 0 0 0-.708 0L9 1.293 8.354.646a.5.5 0 0 0-.708 0L7 1.293 6.354.646a.5.5 0 0 0-.708 0L5 1.293 4.354.646a.5.5 0 0 0-.708 0L3 1.293zm-.217 1.198.51.51a.5.5 0 0 0 .707 0L4 1.707l.646.647a.5.5 0 0 0 .708 0L6 1.707l.646.647a.5.5 0 0 0 .708 0L8 1.707l.646.647a.5.5 0 0 0 .708 0L10 1.707l.646.647a.5.5 0 0 0 .708 0L12 1.707l.646.647a.5.5 0 0 0 .708 0l.509-.51.137.274V15H2V2.118z\" />\n                    </svg>', 'bi-receipt', 'icon', NULL, NULL),
('10', '1', 'Bill Printing', 'Quick and Accurate Billing.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\"\n                        class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                        <path d=\"M2.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" />\n                        <path\n                            d=\"M5 1a2 2 0 0 0-2 2v2H2a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1v1a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V3a2 2 0 0 0-2-2zM4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2H4zm1 5a2 2 0 0 0-2 2v1H2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1v-1a2 2 0 0 0-2-2zm7 2v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1\" />\n                    </svg>', 'bi-printer', 'icon', NULL, NULL),
('11', '1', 'Reports', 'Data-Driven Decisions.', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-qr-code-scan text-skin-base dark:text-skin-base size-6\" viewBox=\"0 0 16 16\">\n                    <path fill-rule=\"evenodd\" d=\"M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5\"></path>\n                    </svg>', 'bi-arrow-right-circle-fill', 'icon', NULL, NULL);


-- Table structure for table `front_review_settings`
DROP TABLE IF EXISTS `front_review_settings`;
CREATE TABLE `front_review_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `language_setting_id` bigint unsigned DEFAULT NULL,
  `reviews` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reviewer_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reviewer_designation` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `front_review_settings_language_setting_id_foreign` (`language_setting_id`),
  CONSTRAINT `front_review_settings_language_setting_id_foreign` FOREIGN KEY (`language_setting_id`) REFERENCES `language_settings` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `front_review_settings`
INSERT INTO `front_review_settings` VALUES
('1', '1', '\" It has completely transformed how we operate. Managing orders, tables, and staff all from one platform has reduced our workload and made everything run more smoothly. \"', 'John Martin', 'Owner of Riverbend Bistro', NULL, NULL),
('2', '1', '\" The QR Code menu and payment integration have made a huge difference for us, especially after the pandemic. Customers love the ease, and we’ve seen faster table turnover.\"', 'Emily Thompson', 'Manager at Lakeside Grill', NULL, NULL),
('3', '1', '\" We are able to track every order in real time, keep our menu updated, and quickly manage payments. It is like having an extra set of hands in the restaurant.\"', 'Michael Scott', 'Owner of Downtown Eats', NULL, NULL);


-- Table structure for table `global_currencies`
DROP TABLE IF EXISTS `global_currencies`;
CREATE TABLE `global_currencies` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `currency_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_symbol` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exchange_rate` decimal(16,2) DEFAULT NULL,
  `usd_price` decimal(16,2) DEFAULT NULL,
  `is_cryptocurrency` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `currency_position` enum('left','right','left_with_space','right_with_space') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'left',
  `no_of_decimal` int unsigned NOT NULL DEFAULT '2',
  `thousand_separator` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `decimal_separator` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('enable','disable') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enable',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_currencies`
INSERT INTO `global_currencies` VALUES
('1', 'Dollars', '$', 'USD', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-11-27 00:00:26', '2025-11-27 00:00:26', NULL),
('2', 'Rupee', '₹', 'INR', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-11-27 00:00:26', '2025-11-27 01:08:37', '2025-11-27 01:08:37'),
('3', 'Pounds', '£', 'GBP', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-11-27 00:00:26', '2025-11-27 00:00:26', NULL),
('4', 'Euros', '€', 'EUR', NULL, NULL, 'no', 'left', '2', ',', '.', 'enable', '2025-11-27 00:00:26', '2025-11-27 00:00:26', NULL),
('5', 'BGN', 'лв', 'BGN', NULL, NULL, 'no', 'right', '2', ',', '.', 'enable', '2025-11-27 01:09:08', '2025-11-27 01:09:08', NULL);


-- Table structure for table `global_invoices`
DROP TABLE IF EXISTS `global_invoices`;
CREATE TABLE `global_invoices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `currency_id` bigint unsigned DEFAULT NULL,
  `package_id` bigint unsigned DEFAULT NULL,
  `global_subscription_id` bigint unsigned DEFAULT NULL,
  `offline_method_id` bigint unsigned DEFAULT NULL,
  `signature` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_total` int DEFAULT NULL,
  `total` int DEFAULT NULL,
  `billing_frequency` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_interval` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `recurring` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subscription_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invoice_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `stripe_invoice_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pay_date` datetime DEFAULT NULL,
  `next_pay_date` datetime DEFAULT NULL,
  `gateway_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('active','inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `m_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pf_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_plan` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `global_invoices_restaurant_id_foreign` (`restaurant_id`),
  KEY `global_invoices_currency_id_foreign` (`currency_id`),
  KEY `global_invoices_package_id_foreign` (`package_id`),
  KEY `global_invoices_global_subscription_id_foreign` (`global_subscription_id`),
  KEY `global_invoices_offline_method_id_foreign` (`offline_method_id`),
  CONSTRAINT `global_invoices_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_global_subscription_id_foreign` FOREIGN KEY (`global_subscription_id`) REFERENCES `global_subscriptions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_offline_method_id_foreign` FOREIGN KEY (`offline_method_id`) REFERENCES `offline_payment_methods` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_invoices_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_invoices`
INSERT INTO `global_invoices` VALUES
('1', '1', '1', '5', '1', NULL, NULL, NULL, 'RY98HHWAEYKLT4S', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 00:00:51', '2025-12-27 00:00:51', 'offline', 'active', '2025-11-27 00:00:51', '2025-11-27 00:00:51', NULL, NULL, NULL),
('2', '2', '1', '5', '2', NULL, NULL, NULL, 'TOYEODPXFXUJF4E', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 01:20:35', '2025-12-27 01:20:35', 'offline', 'active', '2025-11-27 01:20:35', '2025-11-27 01:20:35', NULL, NULL, NULL),
('3', '2', '1', '1', '3', NULL, NULL, NULL, 'VRJEXMQNRZXHIUN', NULL, NULL, 'monthly', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 00:00:00', '2025-12-27 00:00:00', 'offline', NULL, '2025-11-27 01:39:16', '2025-11-27 01:39:16', NULL, NULL, NULL),
('4', '3', '1', '5', '4', NULL, NULL, NULL, 'RV6LPXAYM0AD6ES', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 10:17:19', '2025-12-27 10:17:19', 'offline', 'active', '2025-11-27 10:17:19', '2025-11-27 10:17:19', NULL, NULL, NULL),
('5', '4', '1', '5', '5', NULL, NULL, NULL, 'LAVU3JROEPIKWEA', NULL, NULL, 'trial', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-01 11:34:12', '2025-12-31 11:34:12', 'offline', 'active', '2025-12-01 11:34:12', '2025-12-01 11:34:12', NULL, NULL, NULL),
('6', '3', '1', '1', '6', NULL, NULL, NULL, 'ESWP7SHKSTIYJ4S', NULL, NULL, 'monthly', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-03 00:00:00', '2026-01-03 00:00:00', 'offline', NULL, '2025-12-03 09:35:22', '2025-12-03 09:35:22', NULL, NULL, NULL),
('7', '3', '1', '1', '7', NULL, NULL, NULL, 'MSPHTZKCNX4LX7L', NULL, NULL, 'annual', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-03 00:00:00', '2026-12-03 00:00:00', 'offline', NULL, '2025-12-03 09:45:43', '2025-12-03 09:45:43', NULL, NULL, NULL),
('8', '3', '4', '6', '8', NULL, NULL, NULL, 'X4J0IJOX2DZY8UZ', NULL, NULL, 'annual', NULL, '300', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-03 00:00:00', '2026-12-03 00:00:00', 'offline', NULL, '2025-12-03 15:02:46', '2025-12-03 15:02:46', NULL, NULL, NULL),
('9', '2', '1', '3', '9', NULL, NULL, NULL, 'PWK55ZN5FVI5Q2I', NULL, NULL, 'lifetime', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-11 00:00:00', NULL, 'offline', NULL, '2025-12-11 05:45:00', '2025-12-11 05:45:00', NULL, NULL, NULL),
('10', '1', '1', '1', '10', NULL, NULL, NULL, 'TZP2MCN3VO0KJVG', NULL, NULL, 'monthly', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-27 00:00:05', '2026-01-27 00:00:00', 'offline', NULL, '2025-12-27 00:00:05', '2025-12-27 00:00:05', NULL, NULL, NULL),
('11', '4', '1', '1', '11', NULL, NULL, NULL, 'T3ZTVECFKGGDPOJ', NULL, NULL, 'monthly', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-31 00:00:04', '2026-01-31 00:00:00', 'offline', NULL, '2025-12-31 00:00:04', '2025-12-31 00:00:04', NULL, NULL, NULL),
('12', '3', '4', '7', '12', NULL, NULL, NULL, 'XMMJQKG3NNCX8UJ', NULL, NULL, 'monthly', NULL, '50', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-31 00:00:00', '2026-01-31 00:00:00', 'offline', NULL, '2025-12-31 14:40:09', '2025-12-31 14:40:09', NULL, NULL, NULL),
('13', '3', '4', '7', '13', NULL, NULL, NULL, 'N3JBCVJGXFQQVX8', NULL, NULL, 'monthly', NULL, '50', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2026-12-01 00:00:00', '2027-01-01 00:00:00', 'offline', NULL, '2026-01-14 15:30:56', '2026-01-14 15:30:56', NULL, NULL, NULL);


-- Table structure for table `global_settings`
DROP TABLE IF EXISTS `global_settings`;
CREATE TABLE `global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `last_license_verified_at` timestamp NULL DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `privacy_policy_link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `show_privacy_consent_checkbox` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `theme_hex` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `theme_rgb` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en',
  `license_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hide_cron_job` tinyint(1) NOT NULL DEFAULT '0',
  `last_cron_run` timestamp NULL DEFAULT NULL,
  `system_update` tinyint(1) NOT NULL DEFAULT '1',
  `purchased_on` timestamp NULL DEFAULT NULL,
  `timezone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'Asia/Kolkata',
  `disable_landing_site` tinyint(1) NOT NULL DEFAULT '0',
  `landing_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'dynamic',
  `landing_site_type` enum('theme','custom') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'theme',
  `landing_site_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `installed_url` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `requires_approval_after_signup` tinyint(1) NOT NULL DEFAULT '0',
  `facebook_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `yelp_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `default_currency_id` bigint unsigned DEFAULT NULL,
  `show_logo_text` tinyint(1) NOT NULL DEFAULT '1',
  `meta_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_keyword` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `upload_fav_icon_android_chrome_192` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_fav_icon_android_chrome_512` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_fav_icon_apple_touch_icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_favicon_16` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_favicon_32` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `favicon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `webmanifest` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_pwa_install_alert_show` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
  `google_map_api_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `session_driver` enum('file','database') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'database',
  `enable_stripe` tinyint(1) NOT NULL DEFAULT '1',
  `enable_razorpay` tinyint(1) NOT NULL DEFAULT '1',
  `enable_flutterwave` tinyint(1) NOT NULL DEFAULT '1',
  `enable_payfast` tinyint(1) NOT NULL DEFAULT '1',
  `enable_paypal` tinyint(1) NOT NULL DEFAULT '1',
  `enable_paystack` tinyint(1) NOT NULL DEFAULT '1',
  `enable_xendit` tinyint(1) NOT NULL DEFAULT '1',
  `enable_paddle` tinyint(1) NOT NULL DEFAULT '1',
  `enable_epay` tinyint(1) NOT NULL DEFAULT '1',
  `total_vonage_count` int NOT NULL DEFAULT '0',
  `total_msg91_count` int NOT NULL DEFAULT '0',
  `vapid_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vapid_private_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vapid_subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'mailto:admin@example.com',
  PRIMARY KEY (`id`),
  KEY `global_settings_default_currency_id_foreign` (`default_currency_id`),
  CONSTRAINT `global_settings_default_currency_id_foreign` FOREIGN KEY (`default_currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_settings`
INSERT INTO `global_settings` VALUES
('1', 'f3df92ea-3eeb-4590-a8b2-590708746953', '2026-05-28 03:22:33', '2026-06-02 19:30:29', NULL, NULL, '0', '2025-11-27 00:00:50', '2026-06-02 19:30:29', 'HelloPOS', '79f77b44048cfb567be61864be9047c0.png', '#2563EB', '37, 99, 235', 'en', 'Extended License', '1', '2026-05-04 18:49:03', '1', '2025-11-26 12:22:33', 'Europe/Istanbul', '0', 'dynamic', 'theme', NULL, 'https://hellopos.online', '0', 'https://www.facebook.com/', 'https://www.instagram.com/', 'https://www.twitter.com/', NULL, '4', '0', NULL, NULL, NULL, 'android-chrome-192x192.png', 'android-chrome-512x512.png', 'apple-touch-icon.png', 'favicon-16x16.png', 'favicon-32x32.png', 'favicon.ico', '2c5a5bcb0db9f9c4be4e7fae30705b66', NULL, '0', NULL, 'file', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '0', 'BP7RMCqpptbFPqy6TSJBGU2ow_wCyR1e-2HVjmUvAwNRqqXBZ815LrNtYHrnWDLlEKJi7g1eHKQd9uj2EKa8cbw', 'Jlsidx3jdSDQuGZ2roxoWN1DUORRNfpaFOiU3R6BU-g', 'mailto:admin@hellopos.online');


-- Table structure for table `global_subscriptions`
DROP TABLE IF EXISTS `global_subscriptions`;
CREATE TABLE `global_subscriptions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `package_id` bigint unsigned DEFAULT NULL,
  `currency_id` bigint unsigned DEFAULT NULL,
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `plan_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `quantity` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_plan` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_price` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trial_ends_at` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subscription_status` enum('active','inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ends_at` datetime DEFAULT NULL,
  `subscribed_on_date` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `subscription_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_payment_ref` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_customer_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_plan` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `global_subscriptions_restaurant_id_foreign` (`restaurant_id`),
  KEY `global_subscriptions_package_id_foreign` (`package_id`),
  KEY `global_subscriptions_currency_id_foreign` (`currency_id`),
  CONSTRAINT `global_subscriptions_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `global_subscriptions_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `global_subscriptions_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `global_subscriptions`
INSERT INTO `global_subscriptions` VALUES
('1', '1', '5', '1', 'trial', NULL, 'RY98HHWAEYKLT4S', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-12-27 00:00:51', 'inactive', '2025-12-27 00:00:51', '2025-11-27 00:00:51', '2025-11-27 00:00:51', '2025-12-27 00:00:05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('2', '2', '5', '1', 'trial', NULL, 'TOYEODPXFXUJF4E', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-12-27 01:20:35', 'inactive', '2025-12-27 01:20:35', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '2025-11-27 01:39:16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('3', '2', '1', '1', 'monthly', NULL, 'VRJEXMQNRZXHIUN', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'inactive', NULL, '2025-11-27 01:39:16', '2025-11-27 01:39:16', '2025-12-11 05:45:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('4', '3', '5', '1', 'trial', NULL, 'RV6LPXAYM0AD6ES', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-12-27 10:17:19', 'inactive', '2025-12-27 10:17:19', '2025-11-27 10:17:19', '2025-11-27 10:17:19', '2025-12-03 09:35:22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('5', '4', '5', '1', 'trial', NULL, 'LAVU3JROEPIKWEA', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', '2025-12-31 11:34:12', 'inactive', '2025-12-31 11:34:12', '2025-12-01 11:34:12', '2025-12-01 11:34:12', '2025-12-31 00:00:04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('6', '3', '1', '1', 'monthly', NULL, 'ESWP7SHKSTIYJ4S', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'inactive', NULL, '2025-12-03 09:35:22', '2025-12-03 09:35:22', '2025-12-03 09:45:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('7', '3', '1', '1', 'annual', NULL, 'MSPHTZKCNX4LX7L', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'inactive', NULL, '2025-12-03 09:45:43', '2025-12-03 09:45:43', '2025-12-03 15:02:46', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('8', '3', '6', '4', 'annual', NULL, 'X4J0IJOX2DZY8UZ', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'inactive', '2027-01-03 00:00:00', '2025-12-03 00:00:00', '2025-12-03 15:02:46', '2025-12-31 14:40:09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('9', '2', '3', '1', 'lifetime', NULL, 'PWK55ZN5FVI5Q2I', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', NULL, '2025-12-11 00:00:00', '2025-12-11 05:45:00', '2025-12-11 05:45:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('10', '1', '1', '1', 'monthly', NULL, 'TZP2MCN3VO0KJVG', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', '2026-01-27 00:00:00', '2025-12-27 00:00:05', '2025-12-27 00:00:05', '2025-12-27 00:00:05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('11', '4', '1', '1', 'monthly', NULL, 'T3ZTVECFKGGDPOJ', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', '2026-01-31 00:00:00', '2025-12-31 00:00:04', '2025-12-31 00:00:04', '2025-12-31 00:00:04', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('12', '3', '7', '4', 'monthly', NULL, 'XMMJQKG3NNCX8UJ', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'inactive', '2026-01-31 00:00:00', '2025-12-31 00:00:00', '2025-12-31 14:40:09', '2026-01-14 15:30:56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('13', '3', '7', '4', 'monthly', NULL, 'N3JBCVJGXFQQVX8', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 'offline', NULL, 'active', '2026-12-01 00:00:00', '2026-12-01 00:00:00', '2026-01-14 15:30:56', '2026-01-14 15:30:56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `inventory_global_settings`
DROP TABLE IF EXISTS `inventory_global_settings`;
CREATE TABLE `inventory_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_global_settings`
INSERT INTO `inventory_global_settings` VALUES
('1', NULL, '384c0006-c196-4a86-bfa0-4a1d78192734', NULL, '2026-05-28 03:22:34', '1', '2025-11-27 00:59:41', '2025-12-27 21:45:02');


-- Table structure for table `inventory_item_categories`
DROP TABLE IF EXISTS `inventory_item_categories`;
CREATE TABLE `inventory_item_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_item_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `inventory_item_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_item_categories`
INSERT INTO `inventory_item_categories` VALUES
('1', '1', 'Meat & Poultry', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('2', '1', 'Seafood', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('3', '1', 'Dairy & Eggs', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('4', '1', 'Fresh Produce', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('5', '1', 'Herbs & Spices', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('6', '1', 'Dry Goods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('7', '1', 'Canned Goods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('8', '1', 'Beverages', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('9', '1', 'Condiments & Sauces', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('10', '1', 'Baking Supplies', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('11', '1', 'Oils & Vinegars', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('12', '1', 'Frozen Foods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('13', '1', 'Cleaning Supplies', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('14', '1', 'Kitchen Equipment', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('15', '1', 'Disposables', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('16', '2', 'Meat & Poultry', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('17', '2', 'Seafood', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('18', '2', 'Dairy & Eggs', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('19', '2', 'Fresh Produce', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('20', '2', 'Herbs & Spices', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('21', '2', 'Dry Goods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('22', '2', 'Canned Goods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('23', '2', 'Beverages', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('24', '2', 'Condiments & Sauces', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('25', '2', 'Baking Supplies', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('26', '2', 'Oils & Vinegars', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('27', '2', 'Frozen Foods', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('28', '2', 'Cleaning Supplies', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('29', '2', 'Kitchen Equipment', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('30', '2', 'Disposables', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('31', '3', 'Meat & Poultry', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('32', '3', 'Seafood', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('33', '3', 'Dairy & Eggs', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('34', '3', 'Fresh Produce', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('35', '3', 'Herbs & Spices', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('36', '3', 'Dry Goods', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('37', '3', 'Canned Goods', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('38', '3', 'Beverages', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('39', '3', 'Condiments & Sauces', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('40', '3', 'Baking Supplies', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('41', '3', 'Oils & Vinegars', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('42', '3', 'Frozen Foods', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('43', '3', 'Cleaning Supplies', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('44', '3', 'Kitchen Equipment', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('45', '3', 'Disposables', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('46', '4', 'Meat & Poultry', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('47', '4', 'Seafood', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('48', '4', 'Dairy & Eggs', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('49', '4', 'Fresh Produce', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('50', '4', 'Herbs & Spices', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('51', '4', 'Dry Goods', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('52', '4', 'Canned Goods', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('53', '4', 'Beverages', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('54', '4', 'Condiments & Sauces', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('55', '4', 'Baking Supplies', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('56', '4', 'Oils & Vinegars', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('57', '4', 'Frozen Foods', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('58', '4', 'Cleaning Supplies', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('59', '4', 'Kitchen Equipment', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('60', '4', 'Disposables', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('61', '4', 'Cocktails', '2025-11-27 18:25:24', '2025-11-27 18:25:24'),
('62', '5', 'Meat & Poultry', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('63', '5', 'Seafood', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('64', '5', 'Dairy & Eggs', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('65', '5', 'Fresh Produce', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('66', '5', 'Herbs & Spices', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('67', '5', 'Dry Goods', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('68', '5', 'Canned Goods', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('69', '5', 'Beverages', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('70', '5', 'Condiments & Sauces', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('71', '5', 'Baking Supplies', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('72', '5', 'Oils & Vinegars', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('73', '5', 'Frozen Foods', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('74', '5', 'Cleaning Supplies', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('75', '5', 'Kitchen Equipment', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('76', '5', 'Disposables', '2025-12-01 11:34:12', '2025-12-01 11:34:12');


-- Table structure for table `inventory_items`
DROP TABLE IF EXISTS `inventory_items`;
CREATE TABLE `inventory_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `inventory_item_category_id` bigint unsigned NOT NULL,
  `unit_id` bigint unsigned NOT NULL,
  `threshold_quantity` decimal(16,3) DEFAULT '0.000',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `preferred_supplier_id` bigint unsigned DEFAULT NULL,
  `photo_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reorder_quantity` decimal(16,3) DEFAULT '0.000',
  `unit_purchase_price` decimal(16,3) DEFAULT '0.000',
  PRIMARY KEY (`id`),
  KEY `inventory_items_branch_id_foreign` (`branch_id`),
  KEY `inventory_items_inventory_item_category_id_foreign` (`inventory_item_category_id`),
  KEY `inventory_items_unit_id_foreign` (`unit_id`),
  KEY `inventory_items_preferred_supplier_id_foreign` (`preferred_supplier_id`),
  CONSTRAINT `inventory_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_items_inventory_item_category_id_foreign` FOREIGN KEY (`inventory_item_category_id`) REFERENCES `inventory_item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_items_preferred_supplier_id_foreign` FOREIGN KEY (`preferred_supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL,
  CONSTRAINT `inventory_items_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `inventory_movements`
DROP TABLE IF EXISTS `inventory_movements`;
CREATE TABLE `inventory_movements` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `inventory_item_id` bigint unsigned NOT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `batch_production_id` bigint unsigned DEFAULT NULL,
  `quantity` decimal(16,3) DEFAULT '0.000',
  `transaction_type` enum('in','out','waste','transfer') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'in',
  `waste_reason` enum('expiry','spoilage','customer_complaint','over_preparation','other') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `added_by` bigint unsigned DEFAULT NULL,
  `supplier_id` bigint unsigned DEFAULT NULL,
  `transfer_branch_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `unit_purchase_price` decimal(16,3) DEFAULT '0.000',
  `expiration_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_movements_branch_id_foreign` (`branch_id`),
  KEY `inventory_movements_inventory_item_id_foreign` (`inventory_item_id`),
  KEY `inventory_movements_added_by_foreign` (`added_by`),
  KEY `inventory_movements_supplier_id_foreign` (`supplier_id`),
  KEY `inventory_movements_transfer_branch_id_foreign` (`transfer_branch_id`),
  KEY `inventory_movements_order_id_foreign` (`order_id`),
  KEY `inventory_movements_batch_production_id_foreign` (`batch_production_id`),
  CONSTRAINT `inventory_movements_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_batch_production_id_foreign` FOREIGN KEY (`batch_production_id`) REFERENCES `batch_productions` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_supplier_id_foreign` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `inventory_movements_transfer_branch_id_foreign` FOREIGN KEY (`transfer_branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `inventory_settings`
DROP TABLE IF EXISTS `inventory_settings`;
CREATE TABLE `inventory_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `allow_auto_purchase` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `inventory_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `inventory_settings`
INSERT INTO `inventory_settings` VALUES
('1', '1', '0', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('2', '1', '0', '2025-11-27 01:00:04', '2025-11-27 01:00:04'),
('3', '2', '0', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('4', '3', '1', '2025-11-27 10:17:19', '2026-03-27 20:28:52'),
('5', '4', '0', '2025-12-01 11:34:12', '2025-12-01 11:34:12');


-- Table structure for table `inventory_stocks`
DROP TABLE IF EXISTS `inventory_stocks`;
CREATE TABLE `inventory_stocks` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `inventory_item_id` bigint unsigned NOT NULL,
  `quantity` decimal(16,3) DEFAULT '0.000',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `inventory_stocks_branch_id_foreign` (`branch_id`),
  KEY `inventory_stocks_inventory_item_id_foreign` (`inventory_item_id`),
  CONSTRAINT `inventory_stocks_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `inventory_stocks_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `item_categories`
DROP TABLE IF EXISTS `item_categories`;
CREATE TABLE `item_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `category_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `sort_order` int unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item_categories_branch_id_foreign` (`branch_id`),
  CONSTRAINT `item_categories_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `item_categories`
INSERT INTO `item_categories` VALUES
('1', '3', '{\"en\":\"Pizzaaa\"}', '0', '2025-11-27 01:35:29', '2025-11-27 01:35:29'),
('2', '4', '{\"en\":\"Soft Drinks\"}', '0', '2025-11-27 10:27:59', '2025-11-27 10:27:59'),
('3', '4', '{\"en\":\"Beer\"}', '0', '2025-11-27 10:28:20', '2025-11-27 11:29:12'),
('4', '4', '{\"en\":\"Wine\"}', '0', '2025-11-27 10:28:29', '2025-11-27 11:29:05'),
('5', '4', '{\"en\":\"Vodka\"}', '0', '2025-11-27 10:28:37', '2025-11-27 10:28:37'),
('6', '4', '{\"en\":\"Whisky\"}', '0', '2025-11-27 10:28:45', '2025-11-27 11:29:38'),
('7', '4', '{\"en\":\"Rakia\"}', '0', '2025-11-27 10:30:33', '2025-11-27 10:30:33'),
('8', '4', '{\"en\":\"Gin\"}', '0', '2025-11-27 10:31:04', '2025-11-27 10:31:04'),
('9', '4', '{\"en\":\"Food\"}', '0', '2025-11-27 10:31:20', '2025-11-27 10:31:20'),
('10', '4', '{\"en\":\"Shisha\"}', '0', '2025-11-27 10:31:31', '2025-11-27 10:31:31'),
('11', '4', '{\"en\":\"Others\"}', '0', '2025-11-27 10:32:14', '2025-11-27 10:32:14'),
('12', '4', '{\"en\":\"Shots\"}', '0', '2025-11-27 10:32:24', '2025-11-27 10:32:24'),
('13', '4', '{\"en\":\"Karaoke\"}', '0', '2025-11-27 10:32:35', '2025-11-27 10:32:35'),
('14', '4', '{\"en\":\"Rum\"}', '0', '2025-11-27 10:33:03', '2025-11-27 10:33:03'),
('15', '4', '{\"en\":\"Cocktail\"}', '0', '2025-11-27 18:26:08', '2025-11-27 18:26:08'),
('16', '5', '{\"en\":\"Wine glass\"}', '0', '2025-12-01 11:47:37', '2025-12-01 11:47:37'),
('17', '5', '{\"en\":\"Beer\"}', '0', '2025-12-01 11:47:53', '2025-12-01 11:47:53'),
('18', '5', '{\"en\":\"Draught Beer\"}', '0', '2025-12-01 11:48:15', '2025-12-01 11:48:15'),
('19', '5', '{\"en\":\"Wine\"}', '0', '2025-12-01 11:49:18', '2025-12-01 11:49:18'),
('20', '1', '{\"en\":\"Pizza\"}', '0', '2026-01-19 07:07:38', '2026-01-19 07:07:38'),
('21', '1', '{\"en\":\"Burgers\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('22', '1', '{\"en\":\"Sides\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('23', '1', '{\"en\":\"Beverages\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('24', '1', '{\"en\":\"Desserts\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('25', '1', '{\"en\":\"Pasta\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('26', '1', '{\"en\":\"Sandwiches\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39');


-- Table structure for table `item_modifiers`
DROP TABLE IF EXISTS `item_modifiers`;
CREATE TABLE `item_modifiers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `modifier_group_id` bigint unsigned DEFAULT NULL,
  `is_required` tinyint(1) NOT NULL DEFAULT '0',
  `allow_multiple_selection` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item_modifiers_menu_item_id_foreign` (`menu_item_id`),
  KEY `item_modifiers_modifier_group_id_foreign` (`modifier_group_id`),
  KEY `item_modifiers_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  CONSTRAINT `item_modifiers_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `item_modifiers_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `item_modifiers_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `job_batches`
DROP TABLE IF EXISTS `job_batches`;
CREATE TABLE `job_batches` (
  `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `total_jobs` int NOT NULL,
  `pending_jobs` int NOT NULL,
  `failed_jobs` int NOT NULL,
  `failed_job_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `cancelled_at` int DEFAULT NULL,
  `created_at` int NOT NULL,
  `finished_at` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `jobs`
DROP TABLE IF EXISTS `jobs`;
CREATE TABLE `jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint unsigned NOT NULL,
  `reserved_at` int unsigned DEFAULT NULL,
  `available_at` int unsigned NOT NULL,
  `created_at` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB AUTO_INCREMENT=63385 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kiosk_ads`
DROP TABLE IF EXISTS `kiosk_ads`;
CREATE TABLE `kiosk_ads` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `heading` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kiosk_global_settings`
DROP TABLE IF EXISTS `kiosk_global_settings`;
CREATE TABLE `kiosk_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kiosk_global_settings`
INSERT INTO `kiosk_global_settings` VALUES
('1', NULL, '384c0006-c196-4a86-bfa0-4a1d78192734', NULL, '2026-05-28 03:22:34', '1', '2025-11-27 01:01:24', '2025-11-27 01:01:26');


-- Table structure for table `kiosks`
DROP TABLE IF EXISTS `kiosks`;
CREATE TABLE `kiosks` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `require_name` tinyint(1) NOT NULL DEFAULT '1',
  `require_email` tinyint(1) NOT NULL DEFAULT '0',
  `require_phone` tinyint(1) NOT NULL DEFAULT '1',
  `last_seen_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `kiosks_branch_id_code_unique` (`branch_id`,`code`),
  UNIQUE KEY `kiosks_branch_id_name_unique` (`branch_id`,`name`),
  CONSTRAINT `kiosks_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kiosks`
INSERT INTO `kiosks` VALUES
('1', '1', '333301', 'Carolyneton', '1', '1', '0', '1', NULL, '2025-11-27 01:01:25', '2025-11-27 01:01:25'),
('2', '2', '716802', 'Watersmouth', '1', '1', '0', '1', NULL, '2025-11-27 01:01:25', '2025-11-27 01:01:25');


-- Table structure for table `kitchen_global_settings`
DROP TABLE IF EXISTS `kitchen_global_settings`;
CREATE TABLE `kitchen_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kitchen_global_settings`
INSERT INTO `kitchen_global_settings` VALUES
('1', NULL, NULL, NULL, NULL, '1', '2025-11-27 00:59:55', '2025-11-27 00:59:55');


-- Table structure for table `kot_cancel_reasons`
DROP TABLE IF EXISTS `kot_cancel_reasons`;
CREATE TABLE `kot_cancel_reasons` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cancel_order` tinyint(1) NOT NULL DEFAULT '0',
  `cancel_kot` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_cancel_reasons_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `kot_cancel_reasons_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_cancel_reasons`
INSERT INTO `kot_cancel_reasons` VALUES
('1', '1', 'Customer changed their mind', '1', '0', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('2', '1', 'Customer requested to cancel', '1', '0', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('3', '1', 'Payment issues', '1', '0', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('4', '1', 'Customer no longer wants the order', '1', '0', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('5', '1', 'Ingredient not available', '0', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('6', '1', 'Preparation time too long', '0', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('7', '1', 'Quality issue with ingredients', '0', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('8', '1', 'System error/Technical issue', '1', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('9', '1', 'Restaurant closing early', '1', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('10', '1', 'Other', '1', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55');


-- Table structure for table `kot_item_modifier_options`
DROP TABLE IF EXISTS `kot_item_modifier_options`;
CREATE TABLE `kot_item_modifier_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `kot_item_id` bigint unsigned NOT NULL,
  `modifier_option_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_item_modifier_options_kot_item_id_foreign` (`kot_item_id`),
  KEY `kot_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `kot_item_modifier_options_kot_item_id_foreign` FOREIGN KEY (`kot_item_id`) REFERENCES `kot_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kot_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `kot_items`
DROP TABLE IF EXISTS `kot_items`;
CREATE TABLE `kot_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `kot_id` bigint unsigned NOT NULL,
  `order_item_id` bigint unsigned DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `menu_item_id` bigint unsigned NOT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `quantity` int NOT NULL,
  `status` enum('pending','cooking','ready','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cancel_reason_id` bigint unsigned DEFAULT NULL,
  `cancel_reason_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `cancelled_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_items_kot_id_foreign` (`kot_id`),
  KEY `kot_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `kot_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `kot_items_cancel_reason_id_foreign` (`cancel_reason_id`),
  KEY `kot_items_order_item_id_foreign` (`order_item_id`),
  KEY `kot_items_cancelled_by_foreign` (`cancelled_by`),
  CONSTRAINT `kot_items_cancel_reason_id_foreign` FOREIGN KEY (`cancel_reason_id`) REFERENCES `kot_cancel_reasons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kot_items_cancelled_by_foreign` FOREIGN KEY (`cancelled_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `kot_items_kot_id_foreign` FOREIGN KEY (`kot_id`) REFERENCES `kots` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kot_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kot_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kot_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1229 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_items`
INSERT INTO `kot_items` VALUES
('1', '1', NULL, NULL, '1', NULL, '', '2', 'cancelled', NULL, NULL, NULL, '2025-11-27 05:35:38', '2025-12-03 09:41:17'),
('2', '2', NULL, 'TXN_692823934acec2.92384494_925936', '1', NULL, '', '1', 'ready', NULL, NULL, NULL, '2025-11-27 10:10:27', '2025-11-27 10:12:30'),
('3', '3', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-11-27 20:25:19', '2025-11-27 20:25:19'),
('4', '4', NULL, NULL, '1', NULL, '', '2', 'ready', NULL, NULL, NULL, '2025-11-30 08:48:31', '2025-12-11 05:55:07'),
('5', '5', NULL, 'TXN_692cb563ab1c15.92546994_541067', '57', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-11-30 21:21:39', '2025-11-30 21:21:39'),
('6', '6', NULL, NULL, '1', NULL, '', '3', 'ready', NULL, NULL, NULL, '2025-12-11 05:46:11', '2025-12-11 05:47:59'),
('7', '7', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-11 05:48:18', '2025-12-11 05:48:18'),
('8', '8', NULL, NULL, '1', NULL, '', '2', 'ready', NULL, NULL, NULL, '2025-12-11 05:50:31', '2025-12-11 05:51:12'),
('9', '9', NULL, NULL, '1', NULL, '', '1', 'ready', NULL, NULL, NULL, '2025-12-11 05:55:03', '2025-12-11 05:55:07'),
('10', '10', NULL, 'TXN_693c8906cd7e57.55486826_579531', '9', NULL, '', '3', 'ready', NULL, NULL, NULL, '2025-12-12 21:28:38', '2025-12-12 21:31:18'),
('11', '11', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-22 21:31:23', '2025-12-22 21:31:23'),
('12', '11', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-22 21:31:23', '2025-12-22 21:31:23'),
('14', '13', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-22 22:17:11', '2025-12-22 22:17:11'),
('15', '14', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2025-12-22 22:44:44', '2025-12-22 22:44:44'),
('16', '14', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-22 22:44:44', '2025-12-22 22:44:44'),
('17', '14', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-22 22:44:44', '2025-12-22 22:44:44'),
('18', '15', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-22 22:50:57', '2025-12-22 22:50:57'),
('19', '16', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-23 00:12:53', '2025-12-23 00:12:53'),
('20', '16', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-23 00:12:53', '2025-12-23 00:12:53'),
('21', '16', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 00:12:53', '2025-12-23 00:12:53'),
('22', '17', NULL, NULL, '47', NULL, '', '5', NULL, NULL, NULL, NULL, '2025-12-23 00:14:51', '2025-12-23 00:14:51'),
('23', '18', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 22:30:12', '2025-12-23 22:30:12'),
('24', '18', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 22:30:12', '2025-12-23 22:30:12'),
('25', '18', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 22:30:12', '2025-12-23 22:30:12'),
('26', '19', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 22:30:44', '2025-12-23 22:30:44'),
('27', '19', NULL, NULL, '14', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-23 22:30:44', '2025-12-23 22:30:44'),
('28', '20', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 22:59:39', '2025-12-23 22:59:39'),
('29', '21', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-23 23:00:32', '2025-12-23 23:00:32'),
('30', '22', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('31', '22', NULL, NULL, '31', NULL, '', '6', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('32', '22', NULL, NULL, '66', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('33', '22', NULL, NULL, '57', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('34', '22', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('35', '22', NULL, NULL, '3', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('36', '22', NULL, NULL, '44', NULL, '', '8', NULL, NULL, NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('37', '23', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 00:32:18', '2025-12-24 00:32:18'),
('38', '24', NULL, NULL, '44', NULL, '', '10', NULL, NULL, NULL, NULL, '2025-12-24 00:41:31', '2025-12-24 00:41:31'),
('39', '25', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2025-12-24 00:55:24', '2025-12-24 00:55:24'),
('40', '25', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 00:55:24', '2025-12-24 00:55:24'),
('41', '26', NULL, NULL, '44', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 00:55:53', '2025-12-24 00:55:53'),
('42', '27', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-24 01:14:57', '2025-12-24 01:14:57'),
('43', '28', NULL, NULL, '57', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 01:57:13', '2025-12-24 01:57:13'),
('44', '28', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2025-12-24 01:57:13', '2025-12-24 01:57:13'),
('45', '29', NULL, NULL, '47', NULL, '', '6', NULL, NULL, NULL, NULL, '2025-12-24 02:11:06', '2025-12-24 02:11:06'),
('46', '30', NULL, NULL, '21', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 02:25:23', '2025-12-24 02:25:23'),
('47', '30', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 02:25:23', '2025-12-24 02:25:23'),
('48', '30', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-24 02:25:23', '2025-12-24 02:25:23'),
('49', '31', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 20:10:03', '2025-12-24 20:10:03'),
('50', '32', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-24 21:11:55', '2025-12-24 21:11:55'),
('51', '33', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-27 21:48:30', '2025-12-27 21:48:30'),
('52', '34', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-27 21:49:01', '2025-12-27 21:49:01'),
('53', '35', NULL, NULL, '1', NULL, '', '4', NULL, NULL, NULL, NULL, '2025-12-27 21:49:37', '2025-12-27 21:49:37'),
('54', '36', NULL, NULL, '1', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-27 21:49:49', '2025-12-27 21:49:49'),
('55', '37', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 09:41:33', '2025-12-28 09:41:33'),
('56', '38', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 09:46:12', '2025-12-28 09:46:12'),
('57', '39', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 09:46:44', '2025-12-28 09:46:44'),
('58', '40', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 09:52:49', '2025-12-28 09:52:49'),
('59', '41', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-28 20:24:12', '2025-12-28 20:24:12'),
('60', '41', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 20:24:12', '2025-12-28 20:24:12'),
('61', '41', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2025-12-28 20:24:12', '2025-12-28 20:24:12'),
('62', '41', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-28 20:24:12', '2025-12-28 20:24:12'),
('63', '42', NULL, NULL, '29', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 20:59:31', '2025-12-28 20:59:31'),
('64', '42', NULL, NULL, '73', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-28 20:59:31', '2025-12-28 20:59:31'),
('65', '42', NULL, NULL, '75', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 20:59:31', '2025-12-28 20:59:31'),
('66', '42', NULL, NULL, '43', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-28 20:59:31', '2025-12-28 20:59:31'),
('67', '43', NULL, NULL, '9', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-28 22:02:24', '2025-12-28 22:02:24'),
('68', '43', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:02:24', '2025-12-28 22:02:24'),
('69', '44', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:03:42', '2025-12-28 22:03:42'),
('70', '44', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:03:42', '2025-12-28 22:03:42'),
('71', '44', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:03:42', '2025-12-28 22:03:42'),
('72', '45', NULL, NULL, '14', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-28 22:34:25', '2025-12-28 22:34:25'),
('73', '45', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:34:25', '2025-12-28 22:34:25'),
('74', '46', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 22:48:40', '2025-12-28 22:48:40'),
('75', '47', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2025-12-28 23:22:56', '2025-12-28 23:22:56'),
('76', '47', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:22:56', '2025-12-28 23:22:56'),
('77', '47', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:22:56', '2025-12-28 23:22:56'),
('78', '47', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:22:56', '2025-12-28 23:22:56'),
('79', '48', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:25:24', '2025-12-28 23:25:24'),
('80', '48', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:25:24', '2025-12-28 23:25:24'),
('81', '48', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:25:24', '2025-12-28 23:25:24'),
('82', '49', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-28 23:36:40', '2025-12-28 23:36:40'),
('83', '50', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-29 20:26:14', '2025-12-29 20:26:14'),
('84', '51', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-29 20:27:46', '2025-12-29 20:27:46'),
('85', '52', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-29 20:29:29', '2025-12-29 20:29:29'),
('86', '53', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 20:13:42', '2025-12-30 20:13:42'),
('87', '54', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-30 22:20:19', '2025-12-30 22:20:19'),
('88', '54', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 22:20:19', '2025-12-30 22:20:19'),
('89', '55', NULL, NULL, '85', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 22:58:09', '2025-12-30 22:58:09'),
('90', '55', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 22:58:09', '2025-12-30 22:58:09'),
('91', '55', NULL, NULL, '60', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 22:58:09', '2025-12-30 22:58:09'),
('92', '56', NULL, NULL, '50', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 23:18:07', '2025-12-30 23:18:07'),
('93', '56', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-30 23:18:07', '2025-12-30 23:18:07'),
('94', '57', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 23:19:37', '2025-12-30 23:19:37'),
('95', '58', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2025-12-30 23:35:00', '2025-12-30 23:35:00'),
('96', '58', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2025-12-30 23:35:00', '2025-12-30 23:35:00'),
('97', '59', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2025-12-30 23:55:27', '2025-12-30 23:55:27'),
('98', '60', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-14 15:25:44', '2026-01-14 15:25:44'),
('99', '61', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-14 15:25:59', '2026-01-14 15:25:59'),
('100', '62', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-15 11:03:50', '2026-01-15 11:03:50'),
('101', '63', NULL, NULL, '1', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-15 11:04:09', '2026-01-15 11:04:09'),
('102', '64', NULL, NULL, '94', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 07:07:55', '2026-01-19 07:07:55'),
('105', '66', NULL, NULL, '101', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 08:39:44', '2026-01-19 08:39:44'),
('106', '67', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 08:45:57', '2026-01-19 08:45:57'),
('107', '68', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 08:46:25', '2026-01-19 08:46:25'),
('108', '69', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:54:48', '2026-01-19 18:54:48'),
('109', '70', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:55:44', '2026-01-19 18:55:44'),
('110', '71', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:56:51', '2026-01-19 18:56:51'),
('111', '72', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:57:16', '2026-01-19 18:57:16'),
('112', '73', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:58:41', '2026-01-19 18:58:41'),
('113', '74', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 18:59:04', '2026-01-19 18:59:04'),
('114', '75', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:03:09', '2026-01-19 19:03:09'),
('115', '75', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:03:09', '2026-01-19 19:03:09'),
('116', '76', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:03:30', '2026-01-19 19:03:30'),
('117', '77', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:04:25', '2026-01-19 19:04:25'),
('118', '78', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:14:42', '2026-01-19 19:14:42'),
('119', '79', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:15:36', '2026-01-19 19:15:36'),
('120', '80', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 19:19:38', '2026-01-19 19:19:38'),
('123', '82', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-19 21:49:03', '2026-01-19 21:49:03'),
('124', '83', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 21:51:01', '2026-01-19 21:51:01'),
('125', '83', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 21:51:01', '2026-01-19 21:51:01'),
('126', '83', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-19 21:51:01', '2026-01-19 21:51:01'),
('127', '84', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 21:57:31', '2026-01-19 21:57:31'),
('128', '85', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 22:25:35', '2026-01-19 22:25:35'),
('129', '86', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 22:45:24', '2026-01-19 22:45:24'),
('130', '87', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:10:11', '2026-01-19 23:10:11'),
('131', '88', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:10:57', '2026-01-19 23:10:57'),
('132', '89', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:36:37', '2026-01-19 23:36:37'),
('133', '90', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:37:04', '2026-01-19 23:37:04'),
('134', '91', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:53:49', '2026-01-19 23:53:49'),
('135', '92', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-19 23:56:15', '2026-01-19 23:56:15'),
('136', '93', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-20 00:10:00', '2026-01-20 00:10:00'),
('137', '94', NULL, NULL, '62', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-01-23 19:41:59', '2026-01-23 19:41:59'),
('138', '94', NULL, NULL, '4', NULL, '', '7', NULL, NULL, NULL, NULL, '2026-01-23 19:41:59', '2026-01-23 19:41:59'),
('139', '94', NULL, NULL, '2', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-01-23 19:41:59', '2026-01-23 19:41:59'),
('140', '94', NULL, NULL, '3', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-01-23 19:41:59', '2026-01-23 19:41:59'),
('141', '95', NULL, NULL, '105', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-01-23 19:46:17', '2026-01-23 19:46:17'),
('142', '96', NULL, NULL, '62', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('143', '96', NULL, NULL, '105', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('144', '96', NULL, NULL, '2', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('145', '96', NULL, NULL, '7', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('146', '96', NULL, NULL, '25', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('147', '97', NULL, NULL, '27', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 20:40:49', '2026-01-23 20:40:49'),
('148', '98', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-23 20:42:03', '2026-01-23 20:42:03'),
('149', '98', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 20:42:03', '2026-01-23 20:42:03'),
('150', '98', NULL, NULL, '105', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 20:42:03', '2026-01-23 20:42:03'),
('151', '99', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 21:03:46', '2026-01-23 21:03:46'),
('152', '100', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-01-23 21:24:59', '2026-01-23 21:24:59'),
('153', '100', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 21:24:59', '2026-01-23 21:24:59'),
('154', '101', NULL, NULL, '14', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-23 21:53:18', '2026-01-23 21:53:18'),
('155', '102', NULL, NULL, '105', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 21:53:38', '2026-01-23 21:53:38'),
('156', '103', NULL, NULL, '40', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-01-23 22:34:39', '2026-01-23 22:34:39'),
('157', '103', NULL, NULL, '5', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-23 22:34:39', '2026-01-23 22:34:39'),
('158', '104', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 22:38:56', '2026-01-23 22:38:56'),
('159', '105', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 22:39:24', '2026-01-23 22:39:24'),
('160', '106', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 23:28:39', '2026-01-23 23:28:39'),
('161', '106', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 23:28:39', '2026-01-23 23:28:39'),
('162', '107', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 23:33:25', '2026-01-23 23:33:25'),
('163', '107', NULL, NULL, '47', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-23 23:33:25', '2026-01-23 23:33:25'),
('164', '108', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-24 00:24:19', '2026-01-24 00:24:19'),
('165', '109', NULL, NULL, '21', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-25 18:42:11', '2026-01-25 18:42:11'),
('166', '109', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-25 18:42:11', '2026-01-25 18:42:11'),
('167', '109', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-25 18:42:11', '2026-01-25 18:42:11'),
('168', '110', NULL, NULL, '48', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-27 23:31:08', '2026-01-27 23:31:08'),
('169', '110', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-27 23:31:08', '2026-01-27 23:31:08'),
('170', '110', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-27 23:31:08', '2026-01-27 23:31:08'),
('171', '111', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-01-28 21:38:53', '2026-01-28 21:38:53'),
('172', '111', NULL, NULL, '87', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-28 21:38:53', '2026-01-28 21:38:53'),
('173', '111', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-28 21:38:53', '2026-01-28 21:38:53'),
('174', '112', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-28 21:40:12', '2026-01-28 21:40:12'),
('175', '113', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-28 22:51:20', '2026-01-28 22:51:20'),
('176', '113', NULL, NULL, '61', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-28 22:51:20', '2026-01-28 22:51:20'),
('177', '114', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-28 23:35:20', '2026-01-28 23:35:20'),
('178', '114', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-28 23:35:20', '2026-01-28 23:35:20'),
('179', '115', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-01-30 19:15:12', '2026-01-30 19:15:12'),
('180', '115', NULL, NULL, '4', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-30 19:15:12', '2026-01-30 19:15:12'),
('181', '115', NULL, NULL, '2', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-30 19:15:12', '2026-01-30 19:15:12'),
('182', '115', NULL, NULL, '25', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 19:15:12', '2026-01-30 19:15:12'),
('183', '115', NULL, NULL, '45', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 19:15:13', '2026-01-30 19:15:13'),
('184', '115', NULL, NULL, '27', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 19:15:13', '2026-01-30 19:15:13'),
('185', '115', NULL, NULL, '7', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 19:15:13', '2026-01-30 19:15:13'),
('186', '116', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-30 19:15:42', '2026-01-30 19:15:42'),
('187', '116', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 19:15:42', '2026-01-30 19:15:42'),
('188', '116', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 19:15:42', '2026-01-30 19:15:42'),
('189', '117', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 19:16:15', '2026-01-30 19:16:15'),
('190', '118', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 20:33:31', '2026-01-30 20:33:31'),
('191', '118', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 20:33:31', '2026-01-30 20:33:31'),
('192', '119', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('193', '119', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('194', '119', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('195', '119', NULL, NULL, '73', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('196', '119', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('197', '119', NULL, NULL, '44', NULL, '', '10', NULL, NULL, NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('198', '120', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 20:37:28', '2026-01-30 20:37:28'),
('199', '121', NULL, NULL, '3', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-01-30 21:46:05', '2026-01-30 21:46:05'),
('200', '121', NULL, NULL, '36', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 21:46:05', '2026-01-30 21:46:05'),
('201', '121', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 21:46:05', '2026-01-30 21:46:05'),
('202', '121', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 21:46:05', '2026-01-30 21:46:05'),
('203', '122', NULL, NULL, '31', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-01-30 22:07:47', '2026-01-30 22:07:47'),
('204', '122', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 22:07:47', '2026-01-30 22:07:47'),
('205', '123', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 22:47:26', '2026-01-30 22:47:26'),
('206', '123', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 22:47:26', '2026-01-30 22:47:26'),
('207', '123', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 22:47:26', '2026-01-30 22:47:26'),
('208', '124', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-30 22:56:45', '2026-01-30 22:56:45'),
('209', '125', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 23:05:37', '2026-01-30 23:05:37'),
('210', '125', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 23:05:37', '2026-01-30 23:05:37'),
('211', '125', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:05:37', '2026-01-30 23:05:37'),
('212', '126', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:17:59', '2026-01-30 23:17:59'),
('213', '126', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:17:59', '2026-01-30 23:17:59'),
('214', '126', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:17:59', '2026-01-30 23:17:59'),
('215', '127', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-30 23:25:00', '2026-01-30 23:25:00'),
('216', '127', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:25:00', '2026-01-30 23:25:00'),
('217', '127', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-30 23:25:00', '2026-01-30 23:25:00'),
('218', '128', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-30 23:25:50', '2026-01-30 23:25:50'),
('219', '129', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-30 23:56:52', '2026-01-30 23:56:52'),
('220', '130', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-30 23:57:23', '2026-01-30 23:57:23'),
('221', '131', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:12:16', '2026-01-31 00:12:16'),
('222', '131', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:12:16', '2026-01-31 00:12:16'),
('223', '131', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:12:16', '2026-01-31 00:12:16'),
('224', '132', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-31 00:12:41', '2026-01-31 00:12:41'),
('225', '133', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 00:27:17', '2026-01-31 00:27:17'),
('226', '134', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:43:33', '2026-01-31 00:43:33'),
('227', '134', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:43:33', '2026-01-31 00:43:33'),
('228', '134', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:43:33', '2026-01-31 00:43:33'),
('229', '135', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-31 00:48:50', '2026-01-31 00:48:50'),
('230', '135', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:48:50', '2026-01-31 00:48:50'),
('231', '136', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 00:49:10', '2026-01-31 00:49:10'),
('232', '137', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:04:16', '2026-01-31 01:04:16'),
('233', '137', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:04:16', '2026-01-31 01:04:16'),
('234', '137', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:04:16', '2026-01-31 01:04:16'),
('235', '138', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:15:11', '2026-01-31 01:15:11'),
('236', '138', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:15:11', '2026-01-31 01:15:11'),
('237', '138', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 01:15:11', '2026-01-31 01:15:11'),
('238', '139', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:43:18', '2026-01-31 19:43:18'),
('239', '139', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:43:18', '2026-01-31 19:43:18'),
('240', '139', NULL, NULL, '26', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:43:18', '2026-01-31 19:43:18'),
('241', '140', NULL, NULL, '60', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:44:15', '2026-01-31 19:44:15'),
('242', '140', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:44:15', '2026-01-31 19:44:15'),
('243', '141', NULL, NULL, '53', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:44:48', '2026-01-31 19:44:48'),
('244', '141', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:44:48', '2026-01-31 19:44:48'),
('245', '142', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 19:45:48', '2026-01-31 19:45:48'),
('246', '142', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:45:48', '2026-01-31 19:45:48'),
('247', '142', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 19:45:48', '2026-01-31 19:45:48'),
('248', '142', NULL, NULL, '8', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:45:48', '2026-01-31 19:45:48'),
('249', '143', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:54:37', '2026-01-31 19:54:37'),
('250', '144', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 19:54:56', '2026-01-31 19:54:56'),
('251', '145', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:14:14', '2026-01-31 20:14:14'),
('252', '146', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:15:04', '2026-01-31 20:15:04'),
('253', '146', NULL, NULL, '67', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 20:15:04', '2026-01-31 20:15:04'),
('254', '147', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-31 20:27:54', '2026-01-31 20:27:54'),
('255', '148', NULL, NULL, '3', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-31 20:33:50', '2026-01-31 20:33:50'),
('256', '148', NULL, NULL, '67', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-31 20:33:50', '2026-01-31 20:33:50'),
('257', '149', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:40:13', '2026-01-31 20:40:13'),
('258', '150', NULL, NULL, '67', NULL, '', '20', NULL, NULL, NULL, NULL, '2026-01-31 20:41:24', '2026-01-31 20:41:24'),
('259', '150', NULL, NULL, '30', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-01-31 20:41:24', '2026-01-31 20:41:24'),
('260', '150', NULL, NULL, '3', NULL, '', '10', NULL, NULL, NULL, NULL, '2026-01-31 20:41:24', '2026-01-31 20:41:24'),
('261', '151', NULL, NULL, '53', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:47:08', '2026-01-31 20:47:08'),
('262', '152', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:47:56', '2026-01-31 20:47:56'),
('263', '152', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:47:56', '2026-01-31 20:47:56'),
('264', '153', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 20:49:13', '2026-01-31 20:49:13'),
('265', '153', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:49:13', '2026-01-31 20:49:13'),
('266', '154', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 20:49:48', '2026-01-31 20:49:48'),
('267', '154', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 20:49:48', '2026-01-31 20:49:48'),
('268', '155', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:05:01', '2026-01-31 21:05:01'),
('269', '156', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:15:58', '2026-01-31 21:15:58'),
('270', '157', NULL, NULL, '25', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-31 21:19:49', '2026-01-31 21:19:49'),
('271', '157', NULL, NULL, '45', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 21:19:49', '2026-01-31 21:19:49'),
('272', '157', NULL, NULL, '27', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 21:19:49', '2026-01-31 21:19:49'),
('273', '158', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 21:20:25', '2026-01-31 21:20:25'),
('274', '159', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:28:53', '2026-01-31 21:28:53'),
('275', '160', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:29:23', '2026-01-31 21:29:23'),
('276', '160', NULL, NULL, '60', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:29:23', '2026-01-31 21:29:23'),
('277', '161', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 21:43:10', '2026-01-31 21:43:10'),
('278', '161', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:43:10', '2026-01-31 21:43:10'),
('279', '162', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:43:43', '2026-01-31 21:43:43'),
('280', '162', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 21:43:43', '2026-01-31 21:43:43'),
('281', '163', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 22:13:39', '2026-01-31 22:13:39'),
('282', '164', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 22:18:56', '2026-01-31 22:18:56'),
('283', '165', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 22:19:35', '2026-01-31 22:19:35'),
('284', '165', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 22:19:35', '2026-01-31 22:19:35'),
('285', '166', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 23:03:35', '2026-01-31 23:03:35'),
('286', '167', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 23:05:53', '2026-01-31 23:05:53'),
('287', '168', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 23:07:50', '2026-01-31 23:07:50'),
('288', '168', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 23:07:50', '2026-01-31 23:07:50'),
('289', '169', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-01-31 23:19:29', '2026-01-31 23:19:29'),
('290', '169', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-01-31 23:19:29', '2026-01-31 23:19:29'),
('291', '170', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 23:29:25', '2026-01-31 23:29:25'),
('292', '170', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-01-31 23:29:25', '2026-01-31 23:29:25'),
('293', '171', NULL, NULL, '3', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-01-31 23:49:40', '2026-01-31 23:49:40'),
('294', '172', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 01:13:00', '2026-02-01 01:13:00'),
('295', '173', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 18:20:35', '2026-02-01 18:20:35'),
('296', '173', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 18:20:35', '2026-02-01 18:20:35'),
('297', '174', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 18:21:10', '2026-02-01 18:21:10'),
('306', '180', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 21:32:29', '2026-02-01 21:32:29'),
('307', '181', NULL, NULL, '67', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 21:37:13', '2026-02-01 21:37:13'),
('308', '181', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 21:37:13', '2026-02-01 21:37:13'),
('309', '181', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 21:37:13', '2026-02-01 21:37:13'),
('310', '182', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 21:59:52', '2026-02-01 21:59:52'),
('312', '184', NULL, NULL, '37', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 22:03:47', '2026-02-01 22:03:47'),
('314', '186', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 22:13:11', '2026-02-01 22:13:11'),
('315', '187', NULL, NULL, '67', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 22:47:40', '2026-02-01 22:47:40'),
('316', '188', NULL, NULL, '37', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 22:50:25', '2026-02-01 22:50:25'),
('317', '188', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 22:50:25', '2026-02-01 22:50:25'),
('318', '189', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 23:02:48', '2026-02-01 23:02:48'),
('319', '190', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 23:13:31', '2026-02-01 23:13:31'),
('320', '191', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 23:24:20', '2026-02-01 23:24:20'),
('321', '192', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-01 23:43:50', '2026-02-01 23:43:50'),
('322', '192', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-01 23:43:50', '2026-02-01 23:43:50'),
('323', '193', NULL, NULL, '44', NULL, '', '9', NULL, NULL, NULL, NULL, '2026-02-01 23:47:00', '2026-02-01 23:47:00'),
('324', '194', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 00:26:20', '2026-02-02 00:26:20'),
('325', '195', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-02 00:28:25', '2026-02-02 00:28:25'),
('326', '195', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 00:28:25', '2026-02-02 00:28:25'),
('327', '195', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 00:28:25', '2026-02-02 00:28:25'),
('328', '195', NULL, NULL, '23', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-02 00:28:25', '2026-02-02 00:28:25'),
('329', '196', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-02 00:46:08', '2026-02-02 00:46:08'),
('330', '197', NULL, NULL, '37', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-02 00:48:14', '2026-02-02 00:48:14'),
('331', '198', NULL, NULL, '44', NULL, '', '7', NULL, NULL, NULL, NULL, '2026-02-02 00:56:56', '2026-02-02 00:56:56'),
('332', '199', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 00:58:16', '2026-02-02 00:58:16'),
('333', '200', NULL, NULL, '44', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 01:16:40', '2026-02-02 01:16:40'),
('334', '201', NULL, NULL, '44', NULL, '', '7', NULL, NULL, NULL, NULL, '2026-02-02 01:19:01', '2026-02-02 01:19:01'),
('335', '202', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-02 01:44:13', '2026-02-02 01:44:13'),
('336', '203', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-03 18:43:57', '2026-02-03 18:43:57'),
('337', '203', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-03 18:43:57', '2026-02-03 18:43:57'),
('338', '204', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-03 18:45:11', '2026-02-03 18:45:11'),
('339', '205', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-03 22:17:12', '2026-02-03 22:17:12'),
('340', '206', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-03 22:34:50', '2026-02-03 22:34:50'),
('341', '207', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-03 22:37:01', '2026-02-03 22:37:01'),
('342', '208', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-03 22:51:33', '2026-02-03 22:51:33'),
('343', '209', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 19:23:37', '2026-02-04 19:23:37'),
('344', '209', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 19:23:37', '2026-02-04 19:23:37'),
('345', '210', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 19:49:59', '2026-02-04 19:49:59'),
('346', '211', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 20:22:52', '2026-02-04 20:22:52'),
('347', '212', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 21:03:28', '2026-02-04 21:03:28'),
('348', '212', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 21:03:28', '2026-02-04 21:03:28'),
('349', '213', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 21:05:37', '2026-02-04 21:05:37'),
('350', '213', NULL, NULL, '65', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 21:05:37', '2026-02-04 21:05:37'),
('351', '214', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 21:27:55', '2026-02-04 21:27:55'),
('352', '215', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 21:44:54', '2026-02-04 21:44:54'),
('353', '215', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 21:44:54', '2026-02-04 21:44:54'),
('354', '216', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 21:57:30', '2026-02-04 21:57:30'),
('355', '217', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 22:29:27', '2026-02-04 22:29:27'),
('356', '218', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 22:32:52', '2026-02-04 22:32:52'),
('357', '219', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 22:38:03', '2026-02-04 22:38:03'),
('358', '220', NULL, NULL, '47', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:00:17', '2026-02-04 23:00:17'),
('359', '221', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 23:23:05', '2026-02-04 23:23:05'),
('360', '221', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:23:05', '2026-02-04 23:23:05'),
('361', '221', NULL, NULL, '47', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:23:05', '2026-02-04 23:23:05'),
('362', '222', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-04 23:24:14', '2026-02-04 23:24:14'),
('363', '222', NULL, NULL, '47', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:24:14', '2026-02-04 23:24:14'),
('364', '223', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:35:12', '2026-02-04 23:35:12'),
('365', '223', NULL, NULL, '47', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:35:12', '2026-02-04 23:35:12'),
('366', '224', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:58:06', '2026-02-04 23:58:06'),
('367', '224', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-04 23:58:06', '2026-02-04 23:58:06'),
('368', '225', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 00:00:06', '2026-02-05 00:00:06'),
('369', '226', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 00:04:11', '2026-02-05 00:04:11'),
('370', '227', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-05 00:05:50', '2026-02-05 00:05:50'),
('371', '228', NULL, NULL, '47', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-05 00:25:37', '2026-02-05 00:25:37'),
('372', '229', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-05 00:28:29', '2026-02-05 00:28:29'),
('373', '230', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:05:12', '2026-02-05 01:05:12'),
('374', '230', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-05 01:05:12', '2026-02-05 01:05:12'),
('375', '230', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:05:12', '2026-02-05 01:05:12'),
('376', '231', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:08:32', '2026-02-05 01:08:32'),
('377', '232', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:09:23', '2026-02-05 01:09:23'),
('378', '233', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:13:38', '2026-02-05 01:13:38'),
('379', '234', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:22:07', '2026-02-05 01:22:07'),
('380', '235', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:23:10', '2026-02-05 01:23:10'),
('381', '236', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:26:53', '2026-02-05 01:26:53'),
('382', '237', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:29:33', '2026-02-05 01:29:33'),
('383', '238', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:45:31', '2026-02-05 01:45:31'),
('384', '239', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 01:59:22', '2026-02-05 01:59:22'),
('385', '240', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 02:17:28', '2026-02-05 02:17:28'),
('386', '241', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-05 02:30:17', '2026-02-05 02:30:17'),
('387', '242', NULL, NULL, '11', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-06 20:06:34', '2026-02-06 20:06:34'),
('388', '243', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 20:41:57', '2026-02-06 20:41:57'),
('389', '244', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 21:03:50', '2026-02-06 21:03:50'),
('390', '245', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 21:08:42', '2026-02-06 21:08:42'),
('391', '246', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 21:19:01', '2026-02-06 21:19:01'),
('392', '247', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 21:57:53', '2026-02-06 21:57:53'),
('393', '248', NULL, NULL, '32', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 22:13:30', '2026-02-06 22:13:30'),
('394', '248', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 22:13:30', '2026-02-06 22:13:30'),
('395', '249', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 22:28:32', '2026-02-06 22:28:32'),
('396', '250', NULL, NULL, '67', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 22:32:25', '2026-02-06 22:32:25'),
('397', '250', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 22:32:25', '2026-02-06 22:32:25'),
('398', '251', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 22:43:48', '2026-02-06 22:43:48'),
('399', '252', NULL, NULL, '32', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-06 23:00:19', '2026-02-06 23:00:19'),
('400', '253', NULL, NULL, '10', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-06 23:11:46', '2026-02-06 23:11:46'),
('401', '254', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 23:19:22', '2026-02-06 23:19:22'),
('402', '254', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-06 23:19:22', '2026-02-06 23:19:22'),
('403', '255', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 00:11:24', '2026-02-07 00:11:24'),
('404', '255', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 00:11:24', '2026-02-07 00:11:24'),
('405', '255', NULL, NULL, '35', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 00:11:24', '2026-02-07 00:11:24'),
('406', '256', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 00:20:54', '2026-02-07 00:20:54'),
('407', '257', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 01:11:17', '2026-02-07 01:11:17'),
('408', '257', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 01:11:17', '2026-02-07 01:11:17'),
('409', '258', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 01:26:23', '2026-02-07 01:26:23'),
('410', '259', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 01:35:03', '2026-02-07 01:35:03'),
('411', '259', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 01:35:03', '2026-02-07 01:35:03'),
('412', '260', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 01:54:31', '2026-02-07 01:54:31'),
('413', '261', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 01:58:39', '2026-02-07 01:58:39'),
('414', '262', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 02:06:25', '2026-02-07 02:06:25'),
('415', '263', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 02:20:33', '2026-02-07 02:20:33'),
('416', '264', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 02:23:31', '2026-02-07 02:23:31'),
('417', '265', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 02:51:00', '2026-02-07 02:51:00'),
('418', '266', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 03:12:23', '2026-02-07 03:12:23'),
('419', '267', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 18:35:55', '2026-02-07 18:35:55'),
('420', '267', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 18:35:55', '2026-02-07 18:35:55'),
('421', '268', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 19:25:58', '2026-02-07 19:25:58'),
('422', '268', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-07 19:25:58', '2026-02-07 19:25:58'),
('423', '269', NULL, NULL, '9', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-07 19:47:43', '2026-02-07 19:47:43'),
('424', '270', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 19:51:45', '2026-02-07 19:51:45'),
('425', '270', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 19:51:45', '2026-02-07 19:51:45'),
('426', '271', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-07 20:00:53', '2026-02-07 20:00:53'),
('427', '272', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 20:11:51', '2026-02-07 20:11:51'),
('428', '272', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 20:11:51', '2026-02-07 20:11:51'),
('429', '273', NULL, NULL, '9', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-07 20:33:49', '2026-02-07 20:33:49'),
('430', '274', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-07 20:47:33', '2026-02-07 20:47:33'),
('431', '275', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-07 20:57:04', '2026-02-07 20:57:04'),
('432', '276', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-07 21:01:32', '2026-02-07 21:01:32'),
('433', '277', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 21:02:27', '2026-02-07 21:02:27'),
('434', '277', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-07 21:02:27', '2026-02-07 21:02:27'),
('435', '278', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 21:10:26', '2026-02-07 21:10:26'),
('436', '278', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-07 21:10:26', '2026-02-07 21:10:26'),
('437', '278', NULL, NULL, '43', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-07 21:10:26', '2026-02-07 21:10:26'),
('438', '279', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 19:39:56', '2026-02-09 19:39:56'),
('439', '280', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 19:40:17', '2026-02-09 19:40:17'),
('440', '281', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 19:42:53', '2026-02-09 19:42:53'),
('441', '282', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 19:43:13', '2026-02-09 19:43:13'),
('442', '283', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 20:52:01', '2026-02-09 20:52:01'),
('443', '283', NULL, NULL, '43', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 20:52:01', '2026-02-09 20:52:01'),
('444', '283', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 20:52:01', '2026-02-09 20:52:01'),
('445', '284', NULL, NULL, '43', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 21:09:40', '2026-02-09 21:09:40'),
('446', '285', NULL, NULL, '104', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-09 21:51:55', '2026-02-09 21:51:55'),
('447', '286', NULL, NULL, '17', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 21:52:34', '2026-02-09 21:52:34'),
('448', '287', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-09 21:56:06', '2026-02-09 21:56:06'),
('449', '287', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 21:56:06', '2026-02-09 21:56:06'),
('450', '288', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 21:56:30', '2026-02-09 21:56:30'),
('451', '289', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 22:01:38', '2026-02-09 22:01:38'),
('452', '289', NULL, NULL, '43', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 22:01:38', '2026-02-09 22:01:38'),
('453', '290', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 22:07:26', '2026-02-09 22:07:26'),
('454', '291', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 22:31:06', '2026-02-09 22:31:06'),
('455', '291', NULL, NULL, '105', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 22:31:06', '2026-02-09 22:31:06'),
('456', '292', NULL, NULL, '43', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-09 22:54:03', '2026-02-09 22:54:03'),
('457', '293', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-09 22:56:20', '2026-02-09 22:56:20'),
('458', '294', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 00:20:51', '2026-02-10 00:20:51'),
('459', '295', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-10 00:21:33', '2026-02-10 00:21:33'),
('460', '295', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-10 00:21:33', '2026-02-10 00:21:33'),
('461', '296', NULL, NULL, '19', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-10 01:59:14', '2026-02-10 01:59:14'),
('462', '296', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 01:59:14', '2026-02-10 01:59:14'),
('463', '297', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 02:01:12', '2026-02-10 02:01:12'),
('464', '297', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 02:01:12', '2026-02-10 02:01:12'),
('465', '297', NULL, NULL, '45', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 02:01:12', '2026-02-10 02:01:12'),
('466', '298', NULL, NULL, '30', NULL, '', '8', NULL, NULL, NULL, NULL, '2026-02-10 02:05:28', '2026-02-10 02:05:28'),
('467', '299', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-10 03:32:28', '2026-02-10 03:32:28'),
('468', '300', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 03:33:33', '2026-02-10 03:33:33'),
('469', '300', NULL, NULL, '32', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 03:33:33', '2026-02-10 03:33:33'),
('470', '300', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 03:33:33', '2026-02-10 03:33:33'),
('471', '300', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 03:33:33', '2026-02-10 03:33:33'),
('472', '301', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 04:15:21', '2026-02-10 04:15:21'),
('473', '302', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 19:20:44', '2026-02-10 19:20:44'),
('474', '302', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-10 19:20:44', '2026-02-10 19:20:44'),
('475', '303', NULL, NULL, '10', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-10 21:52:32', '2026-02-10 21:52:32'),
('477', '305', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-11 19:09:14', '2026-02-11 19:09:14'),
('478', '305', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 19:09:14', '2026-02-11 19:09:14'),
('479', '306', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-11 20:19:53', '2026-02-11 20:19:53'),
('480', '307', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 20:56:59', '2026-02-11 20:56:59'),
('481', '308', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('482', '308', NULL, NULL, '80', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('483', '308', NULL, NULL, '83', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('484', '308', NULL, NULL, '31', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('485', '308', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('486', '308', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('487', '309', NULL, NULL, '17', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-11 21:23:37', '2026-02-11 21:23:37'),
('488', '309', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:23:37', '2026-02-11 21:23:37'),
('489', '309', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:23:37', '2026-02-11 21:23:37'),
('490', '310', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:58:01', '2026-02-11 21:58:01'),
('491', '310', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 21:58:01', '2026-02-11 21:58:01'),
('492', '311', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-11 22:58:15', '2026-02-11 22:58:15'),
('493', '312', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 00:07:42', '2026-02-12 00:07:42'),
('494', '313', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-12 21:23:13', '2026-02-12 21:23:13'),
('495', '314', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 21:58:19', '2026-02-12 21:58:19'),
('496', '315', NULL, NULL, '31', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-12 22:04:44', '2026-02-12 22:04:44'),
('497', '315', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:04:44', '2026-02-12 22:04:44'),
('498', '316', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:05:03', '2026-02-12 22:05:03'),
('499', '317', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-12 22:40:18', '2026-02-12 22:40:18'),
('500', '317', NULL, NULL, '79', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:40:18', '2026-02-12 22:40:18'),
('501', '317', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:40:18', '2026-02-12 22:40:18'),
('502', '317', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-12 22:40:18', '2026-02-12 22:40:18'),
('503', '317', NULL, NULL, '23', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:40:19', '2026-02-12 22:40:19'),
('504', '318', NULL, NULL, '79', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 22:51:48', '2026-02-12 22:51:48'),
('505', '319', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 23:22:00', '2026-02-12 23:22:00'),
('506', '320', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 23:47:44', '2026-02-12 23:47:44'),
('507', '320', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 23:47:44', '2026-02-12 23:47:44'),
('508', '321', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-12 23:54:14', '2026-02-12 23:54:14'),
('509', '321', NULL, NULL, '84', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-12 23:54:14', '2026-02-12 23:54:14'),
('510', '322', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-12 23:59:07', '2026-02-12 23:59:07'),
('511', '323', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:01:03', '2026-02-13 00:01:03'),
('512', '323', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:01:03', '2026-02-13 00:01:03'),
('513', '323', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:01:03', '2026-02-13 00:01:03'),
('514', '323', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 00:01:03', '2026-02-13 00:01:03'),
('515', '324', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:14:26', '2026-02-13 00:14:26'),
('516', '324', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 00:14:26', '2026-02-13 00:14:26'),
('517', '324', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:14:26', '2026-02-13 00:14:26'),
('518', '325', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:29:09', '2026-02-13 00:29:09'),
('519', '326', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 00:31:43', '2026-02-13 00:31:43'),
('520', '326', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:31:43', '2026-02-13 00:31:43'),
('521', '327', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:38:05', '2026-02-13 00:38:05'),
('522', '328', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 00:38:37', '2026-02-13 00:38:37'),
('523', '329', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 00:47:11', '2026-02-13 00:47:11'),
('524', '330', NULL, NULL, '61', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-13 00:47:50', '2026-02-13 00:47:50'),
('525', '331', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 00:49:05', '2026-02-13 00:49:05'),
('526', '332', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 01:11:25', '2026-02-13 01:11:25'),
('527', '332', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 01:11:25', '2026-02-13 01:11:25'),
('528', '333', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 01:56:28', '2026-02-13 01:56:28'),
('529', '334', NULL, NULL, '9', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-13 01:58:56', '2026-02-13 01:58:56'),
('530', '335', NULL, NULL, '31', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-13 02:24:42', '2026-02-13 02:24:42'),
('531', '335', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 02:24:42', '2026-02-13 02:24:42'),
('532', '336', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 02:38:55', '2026-02-13 02:38:55'),
('533', '337', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 02:42:32', '2026-02-13 02:42:32'),
('534', '338', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 02:50:10', '2026-02-13 02:50:10'),
('535', '339', NULL, NULL, '8', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 02:51:03', '2026-02-13 02:51:03'),
('536', '340', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 02:57:09', '2026-02-13 02:57:09'),
('537', '340', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 02:57:09', '2026-02-13 02:57:09'),
('538', '341', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 03:02:42', '2026-02-13 03:02:42'),
('539', '341', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 03:02:42', '2026-02-13 03:02:42'),
('540', '341', NULL, NULL, '23', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 03:02:42', '2026-02-13 03:02:42'),
('541', '341', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-13 03:02:42', '2026-02-13 03:02:42'),
('542', '342', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-13 03:43:42', '2026-02-13 03:43:42'),
('543', '343', NULL, 'TXN_698f714d107ee7.63225913_673554', '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 18:45:33', '2026-02-13 18:45:33'),
('544', '344', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 20:13:03', '2026-02-13 20:13:03'),
('545', '345', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-13 20:21:06', '2026-02-13 20:21:06'),
('546', '345', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-13 20:21:06', '2026-02-13 20:21:06'),
('547', '346', NULL, NULL, '6', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 20:22:29', '2026-02-13 20:22:29'),
('548', '347', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 20:25:29', '2026-02-13 20:25:29'),
('549', '347', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 20:25:29', '2026-02-13 20:25:29'),
('550', '348', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-13 20:53:22', '2026-02-13 20:53:22'),
('551', '348', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 20:53:22', '2026-02-13 20:53:22'),
('552', '349', NULL, NULL, '23', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 21:15:55', '2026-02-13 21:15:55'),
('553', '349', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 21:15:55', '2026-02-13 21:15:55'),
('554', '349', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 21:15:55', '2026-02-13 21:15:55'),
('555', '350', NULL, NULL, '84', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 21:25:05', '2026-02-13 21:25:05'),
('556', '350', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-13 21:25:05', '2026-02-13 21:25:05'),
('557', '351', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 21:25:56', '2026-02-13 21:25:56'),
('558', '351', NULL, NULL, '6', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 21:25:56', '2026-02-13 21:25:56'),
('559', '352', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-13 21:26:14', '2026-02-13 21:26:14'),
('560', '353', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 22:13:03', '2026-02-13 22:13:03'),
('561', '354', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-13 22:24:50', '2026-02-13 22:24:50'),
('562', '355', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 22:38:46', '2026-02-13 22:38:46'),
('563', '356', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 22:58:25', '2026-02-13 22:58:25'),
('564', '356', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-13 22:58:25', '2026-02-13 22:58:25'),
('566', '358', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:17:54', '2026-02-14 23:17:54'),
('567', '359', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-14 23:32:56', '2026-02-14 23:32:56'),
('568', '360', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:34:15', '2026-02-14 23:34:15'),
('569', '361', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:35:27', '2026-02-14 23:35:27'),
('570', '362', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:38:37', '2026-02-14 23:38:37'),
('571', '363', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:42:24', '2026-02-14 23:42:24'),
('572', '364', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-14 23:49:16', '2026-02-14 23:49:16'),
('573', '365', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-14 23:59:54', '2026-02-14 23:59:54'),
('574', '366', NULL, NULL, '73', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 00:00:19', '2026-02-15 00:00:19'),
('575', '367', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 00:06:08', '2026-02-15 00:06:08'),
('576', '368', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 00:16:57', '2026-02-15 00:16:57'),
('577', '368', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 00:16:57', '2026-02-15 00:16:57'),
('578', '369', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 00:22:26', '2026-02-15 00:22:26'),
('579', '370', NULL, NULL, '73', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 00:29:43', '2026-02-15 00:29:43'),
('580', '371', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-15 00:33:57', '2026-02-15 00:33:57'),
('581', '372', NULL, NULL, '87', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 00:37:25', '2026-02-15 00:37:25'),
('582', '372', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 00:37:25', '2026-02-15 00:37:25'),
('583', '373', NULL, NULL, '44', NULL, '', '20', NULL, NULL, NULL, NULL, '2026-02-15 01:17:15', '2026-02-15 01:17:15'),
('584', '374', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 01:18:18', '2026-02-15 01:18:18'),
('585', '375', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-15 01:52:53', '2026-02-15 01:52:53'),
('586', '376', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-15 02:29:50', '2026-02-15 02:29:50'),
('587', '377', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 02:38:19', '2026-02-15 02:38:19'),
('588', '378', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-15 03:03:06', '2026-02-15 03:03:06'),
('589', '379', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-15 19:15:05', '2026-02-15 19:15:05'),
('590', '380', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 20:09:06', '2026-02-15 20:09:06'),
('591', '381', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-15 20:40:48', '2026-02-15 20:40:48'),
('592', '382', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-16 00:14:40', '2026-02-16 00:14:40'),
('593', '383', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-16 22:28:50', '2026-02-16 22:28:50'),
('594', '383', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-16 22:28:50', '2026-02-16 22:28:50'),
('595', '384', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-16 23:57:03', '2026-02-16 23:57:03'),
('596', '385', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 00:59:10', '2026-02-17 00:59:10'),
('597', '386', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 01:19:40', '2026-02-17 01:19:40'),
('598', '387', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 01:32:18', '2026-02-17 01:32:18'),
('599', '388', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 19:17:36', '2026-02-17 19:17:36'),
('600', '389', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 20:40:05', '2026-02-17 20:40:05'),
('601', '390', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 20:45:50', '2026-02-17 20:45:50'),
('602', '390', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 20:45:50', '2026-02-17 20:45:50'),
('603', '390', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 20:45:50', '2026-02-17 20:45:50'),
('604', '391', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 21:19:04', '2026-02-17 21:19:04'),
('605', '392', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 22:12:36', '2026-02-17 22:12:36'),
('606', '393', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 22:30:37', '2026-02-17 22:30:37'),
('607', '394', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 22:34:18', '2026-02-17 22:34:18'),
('608', '395', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-17 22:37:56', '2026-02-17 22:37:56'),
('609', '396', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 22:55:44', '2026-02-17 22:55:44'),
('610', '397', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 23:25:33', '2026-02-17 23:25:33'),
('611', '398', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-17 23:27:55', '2026-02-17 23:27:55'),
('612', '399', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-18 00:00:10', '2026-02-18 00:00:10'),
('613', '400', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-18 00:19:20', '2026-02-18 00:19:20'),
('614', '401', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-18 00:57:15', '2026-02-18 00:57:15'),
('615', '401', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-18 00:57:15', '2026-02-18 00:57:15'),
('616', '402', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-18 01:37:25', '2026-02-18 01:37:25'),
('617', '403', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-18 01:45:43', '2026-02-18 01:45:43'),
('618', '403', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-18 01:45:43', '2026-02-18 01:45:43'),
('619', '404', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-19 01:17:44', '2026-02-19 01:17:44'),
('620', '405', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-19 02:17:30', '2026-02-19 02:17:30'),
('621', '406', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-19 20:09:11', '2026-02-19 20:09:11'),
('622', '406', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-19 20:09:11', '2026-02-19 20:09:11'),
('623', '407', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-19 22:57:02', '2026-02-19 22:57:02'),
('624', '407', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-19 22:57:02', '2026-02-19 22:57:02'),
('625', '408', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-20 00:19:01', '2026-02-20 00:19:01'),
('626', '408', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 00:19:01', '2026-02-20 00:19:01'),
('627', '409', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 18:59:17', '2026-02-20 18:59:17'),
('628', '409', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 18:59:17', '2026-02-20 18:59:17'),
('629', '410', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 18:59:57', '2026-02-20 18:59:57'),
('630', '411', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 19:01:37', '2026-02-20 19:01:37'),
('631', '412', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 19:10:11', '2026-02-20 19:10:11'),
('632', '413', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 19:52:35', '2026-02-20 19:52:35'),
('633', '414', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-20 20:18:08', '2026-02-20 20:18:08'),
('634', '415', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 21:01:09', '2026-02-20 21:01:09'),
('635', '416', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 21:01:35', '2026-02-20 21:01:35'),
('636', '417', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 21:50:30', '2026-02-20 21:50:30'),
('637', '418', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:19:47', '2026-02-20 22:19:47'),
('638', '418', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:19:47', '2026-02-20 22:19:47'),
('639', '419', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-20 22:21:25', '2026-02-20 22:21:25'),
('640', '420', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-20 22:24:15', '2026-02-20 22:24:15'),
('641', '421', NULL, NULL, '44', NULL, '', '7', NULL, NULL, NULL, NULL, '2026-02-20 22:28:31', '2026-02-20 22:28:31'),
('642', '422', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:29:22', '2026-02-20 22:29:22'),
('643', '422', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:29:22', '2026-02-20 22:29:22'),
('644', '423', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:38:19', '2026-02-20 22:38:19'),
('645', '424', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-20 22:42:01', '2026-02-20 22:42:01'),
('646', '425', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 22:48:00', '2026-02-20 22:48:00'),
('647', '426', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 23:10:33', '2026-02-20 23:10:33'),
('648', '427', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 23:16:29', '2026-02-20 23:16:29'),
('649', '428', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-20 23:53:24', '2026-02-20 23:53:24'),
('650', '429', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-20 23:54:56', '2026-02-20 23:54:56'),
('651', '430', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 00:09:29', '2026-02-21 00:09:29'),
('652', '430', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 00:09:29', '2026-02-21 00:09:29'),
('653', '431', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 01:13:50', '2026-02-21 01:13:50'),
('654', '432', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 03:33:53', '2026-02-21 03:33:53'),
('655', '432', NULL, NULL, '48', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 03:33:53', '2026-02-21 03:33:53'),
('656', '433', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 18:12:01', '2026-02-21 18:12:01'),
('657', '434', NULL, NULL, '67', NULL, '', '28', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('658', '434', NULL, NULL, '62', NULL, '', '28', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('659', '434', NULL, NULL, '23', NULL, '', '84', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('660', '434', NULL, NULL, '31', NULL, '', '28', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('661', '434', NULL, NULL, '30', NULL, '', '28', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('662', '434', NULL, NULL, '85', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('663', '434', NULL, NULL, '4', NULL, '', '28', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('664', '434', NULL, NULL, '3', NULL, '', '12', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('665', '434', NULL, NULL, '2', NULL, '', '12', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('666', '434', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('667', '435', NULL, NULL, '87', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 18:21:39', '2026-02-21 18:21:39'),
('668', '436', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 18:41:00', '2026-02-21 18:41:00'),
('669', '437', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 18:55:57', '2026-02-21 18:55:57'),
('670', '438', NULL, NULL, '4', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-21 19:13:54', '2026-02-21 19:13:54'),
('671', '438', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:13:54', '2026-02-21 19:13:54'),
('672', '438', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:13:54', '2026-02-21 19:13:54'),
('673', '439', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:20:12', '2026-02-21 19:20:12'),
('674', '440', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:26:26', '2026-02-21 19:26:26'),
('675', '441', NULL, NULL, '67', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-21 19:43:21', '2026-02-21 19:43:21'),
('676', '441', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:43:21', '2026-02-21 19:43:21'),
('677', '442', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 19:48:00', '2026-02-21 19:48:00'),
('678', '443', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:51:57', '2026-02-21 19:51:57'),
('679', '444', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 19:52:53', '2026-02-21 19:52:53'),
('680', '445', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:53:29', '2026-02-21 19:53:29'),
('681', '446', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 19:55:53', '2026-02-21 19:55:53'),
('682', '447', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 20:07:36', '2026-02-21 20:07:36'),
('683', '448', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 20:16:45', '2026-02-21 20:16:45'),
('684', '449', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:23:16', '2026-02-21 20:23:16'),
('685', '450', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:24:08', '2026-02-21 20:24:08'),
('686', '451', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 20:26:38', '2026-02-21 20:26:38'),
('687', '452', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:27:57', '2026-02-21 20:27:57'),
('688', '453', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 20:32:22', '2026-02-21 20:32:22'),
('689', '453', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:32:22', '2026-02-21 20:32:22'),
('690', '454', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:42:16', '2026-02-21 20:42:16'),
('691', '455', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:49:47', '2026-02-21 20:49:47'),
('692', '455', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:49:47', '2026-02-21 20:49:47'),
('693', '456', NULL, NULL, '87', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:54:01', '2026-02-21 20:54:01'),
('694', '457', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 20:57:27', '2026-02-21 20:57:27'),
('695', '458', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:02:42', '2026-02-21 21:02:42'),
('696', '458', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:02:42', '2026-02-21 21:02:42'),
('697', '459', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:08:45', '2026-02-21 21:08:45'),
('698', '460', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:09:07', '2026-02-21 21:09:07'),
('699', '461', NULL, NULL, '67', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-21 21:18:47', '2026-02-21 21:18:47'),
('700', '461', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:18:47', '2026-02-21 21:18:47'),
('701', '462', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:20:19', '2026-02-21 21:20:19'),
('702', '463', NULL, NULL, '104', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-21 21:29:07', '2026-02-21 21:29:07'),
('703', '463', NULL, NULL, '14', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:29:07', '2026-02-21 21:29:07'),
('704', '464', NULL, NULL, '4', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-21 21:35:35', '2026-02-21 21:35:35'),
('705', '465', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-21 21:38:43', '2026-02-21 21:38:43'),
('706', '466', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-21 21:47:02', '2026-02-21 21:47:02'),
('707', '466', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:47:02', '2026-02-21 21:47:02'),
('708', '467', NULL, NULL, '62', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-21 21:53:36', '2026-02-21 21:53:36'),
('709', '467', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 21:53:36', '2026-02-21 21:53:36'),
('710', '468', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 21:56:09', '2026-02-21 21:56:09'),
('711', '469', NULL, NULL, '72', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 21:56:54', '2026-02-21 21:56:54'),
('712', '470', NULL, NULL, '67', NULL, '', '20', NULL, NULL, NULL, NULL, '2026-02-21 22:00:57', '2026-02-21 22:00:57'),
('713', '471', NULL, NULL, '4', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-21 22:07:18', '2026-02-21 22:07:18'),
('714', '471', NULL, NULL, '3', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-21 22:07:18', '2026-02-21 22:07:18'),
('715', '472', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:10:18', '2026-02-21 22:10:18'),
('716', '473', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 22:12:03', '2026-02-21 22:12:03'),
('717', '473', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 22:12:03', '2026-02-21 22:12:03'),
('718', '474', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:15:36', '2026-02-21 22:15:36'),
('719', '475', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:17:33', '2026-02-21 22:17:33'),
('720', '476', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:23:41', '2026-02-21 22:23:41'),
('721', '476', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:23:41', '2026-02-21 22:23:41'),
('722', '477', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 22:25:29', '2026-02-21 22:25:29'),
('723', '478', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:26:21', '2026-02-21 22:26:21'),
('724', '479', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:27:46', '2026-02-21 22:27:46'),
('725', '480', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:29:18', '2026-02-21 22:29:18'),
('726', '481', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:30:00', '2026-02-21 22:30:00'),
('727', '482', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:33:45', '2026-02-21 22:33:45'),
('728', '483', NULL, NULL, '23', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-21 22:39:45', '2026-02-21 22:39:45'),
('729', '483', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:39:45', '2026-02-21 22:39:45'),
('730', '484', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:41:20', '2026-02-21 22:41:20'),
('731', '485', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:41:54', '2026-02-21 22:41:54'),
('732', '486', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:45:24', '2026-02-21 22:45:24'),
('733', '487', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 22:47:38', '2026-02-21 22:47:38'),
('734', '488', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 22:53:11', '2026-02-21 22:53:11'),
('735', '489', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 22:55:10', '2026-02-21 22:55:10'),
('736', '490', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 23:02:13', '2026-02-21 23:02:13'),
('737', '490', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 23:02:13', '2026-02-21 23:02:13'),
('738', '491', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 23:03:02', '2026-02-21 23:03:02'),
('739', '492', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 23:15:03', '2026-02-21 23:15:03'),
('740', '492', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 23:15:03', '2026-02-21 23:15:03'),
('741', '493', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 23:20:24', '2026-02-21 23:20:24'),
('742', '494', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 23:24:15', '2026-02-21 23:24:15'),
('743', '495', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 23:27:16', '2026-02-21 23:27:16'),
('744', '495', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-21 23:27:16', '2026-02-21 23:27:16'),
('745', '496', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-21 23:36:40', '2026-02-21 23:36:40'),
('746', '497', NULL, NULL, '44', NULL, '', '10', NULL, NULL, NULL, NULL, '2026-02-21 23:45:07', '2026-02-21 23:45:07'),
('747', '498', NULL, NULL, '105', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-21 23:56:06', '2026-02-21 23:56:06'),
('748', '499', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-22 00:07:07', '2026-02-22 00:07:07'),
('749', '500', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-22 00:36:41', '2026-02-22 00:36:41'),
('750', '501', NULL, NULL, '3', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-22 00:43:28', '2026-02-22 00:43:28'),
('751', '502', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-22 00:49:13', '2026-02-22 00:49:13'),
('752', '503', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-22 02:13:02', '2026-02-22 02:13:02'),
('753', '504', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-22 02:18:01', '2026-02-22 02:18:01'),
('754', '505', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-22 02:19:40', '2026-02-22 02:19:40'),
('755', '506', NULL, NULL, '45', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-22 02:22:17', '2026-02-22 02:22:17'),
('756', '507', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-23 19:27:23', '2026-02-23 19:27:23'),
('757', '507', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-23 19:27:23', '2026-02-23 19:27:23'),
('758', '508', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-23 21:13:19', '2026-02-23 21:13:19'),
('759', '509', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-23 21:57:13', '2026-02-23 21:57:13'),
('760', '509', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-23 21:57:13', '2026-02-23 21:57:13'),
('761', '510', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-23 23:01:59', '2026-02-23 23:01:59'),
('762', '511', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-23 23:02:16', '2026-02-23 23:02:16'),
('763', '512', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-23 23:31:20', '2026-02-23 23:31:20'),
('764', '512', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-23 23:31:20', '2026-02-23 23:31:20'),
('765', '513', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-23 23:57:20', '2026-02-23 23:57:20'),
('766', '514', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-24 00:04:52', '2026-02-24 00:04:52'),
('767', '515', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 00:14:07', '2026-02-24 00:14:07'),
('768', '516', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-24 00:33:29', '2026-02-24 00:33:29'),
('769', '516', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 00:33:29', '2026-02-24 00:33:29'),
('770', '517', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 00:43:33', '2026-02-24 00:43:33'),
('771', '518', NULL, NULL, '7', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 00:46:28', '2026-02-24 00:46:28'),
('772', '519', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 01:14:00', '2026-02-24 01:14:00'),
('773', '520', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 01:26:27', '2026-02-24 01:26:27'),
('774', '521', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 01:29:41', '2026-02-24 01:29:41'),
('775', '522', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 01:31:23', '2026-02-24 01:31:23'),
('776', '523', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 01:56:12', '2026-02-24 01:56:12'),
('777', '524', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 02:19:57', '2026-02-24 02:19:57'),
('778', '525', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 02:52:14', '2026-02-24 02:52:14'),
('779', '525', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 02:52:14', '2026-02-24 02:52:14'),
('780', '526', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 18:44:33', '2026-02-24 18:44:33'),
('781', '527', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-24 18:48:09', '2026-02-24 18:48:09'),
('782', '527', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 18:48:09', '2026-02-24 18:48:09'),
('783', '527', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 18:48:09', '2026-02-24 18:48:09'),
('784', '528', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 19:24:54', '2026-02-24 19:24:54'),
('785', '529', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 19:37:17', '2026-02-24 19:37:17'),
('786', '530', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 19:44:53', '2026-02-24 19:44:53'),
('787', '531', NULL, NULL, '45', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-24 21:39:09', '2026-02-24 21:39:09'),
('788', '531', NULL, NULL, '25', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 21:39:09', '2026-02-24 21:39:09'),
('789', '532', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-24 21:47:18', '2026-02-24 21:47:18'),
('790', '533', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-24 23:26:58', '2026-02-24 23:26:58'),
('791', '534', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-02-24 23:32:43', '2026-02-24 23:32:43'),
('792', '535', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-24 23:51:38', '2026-02-24 23:51:38'),
('793', '536', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 00:06:28', '2026-02-25 00:06:28'),
('794', '537', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 00:50:35', '2026-02-25 00:50:35'),
('795', '538', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 00:50:52', '2026-02-25 00:50:52'),
('796', '539', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 00:57:01', '2026-02-25 00:57:01'),
('797', '540', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 01:04:42', '2026-02-25 01:04:42'),
('798', '540', NULL, NULL, '44', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-25 01:04:42', '2026-02-25 01:04:42'),
('799', '541', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-26 20:57:56', '2026-02-26 20:57:56'),
('800', '541', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-26 20:57:56', '2026-02-26 20:57:56'),
('801', '541', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-26 20:57:56', '2026-02-26 20:57:56'),
('802', '542', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-26 22:02:51', '2026-02-26 22:02:51'),
('803', '542', NULL, NULL, '65', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-26 22:02:51', '2026-02-26 22:02:51'),
('804', '543', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 18:26:30', '2026-02-27 18:26:30'),
('805', '543', NULL, NULL, '26', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 18:26:30', '2026-02-27 18:26:30'),
('806', '543', NULL, NULL, '62', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-27 18:26:30', '2026-02-27 18:26:30'),
('807', '544', NULL, NULL, '106', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 18:36:38', '2026-02-27 18:36:38'),
('808', '544', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 18:36:38', '2026-02-27 18:36:38'),
('809', '544', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 18:36:38', '2026-02-27 18:36:38'),
('810', '544', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 18:36:38', '2026-02-27 18:36:38'),
('811', '545', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 18:37:06', '2026-02-27 18:37:06'),
('812', '546', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:01:44', '2026-02-27 19:01:44'),
('813', '547', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:09:41', '2026-02-27 19:09:41'),
('814', '547', NULL, NULL, '61', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 19:09:41', '2026-02-27 19:09:41'),
('815', '548', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:10:34', '2026-02-27 19:10:34'),
('816', '549', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:36:07', '2026-02-27 19:36:07'),
('817', '550', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:57:17', '2026-02-27 19:57:17'),
('818', '550', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:57:17', '2026-02-27 19:57:17'),
('819', '550', NULL, NULL, '53', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 19:57:17', '2026-02-27 19:57:17'),
('820', '551', NULL, NULL, '53', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 21:13:17', '2026-02-27 21:13:17'),
('821', '552', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 21:19:42', '2026-02-27 21:19:42'),
('822', '552', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 21:19:42', '2026-02-27 21:19:42'),
('823', '552', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 21:19:42', '2026-02-27 21:19:42'),
('824', '553', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 21:25:06', '2026-02-27 21:25:06'),
('825', '553', NULL, NULL, '43', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 21:25:06', '2026-02-27 21:25:06'),
('826', '554', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 21:36:30', '2026-02-27 21:36:30'),
('827', '555', NULL, NULL, '43', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-02-27 21:45:49', '2026-02-27 21:45:49'),
('828', '556', NULL, NULL, '105', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 21:58:33', '2026-02-27 21:58:33'),
('829', '557', NULL, NULL, '10', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 22:09:00', '2026-02-27 22:09:00'),
('830', '558', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-27 22:36:09', '2026-02-27 22:36:09'),
('831', '558', NULL, NULL, '30', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-27 22:36:09', '2026-02-27 22:36:09'),
('832', '559', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 22:41:03', '2026-02-27 22:41:03'),
('833', '560', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 22:42:23', '2026-02-27 22:42:23'),
('834', '561', NULL, NULL, '105', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-02-27 22:43:11', '2026-02-27 22:43:11'),
('835', '562', NULL, NULL, '8', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-27 22:57:24', '2026-02-27 22:57:24'),
('836', '563', NULL, NULL, '8', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-27 23:39:47', '2026-02-27 23:39:47'),
('837', '564', NULL, NULL, '30', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-02-28 00:05:39', '2026-02-28 00:05:39'),
('838', '565', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-28 00:06:51', '2026-02-28 00:06:51'),
('839', '566', NULL, NULL, '60', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 19:14:26', '2026-02-28 19:14:26'),
('840', '567', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-02-28 19:40:53', '2026-02-28 19:40:53'),
('841', '568', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 20:21:34', '2026-02-28 20:21:34'),
('842', '569', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 20:38:11', '2026-02-28 20:38:11'),
('843', '569', NULL, NULL, '104', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-02-28 20:38:11', '2026-02-28 20:38:11'),
('844', '570', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 20:38:33', '2026-02-28 20:38:33'),
('845', '571', NULL, NULL, '8', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 20:58:14', '2026-02-28 20:58:14'),
('846', '572', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 21:17:01', '2026-02-28 21:17:01'),
('847', '573', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 21:40:53', '2026-02-28 21:40:53'),
('848', '574', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 22:28:44', '2026-02-28 22:28:44'),
('849', '575', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 22:34:01', '2026-02-28 22:34:01'),
('850', '576', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 23:46:18', '2026-02-28 23:46:18'),
('851', '576', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-02-28 23:46:18', '2026-02-28 23:46:18'),
('852', '577', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-01 00:38:16', '2026-03-01 00:38:16'),
('853', '577', NULL, NULL, '67', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-01 00:38:16', '2026-03-01 00:38:16'),
('854', '578', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-01 00:43:22', '2026-03-01 00:43:22'),
('855', '579', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-01 00:57:20', '2026-03-01 00:57:20'),
('856', '580', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-01 02:48:21', '2026-03-01 02:48:21'),
('857', '580', NULL, NULL, '23', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-01 02:48:21', '2026-03-01 02:48:21'),
('858', '581', NULL, NULL, '30', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-03-02 19:05:29', '2026-03-02 19:05:29'),
('859', '582', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-02 19:08:27', '2026-03-02 19:08:27'),
('860', '583', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 19:54:59', '2026-03-02 19:54:59'),
('861', '584', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 20:03:24', '2026-03-02 20:03:24'),
('862', '585', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-02 20:32:29', '2026-03-02 20:32:29'),
('863', '586', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 21:21:03', '2026-03-02 21:21:03'),
('864', '587', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 21:28:22', '2026-03-02 21:28:22'),
('865', '588', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 21:29:31', '2026-03-02 21:29:31'),
('866', '589', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-02 22:09:08', '2026-03-02 22:09:08'),
('867', '590', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-03-02 22:21:56', '2026-03-02 22:21:56'),
('868', '591', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-02 22:29:29', '2026-03-02 22:29:29'),
('869', '592', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-03-02 22:56:03', '2026-03-02 22:56:03'),
('870', '593', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:16:10', '2026-03-02 23:16:10'),
('871', '594', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:21:36', '2026-03-02 23:21:36'),
('872', '595', NULL, NULL, '67', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:26:21', '2026-03-02 23:26:21'),
('873', '595', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:26:21', '2026-03-02 23:26:21'),
('874', '596', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:26:58', '2026-03-02 23:26:58'),
('875', '596', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-02 23:26:58', '2026-03-02 23:26:58'),
('876', '597', NULL, NULL, '37', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-02 23:33:16', '2026-03-02 23:33:16'),
('877', '598', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 00:16:19', '2026-03-03 00:16:19'),
('878', '599', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 00:30:41', '2026-03-03 00:30:41'),
('879', '600', NULL, NULL, '44', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 20:06:59', '2026-03-03 20:06:59'),
('880', '601', NULL, NULL, '11', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-03 20:07:39', '2026-03-03 20:07:39'),
('881', '602', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 20:31:20', '2026-03-03 20:31:20'),
('882', '603', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 20:54:19', '2026-03-03 20:54:19'),
('883', '604', NULL, NULL, '44', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-03 20:59:26', '2026-03-03 20:59:26'),
('884', '605', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 00:09:55', '2026-03-04 00:09:55'),
('885', '606', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-04 18:29:03', '2026-03-04 18:29:03'),
('886', '606', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-04 18:29:03', '2026-03-04 18:29:03'),
('887', '607', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-04 19:42:28', '2026-03-04 19:42:28'),
('888', '608', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 20:17:31', '2026-03-04 20:17:31'),
('889', '609', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 20:35:22', '2026-03-04 20:35:22'),
('890', '609', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 20:35:22', '2026-03-04 20:35:22'),
('891', '610', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-04 20:47:37', '2026-03-04 20:47:37'),
('892', '611', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-04 20:47:56', '2026-03-04 20:47:56'),
('893', '612', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-04 20:59:01', '2026-03-04 20:59:01'),
('894', '613', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 21:04:45', '2026-03-04 21:04:45'),
('895', '614', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 21:19:15', '2026-03-04 21:19:15'),
('896', '614', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 21:19:15', '2026-03-04 21:19:15'),
('897', '615', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-04 22:22:51', '2026-03-04 22:22:51'),
('898', '616', NULL, NULL, '44', NULL, '', '19', NULL, NULL, NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('899', '616', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('900', '616', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('901', '616', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('902', '616', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('903', '617', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:57:00', '2026-03-05 20:57:00'),
('904', '617', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:57:00', '2026-03-05 20:57:00'),
('905', '617', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 20:57:00', '2026-03-05 20:57:00'),
('906', '618', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:04:43', '2026-03-05 21:04:43'),
('907', '618', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:04:43', '2026-03-05 21:04:43'),
('908', '618', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:04:43', '2026-03-05 21:04:43'),
('909', '618', NULL, NULL, '44', NULL, '', '9', NULL, NULL, NULL, NULL, '2026-03-05 21:04:43', '2026-03-05 21:04:43'),
('910', '619', NULL, NULL, '67', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('911', '619', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('912', '619', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('913', '619', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('914', '619', NULL, NULL, '30', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('915', '619', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('916', '619', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('917', '620', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-05 21:18:25', '2026-03-05 21:18:25'),
('918', '621', NULL, NULL, '44', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-05 21:25:22', '2026-03-05 21:25:22'),
('919', '621', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:25:22', '2026-03-05 21:25:22'),
('920', '622', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:33:46', '2026-03-05 21:33:46'),
('921', '622', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:33:46', '2026-03-05 21:33:46'),
('922', '623', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 21:38:45', '2026-03-05 21:38:45'),
('923', '624', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-03-05 22:10:49', '2026-03-05 22:10:49'),
('924', '624', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:10:49', '2026-03-05 22:10:49'),
('925', '624', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:10:49', '2026-03-05 22:10:49'),
('926', '625', NULL, NULL, '44', NULL, '', '9', NULL, NULL, NULL, NULL, '2026-03-05 22:11:47', '2026-03-05 22:11:47'),
('927', '625', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:11:47', '2026-03-05 22:11:47'),
('928', '625', NULL, NULL, '30', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-05 22:11:47', '2026-03-05 22:11:47'),
('929', '625', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:11:47', '2026-03-05 22:11:47'),
('930', '626', NULL, NULL, '44', NULL, '', '10', NULL, NULL, NULL, NULL, '2026-03-05 22:19:59', '2026-03-05 22:19:59'),
('931', '626', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:19:59', '2026-03-05 22:19:59'),
('932', '627', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:31:34', '2026-03-05 22:31:34'),
('933', '627', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:31:34', '2026-03-05 22:31:34'),
('934', '628', NULL, NULL, '44', NULL, '', '9', NULL, NULL, NULL, NULL, '2026-03-05 22:32:57', '2026-03-05 22:32:57'),
('935', '629', NULL, NULL, '32', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-05 22:33:18', '2026-03-05 22:33:18'),
('936', '630', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-03-05 22:57:38', '2026-03-05 22:57:38'),
('937', '631', NULL, NULL, '31', NULL, '', '9', NULL, NULL, NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('938', '631', NULL, NULL, '3', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('939', '631', NULL, NULL, '7', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('940', '631', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('941', '631', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('942', '632', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 21:10:05', '2026-03-06 21:10:05'),
('943', '633', NULL, NULL, '4', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 21:30:53', '2026-03-06 21:30:53'),
('944', '633', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 21:30:53', '2026-03-06 21:30:53'),
('945', '633', NULL, NULL, '44', NULL, '', '15', NULL, NULL, NULL, NULL, '2026-03-06 21:30:53', '2026-03-06 21:30:53'),
('946', '634', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 21:33:26', '2026-03-06 21:33:26'),
('947', '635', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 22:00:03', '2026-03-06 22:00:03'),
('948', '636', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 22:04:58', '2026-03-06 22:04:58'),
('949', '637', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 22:10:18', '2026-03-06 22:10:18'),
('950', '638', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 22:20:05', '2026-03-06 22:20:05'),
('951', '639', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-06 22:30:46', '2026-03-06 22:30:46'),
('952', '639', NULL, NULL, '9', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-06 22:30:46', '2026-03-06 22:30:46'),
('953', '640', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-06 22:32:49', '2026-03-06 22:32:49'),
('954', '640', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 22:32:49', '2026-03-06 22:32:49'),
('955', '641', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-06 23:28:04', '2026-03-06 23:28:04'),
('956', '642', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-07 00:12:01', '2026-03-07 00:12:01'),
('957', '643', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-07 00:55:35', '2026-03-07 00:55:35'),
('958', '644', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 01:09:17', '2026-03-07 01:09:17'),
('959', '645', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 02:25:15', '2026-03-07 02:25:15'),
('960', '646', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 03:23:43', '2026-03-07 03:23:43'),
('961', '647', NULL, NULL, '46', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 03:52:49', '2026-03-07 03:52:49'),
('962', '648', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 04:37:09', '2026-03-07 04:37:09'),
('963', '648', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 04:37:09', '2026-03-07 04:37:09'),
('964', '649', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 20:22:26', '2026-03-07 20:22:26'),
('965', '650', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 20:22:40', '2026-03-07 20:22:40'),
('966', '651', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 20:26:02', '2026-03-07 20:26:02'),
('967', '652', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 20:26:17', '2026-03-07 20:26:17'),
('968', '653', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-07 20:54:38', '2026-03-07 20:54:38'),
('969', '653', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 20:54:38', '2026-03-07 20:54:38'),
('970', '654', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 21:12:35', '2026-03-07 21:12:35'),
('971', '655', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 21:12:49', '2026-03-07 21:12:49'),
('972', '656', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-07 21:38:46', '2026-03-07 21:38:46'),
('973', '657', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 23:17:12', '2026-03-07 23:17:12'),
('974', '657', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 23:17:12', '2026-03-07 23:17:12'),
('975', '658', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 23:24:56', '2026-03-07 23:24:56'),
('976', '659', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-07 23:25:26', '2026-03-07 23:25:26'),
('977', '660', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-07 23:52:22', '2026-03-07 23:52:22'),
('978', '661', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-08 00:12:08', '2026-03-08 00:12:08'),
('979', '662', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 00:18:29', '2026-03-08 00:18:29'),
('980', '662', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 00:18:29', '2026-03-08 00:18:29'),
('981', '663', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 00:54:42', '2026-03-08 00:54:42'),
('982', '664', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 01:08:46', '2026-03-08 01:08:46'),
('983', '665', NULL, NULL, '30', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 01:20:34', '2026-03-08 01:20:34'),
('984', '665', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 01:20:34', '2026-03-08 01:20:34'),
('985', '666', NULL, NULL, '32', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-08 20:59:31', '2026-03-08 20:59:31'),
('986', '666', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 20:59:31', '2026-03-08 20:59:31'),
('987', '667', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 22:53:53', '2026-03-08 22:53:53'),
('988', '668', NULL, NULL, '104', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-08 23:42:22', '2026-03-08 23:42:22'),
('989', '669', NULL, NULL, '84', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-08 23:54:20', '2026-03-08 23:54:20'),
('991', '670', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-09 00:13:40', '2026-03-09 00:13:40'),
('992', '670', NULL, NULL, '79', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-09 00:13:40', '2026-03-09 00:13:40'),
('993', '670', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-09 00:13:40', '2026-03-09 00:13:40'),
('994', '670', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-09 00:13:40', '2026-03-09 00:13:40'),
('995', '671', NULL, NULL, '104', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-09 00:14:01', '2026-03-09 00:14:01'),
('996', '672', NULL, NULL, '73', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-09 00:39:39', '2026-03-09 00:39:39'),
('997', '673', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-09 01:17:09', '2026-03-09 01:17:09'),
('998', '673', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-09 01:17:09', '2026-03-09 01:17:09'),
('999', '674', NULL, NULL, '67', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-10 22:04:31', '2026-03-10 22:04:31'),
('1000', '674', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-10 22:04:31', '2026-03-10 22:04:31'),
('1001', '674', NULL, NULL, '45', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-10 22:04:31', '2026-03-10 22:04:31'),
('1002', '675', NULL, NULL, '11', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-17 23:19:43', '2026-03-17 23:19:43'),
('1003', '675', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-17 23:19:43', '2026-03-17 23:19:43'),
('1004', '675', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-17 23:19:43', '2026-03-17 23:19:43'),
('1005', '676', NULL, NULL, '69', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-18 00:37:01', '2026-03-18 00:37:01'),
('1006', '676', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 00:37:01', '2026-03-18 00:37:01'),
('1007', '676', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 00:37:01', '2026-03-18 00:37:01'),
('1008', '677', NULL, NULL, '81', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-18 19:01:14', '2026-03-18 19:01:14'),
('1009', '677', NULL, NULL, '28', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 19:01:14', '2026-03-18 19:01:14'),
('1010', '677', NULL, NULL, '35', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 19:01:14', '2026-03-18 19:01:14'),
('1011', '677', NULL, NULL, '61', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 19:01:14', '2026-03-18 19:01:14'),
('1012', '678', NULL, NULL, '7', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-18 19:25:27', '2026-03-18 19:25:27'),
('1013', '679', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-18 19:52:35', '2026-03-18 19:52:35'),
('1014', '680', NULL, NULL, '47', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-03-18 20:08:16', '2026-03-18 20:08:16'),
('1015', '681', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 20:15:28', '2026-03-18 20:15:28'),
('1016', '682', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 20:35:05', '2026-03-18 20:35:05'),
('1017', '683', NULL, NULL, '31', NULL, '', '14', NULL, NULL, NULL, NULL, '2026-03-18 20:38:03', '2026-03-18 20:38:03'),
('1018', '684', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 20:38:23', '2026-03-18 20:38:23');

INSERT INTO `kot_items` VALUES
('1019', '685', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 20:45:46', '2026-03-18 20:45:46'),
('1020', '686', NULL, NULL, '9', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-18 20:58:41', '2026-03-18 20:58:41'),
('1021', '687', NULL, NULL, '72', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 22:25:39', '2026-03-18 22:25:39'),
('1022', '688', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 22:35:28', '2026-03-18 22:35:28'),
('1023', '689', NULL, NULL, '31', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-18 23:11:15', '2026-03-18 23:11:15'),
('1024', '689', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-18 23:11:15', '2026-03-18 23:11:15'),
('1025', '690', NULL, NULL, '57', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 20:31:00', '2026-03-19 20:31:00'),
('1026', '690', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 20:31:00', '2026-03-19 20:31:00'),
('1027', '691', NULL, NULL, '26', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 20:42:17', '2026-03-19 20:42:17'),
('1028', '692', NULL, NULL, '57', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 21:09:45', '2026-03-19 21:09:45'),
('1029', '693', NULL, NULL, '6', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 21:26:38', '2026-03-19 21:26:38'),
('1030', '694', NULL, NULL, '57', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 22:03:53', '2026-03-19 22:03:53'),
('1031', '695', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-19 22:27:04', '2026-03-19 22:27:04'),
('1032', '695', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 22:27:04', '2026-03-19 22:27:04'),
('1033', '696', NULL, NULL, '104', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-03-19 22:31:25', '2026-03-19 22:31:25'),
('1034', '696', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 22:31:25', '2026-03-19 22:31:25'),
('1035', '697', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-19 22:46:24', '2026-03-19 22:46:24'),
('1036', '698', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 23:41:01', '2026-03-19 23:41:01'),
('1037', '698', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-19 23:41:01', '2026-03-19 23:41:01'),
('1038', '699', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-20 00:15:48', '2026-03-20 00:15:48'),
('1039', '700', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-20 18:35:41', '2026-03-20 18:35:41'),
('1040', '701', NULL, NULL, '30', NULL, '', '10', NULL, NULL, NULL, NULL, '2026-03-21 20:06:07', '2026-03-21 20:06:07'),
('1041', '701', NULL, NULL, '29', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 20:06:07', '2026-03-21 20:06:07'),
('1042', '701', NULL, NULL, '25', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 20:06:07', '2026-03-21 20:06:07'),
('1043', '702', NULL, NULL, '6', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 20:08:22', '2026-03-21 20:08:22'),
('1044', '703', NULL, NULL, '6', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 20:09:03', '2026-03-21 20:09:03'),
('1045', '704', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 21:06:40', '2026-03-21 21:06:40'),
('1046', '705', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 21:08:02', '2026-03-21 21:08:02'),
('1047', '706', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 22:19:58', '2026-03-21 22:19:58'),
('1048', '707', NULL, NULL, '69', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 22:31:05', '2026-03-21 22:31:05'),
('1049', '707', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 22:31:05', '2026-03-21 22:31:05'),
('1050', '708', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 22:47:59', '2026-03-21 22:47:59'),
('1051', '709', NULL, NULL, '64', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 22:52:45', '2026-03-21 22:52:45'),
('1052', '710', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 23:00:05', '2026-03-21 23:00:05'),
('1053', '711', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 23:19:51', '2026-03-21 23:19:51'),
('1054', '711', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:19:51', '2026-03-21 23:19:51'),
('1055', '712', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 23:20:07', '2026-03-21 23:20:07'),
('1056', '712', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:20:07', '2026-03-21 23:20:07'),
('1057', '713', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:20:18', '2026-03-21 23:20:18'),
('1058', '714', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 23:34:22', '2026-03-21 23:34:22'),
('1059', '715', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:34:48', '2026-03-21 23:34:48'),
('1060', '716', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:36:51', '2026-03-21 23:36:51'),
('1061', '717', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-21 23:42:56', '2026-03-21 23:42:56'),
('1062', '718', NULL, NULL, '104', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-21 23:55:27', '2026-03-21 23:55:27'),
('1063', '719', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:00:55', '2026-03-22 00:00:55'),
('1064', '720', NULL, NULL, '69', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-22 00:17:31', '2026-03-22 00:17:31'),
('1065', '721', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:30:12', '2026-03-22 00:30:12'),
('1067', '723', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:32:25', '2026-03-22 00:32:25'),
('1068', '724', NULL, NULL, '16', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:39:25', '2026-03-22 00:39:25'),
('1069', '724', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:39:25', '2026-03-22 00:39:25'),
('1070', '724', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:39:25', '2026-03-22 00:39:25'),
('1071', '725', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 00:56:39', '2026-03-22 00:56:39'),
('1072', '726', NULL, NULL, '69', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 01:04:01', '2026-03-22 01:04:01'),
('1073', '727', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 01:07:48', '2026-03-22 01:07:48'),
('1074', '728', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 01:10:31', '2026-03-22 01:10:31'),
('1075', '729', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 20:04:05', '2026-03-22 20:04:05'),
('1076', '730', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 20:30:21', '2026-03-22 20:30:21'),
('1077', '731', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 21:50:32', '2026-03-22 21:50:32'),
('1078', '732', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:09:55', '2026-03-22 22:09:55'),
('1079', '733', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:10:15', '2026-03-22 22:10:15'),
('1080', '733', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:10:15', '2026-03-22 22:10:15'),
('1081', '734', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:12:49', '2026-03-22 22:12:49'),
('1082', '734', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:12:49', '2026-03-22 22:12:49'),
('1083', '734', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-22 22:12:49', '2026-03-22 22:12:49'),
('1084', '735', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:20:19', '2026-03-22 22:20:19'),
('1085', '735', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:20:19', '2026-03-22 22:20:19'),
('1086', '736', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:23:33', '2026-03-22 22:23:33'),
('1087', '737', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:24:39', '2026-03-22 22:24:39'),
('1088', '738', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:35:15', '2026-03-22 22:35:15'),
('1089', '739', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:40:05', '2026-03-22 22:40:05'),
('1090', '740', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:43:28', '2026-03-22 22:43:28'),
('1091', '741', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:47:42', '2026-03-22 22:47:42'),
('1092', '742', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 22:54:50', '2026-03-22 22:54:50'),
('1093', '743', NULL, NULL, '12', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-22 23:03:57', '2026-03-22 23:03:57'),
('1094', '743', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:03:57', '2026-03-22 23:03:57'),
('1095', '744', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:04:42', '2026-03-22 23:04:42'),
('1096', '745', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:10:04', '2026-03-22 23:10:04'),
('1097', '746', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:12:03', '2026-03-22 23:12:03'),
('1098', '746', NULL, NULL, '44', NULL, '', '5', NULL, NULL, NULL, NULL, '2026-03-22 23:12:03', '2026-03-22 23:12:03'),
('1099', '747', NULL, NULL, '44', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-22 23:14:37', '2026-03-22 23:14:37'),
('1100', '747', NULL, NULL, '43', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:14:37', '2026-03-22 23:14:37'),
('1101', '748', NULL, NULL, '107', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:45:36', '2026-03-22 23:45:36'),
('1102', '748', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:45:36', '2026-03-22 23:45:36'),
('1103', '749', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:49:07', '2026-03-22 23:49:07'),
('1104', '750', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:52:27', '2026-03-22 23:52:27'),
('1105', '751', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:54:18', '2026-03-22 23:54:18'),
('1106', '752', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-22 23:56:33', '2026-03-22 23:56:33'),
('1107', '753', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:01:49', '2026-03-23 00:01:49'),
('1108', '754', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:03:08', '2026-03-23 00:03:08'),
('1109', '755', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:03:55', '2026-03-23 00:03:55'),
('1110', '756', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:07:17', '2026-03-23 00:07:17'),
('1111', '757', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:13:35', '2026-03-23 00:13:35'),
('1112', '758', NULL, NULL, '44', NULL, '', '6', NULL, NULL, NULL, NULL, '2026-03-23 00:25:34', '2026-03-23 00:25:34'),
('1113', '759', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:45:44', '2026-03-23 00:45:44'),
('1114', '760', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 00:59:19', '2026-03-23 00:59:19'),
('1115', '761', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 01:05:31', '2026-03-23 01:05:31'),
('1116', '762', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 01:12:32', '2026-03-23 01:12:32'),
('1117', '763', NULL, NULL, '40', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 01:15:40', '2026-03-23 01:15:40'),
('1118', '764', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 01:33:36', '2026-03-23 01:33:36'),
('1119', '765', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 20:02:37', '2026-03-23 20:02:37'),
('1120', '766', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1121', '766', NULL, NULL, '12', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1122', '766', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1123', '766', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1124', '766', NULL, NULL, '26', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1125', '766', NULL, NULL, '45', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('1126', '767', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-23 23:56:56', '2026-03-23 23:56:56'),
('1127', '768', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 18:33:17', '2026-03-24 18:33:17'),
('1128', '769', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 18:34:50', '2026-03-24 18:34:50'),
('1129', '770', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 19:09:19', '2026-03-24 19:09:19'),
('1130', '771', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 19:17:40', '2026-03-24 19:17:40'),
('1131', '772', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 19:51:01', '2026-03-24 19:51:01'),
('1132', '772', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 19:51:01', '2026-03-24 19:51:01'),
('1133', '773', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 20:02:48', '2026-03-24 20:02:48'),
('1134', '773', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 20:02:48', '2026-03-24 20:02:48'),
('1135', '774', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 20:32:01', '2026-03-24 20:32:01'),
('1136', '775', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 21:15:53', '2026-03-24 21:15:53'),
('1137', '776', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 21:34:51', '2026-03-24 21:34:51'),
('1138', '776', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 21:34:51', '2026-03-24 21:34:51'),
('1139', '777', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 22:21:50', '2026-03-24 22:21:50'),
('1140', '777', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 22:21:50', '2026-03-24 22:21:50'),
('1141', '778', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 22:41:48', '2026-03-24 22:41:48'),
('1142', '779', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 22:44:18', '2026-03-24 22:44:18'),
('1143', '780', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 23:02:17', '2026-03-24 23:02:17'),
('1144', '781', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 23:16:08', '2026-03-24 23:16:08'),
('1145', '782', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-24 23:16:36', '2026-03-24 23:16:36'),
('1146', '782', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 23:16:36', '2026-03-24 23:16:36'),
('1147', '783', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-24 23:59:20', '2026-03-24 23:59:20'),
('1148', '784', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:03:43', '2026-03-25 00:03:43'),
('1149', '785', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:10:21', '2026-03-25 00:10:21'),
('1150', '785', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:10:21', '2026-03-25 00:10:21'),
('1151', '786', NULL, NULL, '32', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1152', '786', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1153', '786', NULL, NULL, '31', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1154', '786', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1155', '786', NULL, NULL, '23', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1156', '786', NULL, NULL, '48', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('1157', '787', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:16:00', '2026-03-25 00:16:00'),
('1158', '788', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:16:26', '2026-03-25 00:16:26'),
('1159', '788', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:16:26', '2026-03-25 00:16:26'),
('1160', '789', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 00:23:31', '2026-03-25 00:23:31'),
('1161', '790', NULL, NULL, '44', NULL, '', '8', NULL, NULL, NULL, NULL, '2026-03-25 00:38:48', '2026-03-25 00:38:48'),
('1162', '791', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 00:52:00', '2026-03-25 00:52:00'),
('1163', '792', NULL, NULL, '44', NULL, '', '7', NULL, NULL, NULL, NULL, '2026-03-25 00:54:27', '2026-03-25 00:54:27'),
('1164', '793', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 01:00:32', '2026-03-25 01:00:32'),
('1165', '794', NULL, NULL, '30', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 01:17:13', '2026-03-25 01:17:13'),
('1166', '795', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 01:57:58', '2026-03-25 01:57:58'),
('1167', '796', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 02:20:48', '2026-03-25 02:20:48'),
('1168', '796', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 02:20:48', '2026-03-25 02:20:48'),
('1169', '797', NULL, NULL, '11', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('1170', '797', NULL, NULL, '13', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('1171', '797', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('1172', '797', NULL, NULL, '17', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('1173', '797', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('1174', '798', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-25 18:52:51', '2026-03-25 18:52:51'),
('1175', '799', NULL, NULL, '47', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-25 19:09:02', '2026-03-25 19:09:02'),
('1176', '800', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 20:02:44', '2026-03-25 20:02:44'),
('1177', '801', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 20:59:47', '2026-03-25 20:59:47'),
('1178', '802', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 22:27:46', '2026-03-25 22:27:46'),
('1179', '802', NULL, NULL, '5', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 22:27:46', '2026-03-25 22:27:46'),
('1180', '803', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 23:09:52', '2026-03-25 23:09:52'),
('1181', '804', NULL, NULL, '104', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-25 23:45:40', '2026-03-25 23:45:40'),
('1182', '805', NULL, NULL, '30', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-26 20:22:04', '2026-03-26 20:22:04'),
('1183', '806', NULL, NULL, '5', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-26 20:29:08', '2026-03-26 20:29:08'),
('1184', '807', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-26 20:59:04', '2026-03-26 20:59:04'),
('1185', '808', NULL, NULL, '9', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-26 21:10:22', '2026-03-26 21:10:22'),
('1186', '809', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-26 21:25:12', '2026-03-26 21:25:12'),
('1187', '810', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-26 22:22:00', '2026-03-26 22:22:00'),
('1188', '811', NULL, NULL, '10', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-26 23:01:55', '2026-03-26 23:01:55'),
('1189', '812', NULL, NULL, '93', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-26 23:02:15', '2026-03-26 23:02:15'),
('1190', '813', NULL, NULL, '93', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-26 23:18:36', '2026-03-26 23:18:36'),
('1191', '813', NULL, NULL, '15', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-26 23:18:36', '2026-03-26 23:18:36'),
('1192', '814', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 00:08:49', '2026-03-27 00:08:49'),
('1193', '815', NULL, NULL, '20', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 00:13:30', '2026-03-27 00:13:30'),
('1194', '816', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 00:17:19', '2026-03-27 00:17:19'),
('1195', '817', NULL, NULL, '76', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 00:23:46', '2026-03-27 00:23:46'),
('1196', '818', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 00:25:21', '2026-03-27 00:25:21'),
('1197', '819', NULL, NULL, '44', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 00:39:53', '2026-03-27 00:39:53'),
('1198', '820', NULL, NULL, '66', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 20:36:38', '2026-03-27 20:36:38'),
('1199', '820', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 20:36:38', '2026-03-27 20:36:38'),
('1200', '821', NULL, NULL, '62', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-27 20:58:21', '2026-03-27 20:58:21'),
('1201', '821', NULL, NULL, '2', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 20:58:21', '2026-03-27 20:58:21'),
('1202', '821', NULL, NULL, '26', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 20:58:21', '2026-03-27 20:58:21'),
('1203', '822', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 21:38:24', '2026-03-27 21:38:24'),
('1204', '823', NULL, NULL, '107', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 21:44:20', '2026-03-27 21:44:20'),
('1205', '824', NULL, NULL, '67', NULL, '', '4', NULL, NULL, NULL, NULL, '2026-03-27 21:50:12', '2026-03-27 21:50:12'),
('1206', '824', NULL, NULL, '3', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 21:50:12', '2026-03-27 21:50:12'),
('1207', '824', NULL, NULL, '9', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 21:50:12', '2026-03-27 21:50:12'),
('1208', '824', NULL, NULL, '13', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 21:50:12', '2026-03-27 21:50:12'),
('1209', '825', NULL, NULL, '67', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 21:53:19', '2026-03-27 21:53:19'),
('1210', '826', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 21:54:50', '2026-03-27 21:54:50'),
('1211', '827', NULL, NULL, '107', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:00:26', '2026-03-27 22:00:26'),
('1212', '828', NULL, NULL, '107', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:03:35', '2026-03-27 22:03:35'),
('1213', '828', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:03:35', '2026-03-27 22:03:35'),
('1214', '829', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:21:19', '2026-03-27 22:21:19'),
('1215', '829', NULL, NULL, '107', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:21:19', '2026-03-27 22:21:19'),
('1216', '830', NULL, NULL, '31', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 22:36:31', '2026-03-27 22:36:31'),
('1217', '831', NULL, NULL, '67', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 22:38:30', '2026-03-27 22:38:30'),
('1218', '832', NULL, NULL, '62', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:41:56', '2026-03-27 22:41:56'),
('1219', '832', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:41:56', '2026-03-27 22:41:56'),
('1220', '833', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-27 22:53:16', '2026-03-27 22:53:16'),
('1221', '834', NULL, NULL, '2', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 22:55:41', '2026-03-27 22:55:41'),
('1222', '835', NULL, NULL, '3', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 23:10:20', '2026-03-27 23:10:20'),
('1223', '835', NULL, NULL, '62', NULL, '', '2', NULL, NULL, NULL, NULL, '2026-03-27 23:10:20', '2026-03-27 23:10:20'),
('1224', '836', NULL, NULL, '67', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 23:12:09', '2026-03-27 23:12:09'),
('1225', '837', NULL, NULL, '107', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-27 23:19:06', '2026-03-27 23:19:06'),
('1226', '838', NULL, NULL, '2', NULL, '', '3', NULL, NULL, NULL, NULL, '2026-03-27 23:58:08', '2026-03-27 23:58:08'),
('1227', '839', NULL, NULL, '4', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-28 00:03:33', '2026-03-28 00:03:33'),
('1228', '840', NULL, NULL, '12', NULL, '', '1', NULL, NULL, NULL, NULL, '2026-03-28 00:27:54', '2026-03-28 00:27:54');


-- Table structure for table `kot_places`
DROP TABLE IF EXISTS `kot_places`;
CREATE TABLE `kot_places` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_places_branch_id_foreign` (`branch_id`),
  KEY `kot_places_printer_id_foreign` (`printer_id`),
  CONSTRAINT `kot_places_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kot_places_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_places`
INSERT INTO `kot_places` VALUES
('1', '1', '1', 'Default Kitchen', 'food', '1', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '2', '2', 'Default Kitchen', 'food', '1', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '3', '3', 'Default Kitchen', 'food', '1', '1', '2025-11-27 01:20:35', '2025-12-28 10:10:17'),
('4', NULL, '4', 'Default Kitchen', 'food', '1', '1', '2025-11-27 10:17:22', '2025-12-29 20:23:37'),
('5', '5', '5', 'Default Kitchen', 'food', '1', '1', '2025-12-01 11:34:16', '2025-12-27 15:56:53');


-- Table structure for table `kot_settings`
DROP TABLE IF EXISTS `kot_settings`;
CREATE TABLE `kot_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `default_status` enum('pending','cooking') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `enable_item_level_status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kot_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `kot_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kot_settings`
INSERT INTO `kot_settings` VALUES
('1', '1', 'pending', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'pending', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '2', 'pending', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '2', 'pending', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', '3', 'pending', '0', '2025-11-27 01:20:35', '2025-12-03 09:19:34'),
('6', '4', 'cooking', '0', '2025-11-27 10:17:22', '2026-01-13 19:27:34'),
('7', '5', 'pending', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16');


-- Table structure for table `kots`
DROP TABLE IF EXISTS `kots`;
CREATE TABLE `kots` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `kitchen_place_id` bigint unsigned DEFAULT NULL,
  `kot_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token_number` int unsigned DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `order_type_id` bigint unsigned DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('pending_confirmation','in_kitchen','food_ready','served','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'in_kitchen',
  `cancel_reason_id` bigint unsigned DEFAULT NULL,
  `cancel_reason_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kots_order_id_foreign` (`order_id`),
  KEY `kots_branch_id_foreign` (`branch_id`),
  KEY `kots_cancel_reason_id_foreign` (`cancel_reason_id`),
  KEY `kots_order_type_id_foreign` (`order_type_id`),
  KEY `kots_kitchen_place_id_foreign` (`kitchen_place_id`),
  CONSTRAINT `kots_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kots_cancel_reason_id_foreign` FOREIGN KEY (`cancel_reason_id`) REFERENCES `kot_cancel_reasons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `kots_kitchen_place_id_foreign` FOREIGN KEY (`kitchen_place_id`) REFERENCES `kot_places` (`id`) ON DELETE SET NULL,
  CONSTRAINT `kots_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `kots_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=841 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `kots`
INSERT INTO `kots` VALUES
('1', '3', NULL, '2', NULL, '1', '7', NULL, NULL, 'cancelled', NULL, NULL, '2025-11-27 05:35:38', '2025-12-03 09:41:17'),
('2', '3', NULL, '4', NULL, '2', '7', 'TXN_692823934acec2.92384494_925936', NULL, 'served', NULL, NULL, '2025-11-27 10:10:27', '2025-11-27 10:12:44'),
('3', '3', NULL, '6', NULL, '9', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-11-27 20:25:19', '2025-11-27 20:25:19'),
('4', '3', NULL, '8', NULL, '26', '7', NULL, NULL, 'served', NULL, NULL, '2025-11-30 08:48:31', '2025-12-11 05:55:08'),
('5', '4', NULL, '2', NULL, '27', '10', 'TXN_692cb563ab1c15.92546994_541067', NULL, 'pending_confirmation', NULL, NULL, '2025-11-30 21:21:39', '2025-11-30 21:21:39'),
('6', '3', NULL, '10', NULL, '94', '7', NULL, NULL, 'served', NULL, NULL, '2025-12-11 05:46:11', '2025-12-11 05:49:32'),
('7', '3', NULL, '12', NULL, '94', '7', NULL, NULL, 'served', NULL, NULL, '2025-12-11 05:48:18', '2025-12-11 05:49:32'),
('8', '3', NULL, '14', NULL, '95', '7', NULL, NULL, 'served', NULL, NULL, '2025-12-11 05:50:31', '2025-12-11 05:51:13'),
('9', '3', NULL, '16', NULL, '26', '7', NULL, NULL, 'served', NULL, NULL, '2025-12-11 05:55:03', '2025-12-11 05:55:08'),
('10', '4', NULL, '4', NULL, '106', '10', 'TXN_693c8906cd7e57.55486826_579531', NULL, 'served', NULL, NULL, '2025-12-12 21:28:38', '2025-12-12 21:31:19'),
('11', '4', NULL, '6', NULL, '199', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-22 21:31:23', '2025-12-22 21:31:23'),
('12', '4', NULL, '8', NULL, '199', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-22 21:37:41', '2025-12-22 21:37:41'),
('13', '4', NULL, '10', NULL, '199', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-22 22:17:11', '2025-12-22 22:17:11'),
('14', '4', NULL, '12', NULL, '201', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-22 22:44:44', '2025-12-22 22:44:44'),
('15', '4', NULL, '14', NULL, '199', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-22 22:50:57', '2025-12-22 22:50:57'),
('16', '4', NULL, '16', NULL, '202', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 00:12:53', '2025-12-23 00:12:53'),
('17', '4', NULL, '18', NULL, '199', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 00:14:51', '2025-12-23 00:14:51'),
('18', '4', NULL, '20', NULL, '206', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 22:30:12', '2025-12-23 22:30:12'),
('19', '4', NULL, '22', NULL, '207', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 22:30:44', '2025-12-23 22:30:44'),
('20', '4', NULL, '24', NULL, '206', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 22:59:39', '2025-12-23 22:59:39'),
('21', '4', NULL, '26', NULL, '207', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-23 23:00:32', '2025-12-23 23:00:32'),
('22', '4', NULL, '28', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 00:27:54', '2025-12-24 00:27:54'),
('23', '4', NULL, '30', NULL, '206', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 00:32:18', '2025-12-24 00:32:18'),
('24', '4', NULL, '32', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 00:41:31', '2025-12-24 00:41:31'),
('25', '4', NULL, '34', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 00:55:24', '2025-12-24 00:55:24'),
('26', '4', NULL, '36', NULL, '206', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 00:55:53', '2025-12-24 00:55:53'),
('27', '4', NULL, '38', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 01:14:57', '2025-12-24 01:14:57'),
('28', '4', NULL, '40', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 01:57:12', '2025-12-24 01:57:12'),
('29', '4', NULL, '42', NULL, '208', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 02:11:06', '2025-12-24 02:11:06'),
('30', '4', NULL, '44', NULL, '210', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 02:25:23', '2025-12-24 02:25:23'),
('31', '4', NULL, '46', NULL, '211', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 20:10:03', '2025-12-24 20:10:03'),
('32', '4', NULL, '48', NULL, '211', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-24 21:11:55', '2025-12-24 21:11:55'),
('33', '3', NULL, '18', NULL, '249', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-27 21:48:30', '2025-12-27 21:48:30'),
('34', '3', NULL, '20', NULL, '250', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-27 21:49:01', '2025-12-27 21:49:01'),
('35', '3', NULL, '22', NULL, '250', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-27 21:49:37', '2025-12-27 21:49:37'),
('36', '3', NULL, '24', NULL, '251', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-27 21:49:49', '2025-12-27 21:49:49'),
('37', '3', NULL, '26', NULL, '264', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 09:41:33', '2025-12-28 09:41:33'),
('38', '3', NULL, '28', NULL, '266', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 09:46:12', '2025-12-28 09:46:12'),
('39', '3', NULL, '30', NULL, '266', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 09:46:44', '2025-12-28 09:46:44'),
('40', '3', NULL, '32', NULL, '267', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 09:52:49', '2025-12-28 09:52:49'),
('41', '4', NULL, '50', NULL, '271', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 20:24:12', '2025-12-28 20:24:12'),
('42', '4', NULL, '52', NULL, '272', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 20:59:31', '2025-12-28 20:59:31'),
('43', '4', NULL, '54', NULL, '273', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 22:02:24', '2025-12-28 22:02:24'),
('44', '4', NULL, '56', NULL, '274', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 22:03:42', '2025-12-28 22:03:42'),
('45', '4', NULL, '58', NULL, '275', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 22:34:25', '2025-12-28 22:34:25'),
('46', '4', NULL, '60', NULL, '274', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 22:48:40', '2025-12-28 22:48:40'),
('47', '4', NULL, '62', NULL, '276', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 23:22:56', '2025-12-28 23:22:56'),
('48', '4', NULL, '64', NULL, '274', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 23:25:24', '2025-12-28 23:25:24'),
('49', '4', NULL, '66', NULL, '277', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-28 23:36:40', '2025-12-28 23:36:40'),
('50', '4', NULL, '68', NULL, '280', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-29 20:26:14', '2025-12-29 20:26:14'),
('51', '4', NULL, '70', NULL, '281', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-29 20:27:46', '2025-12-29 20:27:46'),
('52', '4', NULL, '72', NULL, '282', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-29 20:29:29', '2025-12-29 20:29:29'),
('53', '4', NULL, '74', NULL, '285', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 20:13:42', '2025-12-30 20:13:42'),
('54', '4', NULL, '76', NULL, '287', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 22:20:19', '2025-12-30 22:20:19'),
('55', '4', NULL, '78', NULL, '288', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 22:58:09', '2025-12-30 22:58:09'),
('56', '4', NULL, '80', NULL, '289', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 23:18:07', '2025-12-30 23:18:07'),
('57', '4', NULL, '82', NULL, '288', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 23:19:37', '2025-12-30 23:19:37'),
('58', '4', NULL, '84', NULL, '287', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 23:35:00', '2025-12-30 23:35:00'),
('59', '4', NULL, '86', NULL, '287', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2025-12-30 23:55:27', '2025-12-30 23:55:27'),
('60', '3', NULL, '34', NULL, '354', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-14 15:25:44', '2026-01-14 15:25:44'),
('61', '3', NULL, '36', NULL, '354', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-14 15:25:59', '2026-01-14 15:25:59'),
('62', '3', NULL, '38', NULL, '360', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-15 11:03:50', '2026-01-15 11:03:50'),
('63', '3', NULL, '40', NULL, '360', '7', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-15 11:04:09', '2026-01-15 11:04:09'),
('64', '1', NULL, '2', NULL, '375', '1', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 07:07:55', '2026-01-19 07:07:55'),
('66', '1', NULL, '4', NULL, '379', '1', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 08:39:44', '2026-01-19 08:39:44'),
('67', '4', '4', '87', NULL, '383', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 08:45:57', '2026-01-19 08:45:57'),
('68', '4', '4', '88', NULL, '383', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 08:46:25', '2026-01-19 08:46:25'),
('69', '4', '4', '89', NULL, '374', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:54:48', '2026-01-19 18:54:48'),
('70', '4', '4', '90', NULL, '376', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:55:44', '2026-01-19 18:55:44'),
('71', '4', '4', '91', NULL, '377', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:56:51', '2026-01-19 18:56:51'),
('72', '4', '4', '92', NULL, '383', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:57:16', '2026-01-19 18:57:16'),
('73', '4', '4', '93', NULL, '384', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:58:41', '2026-01-19 18:58:41'),
('74', '4', '4', '94', NULL, '384', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 18:59:04', '2026-01-19 18:59:04'),
('75', '4', '4', '95', NULL, '386', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:03:09', '2026-01-19 19:03:09'),
('76', '4', '4', '96', NULL, '386', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:03:30', '2026-01-19 19:03:30'),
('77', '4', '4', '97', NULL, '386', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:04:25', '2026-01-19 19:04:25'),
('78', '4', '4', '98', NULL, '387', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:14:42', '2026-01-19 19:14:42'),
('79', '4', '4', '99', NULL, '387', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:15:36', '2026-01-19 19:15:36'),
('80', '4', '4', '100', NULL, '387', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 19:19:38', '2026-01-19 19:19:38'),
('82', '4', '4', '101', NULL, '391', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 21:49:03', '2026-01-19 21:49:03'),
('83', '4', '4', '102', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 21:51:01', '2026-01-19 21:51:01'),
('84', '4', '4', '103', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 21:57:31', '2026-01-19 21:57:31'),
('85', '4', '4', '104', NULL, '391', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 22:25:35', '2026-01-19 22:25:35'),
('86', '4', '4', '105', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 22:45:24', '2026-01-19 22:45:24'),
('87', '4', '4', '106', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:10:11', '2026-01-19 23:10:11'),
('88', '4', '4', '107', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:10:57', '2026-01-19 23:10:57'),
('89', '4', '4', '108', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:36:37', '2026-01-19 23:36:37'),
('90', '4', '4', '109', NULL, '391', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:37:04', '2026-01-19 23:37:04'),
('91', '4', '4', '110', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:53:49', '2026-01-19 23:53:49'),
('92', '4', '4', '111', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-19 23:56:15', '2026-01-19 23:56:15'),
('93', '4', '4', '112', NULL, '393', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-20 00:10:00', '2026-01-20 00:10:00'),
('94', '4', '4', '113', NULL, '404', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 19:41:59', '2026-01-23 19:41:59'),
('95', '4', '4', '114', NULL, '404', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 19:46:17', '2026-01-23 19:46:17'),
('96', '4', '4', '115', NULL, '405', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 20:09:20', '2026-01-23 20:09:20'),
('97', '4', '4', '116', NULL, '405', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 20:40:49', '2026-01-23 20:40:49'),
('98', '4', '4', '117', NULL, '406', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 20:42:03', '2026-01-23 20:42:03'),
('99', '4', '4', '118', NULL, '406', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 21:03:46', '2026-01-23 21:03:46'),
('100', '4', '4', '119', NULL, '405', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 21:24:59', '2026-01-23 21:24:59'),
('101', '4', '4', '120', NULL, '409', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 21:53:18', '2026-01-23 21:53:18'),
('102', '4', '4', '121', NULL, '409', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 21:53:38', '2026-01-23 21:53:38'),
('103', '4', '4', '122', NULL, '410', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 22:34:39', '2026-01-23 22:34:39'),
('104', '4', '4', '123', NULL, '411', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 22:38:56', '2026-01-23 22:38:56'),
('105', '4', '4', '124', NULL, '406', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 22:39:24', '2026-01-23 22:39:24'),
('106', '4', '4', '125', NULL, '406', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 23:28:39', '2026-01-23 23:28:39'),
('107', '4', '4', '126', NULL, '412', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-23 23:33:25', '2026-01-23 23:33:25'),
('108', '4', '4', '127', NULL, '411', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-24 00:24:18', '2026-01-24 00:24:18'),
('109', '4', '4', '128', NULL, '415', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-25 18:42:11', '2026-01-25 18:42:11'),
('110', '4', '4', '129', NULL, '419', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-27 23:31:08', '2026-01-27 23:31:08'),
('111', '4', '4', '130', NULL, '420', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-28 21:38:53', '2026-01-28 21:38:53'),
('112', '4', '4', '131', NULL, '420', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-28 21:40:12', '2026-01-28 21:40:12'),
('113', '4', '4', '132', NULL, '421', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-28 22:51:20', '2026-01-28 22:51:20'),
('114', '4', '4', '133', NULL, '421', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-28 23:35:20', '2026-01-28 23:35:20'),
('115', '4', '4', '134', NULL, '422', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 19:15:12', '2026-01-30 19:15:12'),
('116', '4', '4', '135', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 19:15:42', '2026-01-30 19:15:42'),
('117', '4', '4', '136', NULL, '424', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 19:16:15', '2026-01-30 19:16:15'),
('118', '4', '4', '137', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 20:33:31', '2026-01-30 20:33:31'),
('119', '4', '4', '138', NULL, '426', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 20:34:52', '2026-01-30 20:34:52'),
('120', '4', '4', '139', NULL, '426', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 20:37:28', '2026-01-30 20:37:28'),
('121', '4', '4', '140', NULL, '426', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 21:46:05', '2026-01-30 21:46:05'),
('122', '4', '4', '141', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 22:07:47', '2026-01-30 22:07:47'),
('123', '4', '4', '142', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 22:47:26', '2026-01-30 22:47:26'),
('124', '4', '4', '143', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 22:56:44', '2026-01-30 22:56:44'),
('125', '4', '4', '144', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:05:37', '2026-01-30 23:05:37'),
('126', '4', '4', '145', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:17:59', '2026-01-30 23:17:59'),
('127', '4', '4', '146', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:25:00', '2026-01-30 23:25:00'),
('128', '4', '4', '147', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:25:50', '2026-01-30 23:25:50'),
('129', '4', '4', '148', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:56:52', '2026-01-30 23:56:52'),
('130', '4', '4', '149', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-30 23:57:23', '2026-01-30 23:57:23'),
('131', '4', '4', '150', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:12:16', '2026-01-31 00:12:16'),
('132', '4', '4', '151', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:12:41', '2026-01-31 00:12:41'),
('133', '4', '4', '152', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:27:17', '2026-01-31 00:27:17'),
('134', '4', '4', '153', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:43:33', '2026-01-31 00:43:33'),
('135', '4', '4', '154', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:48:50', '2026-01-31 00:48:50'),
('136', '4', '4', '155', NULL, '423', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 00:49:10', '2026-01-31 00:49:10'),
('137', '4', '4', '156', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 01:04:16', '2026-01-31 01:04:16'),
('138', '4', '4', '157', NULL, '427', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 01:15:11', '2026-01-31 01:15:11'),
('139', '4', '4', '158', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:43:18', '2026-01-31 19:43:18'),
('140', '4', '4', '159', NULL, '431', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:44:15', '2026-01-31 19:44:15'),
('141', '4', '4', '160', NULL, '432', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:44:48', '2026-01-31 19:44:48'),
('142', '4', '4', '161', NULL, '433', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:45:48', '2026-01-31 19:45:48'),
('143', '4', '4', '162', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:54:37', '2026-01-31 19:54:37'),
('144', '4', '4', '163', NULL, '431', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 19:54:56', '2026-01-31 19:54:56'),
('145', '4', '4', '164', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:14:14', '2026-01-31 20:14:14'),
('146', '4', '4', '165', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:15:04', '2026-01-31 20:15:04'),
('147', '4', '4', '166', NULL, '435', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:27:54', '2026-01-31 20:27:54'),
('148', '4', '4', '167', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:33:50', '2026-01-31 20:33:50'),
('149', '4', '4', '168', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:40:13', '2026-01-31 20:40:13'),
('150', '4', '4', '169', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:41:24', '2026-01-31 20:41:24'),
('151', '4', '4', '170', NULL, '432', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:47:08', '2026-01-31 20:47:08'),
('152', '4', '4', '171', NULL, '433', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:47:56', '2026-01-31 20:47:56'),
('153', '4', '4', '172', NULL, '437', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:49:13', '2026-01-31 20:49:13'),
('154', '4', '4', '173', NULL, '438', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 20:49:48', '2026-01-31 20:49:48'),
('155', '4', '4', '174', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:05:01', '2026-01-31 21:05:01'),
('156', '4', '4', '175', NULL, '433', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:15:58', '2026-01-31 21:15:58'),
('157', '4', '4', '176', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:19:49', '2026-01-31 21:19:49'),
('158', '4', '4', '177', NULL, '437', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:20:25', '2026-01-31 21:20:25'),
('159', '4', '4', '178', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:28:53', '2026-01-31 21:28:53'),
('160', '4', '4', '179', NULL, '431', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:29:23', '2026-01-31 21:29:23'),
('161', '4', '4', '180', NULL, '438', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:43:10', '2026-01-31 21:43:10'),
('162', '4', '4', '181', NULL, '433', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 21:43:43', '2026-01-31 21:43:43'),
('163', '4', '4', '182', NULL, '437', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 22:13:39', '2026-01-31 22:13:39'),
('164', '4', '4', '183', NULL, '430', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 22:18:56', '2026-01-31 22:18:56'),
('165', '4', '4', '184', NULL, '438', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 22:19:35', '2026-01-31 22:19:35'),
('166', '4', '4', '185', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:03:35', '2026-01-31 23:03:35'),
('167', '4', '4', '186', NULL, '433', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:05:53', '2026-01-31 23:05:53'),
('168', '4', '4', '187', NULL, '437', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:07:50', '2026-01-31 23:07:50'),
('169', '4', '4', '188', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:19:29', '2026-01-31 23:19:29'),
('170', '4', '4', '189', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:29:25', '2026-01-31 23:29:25'),
('171', '4', '4', '190', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-01-31 23:49:40', '2026-01-31 23:49:40'),
('172', '4', '4', '191', NULL, '434', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 01:13:00', '2026-02-01 01:13:00'),
('173', '4', '4', '192', NULL, '446', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 18:20:35', '2026-02-01 18:20:35'),
('174', '4', '4', '193', NULL, '446', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 18:21:10', '2026-02-01 18:21:10'),
('180', '4', '4', '195', NULL, '457', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 21:32:29', '2026-02-01 21:32:29'),
('181', '4', '4', '196', NULL, '458', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 21:37:13', '2026-02-01 21:37:13'),
('182', '4', '4', '197', NULL, '459', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 21:59:52', '2026-02-01 21:59:52'),
('184', '4', '4', '199', NULL, '460', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 22:03:47', '2026-02-01 22:03:47'),
('186', '4', '4', '201', NULL, '459', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 22:13:11', '2026-02-01 22:13:11'),
('187', '4', '4', '202', NULL, '458', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 22:47:40', '2026-02-01 22:47:40'),
('188', '4', '4', '203', NULL, '460', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 22:50:25', '2026-02-01 22:50:25'),
('189', '4', '4', '204', NULL, '457', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 23:02:48', '2026-02-01 23:02:48'),
('190', '4', '4', '205', NULL, '459', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 23:13:31', '2026-02-01 23:13:31'),
('191', '4', '4', '206', NULL, '458', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 23:24:20', '2026-02-01 23:24:20'),
('192', '4', '4', '207', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 23:43:50', '2026-02-01 23:43:50'),
('193', '4', '4', '208', NULL, '465', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-01 23:47:00', '2026-02-01 23:47:00'),
('194', '4', '4', '209', NULL, '457', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:26:20', '2026-02-02 00:26:20'),
('195', '4', '4', '210', NULL, '467', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:28:25', '2026-02-02 00:28:25'),
('196', '4', '4', '211', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:46:08', '2026-02-02 00:46:08'),
('197', '4', '4', '212', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:48:14', '2026-02-02 00:48:14'),
('198', '4', '4', '213', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:56:56', '2026-02-02 00:56:56'),
('199', '4', '4', '214', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 00:58:16', '2026-02-02 00:58:16'),
('200', '4', '4', '215', NULL, '467', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 01:16:40', '2026-02-02 01:16:40'),
('201', '4', '4', '216', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 01:19:01', '2026-02-02 01:19:01'),
('202', '4', '4', '217', NULL, '464', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-02 01:44:13', '2026-02-02 01:44:13'),
('203', '4', '4', '218', NULL, '475', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 18:43:57', '2026-02-03 18:43:57'),
('204', '4', '4', '219', NULL, '475', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 18:45:11', '2026-02-03 18:45:11'),
('205', '4', '4', '220', NULL, '476', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 22:17:12', '2026-02-03 22:17:12'),
('206', '4', '4', '221', NULL, '476', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 22:34:50', '2026-02-03 22:34:50'),
('207', '4', '4', '222', NULL, '476', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 22:37:01', '2026-02-03 22:37:01'),
('208', '4', '4', '223', NULL, '476', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-03 22:51:33', '2026-02-03 22:51:33'),
('209', '4', '4', '224', NULL, '477', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 19:23:37', '2026-02-04 19:23:37'),
('210', '4', '4', '225', NULL, '477', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 19:49:59', '2026-02-04 19:49:59'),
('211', '4', '4', '226', NULL, '477', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 20:22:52', '2026-02-04 20:22:52'),
('212', '4', '4', '227', NULL, '478', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 21:03:28', '2026-02-04 21:03:28'),
('213', '4', '4', '228', NULL, '477', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 21:05:37', '2026-02-04 21:05:37'),
('214', '4', '4', '229', NULL, '479', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 21:27:55', '2026-02-04 21:27:55'),
('215', '4', '4', '230', NULL, '480', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 21:44:54', '2026-02-04 21:44:54'),
('216', '4', '4', '231', NULL, '481', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 21:57:30', '2026-02-04 21:57:30'),
('217', '4', '4', '232', NULL, '480', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 22:29:27', '2026-02-04 22:29:27'),
('218', '4', '4', '233', NULL, '482', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 22:32:52', '2026-02-04 22:32:52'),
('219', '4', '4', '234', NULL, '483', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 22:38:03', '2026-02-04 22:38:03'),
('220', '4', '4', '235', NULL, '484', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 23:00:17', '2026-02-04 23:00:17'),
('221', '4', '4', '236', NULL, '485', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 23:23:05', '2026-02-04 23:23:05'),
('222', '4', '4', '237', NULL, '484', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 23:24:14', '2026-02-04 23:24:14'),
('223', '4', '4', '238', NULL, '486', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 23:35:12', '2026-02-04 23:35:12'),
('224', '4', '4', '239', NULL, '485', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-04 23:58:06', '2026-02-04 23:58:06'),
('225', '4', '4', '240', NULL, '486', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 00:00:06', '2026-02-05 00:00:06'),
('226', '4', '4', '241', NULL, '487', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 00:04:10', '2026-02-05 00:04:10'),
('227', '4', '4', '242', NULL, '488', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 00:05:50', '2026-02-05 00:05:50'),
('228', '4', '4', '243', NULL, '488', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 00:25:37', '2026-02-05 00:25:37'),
('229', '4', '4', '244', NULL, '486', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 00:28:29', '2026-02-05 00:28:29'),
('230', '4', '4', '245', NULL, '489', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:05:12', '2026-02-05 01:05:12'),
('231', '4', '4', '246', NULL, '489', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:08:32', '2026-02-05 01:08:32'),
('232', '4', '4', '247', NULL, '490', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:09:23', '2026-02-05 01:09:23'),
('233', '4', '4', '248', NULL, '489', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:13:38', '2026-02-05 01:13:38'),
('234', '4', '4', '249', NULL, '491', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:22:07', '2026-02-05 01:22:07'),
('235', '4', '4', '250', NULL, '491', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:23:10', '2026-02-05 01:23:10'),
('236', '4', '4', '251', NULL, '492', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:26:53', '2026-02-05 01:26:53'),
('237', '4', '4', '252', NULL, '490', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:29:33', '2026-02-05 01:29:33'),
('238', '4', '4', '253', NULL, '490', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:45:31', '2026-02-05 01:45:31'),
('239', '4', '4', '254', NULL, '490', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 01:59:22', '2026-02-05 01:59:22'),
('240', '4', '4', '255', NULL, '493', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 02:17:28', '2026-02-05 02:17:28'),
('241', '4', '4', '256', NULL, '490', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-05 02:30:17', '2026-02-05 02:30:17'),
('242', '4', '4', '257', NULL, '494', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 20:06:34', '2026-02-06 20:06:34'),
('243', '4', '4', '258', NULL, '494', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 20:41:57', '2026-02-06 20:41:57'),
('244', '4', '4', '259', NULL, '494', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 21:03:50', '2026-02-06 21:03:50'),
('245', '4', '4', '260', NULL, '494', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 21:08:42', '2026-02-06 21:08:42'),
('246', '4', '4', '261', NULL, '495', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 21:19:01', '2026-02-06 21:19:01'),
('247', '4', '4', '262', NULL, '495', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 21:57:53', '2026-02-06 21:57:53'),
('248', '4', '4', '263', NULL, '496', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 22:13:30', '2026-02-06 22:13:30'),
('249', '4', '4', '264', NULL, '494', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 22:28:32', '2026-02-06 22:28:32'),
('250', '4', '4', '265', NULL, '497', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 22:32:25', '2026-02-06 22:32:25'),
('251', '4', '4', '266', NULL, '498', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 22:43:48', '2026-02-06 22:43:48'),
('252', '4', '4', '267', NULL, '499', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 23:00:19', '2026-02-06 23:00:19'),
('253', '4', '4', '268', NULL, '498', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 23:11:46', '2026-02-06 23:11:46'),
('254', '4', '4', '269', NULL, '498', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-06 23:19:22', '2026-02-06 23:19:22'),
('255', '4', '4', '270', NULL, '500', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 00:11:24', '2026-02-07 00:11:24'),
('256', '4', '4', '271', NULL, '498', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 00:20:54', '2026-02-07 00:20:54'),
('257', '4', '4', '272', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 01:11:17', '2026-02-07 01:11:17'),
('258', '4', '4', '273', NULL, '502', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 01:26:23', '2026-02-07 01:26:23'),
('259', '4', '4', '274', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 01:35:03', '2026-02-07 01:35:03'),
('260', '4', '4', '275', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 01:54:31', '2026-02-07 01:54:31'),
('261', '4', '4', '276', NULL, '503', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 01:58:39', '2026-02-07 01:58:39'),
('262', '4', '4', '277', NULL, '504', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 02:06:25', '2026-02-07 02:06:25'),
('263', '4', '4', '278', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 02:20:33', '2026-02-07 02:20:33'),
('264', '4', '4', '279', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 02:23:31', '2026-02-07 02:23:31'),
('265', '4', '4', '280', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 02:51:00', '2026-02-07 02:51:00'),
('266', '4', '4', '281', NULL, '501', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 03:12:23', '2026-02-07 03:12:23'),
('267', '4', '4', '282', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 18:35:55', '2026-02-07 18:35:55'),
('268', '4', '4', '283', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 19:25:58', '2026-02-07 19:25:58'),
('269', '4', '4', '284', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 19:47:43', '2026-02-07 19:47:43'),
('270', '4', '4', '285', NULL, '506', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 19:51:45', '2026-02-07 19:51:45'),
('271', '4', '4', '286', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 20:00:53', '2026-02-07 20:00:53'),
('272', '4', '4', '287', NULL, '507', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 20:11:51', '2026-02-07 20:11:51'),
('273', '4', '4', '288', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 20:33:49', '2026-02-07 20:33:49'),
('274', '4', '4', '289', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 20:47:33', '2026-02-07 20:47:33'),
('275', '4', '4', '290', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 20:57:04', '2026-02-07 20:57:04'),
('276', '4', '4', '291', NULL, '505', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 21:01:32', '2026-02-07 21:01:32'),
('277', '4', '4', '292', NULL, '508', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 21:02:27', '2026-02-07 21:02:27'),
('278', '4', '4', '293', NULL, '509', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-07 21:10:25', '2026-02-07 21:10:25'),
('279', '4', '4', '294', NULL, '510', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 19:39:56', '2026-02-09 19:39:56'),
('280', '4', '4', '295', NULL, '510', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 19:40:17', '2026-02-09 19:40:17'),
('281', '4', '4', '296', NULL, '512', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 19:42:53', '2026-02-09 19:42:53'),
('282', '4', '4', '297', NULL, '512', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 19:43:13', '2026-02-09 19:43:13'),
('283', '4', '4', '298', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 20:52:01', '2026-02-09 20:52:01'),
('284', '4', '4', '299', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 21:09:40', '2026-02-09 21:09:40'),
('285', '4', '4', '300', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 21:51:55', '2026-02-09 21:51:55'),
('286', '4', '4', '301', NULL, '515', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 21:52:34', '2026-02-09 21:52:34'),
('287', '4', '4', '302', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 21:56:06', '2026-02-09 21:56:06'),
('288', '4', '4', '303', NULL, '515', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 21:56:30', '2026-02-09 21:56:30'),
('289', '4', '4', '304', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 22:01:38', '2026-02-09 22:01:38'),
('290', '4', '4', '305', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 22:07:26', '2026-02-09 22:07:26'),
('291', '4', '4', '306', NULL, '515', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 22:31:06', '2026-02-09 22:31:06'),
('292', '4', '4', '307', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 22:54:03', '2026-02-09 22:54:03'),
('293', '4', '4', '308', NULL, '513', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-09 22:56:20', '2026-02-09 22:56:20'),
('294', '4', '4', '309', NULL, '518', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 00:20:51', '2026-02-10 00:20:51'),
('295', '4', '4', '310', NULL, '519', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 00:21:33', '2026-02-10 00:21:33'),
('296', '4', '4', '311', NULL, '518', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 01:59:14', '2026-02-10 01:59:14'),
('297', '4', '4', '312', NULL, '520', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 02:01:12', '2026-02-10 02:01:12'),
('298', '4', '4', '313', NULL, '521', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 02:05:28', '2026-02-10 02:05:28'),
('299', '4', '4', '314', NULL, '521', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 03:32:28', '2026-02-10 03:32:28'),
('300', '4', '4', '315', NULL, '523', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 03:33:33', '2026-02-10 03:33:33'),
('301', '4', '4', '316', NULL, '521', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 04:15:21', '2026-02-10 04:15:21'),
('302', '4', '4', '317', NULL, '524', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 19:20:44', '2026-02-10 19:20:44'),
('303', '4', '4', '318', NULL, '525', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-10 21:52:32', '2026-02-10 21:52:32'),
('305', '4', '4', '319', NULL, '528', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 19:09:14', '2026-02-11 19:09:14'),
('306', '4', '4', '320', NULL, '528', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 20:19:53', '2026-02-11 20:19:53'),
('307', '4', '4', '321', NULL, '529', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 20:56:59', '2026-02-11 20:56:59'),
('308', '4', '4', '322', NULL, '530', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 21:18:29', '2026-02-11 21:18:29'),
('309', '4', '4', '323', NULL, '531', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 21:23:37', '2026-02-11 21:23:37'),
('310', '4', '4', '324', NULL, '531', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 21:58:01', '2026-02-11 21:58:01'),
('311', '4', '4', '325', NULL, '532', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-11 22:58:15', '2026-02-11 22:58:15'),
('312', '4', '4', '326', NULL, '533', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 00:07:42', '2026-02-12 00:07:42'),
('313', '4', '4', '327', NULL, '534', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 21:23:13', '2026-02-12 21:23:13'),
('314', '4', '4', '328', NULL, '535', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 21:58:19', '2026-02-12 21:58:19'),
('315', '4', '4', '329', NULL, '536', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 22:04:44', '2026-02-12 22:04:44'),
('316', '4', '4', '330', NULL, '537', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 22:05:03', '2026-02-12 22:05:03'),
('317', '4', '4', '331', NULL, '538', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 22:40:18', '2026-02-12 22:40:18'),
('318', '4', '4', '332', NULL, '539', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 22:51:48', '2026-02-12 22:51:48'),
('319', '4', '4', '333', NULL, '540', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 23:22:00', '2026-02-12 23:22:00'),
('320', '4', '4', '334', NULL, '541', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 23:47:44', '2026-02-12 23:47:44'),
('321', '4', '4', '335', NULL, '542', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 23:54:14', '2026-02-12 23:54:14'),
('322', '4', '4', '336', NULL, '543', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-12 23:59:07', '2026-02-12 23:59:07'),
('323', '4', '4', '337', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:01:03', '2026-02-13 00:01:03'),
('324', '4', '4', '338', NULL, '545', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:14:26', '2026-02-13 00:14:26'),
('325', '4', '4', '339', NULL, '545', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:29:09', '2026-02-13 00:29:09'),
('326', '4', '4', '340', NULL, '546', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:31:43', '2026-02-13 00:31:43'),
('327', '4', '4', '341', NULL, '547', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:38:05', '2026-02-13 00:38:05'),
('328', '4', '4', '342', NULL, '543', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:38:37', '2026-02-13 00:38:37'),
('329', '4', '4', '343', NULL, '543', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:47:11', '2026-02-13 00:47:11'),
('330', '4', '4', '344', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:47:50', '2026-02-13 00:47:50'),
('331', '4', '4', '345', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 00:49:05', '2026-02-13 00:49:05'),
('332', '4', '4', '346', NULL, '548', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 01:11:25', '2026-02-13 01:11:25'),
('333', '4', '4', '347', NULL, '543', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 01:56:28', '2026-02-13 01:56:28'),
('334', '4', '4', '348', NULL, '549', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 01:58:56', '2026-02-13 01:58:56'),
('335', '4', '4', '349', NULL, '548', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:24:42', '2026-02-13 02:24:42'),
('336', '4', '4', '350', NULL, '549', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:38:55', '2026-02-13 02:38:55'),
('337', '4', '4', '351', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:42:32', '2026-02-13 02:42:32'),
('338', '4', '4', '352', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:50:10', '2026-02-13 02:50:10'),
('339', '4', '4', '353', NULL, '544', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:51:03', '2026-02-13 02:51:03'),
('340', '4', '4', '354', NULL, '550', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 02:57:09', '2026-02-13 02:57:09'),
('341', '4', '4', '355', NULL, '551', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 03:02:42', '2026-02-13 03:02:42'),
('342', '4', '4', '356', NULL, '552', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 03:43:42', '2026-02-13 03:43:42'),
('343', '4', NULL, '358', NULL, '553', '10', 'TXN_698f714d107ee7.63225913_673554', NULL, 'in_kitchen', NULL, NULL, '2026-02-13 18:45:33', '2026-02-13 18:45:33'),
('344', '4', '4', '359', NULL, '560', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 20:13:03', '2026-02-13 20:13:03'),
('345', '4', '4', '360', NULL, '561', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 20:21:06', '2026-02-13 20:21:06'),
('346', '4', '4', '361', NULL, '561', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 20:22:29', '2026-02-13 20:22:29'),
('347', '4', '4', '362', NULL, '561', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 20:25:29', '2026-02-13 20:25:29'),
('348', '4', '4', '363', NULL, '567', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 20:53:22', '2026-02-13 20:53:22'),
('349', '4', '4', '364', NULL, '570', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 21:15:55', '2026-02-13 21:15:55'),
('350', '4', '4', '365', NULL, '572', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 21:25:05', '2026-02-13 21:25:05'),
('351', '4', '4', '366', NULL, '561', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 21:25:56', '2026-02-13 21:25:56'),
('352', '4', '4', '367', NULL, '572', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 21:26:14', '2026-02-13 21:26:14'),
('353', '4', '4', '368', NULL, '572', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 22:13:03', '2026-02-13 22:13:03'),
('354', '4', '4', '369', NULL, '572', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 22:24:50', '2026-02-13 22:24:50'),
('355', '4', '4', '370', NULL, '561', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 22:38:46', '2026-02-13 22:38:46'),
('356', '4', '4', '371', NULL, '572', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-13 22:58:25', '2026-02-13 22:58:25'),
('358', '4', '4', '372', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:17:54', '2026-02-14 23:17:54'),
('359', '4', '4', '373', NULL, '615', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:32:56', '2026-02-14 23:32:56'),
('360', '4', '4', '374', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:34:15', '2026-02-14 23:34:15'),
('361', '4', '4', '375', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:35:27', '2026-02-14 23:35:27'),
('362', '4', '4', '376', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:38:37', '2026-02-14 23:38:37'),
('363', '4', '4', '377', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:42:24', '2026-02-14 23:42:24'),
('364', '4', '4', '378', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:49:16', '2026-02-14 23:49:16'),
('365', '4', '4', '379', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-14 23:59:54', '2026-02-14 23:59:54'),
('366', '4', '4', '380', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:00:19', '2026-02-15 00:00:19'),
('367', '4', '4', '381', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:06:08', '2026-02-15 00:06:08'),
('368', '4', '4', '382', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:16:57', '2026-02-15 00:16:57'),
('369', '4', '4', '383', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:22:26', '2026-02-15 00:22:26'),
('370', '4', '4', '384', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:29:43', '2026-02-15 00:29:43'),
('371', '4', '4', '385', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:33:57', '2026-02-15 00:33:57'),
('372', '4', '4', '386', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 00:37:25', '2026-02-15 00:37:25'),
('373', '4', '4', '387', NULL, '617', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 01:17:15', '2026-02-15 01:17:15'),
('374', '4', '4', '388', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 01:18:18', '2026-02-15 01:18:18'),
('375', '4', '4', '389', NULL, '611', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 01:52:53', '2026-02-15 01:52:53'),
('376', '4', '4', '390', NULL, '631', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 02:29:50', '2026-02-15 02:29:50'),
('377', '4', '4', '391', NULL, '632', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 02:38:19', '2026-02-15 02:38:19'),
('378', '4', '4', '392', NULL, '633', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 03:03:06', '2026-02-15 03:03:06'),
('379', '4', '4', '393', NULL, '634', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 19:15:05', '2026-02-15 19:15:05'),
('380', '4', '4', '394', NULL, '635', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 20:09:06', '2026-02-15 20:09:06'),
('381', '4', '4', '395', NULL, '634', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-15 20:40:48', '2026-02-15 20:40:48'),
('382', '4', '4', '396', NULL, '634', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-16 00:14:40', '2026-02-16 00:14:40'),
('383', '4', '4', '397', NULL, '661', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-16 22:28:50', '2026-02-16 22:28:50'),
('384', '4', '4', '398', NULL, '664', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-16 23:57:03', '2026-02-16 23:57:03'),
('385', '4', '4', '399', NULL, '664', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 00:59:10', '2026-02-17 00:59:10'),
('386', '4', '4', '400', NULL, '669', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 01:19:40', '2026-02-17 01:19:40'),
('387', '4', '4', '401', NULL, '669', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 01:32:18', '2026-02-17 01:32:18'),
('388', '4', '4', '402', NULL, '675', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 19:17:36', '2026-02-17 19:17:36'),
('389', '4', '4', '403', NULL, '675', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 20:40:05', '2026-02-17 20:40:05'),
('390', '4', '4', '404', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 20:45:50', '2026-02-17 20:45:50'),
('391', '4', '4', '405', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 21:19:04', '2026-02-17 21:19:04'),
('392', '4', '4', '406', NULL, '680', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 22:12:36', '2026-02-17 22:12:36'),
('393', '4', '4', '407', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 22:30:37', '2026-02-17 22:30:37'),
('394', '4', '4', '408', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 22:34:18', '2026-02-17 22:34:18'),
('395', '4', '4', '409', NULL, '681', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 22:37:56', '2026-02-17 22:37:56'),
('396', '4', '4', '410', NULL, '681', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 22:55:44', '2026-02-17 22:55:44'),
('397', '4', '4', '411', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 23:25:33', '2026-02-17 23:25:33'),
('398', '4', '4', '412', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-17 23:27:55', '2026-02-17 23:27:55'),
('399', '4', '4', '413', NULL, '685', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-18 00:00:10', '2026-02-18 00:00:10'),
('400', '4', '4', '414', NULL, '678', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-18 00:19:20', '2026-02-18 00:19:20'),
('401', '4', '4', '415', NULL, '689', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-18 00:57:15', '2026-02-18 00:57:15'),
('402', '4', '4', '416', NULL, '689', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-18 01:37:25', '2026-02-18 01:37:25'),
('403', '4', '4', '417', NULL, '691', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-18 01:45:43', '2026-02-18 01:45:43'),
('404', '4', '4', '418', NULL, '697', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-19 01:17:43', '2026-02-19 01:17:43'),
('405', '4', '4', '419', NULL, '697', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-19 02:17:30', '2026-02-19 02:17:30'),
('406', '4', '4', '420', NULL, '697', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-19 20:09:11', '2026-02-19 20:09:11'),
('407', '4', '4', '421', NULL, '701', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-19 22:57:02', '2026-02-19 22:57:02'),
('408', '4', '4', '422', NULL, '701', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 00:19:01', '2026-02-20 00:19:01'),
('409', '4', '4', '423', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 18:59:17', '2026-02-20 18:59:17'),
('410', '4', '4', '424', NULL, '704', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 18:59:57', '2026-02-20 18:59:57'),
('411', '4', '4', '425', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 19:01:37', '2026-02-20 19:01:37'),
('412', '4', '4', '426', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 19:10:11', '2026-02-20 19:10:11'),
('413', '4', '4', '427', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 19:52:35', '2026-02-20 19:52:35'),
('414', '4', '4', '428', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 20:18:08', '2026-02-20 20:18:08'),
('415', '4', '4', '429', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 21:01:09', '2026-02-20 21:01:09'),
('416', '4', '4', '430', NULL, '710', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 21:01:35', '2026-02-20 21:01:35'),
('417', '4', '4', '431', NULL, '703', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 21:50:30', '2026-02-20 21:50:30'),
('418', '4', '4', '432', NULL, '715', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:19:47', '2026-02-20 22:19:47'),
('419', '4', '4', '433', NULL, '716', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:21:25', '2026-02-20 22:21:25'),
('420', '4', '4', '434', NULL, '716', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:24:15', '2026-02-20 22:24:15'),
('421', '4', '4', '435', NULL, '716', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:28:31', '2026-02-20 22:28:31'),
('422', '4', '4', '436', NULL, '717', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:29:22', '2026-02-20 22:29:22'),
('423', '4', '4', '437', NULL, '717', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:38:19', '2026-02-20 22:38:19'),
('424', '4', '4', '438', NULL, '716', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:42:01', '2026-02-20 22:42:01'),
('425', '4', '4', '439', NULL, '719', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 22:48:00', '2026-02-20 22:48:00'),
('426', '4', '4', '440', NULL, '720', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 23:10:33', '2026-02-20 23:10:33'),
('427', '4', '4', '441', NULL, '721', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 23:16:29', '2026-02-20 23:16:29'),
('428', '4', '4', '442', NULL, '724', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 23:53:24', '2026-02-20 23:53:24'),
('429', '4', '4', '443', NULL, '725', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-20 23:54:56', '2026-02-20 23:54:56'),
('430', '4', '4', '444', NULL, '724', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 00:09:28', '2026-02-21 00:09:28'),
('431', '4', '4', '445', NULL, '724', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 01:13:50', '2026-02-21 01:13:50'),
('432', '4', '4', '446', NULL, '734', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 03:33:53', '2026-02-21 03:33:53'),
('433', '4', '4', '447', NULL, '735', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 18:12:01', '2026-02-21 18:12:01'),
('434', '4', '4', '448', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 18:18:04', '2026-02-21 18:18:04'),
('435', '4', '4', '449', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 18:21:39', '2026-02-21 18:21:39'),
('436', '4', '4', '450', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 18:41:00', '2026-02-21 18:41:00'),
('437', '4', '4', '451', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 18:55:57', '2026-02-21 18:55:57'),
('438', '4', '4', '452', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:13:54', '2026-02-21 19:13:54'),
('439', '4', '4', '453', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:20:12', '2026-02-21 19:20:12'),
('440', '4', '4', '454', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:26:26', '2026-02-21 19:26:26'),
('441', '4', '4', '455', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:43:21', '2026-02-21 19:43:21'),
('442', '4', '4', '456', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:48:00', '2026-02-21 19:48:00'),
('443', '4', '4', '457', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:51:57', '2026-02-21 19:51:57'),
('444', '4', '4', '458', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:52:53', '2026-02-21 19:52:53'),
('445', '4', '4', '459', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:53:29', '2026-02-21 19:53:29'),
('446', '4', '4', '460', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 19:55:53', '2026-02-21 19:55:53'),
('447', '4', '4', '461', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:07:36', '2026-02-21 20:07:36'),
('448', '4', '4', '462', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:16:45', '2026-02-21 20:16:45'),
('449', '4', '4', '463', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:23:16', '2026-02-21 20:23:16'),
('450', '4', '4', '464', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:24:08', '2026-02-21 20:24:08'),
('451', '4', '4', '465', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:26:38', '2026-02-21 20:26:38'),
('452', '4', '4', '466', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:27:57', '2026-02-21 20:27:57'),
('453', '4', '4', '467', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:32:22', '2026-02-21 20:32:22'),
('454', '4', '4', '468', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:42:16', '2026-02-21 20:42:16'),
('455', '4', '4', '469', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:49:47', '2026-02-21 20:49:47'),
('456', '4', '4', '470', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:54:01', '2026-02-21 20:54:01'),
('457', '4', '4', '471', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 20:57:27', '2026-02-21 20:57:27'),
('458', '4', '4', '472', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:02:42', '2026-02-21 21:02:42'),
('459', '4', '4', '473', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:08:45', '2026-02-21 21:08:45'),
('460', '4', '4', '474', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:09:06', '2026-02-21 21:09:06'),
('461', '4', '4', '475', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:18:47', '2026-02-21 21:18:47'),
('462', '4', '4', '476', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:20:19', '2026-02-21 21:20:19'),
('463', '4', '4', '477', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:29:07', '2026-02-21 21:29:07'),
('464', '4', '4', '478', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:35:35', '2026-02-21 21:35:35'),
('465', '4', '4', '479', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:38:43', '2026-02-21 21:38:43'),
('466', '4', '4', '480', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:47:02', '2026-02-21 21:47:02'),
('467', '4', '4', '481', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:53:36', '2026-02-21 21:53:36'),
('468', '4', '4', '482', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:56:08', '2026-02-21 21:56:08'),
('469', '4', '4', '483', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 21:56:54', '2026-02-21 21:56:54'),
('470', '4', '4', '484', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:00:57', '2026-02-21 22:00:57'),
('471', '4', '4', '485', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:07:18', '2026-02-21 22:07:18'),
('472', '4', '4', '486', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:10:18', '2026-02-21 22:10:18'),
('473', '4', '4', '487', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:12:03', '2026-02-21 22:12:03'),
('474', '4', '4', '488', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:15:36', '2026-02-21 22:15:36'),
('475', '4', '4', '489', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:17:33', '2026-02-21 22:17:33'),
('476', '4', '4', '490', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:23:41', '2026-02-21 22:23:41'),
('477', '4', '4', '491', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:25:29', '2026-02-21 22:25:29'),
('478', '4', '4', '492', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:26:21', '2026-02-21 22:26:21'),
('479', '4', '4', '493', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:27:46', '2026-02-21 22:27:46'),
('480', '4', '4', '494', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:29:17', '2026-02-21 22:29:17'),
('481', '4', '4', '495', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:30:00', '2026-02-21 22:30:00'),
('482', '4', '4', '496', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:33:45', '2026-02-21 22:33:45'),
('483', '4', '4', '497', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:39:45', '2026-02-21 22:39:45'),
('484', '4', '4', '498', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:41:19', '2026-02-21 22:41:19'),
('485', '4', '4', '499', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:41:54', '2026-02-21 22:41:54'),
('486', '4', '4', '500', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:45:24', '2026-02-21 22:45:24'),
('487', '4', '4', '501', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:47:38', '2026-02-21 22:47:38'),
('488', '4', '4', '502', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:53:11', '2026-02-21 22:53:11'),
('489', '4', '4', '503', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 22:55:10', '2026-02-21 22:55:10'),
('490', '4', '4', '504', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:02:13', '2026-02-21 23:02:13'),
('491', '4', '4', '505', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:03:02', '2026-02-21 23:03:02'),
('492', '4', '4', '506', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:15:03', '2026-02-21 23:15:03'),
('493', '4', '4', '507', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:20:24', '2026-02-21 23:20:24'),
('494', '4', '4', '508', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:24:15', '2026-02-21 23:24:15'),
('495', '4', '4', '509', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:27:16', '2026-02-21 23:27:16'),
('496', '4', '4', '510', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:36:40', '2026-02-21 23:36:40'),
('497', '4', '4', '511', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:45:07', '2026-02-21 23:45:07'),
('498', '4', '4', '512', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-21 23:56:06', '2026-02-21 23:56:06'),
('499', '4', '4', '513', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 00:07:07', '2026-02-22 00:07:07'),
('500', '4', '4', '514', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 00:36:41', '2026-02-22 00:36:41'),
('501', '4', '4', '515', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 00:43:28', '2026-02-22 00:43:28'),
('502', '4', '4', '516', NULL, '736', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 00:49:13', '2026-02-22 00:49:13'),
('503', '4', '4', '517', NULL, '742', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 02:13:02', '2026-02-22 02:13:02'),
('504', '4', '4', '518', NULL, '743', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 02:18:01', '2026-02-22 02:18:01'),
('505', '4', '4', '519', NULL, '744', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 02:19:40', '2026-02-22 02:19:40'),
('506', '4', '4', '520', NULL, '744', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-22 02:22:17', '2026-02-22 02:22:17'),
('507', '4', '4', '521', NULL, '745', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 19:27:23', '2026-02-23 19:27:23'),
('508', '4', '4', '522', NULL, '746', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 21:13:19', '2026-02-23 21:13:19'),
('509', '4', '4', '523', NULL, '746', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 21:57:13', '2026-02-23 21:57:13'),
('510', '4', '4', '524', NULL, '746', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 23:01:59', '2026-02-23 23:01:59'),
('511', '4', '4', '525', NULL, '747', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 23:02:16', '2026-02-23 23:02:16'),
('512', '4', '4', '526', NULL, '749', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 23:31:20', '2026-02-23 23:31:20'),
('513', '4', '4', '527', NULL, '750', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-23 23:57:20', '2026-02-23 23:57:20'),
('514', '4', '4', '528', NULL, '750', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 00:04:52', '2026-02-24 00:04:52'),
('515', '4', '4', '529', NULL, '751', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 00:14:07', '2026-02-24 00:14:07'),
('516', '4', '4', '530', NULL, '752', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 00:33:29', '2026-02-24 00:33:29'),
('517', '4', '4', '531', NULL, '753', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 00:43:33', '2026-02-24 00:43:33'),
('518', '4', '4', '532', NULL, '754', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 00:46:28', '2026-02-24 00:46:28'),
('519', '4', '4', '533', NULL, '753', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 01:14:00', '2026-02-24 01:14:00'),
('520', '4', '4', '534', NULL, '755', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 01:26:27', '2026-02-24 01:26:27'),
('521', '4', '4', '535', NULL, '755', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 01:29:41', '2026-02-24 01:29:41'),
('522', '4', '4', '536', NULL, '755', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 01:31:23', '2026-02-24 01:31:23'),
('523', '4', '4', '537', NULL, '757', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 01:56:12', '2026-02-24 01:56:12'),
('524', '4', '4', '538', NULL, '760', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 02:19:57', '2026-02-24 02:19:57'),
('525', '4', '4', '539', NULL, '760', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 02:52:14', '2026-02-24 02:52:14'),
('526', '4', '4', '540', NULL, '764', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 18:44:33', '2026-02-24 18:44:33'),
('527', '4', '4', '541', NULL, '765', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 18:48:09', '2026-02-24 18:48:09'),
('528', '4', '4', '542', NULL, '764', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 19:24:54', '2026-02-24 19:24:54'),
('529', '4', '4', '543', NULL, '764', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 19:37:17', '2026-02-24 19:37:17'),
('530', '4', '4', '544', NULL, '764', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 19:44:53', '2026-02-24 19:44:53'),
('531', '4', '4', '545', NULL, '770', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 21:39:09', '2026-02-24 21:39:09'),
('532', '4', '4', '546', NULL, '770', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 21:47:18', '2026-02-24 21:47:18'),
('533', '4', '4', '547', NULL, '772', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 23:26:58', '2026-02-24 23:26:58'),
('534', '4', '4', '548', NULL, '772', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 23:32:43', '2026-02-24 23:32:43'),
('535', '4', '4', '549', NULL, '772', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-24 23:51:38', '2026-02-24 23:51:38'),
('536', '4', '4', '550', NULL, '773', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-25 00:06:28', '2026-02-25 00:06:28'),
('537', '4', '4', '551', NULL, '773', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-25 00:50:35', '2026-02-25 00:50:35'),
('538', '4', '4', '552', NULL, '775', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-25 00:50:52', '2026-02-25 00:50:52'),
('539', '4', '4', '553', NULL, '776', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-25 00:57:01', '2026-02-25 00:57:01'),
('540', '4', '4', '554', NULL, '775', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-25 01:04:42', '2026-02-25 01:04:42'),
('541', '4', '4', '555', NULL, '787', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-26 20:57:56', '2026-02-26 20:57:56'),
('542', '4', '4', '556', NULL, '787', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-26 22:02:51', '2026-02-26 22:02:51'),
('543', '4', '4', '557', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 18:26:30', '2026-02-27 18:26:30'),
('544', '4', '4', '558', NULL, '789', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 18:36:38', '2026-02-27 18:36:38'),
('545', '4', '4', '559', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 18:37:06', '2026-02-27 18:37:06'),
('546', '4', '4', '560', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 19:01:44', '2026-02-27 19:01:44'),
('547', '4', '4', '561', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 19:09:41', '2026-02-27 19:09:41'),
('548', '4', '4', '562', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 19:10:34', '2026-02-27 19:10:34'),
('549', '4', '4', '563', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 19:36:07', '2026-02-27 19:36:07'),
('550', '4', '4', '564', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 19:57:17', '2026-02-27 19:57:17'),
('551', '4', '4', '565', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:13:17', '2026-02-27 21:13:17'),
('552', '4', '4', '566', NULL, '794', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:19:42', '2026-02-27 21:19:42'),
('553', '4', '4', '567', NULL, '797', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:25:06', '2026-02-27 21:25:06'),
('554', '4', '4', '568', NULL, '788', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:36:30', '2026-02-27 21:36:30'),
('555', '4', '4', '569', NULL, '797', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:45:49', '2026-02-27 21:45:49'),
('556', '4', '4', '570', NULL, '797', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 21:58:33', '2026-02-27 21:58:33'),
('557', '4', '4', '571', NULL, '797', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:09:00', '2026-02-27 22:09:00'),
('558', '4', '4', '572', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:36:09', '2026-02-27 22:36:09'),
('559', '4', '4', '573', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:41:03', '2026-02-27 22:41:03'),
('560', '4', '4', '574', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:42:23', '2026-02-27 22:42:23'),
('561', '4', '4', '575', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:43:11', '2026-02-27 22:43:11'),
('562', '4', '4', '576', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 22:57:24', '2026-02-27 22:57:24'),
('563', '4', '4', '577', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-27 23:39:47', '2026-02-27 23:39:47'),
('564', '4', '4', '578', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 00:05:39', '2026-02-28 00:05:39'),
('565', '4', '4', '579', NULL, '800', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 00:06:51', '2026-02-28 00:06:51'),
('566', '4', '4', '580', NULL, '812', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 19:14:26', '2026-02-28 19:14:26'),
('567', '4', '4', '581', NULL, '813', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 19:40:53', '2026-02-28 19:40:53'),
('568', '4', '4', '582', NULL, '817', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 20:21:34', '2026-02-28 20:21:34'),
('569', '4', '4', '583', NULL, '818', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 20:38:11', '2026-02-28 20:38:11'),
('570', '4', '4', '584', NULL, '817', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 20:38:33', '2026-02-28 20:38:33'),
('571', '4', '4', '585', NULL, '820', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 20:58:14', '2026-02-28 20:58:14'),
('572', '4', '4', '586', NULL, '820', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 21:17:01', '2026-02-28 21:17:01'),
('573', '4', '4', '587', NULL, '817', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 21:40:53', '2026-02-28 21:40:53'),
('574', '4', '4', '588', NULL, '818', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 22:28:44', '2026-02-28 22:28:44'),
('575', '4', '4', '589', NULL, '818', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 22:34:01', '2026-02-28 22:34:01'),
('576', '4', '4', '590', NULL, '831', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-02-28 23:46:18', '2026-02-28 23:46:18'),
('577', '4', '4', '591', NULL, '835', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-01 00:38:16', '2026-03-01 00:38:16'),
('578', '4', '4', '592', NULL, '831', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-01 00:43:22', '2026-03-01 00:43:22'),
('579', '4', '4', '593', NULL, '837', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-01 00:57:20', '2026-03-01 00:57:20'),
('580', '4', '4', '594', NULL, '847', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-01 02:48:21', '2026-03-01 02:48:21'),
('581', '4', '4', '595', NULL, '880', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 19:05:29', '2026-03-02 19:05:29'),
('582', '4', '4', '596', NULL, '882', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 19:08:27', '2026-03-02 19:08:27'),
('583', '4', '4', '597', NULL, '882', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 19:54:59', '2026-03-02 19:54:59'),
('584', '4', '4', '598', NULL, '882', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 20:03:24', '2026-03-02 20:03:24'),
('585', '4', '4', '599', NULL, '882', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 20:32:29', '2026-03-02 20:32:29'),
('586', '4', '4', '600', NULL, '885', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 21:21:03', '2026-03-02 21:21:03'),
('587', '4', '4', '601', NULL, '880', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 21:28:22', '2026-03-02 21:28:22'),
('588', '4', '4', '602', NULL, '885', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 21:29:31', '2026-03-02 21:29:31'),
('589', '4', '4', '603', NULL, '882', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 22:09:08', '2026-03-02 22:09:08'),
('590', '4', '4', '604', NULL, '880', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 22:21:56', '2026-03-02 22:21:56'),
('591', '4', '4', '605', NULL, '887', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 22:29:29', '2026-03-02 22:29:29'),
('592', '4', '4', '606', NULL, '880', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 22:56:03', '2026-03-02 22:56:03'),
('593', '4', '4', '607', NULL, '887', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 23:16:10', '2026-03-02 23:16:10'),
('594', '4', '4', '608', NULL, '890', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 23:21:36', '2026-03-02 23:21:36'),
('595', '4', '4', '609', NULL, '891', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 23:26:21', '2026-03-02 23:26:21'),
('596', '4', '4', '610', NULL, '890', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 23:26:58', '2026-03-02 23:26:58'),
('597', '4', '4', '611', NULL, '892', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-02 23:33:16', '2026-03-02 23:33:16'),
('598', '4', '4', '612', NULL, '890', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 00:16:19', '2026-03-03 00:16:19'),
('599', '4', '4', '613', NULL, '890', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 00:30:41', '2026-03-03 00:30:41'),
('600', '4', '4', '614', NULL, '893', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 20:06:59', '2026-03-03 20:06:59'),
('601', '4', '4', '615', NULL, '893', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 20:07:39', '2026-03-03 20:07:39'),
('602', '4', '4', '616', NULL, '893', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 20:31:20', '2026-03-03 20:31:20'),
('603', '4', '4', '617', NULL, '893', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 20:54:19', '2026-03-03 20:54:19'),
('604', '4', '4', '618', NULL, '893', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-03 20:59:26', '2026-03-03 20:59:26'),
('605', '4', '4', '619', NULL, '898', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 00:09:55', '2026-03-04 00:09:55'),
('606', '4', '4', '620', NULL, '899', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 18:29:03', '2026-03-04 18:29:03'),
('607', '4', '4', '621', NULL, '899', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 19:42:28', '2026-03-04 19:42:28'),
('608', '4', '4', '622', NULL, '900', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 20:17:31', '2026-03-04 20:17:31'),
('609', '4', '4', '623', NULL, '901', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 20:35:22', '2026-03-04 20:35:22'),
('610', '4', '4', '624', NULL, '900', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 20:47:37', '2026-03-04 20:47:37'),
('611', '4', '4', '625', NULL, '901', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 20:47:56', '2026-03-04 20:47:56'),
('612', '4', '4', '626', NULL, '900', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 20:59:01', '2026-03-04 20:59:01'),
('613', '4', '4', '627', NULL, '901', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 21:04:45', '2026-03-04 21:04:45'),
('614', '4', '4', '628', NULL, '901', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 21:19:15', '2026-03-04 21:19:15'),
('615', '4', '4', '629', NULL, '902', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-04 22:22:51', '2026-03-04 22:22:51'),
('616', '4', '4', '630', NULL, '904', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 20:41:54', '2026-03-05 20:41:54'),
('617', '4', '4', '631', NULL, '904', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 20:57:00', '2026-03-05 20:57:00'),
('618', '4', '4', '632', NULL, '904', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:04:43', '2026-03-05 21:04:43'),
('619', '4', '4', '633', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:17:59', '2026-03-05 21:17:59'),
('620', '4', '4', '634', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:18:25', '2026-03-05 21:18:25'),
('621', '4', '4', '635', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:25:22', '2026-03-05 21:25:22'),
('622', '4', '4', '636', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:33:46', '2026-03-05 21:33:46'),
('623', '4', '4', '637', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 21:38:45', '2026-03-05 21:38:45'),
('624', '4', '4', '638', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:10:49', '2026-03-05 22:10:49'),
('625', '4', '4', '639', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:11:47', '2026-03-05 22:11:47'),
('626', '4', '4', '640', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:19:59', '2026-03-05 22:19:59'),
('627', '4', '4', '641', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:31:34', '2026-03-05 22:31:34'),
('628', '4', '4', '642', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:32:57', '2026-03-05 22:32:57'),
('629', '4', '4', '643', NULL, '907', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:33:18', '2026-03-05 22:33:18'),
('630', '4', '4', '644', NULL, '908', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-05 22:57:38', '2026-03-05 22:57:38'),
('631', '4', '4', '645', NULL, '910', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 08:39:34', '2026-03-06 08:39:34'),
('632', '4', '4', '646', NULL, '911', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 21:10:05', '2026-03-06 21:10:05'),
('633', '4', '4', '647', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 21:30:53', '2026-03-06 21:30:53'),
('634', '4', '4', '648', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 21:33:26', '2026-03-06 21:33:26'),
('635', '4', '4', '649', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:00:03', '2026-03-06 22:00:03'),
('636', '4', '4', '650', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:04:58', '2026-03-06 22:04:58'),
('637', '4', '4', '651', NULL, '913', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:10:18', '2026-03-06 22:10:18'),
('638', '4', '4', '652', NULL, '911', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:20:05', '2026-03-06 22:20:05'),
('639', '4', '4', '653', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:30:46', '2026-03-06 22:30:46'),
('640', '4', '4', '654', NULL, '912', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 22:32:49', '2026-03-06 22:32:49'),
('641', '4', '4', '655', NULL, '915', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-06 23:28:04', '2026-03-06 23:28:04'),
('642', '4', '4', '656', NULL, '916', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 00:12:01', '2026-03-07 00:12:01'),
('643', '4', '4', '657', NULL, '916', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 00:55:35', '2026-03-07 00:55:35'),
('644', '4', '4', '658', NULL, '917', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 01:09:17', '2026-03-07 01:09:17'),
('645', '4', '4', '659', NULL, '920', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 02:25:15', '2026-03-07 02:25:15'),
('646', '4', '4', '660', NULL, '920', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 03:23:43', '2026-03-07 03:23:43'),
('647', '4', '4', '661', NULL, '924', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 03:52:49', '2026-03-07 03:52:49'),
('648', '4', '4', '662', NULL, '920', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 04:37:09', '2026-03-07 04:37:09'),
('649', '4', '4', '663', NULL, '928', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 20:22:26', '2026-03-07 20:22:26'),
('650', '4', '4', '664', NULL, '929', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 20:22:40', '2026-03-07 20:22:40'),
('651', '4', '4', '665', NULL, '928', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 20:26:02', '2026-03-07 20:26:02'),
('652', '4', '4', '666', NULL, '929', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 20:26:17', '2026-03-07 20:26:17'),
('653', '4', '4', '667', NULL, '930', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 20:54:38', '2026-03-07 20:54:38'),
('654', '4', '4', '668', NULL, '929', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 21:12:35', '2026-03-07 21:12:35'),
('655', '4', '4', '669', NULL, '928', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 21:12:49', '2026-03-07 21:12:49'),
('656', '4', '4', '670', NULL, '928', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 21:38:46', '2026-03-07 21:38:46'),
('657', '4', '4', '671', NULL, '937', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 23:17:12', '2026-03-07 23:17:12'),
('658', '4', '4', '672', NULL, '929', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 23:24:56', '2026-03-07 23:24:56'),
('659', '4', '4', '673', NULL, '930', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 23:25:26', '2026-03-07 23:25:26'),
('660', '4', '4', '674', NULL, '929', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-07 23:52:22', '2026-03-07 23:52:22'),
('661', '4', '4', '675', NULL, '930', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 00:12:08', '2026-03-08 00:12:08'),
('662', '4', '4', '676', NULL, '937', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 00:18:29', '2026-03-08 00:18:29'),
('663', '4', '4', '677', NULL, '930', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 00:54:42', '2026-03-08 00:54:42'),
('664', '4', '4', '678', NULL, '937', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 01:08:46', '2026-03-08 01:08:46'),
('665', '4', '4', '679', NULL, '937', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 01:20:34', '2026-03-08 01:20:34'),
('666', '4', '4', '680', NULL, '942', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 20:59:31', '2026-03-08 20:59:31'),
('667', '4', '4', '681', NULL, '945', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 22:53:53', '2026-03-08 22:53:53'),
('668', '4', '4', '682', NULL, '946', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 23:42:22', '2026-03-08 23:42:22'),
('669', '4', '4', '683', NULL, '945', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-08 23:54:20', '2026-03-08 23:54:20'),
('670', '4', '4', '684', NULL, '948', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-09 00:13:40', '2026-03-09 00:13:40'),
('671', '4', '4', '685', NULL, '946', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-09 00:14:01', '2026-03-09 00:14:01'),
('672', '4', '4', '686', NULL, '945', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-09 00:39:39', '2026-03-09 00:39:39'),
('673', '4', '4', '687', NULL, '950', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-09 01:17:09', '2026-03-09 01:17:09'),
('674', '4', '4', '688', NULL, '954', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-10 22:04:31', '2026-03-10 22:04:31'),
('675', '4', '4', '689', NULL, '987', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-17 23:19:43', '2026-03-17 23:19:43'),
('676', '4', '4', '690', NULL, '987', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 00:37:01', '2026-03-18 00:37:01'),
('677', '4', '4', '691', NULL, '989', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 19:01:14', '2026-03-18 19:01:14'),
('678', '4', '4', '692', NULL, '989', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 19:25:27', '2026-03-18 19:25:27'),
('679', '4', '4', '693', NULL, '991', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 19:52:35', '2026-03-18 19:52:35'),
('680', '4', '4', '694', NULL, '989', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:08:16', '2026-03-18 20:08:16'),
('681', '4', '4', '695', NULL, '992', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:15:28', '2026-03-18 20:15:28'),
('682', '4', '4', '696', NULL, '991', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:35:05', '2026-03-18 20:35:05'),
('683', '4', '4', '697', NULL, '993', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:38:03', '2026-03-18 20:38:03'),
('684', '4', '4', '698', NULL, '991', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:38:23', '2026-03-18 20:38:23'),
('685', '4', '4', '699', NULL, '992', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:45:46', '2026-03-18 20:45:46'),
('686', '4', '4', '700', NULL, '994', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 20:58:41', '2026-03-18 20:58:41'),
('687', '4', '4', '701', NULL, '996', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 22:25:39', '2026-03-18 22:25:39'),
('688', '4', '4', '702', NULL, '992', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 22:35:27', '2026-03-18 22:35:27'),
('689', '4', '4', '703', NULL, '998', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-18 23:11:15', '2026-03-18 23:11:15'),
('690', '4', '4', '704', NULL, '1002', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 20:31:00', '2026-03-19 20:31:00'),
('691', '4', '4', '705', NULL, '1002', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 20:42:17', '2026-03-19 20:42:17'),
('692', '4', '4', '706', NULL, '1002', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 21:09:45', '2026-03-19 21:09:45'),
('693', '4', '4', '707', NULL, '1002', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 21:26:38', '2026-03-19 21:26:38'),
('694', '4', '4', '708', NULL, '1002', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 22:03:53', '2026-03-19 22:03:53'),
('695', '4', '4', '709', NULL, '1007', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 22:27:04', '2026-03-19 22:27:04'),
('696', '4', '4', '710', NULL, '1007', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 22:31:25', '2026-03-19 22:31:25'),
('697', '4', '4', '711', NULL, '1007', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 22:46:24', '2026-03-19 22:46:24'),
('698', '4', '4', '712', NULL, '1008', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-19 23:41:01', '2026-03-19 23:41:01'),
('699', '4', '4', '713', NULL, '1010', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-20 00:15:48', '2026-03-20 00:15:48'),
('700', '4', '4', '714', NULL, '1011', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-20 18:35:41', '2026-03-20 18:35:41'),
('701', '4', '4', '715', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 20:06:07', '2026-03-21 20:06:07'),
('702', '4', '4', '716', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 20:08:22', '2026-03-21 20:08:22'),
('703', '4', '4', '717', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 20:09:03', '2026-03-21 20:09:03'),
('704', '4', '4', '718', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 21:06:40', '2026-03-21 21:06:40'),
('705', '4', '4', '719', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 21:08:02', '2026-03-21 21:08:02'),
('706', '4', '4', '720', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 22:19:58', '2026-03-21 22:19:58'),
('707', '4', '4', '721', NULL, '1049', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 22:31:05', '2026-03-21 22:31:05'),
('708', '4', '4', '722', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 22:47:59', '2026-03-21 22:47:59'),
('709', '4', '4', '723', NULL, '1049', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 22:52:45', '2026-03-21 22:52:45'),
('710', '4', '4', '724', NULL, '1047', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:00:05', '2026-03-21 23:00:05'),
('711', '4', '4', '725', NULL, '1053', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:19:51', '2026-03-21 23:19:51'),
('712', '4', '4', '726', NULL, '1054', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:20:07', '2026-03-21 23:20:07'),
('713', '4', '4', '727', NULL, '1055', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:20:18', '2026-03-21 23:20:18'),
('714', '4', '4', '728', NULL, '1049', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:34:22', '2026-03-21 23:34:22'),
('715', '4', '4', '729', NULL, '1049', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:34:48', '2026-03-21 23:34:48'),
('716', '4', '4', '730', NULL, '1049', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:36:51', '2026-03-21 23:36:51'),
('717', '4', '4', '731', NULL, '1055', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:42:56', '2026-03-21 23:42:56'),
('718', '4', '4', '732', NULL, '1053', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-21 23:55:27', '2026-03-21 23:55:27'),
('719', '4', '4', '733', NULL, '1058', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:00:55', '2026-03-22 00:00:55'),
('720', '4', '4', '734', NULL, '1060', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:17:31', '2026-03-22 00:17:31'),
('721', '4', '4', '735', NULL, '1058', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:30:12', '2026-03-22 00:30:12'),
('722', '4', '4', '736', NULL, '1058', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:31:42', '2026-03-22 00:31:42'),
('723', '4', '4', '737', NULL, '1060', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:32:25', '2026-03-22 00:32:25'),
('724', '4', '4', '738', NULL, '1053', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:39:25', '2026-03-22 00:39:25'),
('725', '4', '4', '739', NULL, '1058', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 00:56:39', '2026-03-22 00:56:39'),
('726', '4', '4', '740', NULL, '1062', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 01:04:01', '2026-03-22 01:04:01'),
('727', '4', '4', '741', NULL, '1062', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 01:07:48', '2026-03-22 01:07:48'),
('728', '4', '4', '742', NULL, '1062', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 01:10:31', '2026-03-22 01:10:31'),
('729', '4', '4', '743', NULL, '1063', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 20:04:05', '2026-03-22 20:04:05'),
('730', '4', '4', '744', NULL, '1063', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 20:30:21', '2026-03-22 20:30:21'),
('731', '4', '4', '745', NULL, '1063', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 21:50:32', '2026-03-22 21:50:32'),
('732', '4', '4', '746', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:09:55', '2026-03-22 22:09:55'),
('733', '4', '4', '747', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:10:15', '2026-03-22 22:10:15'),
('734', '4', '4', '748', NULL, '1067', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:12:49', '2026-03-22 22:12:49'),
('735', '4', '4', '749', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:20:19', '2026-03-22 22:20:19'),
('736', '4', '4', '750', NULL, '1068', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:23:33', '2026-03-22 22:23:33'),
('737', '4', '4', '751', NULL, '1068', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:24:39', '2026-03-22 22:24:39'),
('738', '4', '4', '752', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:35:15', '2026-03-22 22:35:15'),
('739', '4', '4', '753', NULL, '1069', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:40:05', '2026-03-22 22:40:05'),
('740', '4', '4', '754', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:43:28', '2026-03-22 22:43:28'),
('741', '4', '4', '755', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:47:42', '2026-03-22 22:47:42'),
('742', '4', '4', '756', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 22:54:49', '2026-03-22 22:54:49'),
('743', '4', '4', '757', NULL, '1070', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:03:57', '2026-03-22 23:03:57'),
('744', '4', '4', '758', NULL, '1070', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:04:42', '2026-03-22 23:04:42'),
('745', '4', '4', '759', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:10:04', '2026-03-22 23:10:04'),
('746', '4', '4', '760', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:12:03', '2026-03-22 23:12:03'),
('747', '4', '4', '761', NULL, '1070', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:14:37', '2026-03-22 23:14:37'),
('748', '4', '4', '762', NULL, '1067', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:45:36', '2026-03-22 23:45:36'),
('749', '4', '4', '763', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:49:07', '2026-03-22 23:49:07'),
('750', '4', '4', '764', NULL, '1068', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:52:27', '2026-03-22 23:52:27'),
('751', '4', '4', '765', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:54:18', '2026-03-22 23:54:18'),
('752', '4', '4', '766', NULL, '1069', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-22 23:56:33', '2026-03-22 23:56:33'),
('753', '4', '4', '767', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:01:49', '2026-03-23 00:01:49'),
('754', '4', '4', '768', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:03:08', '2026-03-23 00:03:08'),
('755', '4', '4', '769', NULL, '1070', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:03:55', '2026-03-23 00:03:55'),
('756', '4', '4', '770', NULL, '1070', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:07:17', '2026-03-23 00:07:17'),
('757', '4', '4', '771', NULL, '1067', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:13:35', '2026-03-23 00:13:35'),
('758', '4', '4', '772', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:25:34', '2026-03-23 00:25:34'),
('759', '4', '4', '773', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:45:44', '2026-03-23 00:45:44'),
('760', '4', '4', '774', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 00:59:18', '2026-03-23 00:59:18'),
('761', '4', '4', '775', NULL, '1068', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 01:05:31', '2026-03-23 01:05:31'),
('762', '4', '4', '776', NULL, '1066', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 01:12:32', '2026-03-23 01:12:32'),
('763', '4', '4', '777', NULL, '1065', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 01:15:40', '2026-03-23 01:15:40'),
('764', '4', '4', '778', NULL, '1067', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 01:33:36', '2026-03-23 01:33:36'),
('765', '4', '4', '779', NULL, '1078', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 20:02:37', '2026-03-23 20:02:37'),
('766', '4', '4', '780', NULL, '1079', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 23:54:17', '2026-03-23 23:54:17'),
('767', '4', '4', '781', NULL, '1079', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-23 23:56:56', '2026-03-23 23:56:56'),
('768', '4', '4', '782', NULL, '1080', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 18:33:17', '2026-03-24 18:33:17'),
('769', '4', '4', '783', NULL, '1080', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 18:34:50', '2026-03-24 18:34:50'),
('770', '4', '4', '784', NULL, '1080', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 19:09:19', '2026-03-24 19:09:19'),
('771', '4', '4', '785', NULL, '1081', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 19:17:40', '2026-03-24 19:17:40'),
('772', '4', '4', '786', NULL, '1081', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 19:51:01', '2026-03-24 19:51:01'),
('773', '4', '4', '787', NULL, '1080', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 20:02:48', '2026-03-24 20:02:48'),
('774', '4', '4', '788', NULL, '1081', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 20:32:01', '2026-03-24 20:32:01'),
('775', '4', '4', '789', NULL, '1081', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 21:15:53', '2026-03-24 21:15:53'),
('776', '4', '4', '790', NULL, '1081', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 21:34:51', '2026-03-24 21:34:51'),
('777', '4', '4', '791', NULL, '1084', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 22:21:50', '2026-03-24 22:21:50'),
('778', '4', '4', '792', NULL, '1084', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 22:41:48', '2026-03-24 22:41:48'),
('779', '4', '4', '793', NULL, '1084', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 22:44:18', '2026-03-24 22:44:18'),
('780', '4', '4', '794', NULL, '1084', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 23:02:17', '2026-03-24 23:02:17'),
('781', '4', '4', '795', NULL, '1089', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 23:16:08', '2026-03-24 23:16:08'),
('782', '4', '4', '796', NULL, '1090', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 23:16:36', '2026-03-24 23:16:36'),
('783', '4', '4', '797', NULL, '1094', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-24 23:59:20', '2026-03-24 23:59:20'),
('784', '4', '4', '798', NULL, '1084', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:03:43', '2026-03-25 00:03:43'),
('785', '4', '4', '799', NULL, '1095', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:10:21', '2026-03-25 00:10:21'),
('786', '4', '4', '800', NULL, '1096', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:14:29', '2026-03-25 00:14:29'),
('787', '4', '4', '801', NULL, '1097', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:16:00', '2026-03-25 00:16:00'),
('788', '4', '4', '802', NULL, '1096', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:16:26', '2026-03-25 00:16:26'),
('789', '4', '4', '803', NULL, '1097', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:23:31', '2026-03-25 00:23:31'),
('790', '4', '4', '804', NULL, '1096', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:38:48', '2026-03-25 00:38:48'),
('791', '4', '4', '805', NULL, '1100', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:52:00', '2026-03-25 00:52:00'),
('792', '4', '4', '806', NULL, '1101', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 00:54:27', '2026-03-25 00:54:27'),
('793', '4', '4', '807', NULL, '1100', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 01:00:32', '2026-03-25 01:00:32'),
('794', '4', '4', '808', NULL, '1095', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 01:17:13', '2026-03-25 01:17:13'),
('795', '4', '4', '809', NULL, '1111', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 01:57:58', '2026-03-25 01:57:58'),
('796', '4', '4', '810', NULL, '1111', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 02:20:48', '2026-03-25 02:20:48'),
('797', '4', '4', '811', NULL, '1113', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 18:34:47', '2026-03-25 18:34:47'),
('798', '4', '4', '812', NULL, '1114', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 18:52:51', '2026-03-25 18:52:51'),
('799', '4', '4', '813', NULL, '1113', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 19:09:02', '2026-03-25 19:09:02'),
('800', '4', '4', '814', NULL, '1114', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 20:02:44', '2026-03-25 20:02:44'),
('801', '4', '4', '815', NULL, '1114', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 20:59:47', '2026-03-25 20:59:47'),
('802', '4', '4', '816', NULL, '1118', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 22:27:46', '2026-03-25 22:27:46'),
('803', '4', '4', '817', NULL, '1120', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 23:09:52', '2026-03-25 23:09:52'),
('804', '4', '4', '818', NULL, '1118', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-25 23:45:40', '2026-03-25 23:45:40'),
('805', '4', '4', '819', NULL, '1123', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 20:22:04', '2026-03-26 20:22:04'),
('806', '4', '4', '820', NULL, '1123', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 20:29:08', '2026-03-26 20:29:08'),
('807', '4', '4', '821', NULL, '1123', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 20:59:04', '2026-03-26 20:59:04'),
('808', '4', '4', '822', NULL, '1124', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 21:10:22', '2026-03-26 21:10:22'),
('809', '4', '4', '823', NULL, '1125', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 21:25:12', '2026-03-26 21:25:12'),
('810', '4', '4', '824', NULL, '1125', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 22:22:00', '2026-03-26 22:22:00'),
('811', '4', '4', '825', NULL, '1129', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 23:01:55', '2026-03-26 23:01:55'),
('812', '4', '4', '826', NULL, '1130', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 23:02:15', '2026-03-26 23:02:15'),
('813', '4', '4', '827', NULL, '1131', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-26 23:18:36', '2026-03-26 23:18:36'),
('814', '4', '4', '828', NULL, '1133', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:08:49', '2026-03-27 00:08:49'),
('815', '4', '4', '829', NULL, '1134', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:13:30', '2026-03-27 00:13:30'),
('816', '4', '4', '830', NULL, '1134', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:17:19', '2026-03-27 00:17:19'),
('817', '4', '4', '831', NULL, '1136', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:23:46', '2026-03-27 00:23:46'),
('818', '4', '4', '832', NULL, '1136', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:25:21', '2026-03-27 00:25:21'),
('819', '4', '4', '833', NULL, '1137', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 00:39:53', '2026-03-27 00:39:53'),
('820', '4', '4', '834', NULL, '1140', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 20:36:38', '2026-03-27 20:36:38'),
('821', '4', '4', '835', NULL, '1141', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 20:58:21', '2026-03-27 20:58:21'),
('822', '4', '4', '836', NULL, '1140', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 21:38:24', '2026-03-27 21:38:24'),
('823', '4', '4', '837', NULL, '1141', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 21:44:20', '2026-03-27 21:44:20'),
('824', '4', '4', '838', NULL, '1143', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 21:50:12', '2026-03-27 21:50:12'),
('825', '4', '4', '839', NULL, '1143', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 21:53:19', '2026-03-27 21:53:19'),
('826', '4', '4', '840', NULL, '1140', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 21:54:50', '2026-03-27 21:54:50'),
('827', '4', '4', '841', NULL, '1144', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:00:26', '2026-03-27 22:00:26'),
('828', '4', '4', '842', NULL, '1145', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:03:35', '2026-03-27 22:03:35'),
('829', '4', '4', '843', NULL, '1144', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:21:19', '2026-03-27 22:21:19'),
('830', '4', '4', '844', NULL, '1146', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:36:31', '2026-03-27 22:36:31'),
('831', '4', '4', '845', NULL, '1143', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:38:30', '2026-03-27 22:38:30'),
('832', '4', '4', '846', NULL, '1140', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:41:56', '2026-03-27 22:41:56'),
('833', '4', '4', '847', NULL, '1146', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:53:16', '2026-03-27 22:53:16'),
('834', '4', '4', '848', NULL, '1144', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 22:55:41', '2026-03-27 22:55:41'),
('835', '4', '4', '849', NULL, '1145', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 23:10:20', '2026-03-27 23:10:20'),
('836', '4', '4', '850', NULL, '1143', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 23:12:09', '2026-03-27 23:12:09'),
('837', '4', '4', '851', NULL, '1144', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 23:19:06', '2026-03-27 23:19:06'),
('838', '4', '4', '852', NULL, '1146', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-27 23:58:08', '2026-03-27 23:58:08'),
('839', '4', '4', '853', NULL, '1146', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-28 00:03:33', '2026-03-28 00:03:33'),
('840', '4', '4', '854', NULL, '1150', '10', NULL, NULL, 'in_kitchen', NULL, NULL, '2026-03-28 00:27:54', '2026-03-28 00:27:54');


-- Table structure for table `language_pack_settings`
DROP TABLE IF EXISTS `language_pack_settings`;
CREATE TABLE `language_pack_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `language_pack_settings`
INSERT INTO `language_pack_settings` VALUES
('1', '384c0006-c196-4a86-bfa0-4a1d78192734', '2026-05-28 03:22:34', NULL, NULL, '1', '2025-11-27 01:01:18', '2025-11-27 01:01:18');


-- Table structure for table `language_settings`
DROP TABLE IF EXISTS `language_settings`;
CREATE TABLE `language_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `language_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `language_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `flag_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT '1',
  `is_rtl` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `language_settings`
INSERT INTO `language_settings` VALUES
('1', 'en', 'English', 'gb', '1', '0', NULL, NULL),
('2', 'ar', 'Arabic', 'sa', '0', '1', NULL, NULL),
('3', 'de', 'German', 'de', '0', '0', NULL, NULL),
('4', 'es', 'Spanish', 'es', '0', '0', NULL, NULL),
('5', 'et', 'Estonian', 'et', '0', '0', NULL, NULL),
('6', 'fa', 'Farsi', 'ir', '0', '1', NULL, NULL),
('7', 'fr', 'French', 'fr', '0', '0', NULL, NULL),
('8', 'el', 'Greek', 'gr', '0', '0', NULL, NULL),
('9', 'it', 'Italian', 'it', '0', '0', NULL, NULL),
('10', 'nl', 'Dutch', 'nl', '0', '0', NULL, NULL),
('11', 'pl', 'Polish', 'pl', '0', '0', NULL, NULL),
('12', 'pt', 'Portuguese', 'pt', '0', '0', NULL, NULL),
('13', 'pt-br', 'Portuguese (Brazil)', 'br', '0', '0', NULL, NULL),
('14', 'ro', 'Romanian', 'ro', '0', '0', NULL, NULL),
('15', 'ru', 'Russian', 'ru', '0', '0', NULL, NULL),
('16', 'tr', 'Turkish', 'tr', '0', '0', NULL, NULL),
('17', 'zh-CN', 'Chinese (S)', 'cn', '0', '0', NULL, NULL),
('18', 'zh-TW', 'Chinese (T)', 'cn', '0', '0', NULL, NULL),
('19', 'bg', 'Bulgarian', 'bg', '1', '0', '2025-11-27 01:04:55', '2025-11-27 01:05:41');


-- Table structure for table `ltm_translations`
DROP TABLE IF EXISTS `ltm_translations`;
CREATE TABLE `ltm_translations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `status` int NOT NULL DEFAULT '0',
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `group` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- Dumping data for table `ltm_translations`
INSERT INTO `ltm_translations` VALUES
('1', '1', 'eng', 'app', 'close', 'Close', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('2', '1', 'eng', 'app', 'cancel', 'Cancel', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('3', '1', 'eng', 'app', 'save', 'Save', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('4', '1', 'eng', 'app', 'saved', 'Saved', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('5', '1', 'eng', 'app', 'saving', 'Saving...', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('6', '1', 'eng', 'app', 'uploading', 'Uploading', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('7', '1', 'eng', 'app', 'saveTax', 'Save Tax', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('8', '1', 'eng', 'app', 'saveAndNew', 'Save and Add New', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('9', '1', 'eng', 'app', 'view', 'View', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('10', '1', 'eng', 'app', 'verify', 'Verify', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('11', '1', 'eng', 'app', 'accept', 'Accept', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('12', '1', 'eng', 'app', 'allow', 'Allow', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('13', '1', 'eng', 'app', 'decline', 'Decline', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('14', '1', 'eng', 'app', 'update', 'Update', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('15', '1', 'eng', 'app', 'updating', 'Updating...', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('16', '1', 'eng', 'app', 'delete', 'Delete', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('17', '1', 'eng', 'app', 'deleteUser', 'Delete User', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('18', '1', 'eng', 'app', 'action', 'Action', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('19', '1', 'eng', 'app', 'submit', 'Submit', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('20', '1', 'eng', 'app', 'submitting', 'Submitting...', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('21', '1', 'eng', 'app', 'pending', 'Pending', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('22', '1', 'eng', 'app', 'approved', 'Approved', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('23', '1', 'eng', 'app', 'rejected', 'Rejected', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('24', '1', 'eng', 'app', 'verified', 'Verified', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('25', '1', 'eng', 'app', 'showing', 'Showing', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('26', '1', 'eng', 'app', 'to', 'To', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('27', '1', 'eng', 'app', 'of', 'of', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('28', '1', 'eng', 'app', 'results', 'results', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('29', '1', 'eng', 'app', 'clearFilter', 'Clear Filters', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('30', '1', 'eng', 'app', 'hideFilter', 'Hide Filters', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('31', '1', 'eng', 'app', 'showFilter', 'Show Filters', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('32', '1', 'eng', 'app', 'active', 'Active', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('33', '1', 'eng', 'app', 'inactive', 'Inactive', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('34', '1', 'eng', 'app', 'status', 'Status', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('35', '1', 'eng', 'app', 'showAll', 'Show All', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('36', '1', 'eng', 'app', 'clear', 'Clear', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('37', '1', 'eng', 'app', 'error', 'Error', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('38', '1', 'eng', 'app', 'print', 'PRINT', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('39', '1', 'eng', 'app', 'dateTime', 'Date & Time', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('40', '1', 'eng', 'app', 'change', 'Change', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('41', '1', 'eng', 'app', 'changePassword', 'Change Password', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('42', '1', 'eng', 'app', 'changeStatus', 'Change Status', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('43', '1', 'eng', 'app', 'selectNewStatus', 'Select a new status for this item', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('44', '1', 'eng', 'app', 'add', 'Add', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('45', '1', 'eng', 'app', 'menu', 'Menu', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('46', '1', 'eng', 'app', 'createAccount', 'Create a Account', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('47', '1', 'eng', 'app', 'email', 'Enter your email', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('48', '1', 'eng', 'app', 'name', 'Name', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('49', '1', 'eng', 'app', 'description', 'Description', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('50', '1', 'eng', 'app', 'login', 'Login', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('51', '1', 'eng', 'app', 'continue', 'Continue', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('52', '1', 'eng', 'app', 'verificationCode', 'Enter verification code', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('53', '1', 'eng', 'app', 'next', 'Next', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('54', '1', 'eng', 'app', 'resendVerificatonCode', 'Resend Verificaton Code', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('55', '1', 'eng', 'app', 'logout', 'Logout', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('56', '1', 'eng', 'app', 'export', 'Export', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('57', '1', 'eng', 'app', 'logo', 'Logo', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('58', '1', 'eng', 'app', 'download', 'Download', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('59', '1', 'eng', 'app', 'dateRange', 'Date Range', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('60', '1', 'eng', 'app', 'select', 'Select', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('61', '1', 'eng', 'app', 'selectStartDate', 'Select Start Date', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('62', '1', 'eng', 'app', 'selectEndDate', 'Select End Date', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('63', '1', 'eng', 'app', 'customDateRange', 'Custom Date Range', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('64', '1', 'eng', 'app', 'today', 'Today', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('65', '1', 'eng', 'app', 'yesterday', 'Yesterday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('66', '1', 'eng', 'app', 'currentWeek', 'Current Week', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('67', '1', 'eng', 'app', 'lastWeek', 'Last Week', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('68', '1', 'eng', 'app', 'nextWeek', 'Next Week', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('69', '1', 'eng', 'app', 'last7Days', 'Last 7 Days', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('70', '1', 'eng', 'app', 'currentMonth', 'Current Month', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('71', '1', 'eng', 'app', 'lastMonth', 'Last Month', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('72', '1', 'eng', 'app', 'currentYear', 'Current Year', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('73', '1', 'eng', 'app', 'lastYear', 'Last Year', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('74', '1', 'eng', 'app', 'date', 'Date', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('75', '1', 'eng', 'app', 'time', 'Time', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('76', '1', 'eng', 'app', 'rightReserved', 'All rights reserved.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('77', '1', 'eng', 'app', 'loading', 'Loading...', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('78', '1', 'eng', 'app', 'profileInfo', 'Profile Information', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('79', '1', 'eng', 'app', 'fullName', 'Your Full Name', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('80', '1', 'eng', 'app', 'role', 'Role', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('81', '1', 'eng', 'app', 'permission', 'Permission', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('82', '1', 'eng', 'app', 'user', 'User', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('83', '1', 'eng', 'app', 'minutes', 'Minutes', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('84', '1', 'eng', 'app', 'reserveNow', 'Reserve Now', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('85', '1', 'eng', 'app', 'specialRequest', 'Any special request?', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('86', '1', 'eng', 'app', 'yes', 'Yes', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('87', '1', 'eng', 'app', 'no', 'No', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('88', '1', 'eng', 'app', 'hello', 'Hello', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('89', '1', 'eng', 'app', 'regards', 'Regards', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('90', '1', 'eng', 'app', 'thanks', 'Thanks', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('91', '1', 'eng', 'app', 'addMore', 'Add +', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('92', '1', 'eng', 'app', 'addNew', 'Add New', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('93', '1', 'eng', 'app', 'allRightsReserved', 'All Rights Reserved.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('94', '1', 'eng', 'app', 'test', 'TEST', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('95', '1', 'eng', 'app', 'live', 'LIVE', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('96', '1', 'eng', 'app', 'id', 'ID', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('97', '1', 'eng', 'app', 'reset', 'Reset', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('98', '1', 'eng', 'app', 'paidVia', 'Paid via', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('99', '1', 'eng', 'app', 'back', 'Back', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('100', '1', 'eng', 'app', 'generateCredentials', 'Generate Credentials', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('101', '1', 'eng', 'app', 'Monday', 'Monday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('102', '1', 'eng', 'app', 'Tuesday', 'Tuesday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('103', '1', 'eng', 'app', 'Wednesday', 'Wednesday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('104', '1', 'eng', 'app', 'Thursday', 'Thursday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('105', '1', 'eng', 'app', 'Friday', 'Friday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('106', '1', 'eng', 'app', 'Saturday', 'Saturday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('107', '1', 'eng', 'app', 'Sunday', 'Sunday', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('108', '1', 'eng', 'app', 'approx', 'Approx', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('109', '1', 'eng', 'app', 'visitLink', 'Visit Link', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('110', '1', 'eng', 'app', 'callWaiterConfirmation', 'Do you want to notify a waiter?', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('111', '1', 'eng', 'app', 'callWaiterNotification', 'Waiter has been notified!', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('112', '1', 'eng', 'app', 'callWaiter', 'Call Waiter', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('113', '1', 'eng', 'app', 'stopImpersonation', 'Stop Impersonation', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('114', '1', 'eng', 'app', 'impersonate', 'Impersonate', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('115', '1', 'eng', 'app', 'approvalStatus', 'Approval Status', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('116', '1', 'eng', 'app', 'approve', 'Approve', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('117', '1', 'eng', 'app', 'reject', 'Reject', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('118', '1', 'eng', 'app', 'example', 'Example', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('119', '1', 'eng', 'app', 'fileNotUploaded', 'File not uploaded', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('120', '1', 'eng', 'app', 'moduleVersion', 'Version', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('121', '1', 'eng', 'app', 'moduleUpdateMessage', 'New update available for :name module. Please update to version :version', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('122', '1', 'eng', 'app', 'newModuleUpdateMessage', 'New update available for <strong>:name</strong> module.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('123', '1', 'eng', 'app', 'purchaseCode', 'Purchase Code', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('124', '1', 'eng', 'app', 'moduleSwitchMessage', 'Activate or deactivate :name module', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('125', '1', 'eng', 'app', 'updateModule', 'Update Module', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('126', '1', 'eng', 'app', 'notify', 'Notify', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('127', '1', 'eng', 'app', 'moduleNotifySwitchMessage', 'This will hide/show new update message on dashboard for :name module', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('128', '1', 'eng', 'app', 'verifyEnvato', 'Verify Purchase Code', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('129', '1', 'eng', 'app', 'findPurchaseCode', 'Click this link to find your purchase code.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('130', '1', 'eng', 'app', 'moduleSettingsInstall', 'Install/Update Module', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('131', '1', 'eng', 'app', 'dropFileToUpload', 'Drop file to upload', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('132', '1', 'eng', 'app', 'uploadDate', 'Upload Date', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('133', '1', 'eng', 'app', 'rememberMe', 'Remember me', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('134', '1', 'eng', 'app', 'forgotPassword', 'Forgot your password?', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('135', '1', 'eng', 'app', 'password', 'Password', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('136', '1', 'eng', 'app', 'forgotPasswordMessage', 'Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('137', '1', 'eng', 'app', 'sendPasswordResetLink', 'Send Password Reset Link', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('138', '1', 'eng', 'app', 'enable', 'Enable', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('139', '1', 'eng', 'app', 'professional', 'Professional', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('140', '1', 'eng', 'app', 'pastel', 'Pastel', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('141', '1', 'eng', 'app', 'warm', 'Warm', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('142', '1', 'eng', 'app', 'backToLogin', 'Back to Login', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('143', '1', 'eng', 'app', 'uploadFavIconAndroidhCrome192', 'Upload Favicon for Android Chrome (192x192)', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('144', '1', 'eng', 'app', 'uploadFavIconAndroidhCrome512', 'Upload Favicon for Android Chrome (512x512)', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('145', '1', 'eng', 'app', 'uploadFavIconAppleTouchIcon', 'Upload Favicon for Apple Touch Icon', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('146', '1', 'eng', 'app', 'uploadFavicon16', 'Upload Favicon (16x16)', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('147', '1', 'eng', 'app', 'uploadFavicon32', 'Upload Favicon (32x32)', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('148', '1', 'eng', 'app', 'favicon', 'Upload Favicon', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('149', '1', 'eng', 'app', 'addon', 'Addon', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('150', '1', 'eng', 'app', 'list', 'List', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('151', '1', 'eng', 'app', 'grid', 'Grid', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('152', '1', 'eng', 'app', 'layout', 'Layout', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('153', '1', 'eng', 'app', 'offlineMessage', 'You are currently offline.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('154', '1', 'eng', 'app', 'loadPage', 'We couldn\'t load the next page on this connection. Please try again.', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('155', '1', 'eng', 'app', 'RetryConnection', 'Retry Connection', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('156', '1', 'eng', 'app', 'import', 'Import', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('157', '1', 'eng', 'app', 'downloadSample', 'Download Sample File', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('158', '1', 'eng', 'app', 'noResults', 'No results found', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('159', '1', 'eng', 'app', 'optional', 'Optional', '2025-11-27 01:06:17', '2025-11-27 01:06:17'),
('160', '1', 'eng', 'app', 'other', 'Other', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('161', '1', 'eng', 'app', 'disable', 'Disable', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('162', '1', 'eng', 'app', 'selectLanguage', 'Select Language', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('163', '1', 'eng', 'app', 'upload', 'Upload', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('164', '1', 'eng', 'app', 'selectIcon', 'Select Icon', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('165', '1', 'eng', 'app', 'searchIcon', 'Search Icon', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('166', '1', 'eng', 'app', 'impersonateTooltip', 'Login as this restaurant owner to view and manage their account for support or troubleshooting.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('167', '1', 'eng', 'app', 'autoRefresh', 'Auto Refresh', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('168', '1', 'eng', 'app', 'seconds', 'Seconds', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('169', '1', 'eng', 'app', 'minute', 'Minute', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('170', '1', 'eng', 'app', 'uploadedNow', 'Uploaded Now', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('171', '1', 'eng', 'app', 'uploadedAgo', 'Uploaded :time', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('172', '1', 'eng', 'app', 'clickToInstall', 'Click to Install', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('173', '1', 'eng', 'app', 'removeFile', 'Remove File', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('174', '1', 'eng', 'app', 'search', 'Search', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('175', '1', 'eng', 'app', 'header', 'Header', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('176', '1', 'eng', 'app', 'footer', 'Footer', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('177', '1', 'eng', 'app', 'position', 'Position', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('178', '1', 'eng', 'app', 'noDescription', 'No description available', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('179', '1', 'eng', 'app', 'noRecordsFound', 'No records found', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('180', '1', 'eng', 'app', 'edit', 'Edit', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('181', '1', 'eng', 'app', 'activate', 'Activate', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('182', '1', 'eng', 'app', 'deactivate', 'Deactivate', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('183', '1', 'eng', 'app', 'reportByWaiter', 'Report By Waiter', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('184', '1', 'eng', 'app', 'realTime', 'Real Time Update', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('185', '1', 'eng', 'app', 'printer', 'Printer', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('186', '1', 'eng', 'app', 'createdAt', 'Created At', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('187', '1', 'eng', 'app', 'printedAt', 'Printed At', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('188', '1', 'eng', 'app', 'actions', 'Actions', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('189', '1', 'eng', 'app', 'viewDetails', 'View Details', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('190', '1', 'eng', 'app', 'searchPrintJobs', 'Search print jobs...', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('191', '1', 'eng', 'app', 'allStatuses', 'All Statuses', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('192', '1', 'eng', 'app', 'printing', 'Printing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('193', '1', 'eng', 'app', 'done', 'Done', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('194', '1', 'eng', 'app', 'failed', 'Failed', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('195', '1', 'eng', 'app', 'allPrinters', 'All Printers', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('196', '1', 'eng', 'app', 'noPrintJobsFound', 'No print jobs found', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('197', '1', 'eng', 'app', 'serialNumber', 'Serial Number', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('198', '1', 'eng', 'app', 'create', 'Create', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('199', '1', 'eng', 'app', 'enter', 'Enter', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('200', '1', 'eng', 'app', 'displayName', 'Display Name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('201', '1', 'eng', 'app', 'existingRole', 'existing role', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('202', '1', 'eng', 'app', 'copyFrom', 'Copy from', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('203', '1', 'eng', 'app', 'dontCopyPermissions', 'Don\'t copy permissions', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('204', '1', 'eng', 'app', 'responsePrinter', 'Response Printer', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('205', '1', 'eng', 'app', 'manage', 'Manage', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('206', '1', 'eng', 'app', 'warning', 'Warning', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('207', '1', 'eng', 'app', 'roleDeleteWarning', 'Are you sure you want to delete this role? All users with this role will be reassigned to the selected role.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('208', '1', 'eng', 'app', 'selectNewRoleForUsers', 'Please select which role you want to assign to users who currently have this role.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('209', '1', 'eng', 'app', 'reassignUsersTo', 'Reassign users to', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('210', '1', 'eng', 'app', 'selectRole', 'Select Role', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('211', '1', 'eng', 'app', 'protectedRole', 'Protected Role', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('212', '1', 'eng', 'app', 'required', 'Required', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('213', '1', 'eng', 'app', 'from', 'from', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('214', '1', 'eng', 'app', 'or', 'or', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('215', '1', 'eng', 'app', 'files', 'files', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('216', '1', 'eng', 'app', 'autoCreated', 'auto-created', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('217', '1', 'eng', 'app', 'if', 'if', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('218', '1', 'eng', 'app', 'missing', 'missing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('219', '1', 'eng', 'app', 'needTemplate', 'Need a template', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('220', '1', 'eng', 'app', 'downloadSampleCsv', 'Download our sample CSV file with example data and proper formatting.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('221', '1', 'eng', 'app', 'overallProgress', 'Overall Progress', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('222', '1', 'eng', 'app', 'currentStage', 'Current Stage', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('223', '1', 'eng', 'app', 'importSuccessful', 'Your menu items have been imported successfully.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('224', '1', 'eng', 'app', 'skipped', 'Skipped', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('225', '1', 'eng', 'app', 'importError', 'There was an error processing your file.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('226', '1', 'eng', 'app', 'errorDetails', 'Error Details', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('227', '1', 'eng', 'app', 'mustBe', 'must be', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('228', '1', 'eng', 'app', 'file', 'file', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('229', '1', 'eng', 'app', 'size', 'size', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('230', '1', 'eng', 'app', 'mustNotExceed', 'must not exceed', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('231', '1', 'eng', 'app', 'fileSelected', 'File Selected', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('232', '1', 'eng', 'app', 'selectFile', 'Select File', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('233', '1', 'eng', 'app', 'completeAllSteps', 'Complete all steps', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('234', '1', 'eng', 'app', 'complete', 'Complete', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('235', '1', 'eng', 'app', 'ignore', 'Ignore', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('236', '1', 'eng', 'app', 'rows', 'rows', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('237', '1', 'eng', 'app', 'shown', 'shown', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('238', '1', 'eng', 'app', 'added', 'added', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('239', '1', 'eng', 'app', 'pleaseCompleteAllSteps', 'Please complete all steps before proceeding.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('240', '1', 'eng', 'app', 'errorParsingFile', 'Error parsing file', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('241', '1', 'eng', 'app', 'invalidStage', 'Invalid stage for this action.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('242', '1', 'eng', 'app', 'requiredFieldNotMapped', 'Required field not mapped', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('243', '1', 'eng', 'app', 'open', 'Open', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('244', '1', 'eng', 'app', 'closed', 'Closed', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('245', '1', 'eng', 'app', 'pending_approval', 'Pending Approval', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('246', '1', 'eng', 'app', 'cash_in', 'Cash In', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('247', '1', 'eng', 'app', 'cash_out', 'Cash Out', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('248', '1', 'eng', 'app', 'safe_drop', 'Safe Drop', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('249', '1', 'eng', 'app', 'cash_sale', 'Cash Sale', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('250', '1', 'eng', 'app', 'change_given', 'Change Given', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('251', '1', 'eng', 'app', 'refund', 'Refund', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('252', '1', 'eng', 'app', 'via_pos', 'POS', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('253', '1', 'eng', 'app', 'via_shop', 'Shop', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('254', '1', 'eng', 'app', 'via_kiosk', 'Kiosk', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('255', '1', 'eng', 'app', 'toggleDarkMode', 'Toggle Dark Mode', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('256', '1', 'eng', 'app', 'opening_float', 'Opening Float', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('257', '1', 'eng', 'app', 'locationAccess', 'Location Access', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('258', '1', 'eng', 'app', 'locationAccessMessage', 'We need to verify your location to place a QR order. Your location will be stored for this session.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('259', '1', 'eng', 'app', 'locationAccessOptional', 'You can continue without sharing your location, but QR orders may be restricted.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('260', '1', 'eng', 'app', 'geolocationNotSupported', 'Geolocation is not supported by your browser.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('261', '1', 'eng', 'app', 'unableToFetchLocation', 'Unable to fetch your location. You can continue without sharing location.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('262', '1', 'eng', 'app', 'locationAccessRequired', 'Please allow location access to place a QR order.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('263', '1', 'eng', 'app', 'locationAccessRequiredRadius', 'Please allow location to place a QR order within the permitted radius.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('264', '1', 'eng', 'app', 'outsideAllowedArea', 'You’re currently outside the restaurant area. Please move closer to place your order.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('265', '1', 'eng', 'app', 'outsideAllowedAreaMeters', 'You’re outside the allowed area for QR orders. Please move within  :meters meters of the restaurant to place your order.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('266', '1', 'eng', 'app', 'orderNotAllowedMeters', 'Order not allowed: You must be within :meters meters of the restaurant to place a QR order.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('267', '1', 'eng', 'app', 'first', 'First', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('268', '1', 'eng', 'app', 'last', 'Last', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('269', '1', 'eng', 'auth', 'failed', 'These credentials do not match our records.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('270', '1', 'eng', 'auth', 'password', 'The provided password is incorrect.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('271', '1', 'eng', 'auth', 'throttle', 'Too many login attempts. Please try again in :seconds seconds.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('272', '1', 'eng', 'auth', 'areYouNew', 'Are you new here?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('273', '1', 'eng', 'auth', 'createAccount', 'Create an account', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('274', '1', 'eng', 'auth', 'createAccountSignup', 'Create your :appName account', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('275', '1', 'eng', 'auth', 'goHome', 'Go To Home', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('276', '1', 'eng', 'auth', 'alreadyRegisteredLoginHere', 'Already registered? Login here', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('277', '1', 'eng', 'auth', 'signup', 'Signup', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('278', '1', 'eng', 'auth', 'whoops', 'Whoops! Something went wrong.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('279', '1', 'eng', 'auth', 'resendOtp', 'Resend OTP', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('280', '1', 'eng', 'auth', 'backToLogin', 'Back to Login', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('281', '1', 'eng', 'auth', 'loginViaOneTimePassword', 'Login via One Time Password', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('282', '1', 'eng', 'auth', 'sendOtp', 'Send OTP', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('283', '1', 'eng', 'auth', 'weveSentA6DigitCodeTo', 'We\'ve sent a 6-digit code to', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('284', '1', 'eng', 'auth', 'enter6DigitCode', 'Enter 6-digit code', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('285', '1', 'eng', 'auth', 'thisCodeWillExpireIn', 'This code will expire in', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('286', '1', 'eng', 'auth', 'minutes', 'minutes', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('287', '1', 'eng', 'auth', 'ifYouDidNotRequestThisLoginCode', 'If you did not request this login code, please ignore this email and ensure your account is secure.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('288', '1', 'eng', 'auth', 'bestRegards', 'Thank you', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('289', '1', 'eng', 'auth', 'verifyOtp', 'Verify OTP', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('290', '1', 'eng', 'auth', 'loginVerificationCode', 'Login Verification Code', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('291', '1', 'eng', 'auth', 'youHaveRequestedToLogin', 'You have requested to login to your account. Please use the following verification code:', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('292', '1', 'eng', 'auth', 'team', 'Team', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('293', '1', 'eng', 'auth', 'newOtpSentSuccessfully', 'New OTP sent successfully!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('294', '1', 'eng', 'auth', 'failedToResendOtp', 'Failed to resend OTP. Please try again.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('295', '1', 'eng', 'auth', 'sending', 'Resend OTP successfully!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('296', '1', 'eng', 'email', 'reservation.reservationConfirmation', 'Reservation Confirmation ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('297', '1', 'eng', 'email', 'reservation.subject', 'New Reservation Received: ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('298', '1', 'eng', 'email', 'reservation.text1', 'A new reservation has been made.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('299', '1', 'eng', 'email', 'reservation.text2', 'Reservation Details:', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('300', '1', 'eng', 'email', 'reservation.text3', 'Please prepare accordingly.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('301', '1', 'eng', 'email', 'reservation.text4', 'Your reservation has been submitted successfully.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('302', '1', 'eng', 'email', 'reservation.action', 'View Reservation', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('303', '1', 'eng', 'email', 'newOrder.subject', 'New Order Received', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('304', '1', 'eng', 'email', 'newOrder.text1', 'A new order has been placed. ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('305', '1', 'eng', 'email', 'newOrder.text2', 'Order Details:', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('306', '1', 'eng', 'email', 'newOrder.text3', 'Order Items: ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('307', '1', 'eng', 'email', 'newOrder.action', 'View Order', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('308', '1', 'eng', 'email', 'newOrder.text4', 'Please prepare the order accordingly.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('309', '1', 'eng', 'email', 'sendOrderBill.subject', 'We Appreciate Your Order! Receipt #:order_number from :site_name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('310', '1', 'eng', 'email', 'sendOrderBill.order', 'Order', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('311', '1', 'eng', 'email', 'sendOrderBill.dear', 'Dear', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('312', '1', 'eng', 'email', 'sendOrderBill.thankYouForDining', 'Thank you for dining with us at', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('313', '1', 'eng', 'email', 'sendOrderBill.excitedToServe', 'It was our pleasure to serve you!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('314', '1', 'eng', 'email', 'sendOrderBill.orderSummary', 'Order Summary:', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('315', '1', 'eng', 'email', 'sendOrderBill.itemName', 'Item Name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('316', '1', 'eng', 'email', 'sendOrderBill.quantity', 'Quantity', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('317', '1', 'eng', 'email', 'sendOrderBill.price', 'Price', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('318', '1', 'eng', 'email', 'sendOrderBill.subtotal', 'Subtotal', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('319', '1', 'eng', 'email', 'sendOrderBill.total', 'Total', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('320', '1', 'eng', 'email', 'sendOrderBill.satisfactionMessage', 'We hope you enjoy your meal! If you have any questions or feedback, please do not hesitate to contact us.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('321', '1', 'eng', 'email', 'sendOrderBill.status', 'Status', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('322', '1', 'eng', 'email', 'sendOrderBill.branch', 'Branch', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('323', '1', 'eng', 'email', 'sendOrderBill.orderType', 'Order Type', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('324', '1', 'eng', 'email', 'sendOrderBill.downloadReceipt', 'Download Receipt PDF', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('325', '1', 'eng', 'email', 'staffWelcome.subject', 'Welcome to ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('326', '1', 'eng', 'email', 'staffWelcome.text1', 'Your account is ready to go.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('327', '1', 'eng', 'email', 'staffWelcome.text2', 'Login Email: ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('328', '1', 'eng', 'email', 'staffWelcome.text3', 'Password: ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('329', '1', 'eng', 'email', 'staffWelcome.action', 'Click Here To Login', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('330', '1', 'eng', 'email', 'emailVerification.subject', 'Email Verification Code', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('331', '1', 'eng', 'email', 'emailVerification.text1', 'Your email verification code is: ', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('332', '1', 'eng', 'email', 'trialLicenseExpPre.subject', 'License Expiration Notice', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('333', '1', 'eng', 'email', 'trialLicenseExpPre.greeting', 'Hello :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('334', '1', 'eng', 'email', 'trialLicenseExpPre.line1', 'Your trial license is about to expire on **:date**.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('335', '1', 'eng', 'email', 'trialLicenseExpPre.line2', 'Please take the necessary actions to renew it.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('336', '1', 'eng', 'email', 'trialLicenseExpPre.action', 'Go to Dashboard', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('337', '1', 'eng', 'email', 'trialLicenseExpPre.line3', 'Thank you for using our application!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('338', '1', 'eng', 'email', 'trialLicenseExp.subject', 'Your Trial License Has Expired', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('339', '1', 'eng', 'email', 'trialLicenseExp.greeting', 'Hello :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('340', '1', 'eng', 'email', 'trialLicenseExp.line1', 'We wanted to let you know that your trial license has expired.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('341', '1', 'eng', 'email', 'trialLicenseExp.line2', 'Restaurant Name: :restaurant_name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('342', '1', 'eng', 'email', 'trialLicenseExp.action', 'Go to Dashboard', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('343', '1', 'eng', 'email', 'subscriptionExpire.subject', 'Subscription Expiration Notice', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('344', '1', 'eng', 'email', 'subscriptionExpire.greeting', 'Hello :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('345', '1', 'eng', 'email', 'subscriptionExpire.line1', 'We are writing to inform you that your subscription for :restaurant_name has expired.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('346', '1', 'eng', 'email', 'subscriptionExpire.line2', 'The subscription expired on :date.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('347', '1', 'eng', 'email', 'subscriptionExpire.action', 'Renew Subscription', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('348', '1', 'eng', 'email', 'subscriptionExpire.line3', 'Thank you for using our application!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('349', '1', 'eng', 'email', 'restaurantUpdatedPlan.subject', 'Restaurant Plan Updated Successfully', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('350', '1', 'eng', 'email', 'restaurantUpdatedPlan.greeting', 'Hello :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('351', '1', 'eng', 'email', 'restaurantUpdatedPlan.line1', 'A restaurant plan has been successfully updated.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('352', '1', 'eng', 'email', 'restaurantUpdatedPlan.line2', 'Here are the updated plan details:', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('353', '1', 'eng', 'email', 'restaurantUpdatedPlan.action', 'View Dashboard', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('354', '1', 'eng', 'email', 'restaurantUpdatedPlan.line4', 'Thank you for using our service!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('355', '1', 'eng', 'email', 'offlineRequestReview.subject', 'Request for Modification of Package - :site_name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('356', '1', 'eng', 'email', 'offlineRequestReview.greeting', 'Hello, :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('357', '1', 'eng', 'email', 'offlineRequestReview.line1', 'A request for an offline payment to change the package has been made.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('358', '1', 'eng', 'email', 'offlineRequestReview.line2', 'Restaurant name: **:restaurant_name**', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('359', '1', 'eng', 'email', 'offlineRequestReview.line3', 'Package name: **:package_name**', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('360', '1', 'eng', 'email', 'offlineRequestReview.line4', 'Package type: **:package_type**', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('361', '1', 'eng', 'email', 'offlineRequestReview.line5', 'Please review the request and take the necessary action.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('362', '1', 'eng', 'email', 'offlineRequestReview.line6', 'Thank you for using our application!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('363', '1', 'eng', 'email', 'welcomeRestaurant.subject', 'Welcome to :site_name! Let\'s Start Simplifying Your Restaurant Operations! 🍽️', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('364', '1', 'eng', 'email', 'welcomeRestaurant.greeting', 'Hello, :name!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('365', '1', 'eng', 'email', 'welcomeRestaurant.line1', 'Congratulations and welcome to :site_name! We\'re thrilled to have your restaurant join our platform.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('366', '1', 'eng', 'email', 'welcomeRestaurant.line2', 'What\'s next?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('367', '1', 'eng', 'email', 'welcomeRestaurant.line3', 'Set Up Your Menu: Add your menu items, categories, and pricing with ease', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('368', '1', 'eng', 'email', 'welcomeRestaurant.line4', 'Create Your Profile: Share your restaurant\'s story, mission, and unique offerings', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('369', '1', 'eng', 'email', 'welcomeRestaurant.line5', 'Connect with Customers: Use our social media integration to boost your online presence', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('370', '1', 'eng', 'email', 'welcomeRestaurant.line6', 'Get Started Now: Start using :site_name today to streamline your operations and grow your business!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('371', '1', 'eng', 'email', 'welcomeRestaurant.line7', 'Thank you for choosing :site_name! We\'re excited to be part of your success story.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('372', '1', 'eng', 'email', 'welcomeRestaurant.line8', 'Your login email is: :email', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('373', '1', 'eng', 'email', 'welcomeRestaurant.line9', 'Your password is: :password', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('374', '1', 'eng', 'email', 'welcomeRestaurant.line10', 'Your login URL is: :login_url', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('375', '1', 'eng', 'email', 'newRestaurantSignup.subject', 'New Restaurant Signup on :site_name! 🎉', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('376', '1', 'eng', 'email', 'newRestaurantSignup.line1', 'We\'re excited to inform you that a new restaurant has just signed up for :site_name! 🎉', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('377', '1', 'eng', 'email', 'newRestaurantSignup.line2', 'Restaurant Name: :restaurant_name', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('378', '1', 'eng', 'email', 'testNotification.subject', 'SMTP Test Email', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('379', '1', 'eng', 'email', 'testNotification.greeting', 'Hello!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('380', '1', 'eng', 'email', 'testNotification.line1', 'This is a test email to verify your SMTP settings.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('381', '1', 'eng', 'email', 'testNotification.line2', 'If you received this email, your SMTP settings are configured correctly.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('382', '1', 'eng', 'email', 'testNotification.line3', 'Thank you for using our application!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('383', '1', 'eng', 'errors', '325.title', 'Restaurant Not Found', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('384', '1', 'eng', 'errors', '325.message', 'We couldn\'t find a restaurant associated with this URL. The restaurant may have been removed or the URL might be incorrect.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('385', '1', 'eng', 'errors', '325.suggestion', 'Please check the URL and try again, or use one of the options below to find what you\'re looking for.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('386', '1', 'eng', 'errors', '325.create_account', 'Create New Restaurant Account', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('387', '1', 'eng', 'errors', '325.find_url', 'Find Your Restaurant URL', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('388', '1', 'eng', 'errors', '325.need_help', 'Need help? Contact our support team', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('389', '1', 'eng', 'landing', 'getStarted', 'Get Started', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('390', '1', 'eng', 'landing', 'features', 'Features', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('391', '1', 'eng', 'landing', 'pricing', 'Pricing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('392', '1', 'eng', 'landing', 'faq', 'FAQs', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('393', '1', 'eng', 'landing', 'heroTitle', 'Restaurant POS software made simple!', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('394', '1', 'eng', 'landing', 'heroSubTitle', 'Easily manage orders, menus, and tables in one place. Save time, reduce errors, and grow your business faster', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('395', '1', 'eng', 'landing', 'getStartedFree', 'Get Started for Free', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('396', '1', 'eng', 'landing', 'featureSection1', 'Take Control of Your Restaurant', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('397', '1', 'eng', 'landing', 'featureTitle1', 'Streamline Order Management', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('398', '1', 'eng', 'landing', 'featureDescription1', 'Never lose track of an order again. All your customer orders—from dine-in to takeout—are organized and easily accessible in one place. Speed up service and keep your kitchen running smoothly.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('399', '1', 'eng', 'landing', 'featureTitle2', 'Optimize Table Reservations', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('400', '1', 'eng', 'landing', 'featureDescription2', 'Maximize seating efficiency with real-time table tracking and reservations. Reduce wait times and ensure no table sits empty during peak hours, improving customer experience and turnover.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('401', '1', 'eng', 'landing', 'featureTitle3', 'Effortless Menu Management', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('402', '1', 'eng', 'landing', 'featureDescription3', 'Easily add, edit, or remove items from your menu on the go. Highlight specials, update prices, and keep everything in sync across all platforms, so your staff and customers always see the latest offerings.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('403', '1', 'eng', 'landing', 'featureSection2', 'Powerful Features Built to Elevate Your Restaurant Operations', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('404', '1', 'eng', 'landing', 'iconFeature1', 'QR Code Menu', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('405', '1', 'eng', 'landing', 'iconFeatureDesc1', 'Contactless Ordering Made Easy', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('406', '1', 'eng', 'landing', 'iconFeature2', 'Payment Gateway Integration', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('407', '1', 'eng', 'landing', 'iconFeatureDesc2', 'Fast, Secure, and Flexible Payments using Stripe and Razorpay', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('408', '1', 'eng', 'landing', 'iconFeature3', 'Staff Management', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('409', '1', 'eng', 'landing', 'iconFeatureDesc3', 'Separate login for every staff role with different permissions.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('410', '1', 'eng', 'landing', 'iconFeature4', 'POS (Point of Sale)', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('411', '1', 'eng', 'landing', 'iconFeatureDesc4', 'Complete POS Integration', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('412', '1', 'eng', 'landing', 'iconFeature5', 'Custom Floor Plans', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('413', '1', 'eng', 'landing', 'iconFeatureDesc5', 'Design Your Restaurant\'s Layout', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('414', '1', 'eng', 'landing', 'iconFeature6', 'Kitchen Order Tickets (KOT)', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('415', '1', 'eng', 'landing', 'iconFeatureDesc6', 'Efficient Kitchen Workflow', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('416', '1', 'eng', 'landing', 'iconFeature7', 'Bill Printing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('417', '1', 'eng', 'landing', 'iconFeatureDesc7', 'Quick and Accurate Billing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('418', '1', 'eng', 'landing', 'iconFeature8', 'Reports', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('419', '1', 'eng', 'landing', 'iconFeatureDesc8', 'Data-Driven Decisions', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('420', '1', 'eng', 'landing', 'testimonialSection1', 'What Restaurant Owners Are Saying', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('421', '1', 'eng', 'landing', 'testimonial1', 'It has completely transformed how we operate. Managing orders, tables, and staff all from one platform has reduced our workload and made everything run more smoothly.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('422', '1', 'eng', 'landing', 'testimonialName1', 'John Martin', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('423', '1', 'eng', 'landing', 'testimonialDesignation1', 'Owner of Riverbend Bistro', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('424', '1', 'eng', 'landing', 'testimonial2', 'The QR Code menu and payment integration have made a huge difference for us, especially after the pandemic. Customers love the ease, and we’ve seen faster table turnover.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('425', '1', 'eng', 'landing', 'testimonialName2', 'Emily Thompson', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('426', '1', 'eng', 'landing', 'testimonialDesignation2', 'Manager at Lakeside Grill', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('427', '1', 'eng', 'landing', 'testimonial3', 'We\'re able to track every order in real time, keep our menu updated, and quickly manage payments. It\'s like having an extra set of hands in the restaurant.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('428', '1', 'eng', 'landing', 'testimonialName3', 'Michael Scott', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('429', '1', 'eng', 'landing', 'testimonialDesignation3', 'Owner of Downtown Eats', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('430', '1', 'eng', 'landing', 'pricingTitle1', 'Simple, Transparent Pricing', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('431', '1', 'eng', 'landing', 'pricingSubTitle1', 'Get everything you need to manage your restaurant with one affordable plan.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('432', '1', 'eng', 'landing', 'pricingHeading', 'All-in-One Plan', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('433', '1', 'eng', 'landing', 'pricingFeature1', 'Unlimited Orders & Reservations', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('434', '1', 'eng', 'landing', 'pricingFeature2', 'Menu Management', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('435', '1', 'eng', 'landing', 'pricingFeature3', 'QR Code Menu', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('436', '1', 'eng', 'landing', 'pricingFeature4', 'Payment Gateway Integration', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('437', '1', 'eng', 'landing', 'pricingFeature5', 'POS System', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('438', '1', 'eng', 'landing', 'pricingFeature6', 'Custom Floor Plans', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('439', '1', 'eng', 'landing', 'pricingFeature7', 'Staff Management', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('440', '1', 'eng', 'landing', 'pricingFeature8', 'Kitchen Order Tickets (KOT)', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('441', '1', 'eng', 'landing', 'pricingFeature9', 'Reports & Analytics', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('442', '1', 'eng', 'landing', 'pricingFeature10', 'Customer Support', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('443', '1', 'eng', 'landing', 'pricingFeature11', 'Multiple Branches', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('444', '1', 'eng', 'landing', 'pricingFeature12', 'Export to Excel', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('445', '1', 'eng', 'landing', 'pricingFeature13', 'Add Business Logo & Theme', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('446', '1', 'eng', 'landing', 'pricingFeature14', 'Table Reservations', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('447', '1', 'eng', 'landing', 'pricingFeature15', 'Payment Gateway Integration', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('448', '1', 'eng', 'landing', 'faqTitle1', 'Your questions, answered', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('449', '1', 'eng', 'landing', 'faqSubTitle1', 'Answers to the most frequently asked questions.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('450', '1', 'eng', 'landing', 'faqQues1', 'How can I contact customer support 1?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('451', '1', 'eng', 'landing', 'faqAns1', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('452', '1', 'eng', 'landing', 'faqQues2', 'How can I contact customer support?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('453', '1', 'eng', 'landing', 'faqAns2', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('454', '1', 'eng', 'landing', 'faqQues3', 'How can I contact customer support?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('455', '1', 'eng', 'landing', 'faqAns3', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('456', '1', 'eng', 'landing', 'faqQues4', 'How can I contact customer support?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('457', '1', 'eng', 'landing', 'faqAns4', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('458', '1', 'eng', 'landing', 'faqQues5', 'How can I contact customer support?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('459', '1', 'eng', 'landing', 'faqAns5', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('460', '1', 'eng', 'landing', 'faqQues6', 'How can I contact customer support?', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('461', '1', 'eng', 'landing', 'faqAns6', 'Our dedicated support team is available via email to assist you with any questions or technical issues.', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('462', '1', 'eng', 'landing', 'contactTitle', 'Contact', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('463', '1', 'eng', 'landing', 'addressTitle', 'Our address', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('464', '1', 'eng', 'landing', 'contactCompany', 'Bond Hobbs Inc', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('465', '1', 'eng', 'landing', 'contactAddress', '957 Jamie Station, Lamontborough, SD 27319-9459', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('466', '1', 'eng', 'landing', 'emailTitle', 'Our Email', '2025-11-27 01:06:18', '2025-11-27 01:06:18'),
('467', '1', 'eng', 'landing', 'contactEmail', 'support@example.com', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('468', '1', 'eng', 'landing', 'rightsReserved', 'All Rights Reserved.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('469', '1', 'eng', 'landing', 'startTrial', 'Start :days Days Trial', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('470', '1', 'eng', 'landing', 'callTitle', 'Call Us', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('471', '1', 'eng', 'menu', 'dashboard', 'Dashboard', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('472', '1', 'eng', 'menu', 'menu', 'Menu', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('473', '1', 'eng', 'menu', 'menus', 'Menus', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('474', '1', 'eng', 'menu', 'menuItem', 'Menu Items', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('475', '1', 'eng', 'menu', 'profile', 'Profile', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('476', '1', 'eng', 'menu', 'itemCategories', 'Item Categories', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('477', '1', 'eng', 'menu', 'table', 'Table', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('478', '1', 'eng', 'menu', 'areas', 'Areas', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('479', '1', 'eng', 'menu', 'tables', 'Tables', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('480', '1', 'eng', 'menu', 'orders', 'Orders', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('481', '1', 'eng', 'menu', 'pos', 'POS', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('482', '1', 'eng', 'menu', 'kot', 'KOT', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('483', '1', 'eng', 'menu', 'myAccount', 'My Account', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('484', '1', 'eng', 'menu', 'myOrders', 'My Orders', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('485', '1', 'eng', 'menu', 'customers', 'Customers', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('486', '1', 'eng', 'menu', 'newOrder', 'New Order', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('487', '1', 'eng', 'menu', 'payments', 'Payments', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('488', '1', 'eng', 'menu', 'billing', 'Billing', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('489', '1', 'eng', 'menu', 'duePayments', 'Due Payments', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('490', '1', 'eng', 'menu', 'qrCodes', 'QR Codes', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('491', '1', 'eng', 'menu', 'reports', 'Reports', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('492', '1', 'eng', 'menu', 'itemReport', 'Item Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('493', '1', 'eng', 'menu', 'categoryReport', 'Category Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('494', '1', 'eng', 'menu', 'salesReport', 'Sales Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('495', '1', 'eng', 'menu', 'deliveryAppReport', 'Delivery App Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('496', '1', 'eng', 'menu', 'cancelledOrderReport', 'Cancelled Order Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('497', '1', 'eng', 'menu', 'removedKotItemReport', 'Removed KOT Item Report', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('498', '1', 'eng', 'menu', 'settings', 'Settings', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('499', '1', 'eng', 'menu', 'signOut', 'Sign Out', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('500', '1', 'eng', 'menu', 'appUpdate', 'App Update', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('501', '1', 'eng', 'menu', 'home', 'Home', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('502', '1', 'eng', 'menu', 'about', 'About', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('503', '1', 'eng', 'menu', 'contact', 'Contact', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('504', '1', 'eng', 'menu', 'staff', 'Staff', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('505', '1', 'eng', 'menu', 'bookTable', 'Book a Table', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('506', '1', 'eng', 'menu', 'myBookings', 'My Bookings', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('507', '1', 'eng', 'menu', 'reservations', 'Reservations', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('508', '1', 'eng', 'menu', 'customerSite', 'Customer Site', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('509', '1', 'eng', 'menu', 'packages', 'Packages', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('510', '1', 'eng', 'menu', 'offlineRequest', 'Offline Request', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('511', '1', 'eng', 'menu', 'users', 'Users', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('512', '1', 'eng', 'menu', 'deliveryExecutive', 'Delivery Executive', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('513', '1', 'eng', 'menu', 'landingSites', 'Landing Site', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('514', '1', 'eng', 'menu', 'waiterRequest', 'Waiter Requests', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('515', '1', 'eng', 'menu', 'itemModifiers', 'Item Modifiers', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('516', '1', 'eng', 'menu', 'modifierGroups', 'Modifier Groups', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('517', '1', 'eng', 'menu', 'goBackToCustomModules', 'Go Back to Custom Modules', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('518', '1', 'eng', 'menu', 'expenses', 'Expenses', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('519', '1', 'eng', 'menu', 'vendor', 'Vendor', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('520', '1', 'eng', 'menu', 'expenseReports', 'Expense Reports', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('521', '1', 'eng', 'menu', 'expensesCategory', 'Expense Categories', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('522', '1', 'eng', 'menu', 'openMainMenu', 'Open Main Menu', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('523', '1', 'eng', 'menu', 'myAddresses', 'My Addresses', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('524', '1', 'eng', 'menu', 'superadminPaymentSetting', 'Payment Settings', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('525', '1', 'eng', 'menu', 'adminPaymentSetting', 'Restaurant Payment Settings', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('526', '1', 'eng', 'menu', 'customerDisplay', 'Customer Display', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('527', '1', 'eng', 'messages', 'menuAdded', 'Menu added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('528', '1', 'eng', 'messages', 'noMenuAdded', 'No menu added!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('529', '1', 'eng', 'messages', 'menuUpdated', 'Menu updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('530', '1', 'eng', 'messages', 'menuDeleted', 'Menu deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('531', '1', 'eng', 'messages', 'categoryAdded', 'Item category added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('532', '1', 'eng', 'messages', 'categoryUpdated', 'Item category updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('533', '1', 'eng', 'messages', 'menuItemAdded', 'Menu item added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('534', '1', 'eng', 'messages', 'variationSaved', 'Variation saved successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('535', '1', 'eng', 'messages', 'menuItemUpdated', 'Menu item updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('536', '1', 'eng', 'messages', 'menuItemDeleted', 'Menu item deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('537', '1', 'eng', 'messages', 'orderItemDeleted', 'Order item deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('538', '1', 'eng', 'messages', 'menuItemCategoryDeleted', 'Menu item category deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('539', '1', 'eng', 'messages', 'itemVariationDeleted', 'Item variation deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('540', '1', 'eng', 'messages', 'noItemAdded', 'No record found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('541', '1', 'eng', 'messages', 'noItemCategoryAdded', 'No item category added', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('542', '1', 'eng', 'messages', 'noAreaAdded', 'No area is added.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('543', '1', 'eng', 'messages', 'areaAdded', 'Area added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('544', '1', 'eng', 'messages', 'areaUpdated', 'Area updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('545', '1', 'eng', 'messages', 'areaDeleted', 'Area deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('546', '1', 'eng', 'messages', 'noTableadded', 'No table is added.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('547', '1', 'eng', 'messages', 'tableAdded', 'Table added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('548', '1', 'eng', 'messages', 'tableUpdated', 'Table updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('549', '1', 'eng', 'messages', 'tableDeleted', 'Table deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('550', '1', 'eng', 'messages', 'setTableNo', 'You need to set the table number', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('551', '1', 'eng', 'messages', 'enterPax', 'Enter the no of Pax.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('552', '1', 'eng', 'messages', 'selectWaiter', 'Select the waiter who took the order.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('553', '1', 'eng', 'messages', 'orderItemRequired', 'You need to add items to the order.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('554', '1', 'eng', 'messages', 'orderSaved', 'Order placed successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('555', '1', 'eng', 'messages', 'kotGenerated', 'KOT Generated Successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('556', '1', 'eng', 'messages', 'billedSuccess', 'Order Billed Successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('557', '1', 'eng', 'messages', 'addCustomerDetails', 'Add customer details.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('558', '1', 'eng', 'messages', 'thankYouVisit', 'Thank you for your visit!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('559', '1', 'eng', 'messages', 'emailVerificationCode', 'Email verification code.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('560', '1', 'eng', 'messages', 'invalidVerificationCode', 'Invalid verification code.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('561', '1', 'eng', 'messages', 'verificationCodeSent', 'Verification Code Sent', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('562', '1', 'eng', 'messages', 'customerDeleted', 'Customer deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('563', '1', 'eng', 'messages', 'noCustomerFound', 'No Customer Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('564', '1', 'eng', 'messages', 'settingsUpdated', 'Settings updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('565', '1', 'eng', 'messages', 'orderPlacedSuccess', 'Order placed successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('566', '1', 'eng', 'messages', 'orderCanceled', 'Order canceled successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('567', '1', 'eng', 'messages', 'noPaymentFound', 'No Payment Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('568', '1', 'eng', 'messages', 'waitingTodayOrder', ' Waiting for today\'s first order &#x23F3;', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('569', '1', 'eng', 'messages', 'updateAlert', 'Do not click update now button if the application is customized. Your changes will be lost.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('570', '1', 'eng', 'messages', 'updateBackupNotice', 'Take a backup of files and database before updating.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('571', '1', 'eng', 'messages', 'frontHeroHeading', 'Ready to Satisfy Your Cravings? Place Your Order Now!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('572', '1', 'eng', 'messages', 'profileUpdated', 'Profile Updated Successfully', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('573', '1', 'eng', 'messages', 'cartEmpty', 'Your cart is empty 🙁', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('574', '1', 'eng', 'messages', 'memberAdded', 'Member added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('575', '1', 'eng', 'messages', 'cannotEditOwnRole', 'You cannot change own role.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('576', '1', 'eng', 'messages', 'memberUpdated', 'Member updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('577', '1', 'eng', 'messages', 'memberDeleted', 'Member deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('578', '1', 'eng', 'messages', 'currencyDeleted', 'Currency deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('579', '1', 'eng', 'messages', 'noCurrencyFound', 'No currency found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('580', '1', 'eng', 'messages', 'noPhoneCodesFound', 'No phone codes found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('581', '1', 'eng', 'messages', 'cannotDeleteDefaultCurrency', 'Cannot Delete Default Currency.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('582', '1', 'eng', 'messages', 'taxApplicableInfo', 'All taxes will be applicable on creating order.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('583', '1', 'eng', 'messages', 'taxDeleted', 'Tax deleted successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('584', '1', 'eng', 'messages', 'chooseEndTimeLater', 'Choose and end time later than the start time.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('585', '1', 'eng', 'messages', 'frontReservationHeading', 'Book a Table and Savor the Experience.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('586', '1', 'eng', 'messages', 'selectBookingDetail', 'Select your booking details', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('587', '1', 'eng', 'messages', 'selectTimeSlot', 'Select Time Slot', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('588', '1', 'eng', 'messages', 'loginForReservation', 'Login to make reservation', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('589', '1', 'eng', 'messages', 'reservationConfirmed', 'Your reservation is confirmed.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('590', '1', 'eng', 'messages', 'noTimeSlot', 'No time slot available. Choose a different date or meal time.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('591', '1', 'eng', 'messages', 'noTableReserved', 'No table is reserved.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('592', '1', 'eng', 'messages', 'smtpError', 'Your SMTP details are not correct. Please update to the correct one.<br><br>Proper SMTP configuration is essential for sending emails such as order confirmations, password resets, and notifications to customers and staff. Without correct SMTP settings, your restaurant management system cannot communicate via email.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('593', '1', 'eng', 'messages', 'newOrderReceived', 'New Order Received.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('594', '1', 'eng', 'messages', 'cannotDeleteCurrentBranch', 'Cannot delete current branch.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('595', '1', 'eng', 'messages', 'branchAdded', 'New branch added.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('596', '1', 'eng', 'messages', 'branchDeleted', 'Branch deleted successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('597', '1', 'eng', 'messages', 'branchUpdated', 'Branch updated successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('598', '1', 'eng', 'messages', 'licenseUpgraded', 'License upgraded successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('599', '1', 'eng', 'messages', 'noRestaurantFound', 'No restaurant found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('600', '1', 'eng', 'messages', 'restaurantUpdated', 'Restaurant updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('601', '1', 'eng', 'messages', 'invalidStripePlan', 'Invalid Stripe Plan.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('602', '1', 'eng', 'messages', 'packageUpdated', 'Package updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('603', '1', 'eng', 'messages', 'noPackageFound', 'No package found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('604', '1', 'eng', 'messages', 'alreadyRequestPending', 'You have already raised a request.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('605', '1', 'eng', 'messages', 'packageAdded', 'Package added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('606', '1', 'eng', 'messages', 'packageDeleted', 'Package deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('607', '1', 'eng', 'messages', 'smtpRecommendation', 'Recommendation for SMTP ', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('608', '1', 'eng', 'messages', 'noMemberFound', 'No member found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('609', '1', 'eng', 'messages', 'noInvoiceFound', 'No invoice found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('610', '1', 'eng', 'messages', 'loadingData', 'Loading Data...', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('611', '1', 'eng', 'messages', 'gatewayNotAdded', 'Payment gateway credentials not added by superadmin', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('612', '1', 'eng', 'messages', 'smtpSuccess', 'Your SMTP details are correct', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('613', '1', 'eng', 'messages', 'packageRequired', 'Package ID is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('614', '1', 'eng', 'messages', 'packageNotFound', 'Package not found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('615', '1', 'eng', 'messages', 'trialExpireOnRequired', 'Trial expiration date is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('616', '1', 'eng', 'messages', 'amountNumeric', 'The amount must be a number.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('617', '1', 'eng', 'messages', 'payDateRequired', 'Payment date is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('618', '1', 'eng', 'messages', 'nextPayDateRequired', 'Next payment date is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('619', '1', 'eng', 'messages', 'noOfflinePaymentMethodFound', 'No offline payment method found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('620', '1', 'eng', 'messages', 'amountRequired', 'Amount is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('621', '1', 'eng', 'messages', 'licenceExpireRequired', 'License expiration date is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('622', '1', 'eng', 'messages', 'offlinePaymentMethodAdded', 'Offline payment method added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('623', '1', 'eng', 'messages', 'offlinePaymentMethodUpdated', 'Offline payment method updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('624', '1', 'eng', 'messages', 'noOfflinePaymentRequestFound', 'No offline payment request found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('625', '1', 'eng', 'messages', 'offlinePaymentMethodDeleted', 'Offline payment method deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('626', '1', 'eng', 'messages', 'reservationsDisabled', 'Reservations are currently disabled.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('627', '1', 'eng', 'messages', 'customerReservationsDisabled', 'Customer reservations are currently disabled.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('628', '1', 'eng', 'messages', 'minimumPartySizeRequired', 'Minimum reservation is for :size people.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('629', '1', 'eng', 'messages', 'minimumRequired', 'Min :size', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('630', '1', 'eng', 'messages', 'disabledWhenMainReservationsOff', 'Disabled when main reservations are off', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('631', '1', 'eng', 'messages', 'phoneCodeDetected', 'Phone code :code detected based on your location', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('632', '1', 'eng', 'messages', 'offlinePaymentVerified', 'Offline payment verified successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('633', '1', 'eng', 'messages', 'OfflinePlanChangeDeclined', 'Offline plan change request declined successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('634', '1', 'eng', 'messages', 'planUpgraded', 'Plan upgraded successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('635', '1', 'eng', 'messages', 'noPlanIdFound', 'No plan id found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('636', '1', 'eng', 'messages', 'requestSubmittedSuccessfully', 'Request submitted successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('637', '1', 'eng', 'messages', 'startShoppingNow', 'Add items to your cart!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('638', '1', 'eng', 'messages', 'smtpSecureEnabled', 'For Gmail SMTP configuration, please follow the following link ', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('639', '1', 'eng', 'messages', 'testEmailSuccess', 'Email sent successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('640', '1', 'eng', 'messages', 'testEmailError', 'Failed to send test email: :message', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('641', '1', 'eng', 'messages', 'waiterRequestCompleted', 'Request completed successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('642', '1', 'eng', 'messages', 'welcomeToUpgrade', 'Please upgrade your license to access premium features and enhance your restaurant management experience.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('643', '1', 'eng', 'messages', 'upgradeRequired', 'Upgrade Required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('644', '1', 'eng', 'messages', 'noAdminFound', 'No Admin Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('645', '1', 'eng', 'messages', 'statusUpdated', 'Status updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('646', '1', 'eng', 'messages', 'invalidRequest', 'Invalid Request', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('647', '1', 'eng', 'messages', 'packageIsUsed', 'Package is used by some restaurants. First change the package for those restaurants.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('648', '1', 'eng', 'messages', 'currencyCannotBeDeleted', 'Currency cannot be deleted', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('649', '1', 'eng', 'messages', 'currencyIsUsedInPackages', 'Currency is used in some packages. First change the currency for those packages or delete the packages with this currency.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('650', '1', 'eng', 'messages', 'languageUpdated', 'Language updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('651', '1', 'eng', 'messages', 'fileUploaded', 'File uploaded successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('652', '1', 'eng', 'messages', 'noFilesAvailable', 'No files available', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('653', '1', 'eng', 'messages', 'noFilesAvailableDescription', 'There are no files to display at the moment.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('654', '1', 'eng', 'messages', 'transferProgress', 'Transfer Progress', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('655', '1', 'eng', 'messages', 'discountPercentError', 'The discount percentage cannot exceed 100%.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('656', '1', 'eng', 'messages', 'branchLimitReached', 'Branch limit reached, can\'t add more with the current package.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('657', '1', 'eng', 'messages', 'ModifierGroupAdded', 'Modifier Group added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('658', '1', 'eng', 'messages', 'noModifierGroupFound', 'No modifier group found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('659', '1', 'eng', 'messages', 'itemModifierGroupAdded', 'Item Modifier Group added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('660', '1', 'eng', 'messages', 'itemModifierGroupUpdated', 'Item Modifier Group updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('661', '1', 'eng', 'messages', 'itemModifierGroupDeleted', 'Item Modifier Group deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('662', '1', 'eng', 'messages', 'noItemModifierFound', 'No item modifier found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('663', '1', 'eng', 'messages', 'ModifierGroupUpdated', 'Modifier Group updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('664', '1', 'eng', 'messages', 'cronIsNotRunning', 'It appears that your cron job has not run in the last 48 hours. Please check to ensure that it is properly configured. This message will automatically disappear once the cron job is functioning correctly again', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('665', '1', 'eng', 'messages', 'cronIsNotRunningOnboarding', 'Please check to ensure that it is properly configured. This message will automatically disappear once the cron job is functioning correctly again', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('666', '1', 'eng', 'messages', 'cronJobSetting', 'Cron Job Setting', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('667', '1', 'eng', 'messages', 'cronJobSettingDescription', 'Click here to view the cron job setting.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('668', '1', 'eng', 'messages', 'downloadFilefromCodecanyon', 'Download the zip file from codecanyon and upload it here. Only .zip file type is allowed for uploading.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('669', '1', 'eng', 'messages', 'sweetAlertTitle', 'Are you sure?', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('670', '1', 'eng', 'messages', 'removeFileText', 'You will not be able to recover the deleted file!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('671', '1', 'eng', 'messages', 'confirmDelete', 'Yes, delete it!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('672', '1', 'eng', 'messages', 'deleteSuccess', 'Deleted successfully.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('673', '1', 'eng', 'messages', 'installingUpdateMessage', 'Installing...Please wait (This may take a few minutes.)', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('674', '1', 'eng', 'messages', 'installedUpdateMessage', 'Installed successfully. Reload the page to see the changes.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('675', '1', 'eng', 'messages', 'customModuleInstalled', 'Module installed successfully. You will be redirected to the custom module page. Activate the module to use it.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('676', '1', 'eng', 'messages', 'noRecordFound', 'No record found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('677', '1', 'eng', 'messages', 'orderDeleted', 'Order deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('678', '1', 'eng', 'messages', 'CartAddPermissionDenied', 'Permission denied. Please contact the restaurant.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('679', '1', 'eng', 'messages', 'noExpensesAdded', 'No Expenses Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('680', '1', 'eng', 'messages', 'expenseAdded', 'Expenses Added ', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('681', '1', 'eng', 'messages', 'expenseUpdated', 'Expenses Updated ', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('682', '1', 'eng', 'messages', 'showHidePurchaseCode', 'Show/Hide Purchase Code', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('683', '1', 'eng', 'messages', 'changePurchaseCode', 'Change Purchase Code', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('684', '1', 'eng', 'messages', 'restaurantDeleted', 'Restaurant deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('685', '1', 'eng', 'messages', 'deliveryExecutiveAssigned', 'Delivery executive assigned!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('686', '1', 'eng', 'messages', 'selectDeliveryExecutive', 'Please select a delivery executive.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('687', '1', 'eng', 'messages', 'vendorUpdated', 'Vendor Updated', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('688', '1', 'eng', 'messages', 'expenseDeleted', 'Expense Deleted', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('689', '1', 'eng', 'messages', 'vendorDeleted', 'Vendor Deleted', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('690', '1', 'eng', 'messages', 'noVendorsAdded', 'No Vendors Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('691', '1', 'eng', 'messages', 'moduleSettingsInstall', 'Install new modules to enhance your application\'s functionality', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('692', '1', 'eng', 'messages', 'chargeDeleted', 'Charge deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('693', '1', 'eng', 'messages', 'addonDescription', 'This is an additional module that can be purchased separately.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('694', '1', 'eng', 'messages', 'noChargeFound', 'No charge found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('695', '1', 'eng', 'messages', 'paymentQrCodeRequired', 'Payment QR Code is required.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('696', '1', 'eng', 'messages', 'noSubscriptionFound', 'No subscription found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('697', '1', 'eng', 'messages', 'subscriptionCancelled', 'Subscription cancelled successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('698', '1', 'eng', 'messages', 'subscriptionUpdated', 'Subscription updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('699', '1', 'eng', 'messages', 'customerAdded', 'Customer added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('700', '1', 'eng', 'messages', 'customerAlreadyExists', 'Customer with email :email already exists.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('701', '1', 'eng', 'messages', 'customerImported', 'Customers imported successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('702', '1', 'eng', 'messages', 'customerImportStarted', 'Customer import started successfully! The import is being processed in the background.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('703', '1', 'eng', 'messages', 'noFeatures', 'No additional features found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('704', '1', 'eng', 'messages', 'paymentGatewayNotConfigured', 'Payment gateway not configured.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('705', '1', 'eng', 'messages', 'tipRemovedSuccessfully', 'Tip removed successfully', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('706', '1', 'eng', 'messages', 'tipUpdatedSuccessfully', 'Tip updated successfully', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('707', '1', 'eng', 'messages', 'tipAddedSuccessfully', 'Tip added successfully', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('708', '1', 'eng', 'messages', 'paymentDoneSuccessfully', 'Payment done successfully', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('709', '1', 'eng', 'messages', 'paymentFailed', 'Payment failed, please try again', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('710', '1', 'eng', 'messages', 'invalidPaymentMethod', 'Invalid payment method', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('711', '1', 'eng', 'messages', 'expenseCategoryDeleted', 'Expense category deleted successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('712', '1', 'eng', 'messages', 'expenseCategoryAdded', 'Expense category added successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('713', '1', 'eng', 'messages', 'expenseCategoryUpdated', 'Expense category updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('714', '1', 'eng', 'messages', 'installAppInstruction', 'To install this web app on your phone: tap  ', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('715', '1', 'eng', 'messages', 'addToHomeScreen', 'and then Add to Home Screen', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('716', '1', 'eng', 'messages', 'confrmDeleteDyanamicMenu', 'Are you sure you want to delete this Custom Menu', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('717', '1', 'eng', 'messages', 'noCustomMenu', 'No Custom Menu Found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('718', '1', 'eng', 'messages', 'menuUpdate', 'Menu updated successfully!', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('719', '1', 'eng', 'messages', 'orderNotFound', 'Order not found', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('720', '1', 'eng', 'messages', 'notHavePermission', 'Access denied. Please reload page and try again.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('721', '1', 'eng', 'messages', 'troubleClickingButton', 'If you\'re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser:', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('722', '1', 'eng', 'messages', 'resetPassword', 'Reset Password', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('723', '1', 'eng', 'messages', 'accountRecoveryAuthMessage', 'Please confirm access to your account by entering the authentication code provided by your authenticator application.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('724', '1', 'eng', 'messages', 'accountRecoveryCode', 'Please confirm access to your account by entering one of your emergency recovery codes.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('725', '1', 'eng', 'messages', 'invalidFlutterwavePlan', 'Invalid Flutterwave plan ID.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('726', '1', 'eng', 'messages', 'flutterwavePlanNotFound', 'Flutterwave plan not found.', '2025-11-27 01:06:19', '2025-11-27 01:06:19'),
('727', '1', 'eng', 'messages', 'FlutterwavePaymentError', 'Flutterwave payment error: :message', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('728', '1', 'eng', 'messages', 'transactionReferenceMissing', 'Transaction reference is missing.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('729', '1', 'eng', 'messages', 'invalidTransactionReference', 'Invalid transaction reference.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('730', '1', 'eng', 'messages', 'paymentVerificationFailed', 'Payment verification failed.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('731', '1', 'eng', 'messages', 'cannotUseSelfDomain', 'You cannot use your own domain as the landing site URL.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('732', '1', 'eng', 'messages', 'charactersShowingPerLine', 'How many characters showing per line in your paper, eg: in 80mm characters per line is 46', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('733', '1', 'eng', 'messages', 'printerIPAddress', 'You may get Printer IP address from test print paper as per printer setting', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('734', '1', 'eng', 'messages', 'printerPortAddress', 'In maximum case the Printer Port Address is 9100 but in case it is different please do a test print from your printer after turning it on, you will get the Printer Port Address in that test print paper', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('735', '1', 'eng', 'messages', 'printerAdded', 'Printer added successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('736', '1', 'eng', 'messages', 'printerUpdated', 'Printer updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('737', '1', 'eng', 'messages', 'printerDeleted', 'Printer deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('738', '1', 'eng', 'messages', 'featureDeleted', 'Feature deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('739', '1', 'eng', 'messages', 'reviewDeleted', 'Review deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('740', '1', 'eng', 'messages', 'faqAdd', 'FAQ Add successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('741', '1', 'eng', 'messages', 'faqUpdated', 'FAQ updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('742', '1', 'eng', 'messages', 'faqDeleted', 'FAQ deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('743', '1', 'eng', 'messages', 'contactSetting', 'Contact setting updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('744', '1', 'eng', 'messages', 'headerSetting', 'Heading updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('745', '1', 'eng', 'messages', 'waiterUpdated', 'Waiter Updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('746', '1', 'eng', 'messages', 'errorWantToCreateNewKot', 'To add an item, please create a new KOT by clicking the \"New KOT\" button.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('747', '1', 'eng', 'messages', 'noPrinterAdded', 'No printer added yet', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('748', '1', 'eng', 'messages', 'kotConflict', 'The selected KOTs are already assigned to another printer. Please choose different KOTs.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('749', '1', 'eng', 'messages', 'orderConflict', 'The selected orders are already assigned to another printer. Please choose different orders.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('750', '1', 'eng', 'messages', 'invalidCoordinates', 'Invalid coordinates provided.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('751', '1', 'eng', 'messages', 'deliverySettingInvalid', 'Delivery settings are invalid. Please contact the branch.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('752', '1', 'eng', 'messages', 'outOfDeliveryRange', 'The delivery address is out of the delivery range.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('753', '1', 'eng', 'messages', 'loginRequired', 'Login required, Please login to continue.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('754', '1', 'eng', 'messages', 'addressUpdated', 'Address updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('755', '1', 'eng', 'messages', 'addressAdded', 'Address added successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('756', '1', 'eng', 'messages', 'addressDeleted', 'Address deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('757', '1', 'eng', 'messages', 'noBranchCoordinates', 'Delivery settings require branch coordinates. Please update your branch location first.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('758', '1', 'eng', 'messages', 'noReservationsFound', 'No reservations found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('759', '1', 'eng', 'messages', 'paymentError', 'Payment failed. Please try again.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('760', '1', 'eng', 'messages', 'errorOccurred', 'An error occurred. Please try again later.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('761', '1', 'eng', 'messages', 'subscriptionStatusUpdate', 'Subscription status updated in our system. Please log in to your PayFast account to complete the cancellation.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('762', '1', 'eng', 'messages', 'noActiveKotPrinterConfigured', 'No active KOT printer configured.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('763', '1', 'eng', 'messages', 'defaultPrinterExists', 'Default printer already exists.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('764', '1', 'eng', 'messages', 'printerNotConnected', ' Printer Not Connected', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('765', '1', 'eng', 'messages', 'sessionDriverTooltip', 'This option controls the session \"driver\" that will be used on requests. Database driver gives you more control. * Changing the driver will make you logout.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('766', '1', 'eng', 'messages', 'atLeastTwoStatusesRequired', 'At least two statuses are required.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('767', '1', 'eng', 'messages', 'paymentGatewaySettingsUpdated', 'Payment gateway settings updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('768', '1', 'eng', 'messages', 'cannotDeleteDefaultPrinter', 'You Cannot Delete Default Printer', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('769', '1', 'eng', 'messages', 'printerStatusUpdated', 'Printer status updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('770', '1', 'eng', 'messages', 'cannotUpdateDefaultPrinterStatus', 'You cannot update the status of the default printer.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('771', '1', 'eng', 'messages', 'noBranchFound', 'No branch found. Please create a branch first.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('772', '1', 'eng', 'messages', 'planNotFound', 'Plan not found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('773', '1', 'eng', 'messages', 'reasonDeleted', 'Reason deleted successfully.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('774', '1', 'eng', 'messages', 'reasonUpdated', 'Reason updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('775', '1', 'eng', 'messages', 'reasonAdded', 'Reason added successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('776', '1', 'eng', 'messages', 'cloneCategoriesRequired', 'Clone categories are required.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('777', '1', 'eng', 'messages', 'cloneMenuRequired', 'Clone menu is required.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('778', '1', 'eng', 'messages', 'cloneMenuItemRequired', 'Clone menu item is required.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('779', '1', 'eng', 'messages', 'noParkingManagementFound', 'No parking management found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('780', '1', 'eng', 'messages', 'branchKeyReset', 'Branch key reset successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('781', '1', 'eng', 'messages', 'roleCreatedSuccessfully', 'Role created successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('782', '1', 'eng', 'messages', 'copyPermissionsFrom', 'Copy permissions from role (optional)', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('783', '1', 'eng', 'messages', 'protectedRole', 'Default role can not be deleted.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('784', '1', 'eng', 'messages', 'roleCannotBeUpdated', 'This role cannot be updated.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('785', '1', 'eng', 'messages', 'roleNotFound', 'Role not found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('786', '1', 'eng', 'messages', 'roleUpdatedSuccessfully', 'Role updated successfully.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('787', '1', 'eng', 'messages', 'errorUpdatingRole', 'Error updating role: ', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('788', '1', 'eng', 'messages', 'errorCreatingRole', 'Error creating role: ', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('789', '1', 'eng', 'messages', 'roleCannotBeDeleted', 'This role cannot be deleted.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('790', '1', 'eng', 'messages', 'roleDeletedAndUsersReassigned', 'Role deleted and users reassigned successfully.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('791', '1', 'eng', 'messages', 'errorDeletingRole', 'Error deleting role: ', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('792', '1', 'eng', 'messages', 'orderTypeDeleted', 'Order type deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('793', '1', 'eng', 'messages', 'modifierGroupAlreadyAssociatedWithVariation', 'This modifier group is already associated with selected variation.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('794', '1', 'eng', 'messages', 'userDeleted', 'User deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('795', '1', 'eng', 'messages', 'userRoleUpdated', 'User role updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('796', '1', 'eng', 'messages', 'noUserFound', 'No user found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('797', '1', 'eng', 'messages', 'areYouSureDeleteUser', 'Are you sure you want to delete this user?', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('798', '1', 'eng', 'messages', 'cannotDeleteOwnAccount', 'You cannot delete your own account.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('799', '1', 'eng', 'messages', 'superadminUserAdded', 'Superadmin user added successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('800', '1', 'eng', 'messages', 'superadminUserUpdated', 'Superadmin user updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('801', '1', 'eng', 'messages', 'staffLimitExceeded', 'The limit for your staff package has been exceeded. To address this, you have two options: either delete some staffs or update your package to accommodate a higher limit.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('802', '1', 'eng', 'messages', 'menuItemLimitExceeded', 'The limit for your menu items package has been exceeded. To address this, you have two options: either delete some menu items or update your package to accommodate a higher limit.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('803', '1', 'eng', 'messages', 'orderLimitExceeded', 'The limit for your orders package has been exceeded. To address this, you have to update your package to accommodate a higher limit.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('804', '1', 'eng', 'messages', 'orderLimitReached', 'Order limit reached', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('805', '1', 'eng', 'messages', 'deliveryPlatformAdded', 'Delivery platform added successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('806', '1', 'eng', 'messages', 'deliveryPlatformUpdated', 'Delivery platform updated successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('807', '1', 'eng', 'messages', 'deliveryPlatformDeleted', 'Delivery platform deleted successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('808', '1', 'eng', 'messages', 'deliveryPlatformStatusUpdated', 'Delivery platform :status successfully!', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('809', '1', 'eng', 'messages', 'activated', 'activated', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('810', '1', 'eng', 'messages', 'deactivated', 'deactivated', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('811', '1', 'eng', 'messages', 'platformNotFound', 'Platform not found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('812', '1', 'eng', 'messages', 'demoDataCannotBeDeleted', 'Demo data cannot be deleted.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('813', '1', 'eng', 'messages', 'noUserFoundWithThisEmailAddress', 'No user found with this email address.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('814', '1', 'eng', 'messages', 'otpSentToYourEmailAddress', 'OTP sent to your email address.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('815', '1', 'eng', 'messages', 'invalidOrExpiredOtp', 'Invalid or expired OTP.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('816', '1', 'eng', 'messages', 'userNotFound', 'User not found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('817', '1', 'eng', 'messages', 'otpResentSuccessfully', 'OTP resent successfully.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('818', '1', 'eng', 'messages', 'otpSentToYourPhoneNumber', 'OTP sent to your email address and phone number: :phone', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('819', '1', 'eng', 'messages', 'invalidLicenseDate', 'Invalid license date. Please check your purchase code.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('820', '1', 'eng', 'messages', 'cancelFailed', 'Cancelation failed', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('821', '1', 'eng', 'messages', 'paymentSuccess', 'Payment successful', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('822', '1', 'eng', 'messages', 'tableLockedByUser', 'This table is currently being handled by :user. Please try again later.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('823', '1', 'eng', 'messages', 'tableHandledByUser', 'Table :table is currently being handled by :user. Please select a different table.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('824', '1', 'eng', 'messages', 'tableLocked', 'Table :table is currently being handled by you.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('825', '1', 'eng', 'messages', 'tableLockFailed', 'Could not lock table. Try again or choose another table.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('826', '1', 'eng', 'messages', 'tableNotFound', 'Table not found.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('827', '1', 'eng', 'messages', 'tableUnlockedSuccess', 'Table :table unlocked.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('828', '1', 'eng', 'messages', 'tableUnlockFailed', 'Could not unlock table.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('829', '1', 'eng', 'messages', 'menuItemCreationFailed', 'Failed to create menu item. Please fill in all required fields.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('830', '1', 'eng', 'messages', 'logoRemoved', 'Image Removed Successfully', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('831', '1', 'eng', 'messages', 'menuItemBasePriceDescription', 'This will be used as the default price if order type specific prices are not set.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('832', '1', 'eng', 'messages', 'noDeliveryAppFound', 'No delivery platform or application is available at this time.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('833', '1', 'eng', 'modules', 'menu.addMenu', 'Add Menu', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('834', '1', 'eng', 'modules', 'menu.menuName', 'Menu Name', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('835', '1', 'eng', 'modules', 'menu.allMenus', 'Menus', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('836', '1', 'eng', 'modules', 'menu.chooseMenu', 'Choose Menu', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('837', '1', 'eng', 'modules', 'menu.allMenuItems', 'Menu Items', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('838', '1', 'eng', 'modules', 'menu.menuNameHelp', 'Enter the menu name below to create a new menu.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('839', '1', 'eng', 'modules', 'menu.item', 'Item(s)', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('840', '1', 'eng', 'modules', 'menu.addMenuItem', 'Add Menu Item', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('841', '1', 'eng', 'modules', 'menu.editMenuItem', 'Edit Menu Item', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('842', '1', 'eng', 'modules', 'menu.itemCategory', 'Item Category', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('843', '1', 'eng', 'modules', 'menu.addItemCategory', 'Add Item Category', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('844', '1', 'eng', 'modules', 'menu.typeVeg', 'Veg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('845', '1', 'eng', 'modules', 'menu.addItem', 'Add Item', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('846', '1', 'eng', 'modules', 'menu.typeNonVeg', 'Non Veg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('847', '1', 'eng', 'modules', 'menu.typeEgg', 'Egg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('848', '1', 'eng', 'modules', 'menu.typeDrink', 'Drink', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('849', '1', 'eng', 'modules', 'menu.typeOther', 'Other', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('850', '1', 'eng', 'modules', 'menu.veg', 'Veg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('851', '1', 'eng', 'modules', 'menu.non-veg', 'Non Veg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('852', '1', 'eng', 'modules', 'menu.egg', 'Contains Egg', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('853', '1', 'eng', 'modules', 'menu.itemImage', 'Item Image', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('854', '1', 'eng', 'modules', 'menu.itemImageUploadHelp', 'Supported formats: JPEG, PNG, JPG, GIF, SVG. Maximum size: 2MB. Recommended size: 200 × 200 pixels.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('855', '1', 'eng', 'modules', 'menu.hasVariations', 'Has Variations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('856', '1', 'eng', 'modules', 'menu.variationName', 'Variation Name', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('857', '1', 'eng', 'modules', 'menu.addVariations', 'Add Variations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('858', '1', 'eng', 'modules', 'menu.menuItemHelp', 'Fill in the details below to add a new menu item.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('859', '1', 'eng', 'modules', 'menu.editMenuItemHelp', 'Update the details below to modify the menu item.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('860', '1', 'eng', 'modules', 'menu.itemName', 'Item Name', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('861', '1', 'eng', 'modules', 'menu.itemDescription', 'Item Description', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('862', '1', 'eng', 'modules', 'menu.categoryName', 'Item Category Name', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('863', '1', 'eng', 'modules', 'menu.setPrice', 'Price', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('864', '1', 'eng', 'modules', 'menu.showVariations', 'Show Variations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('865', '1', 'eng', 'modules', 'menu.itemVariations', 'Item Variations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('866', '1', 'eng', 'modules', 'menu.deleteMenuItem', 'Delete Menu Item', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('867', '1', 'eng', 'modules', 'menu.deleteItemCategory', 'Delete Item Category', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('868', '1', 'eng', 'modules', 'menu.deleteVariant', 'Delete Variant', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('869', '1', 'eng', 'modules', 'menu.deleteMenu', 'Delete Menu', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('870', '1', 'eng', 'modules', 'menu.deleteVariantMessage', 'Are you sure you want to delete the item variant?', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('871', '1', 'eng', 'modules', 'menu.deleteMenuItemMessage', 'Are you sure you want to delete the menu item?', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('872', '1', 'eng', 'modules', 'menu.deleteMenuMessage', 'Are you sure you want to delete the menu?', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('873', '1', 'eng', 'modules', 'menu.deleteCategoryMessage', 'Are you sure you want to delete the item category?', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('874', '1', 'eng', 'modules', 'menu.filterType', 'Filter by Type', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('875', '1', 'eng', 'modules', 'menu.filterCategory', 'Filter by Category', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('876', '1', 'eng', 'modules', 'menu.itemType', 'Item Type', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('877', '1', 'eng', 'modules', 'menu.preparationTime', 'Preparation Time', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('878', '1', 'eng', 'modules', 'menu.minutes', 'Minutes', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('879', '1', 'eng', 'modules', 'menu.browseMenu', 'Browse Menu', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('880', '1', 'eng', 'modules', 'menu.isAvailable', 'Is Available', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('881', '1', 'eng', 'modules', 'menu.filterAvailability', 'Filter by Availability', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('882', '1', 'eng', 'modules', 'menu.itemAvailability', 'Item Availability', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('883', '1', 'eng', 'modules', 'menu.available', 'Available', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('884', '1', 'eng', 'modules', 'menu.notAvailable', 'Not Available', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('885', '1', 'eng', 'modules', 'menu.sortOrder', 'Sort Order', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('886', '1', 'eng', 'modules', 'menu.sortBy', 'Sort By', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('887', '1', 'eng', 'modules', 'menu.latestFirst', 'Latest First', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('888', '1', 'eng', 'modules', 'menu.oldestFirst', 'Oldest First', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('889', '1', 'eng', 'modules', 'menu.perPage', 'Per Page', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('890', '1', 'eng', 'modules', 'menu.itemsPerPage', 'Items Per Page', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('891', '1', 'eng', 'modules', 'menu.items', 'items', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('892', '1', 'eng', 'modules', 'menu.drink', 'Drink', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('893', '1', 'eng', 'modules', 'menu.addCustomer', 'Add Customer', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('894', '1', 'eng', 'modules', 'menu.translations', 'Translations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('895', '1', 'eng', 'modules', 'menu.notTranslated', 'Not Translated', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('896', '1', 'eng', 'modules', 'menu.selectLanguage', 'Select Language', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('897', '1', 'eng', 'modules', 'menu.showMore', 'Show More', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('898', '1', 'eng', 'modules', 'menu.showLess', 'Show Less', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('899', '1', 'eng', 'modules', 'menu.kitchenType', 'Kitchen Type', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('900', '1', 'eng', 'modules', 'menu.SelectKitchenType', 'Select Kitchen Type', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('901', '1', 'eng', 'modules', 'menu.showOnCustomerSite', 'Show on Customer Site', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('902', '1', 'eng', 'modules', 'menu.sortManager', 'Menu Organizer', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('903', '1', 'eng', 'modules', 'menu.sortMenuItems', 'Organize Menu Items', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('904', '1', 'eng', 'modules', 'menu.sortManagerInfoMessage', 'Drag and drop to organize menus, items and categories. Click a menu or category to filter and focus your item list.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('905', '1', 'eng', 'modules', 'menu.taxInclusiveInfo', 'Price includes :percent% tax (:tax) on base amount :base.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('906', '1', 'eng', 'modules', 'menu.taxExclusiveInfo', 'Price excludes :percent% tax (:tax) on base amount :base.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('907', '1', 'eng', 'modules', 'menu.taxBreakdown', 'Tax Breakdown', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('908', '1', 'eng', 'modules', 'menu.fromActualBreakdown', 'From Actual Breakdown', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('909', '1', 'eng', 'modules', 'menu.basePrice', 'Base Price', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('910', '1', 'eng', 'modules', 'menu.tax', 'Tax', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('911', '1', 'eng', 'modules', 'menu.total', 'Total', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('912', '1', 'eng', 'modules', 'menu.priceIncludesTax', 'This price includes tax (tax inclusive pricing)', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('913', '1', 'eng', 'modules', 'menu.taxAddedToPrice', 'Tax will be added to this price (tax exclusive pricing)', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('914', '1', 'eng', 'modules', 'menu.selectTaxes', 'Select Applicable Taxes', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('915', '1', 'eng', 'modules', 'menu.inStock', 'In Stock', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('916', '1', 'eng', 'modules', 'menu.typeHalal', 'Halal', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('917', '1', 'eng', 'modules', 'menu.bulkUpload', 'Bulk Upload', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('918', '1', 'eng', 'modules', 'menu.bulkUploadMenuItems', 'Bulk Upload Menu Items', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('919', '1', 'eng', 'modules', 'menu.uploadFile', 'Upload File', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('920', '1', 'eng', 'modules', 'menu.dragDropFile', 'Drag and drop your CSV or Excel file here, or click to browse', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('921', '1', 'eng', 'modules', 'menu.chooseFile', 'Choose file', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('922', '1', 'eng', 'modules', 'menu.selectKitchen', 'Select Kitchen', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('923', '1', 'eng', 'modules', 'menu.selectKitchenDescription', 'Choose which kitchen these menu items will be assigned to:', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('924', '1', 'eng', 'modules', 'menu.kitchenSelected', 'Kitchen Selected:', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('925', '1', 'eng', 'modules', 'menu.startImport', 'Start Import', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('926', '1', 'eng', 'modules', 'menu.startNewUpload', 'Start New Upload', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('927', '1', 'eng', 'modules', 'menu.importInProgress', 'Import in Progress', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('928', '1', 'eng', 'modules', 'menu.validatingFile', 'Validating file...', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('929', '1', 'eng', 'modules', 'menu.processingData', 'Processing data...', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('930', '1', 'eng', 'modules', 'menu.countingRows', 'Counting rows', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('931', '1', 'eng', 'modules', 'menu.processingRow', 'Processing row', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('932', '1', 'eng', 'modules', 'menu.importingData', 'Importing data', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('933', '1', 'eng', 'modules', 'menu.finalizingImport', 'Finalizing import', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('934', '1', 'eng', 'modules', 'menu.importCompleted', 'Import Completed', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('935', '1', 'eng', 'modules', 'menu.importFailed', 'Import Failed', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('936', '1', 'eng', 'modules', 'menu.menuItemLimitExceeded', 'Menu Item Limit Reached', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('937', '1', 'eng', 'modules', 'menu.menuItemLimitExceededMessage', 'You have reached your menu item limit. Current menu items: :current / :limit. Please upgrade your plan to add more menu items.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('938', '1', 'eng', 'modules', 'menu.importSummary', 'Import Summary', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('939', '1', 'eng', 'modules', 'menu.totalRecords', 'Total Records', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('940', '1', 'eng', 'modules', 'menu.successfulImports', 'Successful Imports', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('941', '1', 'eng', 'modules', 'menu.failedImports', 'Failed Imports', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('942', '1', 'eng', 'modules', 'menu.autoCreated', 'Auto-Created', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('943', '1', 'eng', 'modules', 'menu.categoriesCreated', 'Categories Created', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('944', '1', 'eng', 'modules', 'menu.menusCreated', 'Menus Created', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('945', '1', 'eng', 'modules', 'menu.importErrors', 'Import Errors', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('946', '1', 'eng', 'modules', 'menu.downloadSampleFile', 'Download Sample File', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('947', '1', 'eng', 'modules', 'menu.requiredColumns', 'Required Columns', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('948', '1', 'eng', 'modules', 'menu.requiredColumnsDescription', 'Your CSV file must include these columns:', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('949', '1', 'eng', 'modules', 'menu.availableInSystem', 'Available in Your System', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('950', '1', 'eng', 'modules', 'menu.availableInSystemDescription', 'Use these exact names in your CSV file, or create new ones - they will be auto-created if missing.', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('951', '1', 'eng', 'modules', 'menu.categories', 'Categories', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('952', '1', 'eng', 'modules', 'menu.menus', 'Menus', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('953', '1', 'eng', 'modules', 'menu.kitchens', 'Kitchens', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('954', '1', 'eng', 'modules', 'menu.importInstructions', 'Import Instructions', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('955', '1', 'eng', 'modules', 'menu.importInstructionsDescription', 'Follow these steps to bulk import your menu items:', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('956', '1', 'eng', 'modules', 'menu.step1', 'Step 1: Download the sample file to see the required format', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('957', '1', 'eng', 'modules', 'menu.step2', 'Step 2: Fill in your menu item data using the sample as a guide', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('958', '1', 'eng', 'modules', 'menu.step3', 'Step 3: Upload your completed file and select a kitchen', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('959', '1', 'eng', 'modules', 'menu.step4', 'Step 4: Click \"Start Import\" to begin the process', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('960', '1', 'eng', 'modules', 'menu.tryAgain', 'Try Again', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('961', '1', 'eng', 'modules', 'menu.done', 'Done', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('962', '1', 'eng', 'modules', 'menu.close', 'Close', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('963', '1', 'eng', 'modules', 'menu.backToMenuItems', 'Back to Menu Items', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('964', '1', 'eng', 'modules', 'menu.csvPreview', 'CSV Preview', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('965', '1', 'eng', 'modules', 'menu.reviewAndMapColumns', 'Review your data and map CSV columns to database fields', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('966', '1', 'eng', 'modules', 'menu.columnMapping', 'Column Mapping', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('967', '1', 'eng', 'modules', 'menu.dataPreview', 'Data Preview', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('968', '1', 'eng', 'modules', 'menu.type', 'Type', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('969', '1', 'eng', 'modules', 'menu.pricingInformation', 'Pricing Information', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('970', '1', 'eng', 'modules', 'menu.pricePreview', 'Price Preview', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('971', '1', 'eng', 'modules', 'menu.multipleVariations', 'Multiple variations available', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('972', '1', 'eng', 'modules', 'menu.taxConfiguration', 'Tax Configuration', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('973', '1', 'eng', 'modules', 'menu.priceConfiguration', 'Price Configuration', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('974', '1', 'eng', 'modules', 'menu.variationsHelp', 'Enable this to create multiple variations of this item with different prices (e.g., Small, Medium, Large)', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('975', '1', 'eng', 'modules', 'menu.variationMode', 'Variations', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('976', '1', 'eng', 'modules', 'menu.singlePrice', 'Fixed Price', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('977', '1', 'eng', 'modules', 'menu.singlePriceMode', 'Single price for this item', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('978', '1', 'eng', 'modules', 'menu.addVariationsBelow', 'Add different variations of this item below with their respective prices', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('979', '1', 'eng', 'modules', 'menu.editingVariation', 'Editing Variation', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('980', '1', 'eng', 'modules', 'menu.addNewVariation', 'Add New Variation', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('981', '1', 'eng', 'modules', 'menu.deleteVariation', 'Delete Variation', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('982', '1', 'eng', 'modules', 'menu.updateVariation', 'Update Variation', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('983', '1', 'eng', 'modules', 'menu.addVariation', 'Add Variation', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('984', '1', 'eng', 'modules', 'menu.addNew', 'Add New', '2025-11-27 01:06:20', '2025-11-27 01:06:20'),
('985', '1', 'eng', 'modules', 'menu.selected', 'Selected', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('986', '1', 'eng', 'modules', 'menu.noVariations', 'No variations added yet', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('987', '1', 'eng', 'modules', 'menu.getStartedVariations', 'Get started by adding your first variation below.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('988', '1', 'eng', 'modules', 'menu.addFirstVariation', 'Add First Variation', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('989', '1', 'eng', 'modules', 'menu.variation', 'Variation', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('990', '1', 'eng', 'modules', 'menu.productInformation', 'Product Information', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('991', '1', 'eng', 'modules', 'menu.pricingDetails', 'Pricing Details', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('992', '1', 'eng', 'modules', 'menu.hasVariationsHelp', 'Enable this if the item has multiple variations with different prices (e.g., size, flavor).', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('993', '1', 'eng', 'modules', 'menu.finalPrice', 'Final Price', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('994', '1', 'eng', 'modules', 'table.allAreas', 'All Areas', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('995', '1', 'eng', 'modules', 'table.addArea', 'Add Area', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('996', '1', 'eng', 'modules', 'table.editArea', 'Edit Area', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('997', '1', 'eng', 'modules', 'table.areaName', 'Area Name', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('998', '1', 'eng', 'modules', 'table.noOfTables', 'No Of Tables', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('999', '1', 'eng', 'modules', 'table.deleteArea', 'Delete Area', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1000', '1', 'eng', 'modules', 'table.deleteAreaMessage', 'Are you sure you want to delete the area?', '2025-11-27 01:06:21', '2025-11-27 01:06:21');

INSERT INTO `ltm_translations` VALUES
('1001', '1', 'eng', 'modules', 'table.seats', 'Seat(s)', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1002', '1', 'eng', 'modules', 'table.addTable', 'Add Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1003', '1', 'eng', 'modules', 'table.editTable', 'Edit Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1004', '1', 'eng', 'modules', 'table.tableView', 'Table View', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1005', '1', 'eng', 'modules', 'table.tableCode', 'Table Code', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1006', '1', 'eng', 'modules', 'table.chooseArea', 'Choose Area', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1007', '1', 'eng', 'modules', 'table.seatingCapacity', 'Seating Capacity', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1008', '1', 'eng', 'modules', 'table.table', 'Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1009', '1', 'eng', 'modules', 'table.available', 'Available', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1010', '1', 'eng', 'modules', 'table.running', 'Running', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1011', '1', 'eng', 'modules', 'table.reserved', 'Reserved', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1012', '1', 'eng', 'modules', 'table.filterAvailable', 'Filter by Availability', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1013', '1', 'eng', 'modules', 'table.availableTables', 'Available Tables', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1014', '1', 'eng', 'modules', 'table.deleteTable', 'Delete Table?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1015', '1', 'eng', 'modules', 'table.deleteTableMessage', 'Are you sure you want to delete the table?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1016', '1', 'eng', 'modules', 'table.selectTable', 'Select Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1017', '1', 'eng', 'modules', 'table.tableAvailability', 'Table Availability', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1018', '1', 'eng', 'modules', 'table.generateQrCode', 'Generate QR Code', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1019', '1', 'eng', 'modules', 'table.tableLockManager', 'Table Lock Manager', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1020', '1', 'eng', 'modules', 'table.totalLocked', 'Total Locked', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1021', '1', 'eng', 'modules', 'table.expiredLocks', 'Expired Locks', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1022', '1', 'eng', 'modules', 'table.lockTimeout', 'Lock Timeout', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1023', '1', 'eng', 'modules', 'table.cleanupExpiredLocks', 'Cleanup Expired Locks', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1024', '1', 'eng', 'modules', 'table.currentlyLockedTables', 'Currently Locked Tables', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1025', '1', 'eng', 'modules', 'table.noLockedTables', 'No tables are currently locked', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1026', '1', 'eng', 'modules', 'table.lockedBy', 'Locked by', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1027', '1', 'eng', 'modules', 'table.lockedAt', 'Locked at', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1028', '1', 'eng', 'modules', 'table.area', 'Area', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1029', '1', 'eng', 'modules', 'table.forceUnlock', 'Force Unlock', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1030', '1', 'eng', 'modules', 'table.confirmForceUnlock', 'Are you sure you want to force unlock this table?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1031', '1', 'eng', 'modules', 'table.locked', 'Locked', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1032', '1', 'eng', 'modules', 'table.lockedByYou', 'Locked by You', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1033', '1', 'eng', 'modules', 'table.tableLocked', 'Table Locked', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1034', '1', 'eng', 'modules', 'table.tableUnlocked', 'Table Unlocked', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1035', '1', 'eng', 'modules', 'table.lockExpired', 'Lock Expired', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1036', '1', 'eng', 'modules', 'table.lockTooltip', 'Hover for details', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1037', '1', 'eng', 'modules', 'table.realTimeUpdates', 'Real-time Updates', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1038', '1', 'eng', 'modules', 'table.refreshInterval', 'Refresh Interval', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1039', '1', 'eng', 'modules', 'table.refresh', 'Refresh', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1040', '1', 'eng', 'modules', 'order.date', 'Date', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1041', '1', 'eng', 'modules', 'order.dateParts', 'Date Parts', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1042', '1', 'eng', 'modules', 'order.showYear', 'Show Year', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1043', '1', 'eng', 'modules', 'order.showMonth', 'Show Month', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1044', '1', 'eng', 'modules', 'order.showDay', 'Show Day', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1045', '1', 'eng', 'modules', 'order.showTime', 'Show Time', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1046', '1', 'eng', 'modules', 'order.custom', 'Custom', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1047', '1', 'eng', 'modules', 'order.qty', 'Qty', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1048', '1', 'eng', 'modules', 'order.price', 'Price', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1049', '1', 'eng', 'modules', 'order.avgPrice', 'Average Price', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1050', '1', 'eng', 'modules', 'order.amount', 'Amount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1051', '1', 'eng', 'modules', 'order.balanceReturn', 'Balance Returned', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1052', '1', 'eng', 'modules', 'order.noOfPax', 'Pax', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1053', '1', 'eng', 'modules', 'order.selectWaiter', 'Select Waiter', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1054', '1', 'eng', 'modules', 'order.selectDeliveryExecutive', 'Select Delivery Executive', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1055', '1', 'eng', 'modules', 'order.totalItem', 'Item(s)', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1056', '1', 'eng', 'modules', 'order.subTotal', 'Sub Total', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1057', '1', 'eng', 'modules', 'order.total', 'Total', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1058', '1', 'eng', 'modules', 'order.totalOrder', 'Total Orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1059', '1', 'eng', 'modules', 'order.orderNumber', 'Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1060', '1', 'eng', 'modules', 'order.prefixType', 'Prefix Type', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1061', '1', 'eng', 'modules', 'order.customPrefix', 'Custom Prefix', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1062', '1', 'eng', 'modules', 'order.resetDaily', 'Reset Sequence Daily', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1063', '1', 'eng', 'modules', 'order.resetDailyHelp', 'If enabled, the order number sequence will reset every day.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1064', '1', 'eng', 'modules', 'order.separator', 'Separator', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1065', '1', 'eng', 'modules', 'order.digits', 'Number Digits', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1066', '1', 'eng', 'modules', 'order.preview', 'Preview', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1067', '1', 'eng', 'modules', 'order.previewHelp', 'This is a live preview of how your next order ID will be generated.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1068', '1', 'eng', 'modules', 'order.select', 'Select', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1069', '1', 'eng', 'modules', 'order.selectOrderType', 'Select Order Type', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1070', '1', 'eng', 'modules', 'order.selectOrderTypeDescription', 'Choose your order type to proceed', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1071', '1', 'eng', 'modules', 'order.selectDeliveryPlatform', 'Select Delivery Platform', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1072', '1', 'eng', 'modules', 'order.selectDeliveryPlatformDescription', 'Select a delivery platform to continue', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1073', '1', 'eng', 'modules', 'order.backToOrderTypes', 'Back to Order Types', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1074', '1', 'eng', 'modules', 'order.resetSelection', 'Reset Selection', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1075', '1', 'eng', 'modules', 'order.standardDeliveryPricing', 'Standard delivery pricing', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1076', '1', 'eng', 'modules', 'order.noOrderTypesAvailable', 'No order types available', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1077', '1', 'eng', 'modules', 'order.changeOrderType', 'Change Order Type?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1078', '1', 'eng', 'modules', 'order.changeOrderTypeConfirmation', 'Changing order type may change price and options.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1079', '1', 'eng', 'modules', 'order.orderTypeSetTo', 'Order type set to :type', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1080', '1', 'eng', 'modules', 'order.deliveryPlatformLabel', 'Platform', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1081', '1', 'eng', 'modules', 'order.orderTypeLabel', 'Order Type', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1082', '1', 'eng', 'modules', 'order.defaultDeliveryPlatform', 'Default', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1083', '1', 'eng', 'modules', 'order.notSet', 'Not Set', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1084', '1', 'eng', 'modules', 'order.setTable', 'Assign Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1085', '1', 'eng', 'modules', 'order.changeTable', 'Change Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1086', '1', 'eng', 'modules', 'order.confirmTableChange', 'Confirm Table Change', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1087', '1', 'eng', 'modules', 'order.currentTable', 'Current Table', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1088', '1', 'eng', 'modules', 'order.changeTo', 'Change To', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1089', '1', 'eng', 'modules', 'order.tableChangeMessage', 'Are you sure you want to change the table for this order?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1090', '1', 'eng', 'modules', 'order.tableChangeWarning', 'This action will change the table assignment for the current order.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1091', '1', 'eng', 'modules', 'order.kot', 'KOT', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1092', '1', 'eng', 'modules', 'order.kotAndPrint', 'KOT & Print', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1093', '1', 'eng', 'modules', 'order.print_kot', 'Print KOT', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1094', '1', 'eng', 'modules', 'order.newKot', 'New KOT', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1095', '1', 'eng', 'modules', 'order.bill', 'BILL', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1096', '1', 'eng', 'modules', 'order.draft', 'Waiting KOT', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1097', '1', 'eng', 'modules', 'order.billed', 'Billed', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1098', '1', 'eng', 'modules', 'order.paid', 'Paid', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1099', '1', 'eng', 'modules', 'order.unpaid', 'Unpaid', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1100', '1', 'eng', 'modules', 'order.paymentStatus', 'Payment Status', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1101', '1', 'eng', 'modules', 'order.payment_due', 'Payment Due', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1102', '1', 'eng', 'modules', 'order.canceled', 'Canceled', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1103', '1', 'eng', 'modules', 'order.infodraft', 'Not sent to Kitchen', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1104', '1', 'eng', 'modules', 'order.infokot', 'Cooking Now', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1105', '1', 'eng', 'modules', 'order.infobilled', 'Waiting for Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1106', '1', 'eng', 'modules', 'order.infopaid', 'Payment Done', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1107', '1', 'eng', 'modules', 'order.infopayment_due', 'Payment is Pending', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1108', '1', 'eng', 'modules', 'order.infocanceled', 'Order Canceled', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1109', '1', 'eng', 'modules', 'order.addCustomerDetails', 'Add Customer Details', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1110', '1', 'eng', 'modules', 'order.addPayment', 'Add Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1111', '1', 'eng', 'modules', 'order.addItems', 'Add Items', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1112', '1', 'eng', 'modules', 'order.waiter', 'Waiter', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1113', '1', 'eng', 'modules', 'order.in_kitchen', 'In Kitchen', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1114', '1', 'eng', 'modules', 'order.start_cooking', 'Start Cooking', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1115', '1', 'eng', 'modules', 'order.start_cooking_desc', 'Mark item as being prepared in kitchen', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1116', '1', 'eng', 'modules', 'order.food_ready', 'Food is Ready', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1117', '1', 'eng', 'modules', 'order.markAsReady', 'Mark Ready', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1118', '1', 'eng', 'modules', 'order.markAsReady_desc', 'Mark item as ready for serving', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1119', '1', 'eng', 'modules', 'order.ready_short', 'Ready', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1120', '1', 'eng', 'modules', 'order.pending_confirmation', 'Pending Confirmation', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1121', '1', 'eng', 'modules', 'order.pending_confirmation_short', 'Pending', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1122', '1', 'eng', 'modules', 'order.pending_confirmation_desc', 'Item is waiting for kitchen confirmation', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1123', '1', 'eng', 'modules', 'order.served', 'Food is Served', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1124', '1', 'eng', 'modules', 'order.addNote', 'Add Note', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1125', '1', 'eng', 'modules', 'order.orderNote', 'Order Note', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1126', '1', 'eng', 'modules', 'order.cancelKot', 'Cancel KOT', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1127', '1', 'eng', 'modules', 'order.cancelKotMessage', 'This will cancel the KOT.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1128', '1', 'eng', 'modules', 'order.showOrder', 'Show Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1129', '1', 'eng', 'modules', 'order.cash', 'Cash', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1130', '1', 'eng', 'modules', 'order.card', 'Card', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1131', '1', 'eng', 'modules', 'order.upi', 'UPI', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1132', '1', 'eng', 'modules', 'order.due', 'Due', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1133', '1', 'eng', 'modules', 'order.other', 'Other', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1134', '1', 'eng', 'modules', 'order.payViaCash', 'Pay via Cash', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1135', '1', 'eng', 'modules', 'order.payViacard', 'Pay via Card', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1136', '1', 'eng', 'modules', 'order.payViaupi', 'Pay via UPI', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1137', '1', 'eng', 'modules', 'order.returnAmount', 'Amount to be returned', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1138', '1', 'eng', 'modules', 'order.payableAmount', 'Payable Amount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1139', '1', 'eng', 'modules', 'order.dueAmount', 'Due Amount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1140', '1', 'eng', 'modules', 'order.paymentMethod', 'Payment Method', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1141', '1', 'eng', 'modules', 'order.method', 'Method', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1142', '1', 'eng', 'modules', 'order.taxes', 'Taxes', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1143', '1', 'eng', 'modules', 'order.viewCart', 'View Cart', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1144', '1', 'eng', 'modules', 'order.placeOrder', 'Place Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1145', '1', 'eng', 'modules', 'order.myOrders', 'My Orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1146', '1', 'eng', 'modules', 'order.includeTax', 'Includes Taxes', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1147', '1', 'eng', 'modules', 'order.payNow', 'Pay Now', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1148', '1', 'eng', 'modules', 'order.payLater', 'Pay Later', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1149', '1', 'eng', 'modules', 'order.payViaQr', 'Pay via QR Code', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1150', '1', 'eng', 'modules', 'order.chooseGateway', 'Choose payment gateway', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1151', '1', 'eng', 'modules', 'order.razorpay', 'Razorpay', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1152', '1', 'eng', 'modules', 'order.stripe', 'Stripe', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1153', '1', 'eng', 'modules', 'order.offline', 'Offline', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1154', '1', 'eng', 'modules', 'order.flutterwave', 'Flutterwave', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1155', '1', 'eng', 'modules', 'order.xendit', 'Xendit', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1156', '1', 'eng', 'modules', 'order.transactionId', 'Transaction ID', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1157', '1', 'eng', 'modules', 'order.cancelOrder', 'Cancel Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1158', '1', 'eng', 'modules', 'order.cancelOrderMessage', 'This will cancel the order and delete any associated payments. Are you sure you want to proceed?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1159', '1', 'eng', 'modules', 'order.activeOrder', 'Active Orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1160', '1', 'eng', 'modules', 'order.todayOrder', 'Today\'s Orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1161', '1', 'eng', 'modules', 'order.dine_in', 'Dine In', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1162', '1', 'eng', 'modules', 'order.delivery', 'Delivery', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1163', '1', 'eng', 'modules', 'order.pickup', 'Pickup', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1164', '1', 'eng', 'modules', 'order.pickupAt', 'Pickup At', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1165', '1', 'eng', 'modules', 'order.out_for_delivery', 'Out For Delivery', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1166', '1', 'eng', 'modules', 'order.infoout_for_delivery', 'Order is out for delivery', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1167', '1', 'eng', 'modules', 'order.delivered', 'Delivered', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1168', '1', 'eng', 'modules', 'order.infodelivered', 'Order is Delivered', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1169', '1', 'eng', 'modules', 'order.newOrder', 'New Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1170', '1', 'eng', 'modules', 'order.orderLimitExceeded', 'Order Limit Reached', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1171', '1', 'eng', 'modules', 'order.orderLimitExceededMessage', 'You have reached your daily order limit. Current orders: :current / :limit per day. Please upgrade your plan to create more orders.', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1172', '1', 'eng', 'modules', 'order.splitBill', 'Split Bill', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1173', '1', 'eng', 'modules', 'order.fullPayment', 'Full Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1174', '1', 'eng', 'modules', 'order.splitByItems', 'Split by Items', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1175', '1', 'eng', 'modules', 'order.availableItems', 'Available Items', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1176', '1', 'eng', 'modules', 'order.clickToAdd', 'Click item to add to split', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1177', '1', 'eng', 'modules', 'order.itemsInSplit', 'Items in Split', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1178', '1', 'eng', 'modules', 'order.noItemsInSplit', 'No items added to this split yet', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1179', '1', 'eng', 'modules', 'order.newSplit', 'New Split', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1180', '1', 'eng', 'modules', 'order.changeMethod', 'Change Method', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1181', '1', 'eng', 'modules', 'order.equalSplit', 'Equal Split', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1182', '1', 'eng', 'modules', 'order.splitEqually', 'Split equally', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1183', '1', 'eng', 'modules', 'order.customSplit', 'Custom Split', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1184', '1', 'eng', 'modules', 'order.splitByAmount', 'Split by amount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1185', '1', 'eng', 'modules', 'order.splitByDishes', 'Split by dishes', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1186', '1', 'eng', 'modules', 'order.base', 'Base', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1187', '1', 'eng', 'modules', 'order.tax', 'Tax', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1188', '1', 'eng', 'modules', 'order.payment', 'Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1189', '1', 'eng', 'modules', 'order.orderHash', 'Order #', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1190', '1', 'eng', 'modules', 'order.totalBill', 'Total Bill', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1191', '1', 'eng', 'modules', 'order.amountPaid', 'Amount Paid', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1192', '1', 'eng', 'modules', 'order.splitAmount', 'Split Amount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1193', '1', 'eng', 'modules', 'order.remaining', 'Remaining', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1194', '1', 'eng', 'modules', 'order.quantity', 'Quantity', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1195', '1', 'eng', 'modules', 'order.remove', 'Remove', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1196', '1', 'eng', 'modules', 'order.completePayment', 'Complete Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1197', '1', 'eng', 'modules', 'order.createBillAndPrintReceipt', 'Bill & Print', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1198', '1', 'eng', 'modules', 'order.billAndPayment', 'Bill & Payment', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1199', '1', 'eng', 'modules', 'order.discount', 'Discount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1200', '1', 'eng', 'modules', 'order.addDiscount', 'Add Discount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1201', '1', 'eng', 'modules', 'order.discountType', 'Discount Type', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1202', '1', 'eng', 'modules', 'order.fixed', 'Fixed', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1203', '1', 'eng', 'modules', 'order.percent', 'Percent', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1204', '1', 'eng', 'modules', 'order.discountValue', 'Discount Value', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1205', '1', 'eng', 'modules', 'order.enterDiscountValue', 'Enter Discount Value', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1206', '1', 'eng', 'modules', 'order.calculatedDiscount', 'Calculated Discount', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1207', '1', 'eng', 'modules', 'order.noOrderType', 'Orders Disabled', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1208', '1', 'eng', 'modules', 'order.enableOrderType', 'You need to enable orders in settings to start taking orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1209', '1', 'eng', 'modules', 'order.enableOrderTypeButton', 'Enable Orders', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1210', '1', 'eng', 'modules', 'order.deleteOrder', 'Delete Order', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1211', '1', 'eng', 'modules', 'order.deleteOrderMessage', 'Are you sure you want to delete the order?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1212', '1', 'eng', 'modules', 'order.deleteOrderItem', 'Delete Order Item', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1213', '1', 'eng', 'modules', 'order.deleteOrderItemMessage', 'Are you sure you want to delete this item from the order?', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1214', '1', 'eng', 'modules', 'order.deliveryExecutive', 'Delivery Executive', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1215', '1', 'eng', 'modules', 'order.selectOrderTypes', 'Select Order Types', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1216', '1', 'eng', 'modules', 'order.extraCharges', 'Charges', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1217', '1', 'eng', 'modules', 'order.orderItems', 'Order Items', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1218', '1', 'eng', 'modules', 'order.priceDetails', 'Price Details', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1219', '1', 'eng', 'modules', 'order.paymentInformation', 'Payment Information', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1220', '1', 'eng', 'modules', 'order.paymentPending', 'Payment Pending', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1221', '1', 'eng', 'modules', 'order.itemPaymentStatus', 'Item Payment Status', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1222', '1', 'eng', 'modules', 'order.addTip', 'Add Tip', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1223', '1', 'eng', 'modules', 'order.tipAdded', 'Tip Added', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1224', '1', 'eng', 'modules', 'order.tip', 'Tip', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1225', '1', 'eng', 'modules', 'order.totalExcludingTip', '(Excluding Tip)', '2025-11-27 01:06:21', '2025-11-27 01:06:21'),
('1226', '1', 'eng', 'modules', 'order.tipAmount', 'Tip Amount', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1227', '1', 'eng', 'modules', 'order.tipNote', 'Tip Note', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1228', '1', 'eng', 'modules', 'order.currentTotal', 'Current Total', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1229', '1', 'eng', 'modules', 'order.newTotal', 'New Total', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1230', '1', 'eng', 'modules', 'order.suggestedTip', 'Suggested Tip', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1231', '1', 'eng', 'modules', 'order.customAmount', 'Custom Amount', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1232', '1', 'eng', 'modules', 'order.continueOrder', 'Continue Ordering', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1233', '1', 'eng', 'modules', 'order.orderStatus', 'Set Order Status', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1234', '1', 'eng', 'modules', 'order.infoready', 'Food is Ready', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1235', '1', 'eng', 'modules', 'order.infodefault', 'Unknown Status', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1236', '1', 'eng', 'modules', 'order.selectStatus', 'Select Status', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1237', '1', 'eng', 'modules', 'order.Order Placed', 'Order Placed', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1238', '1', 'eng', 'modules', 'order.Order Confirmed', 'Order Confirmed', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1239', '1', 'eng', 'modules', 'order.Order Preparing', 'Order Preparing', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1240', '1', 'eng', 'modules', 'order.Order is Ready for Pickup', 'Order is Ready for Pickup', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1241', '1', 'eng', 'modules', 'order.Order is Out for Delivery', 'Order is Out for Delivery', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1242', '1', 'eng', 'modules', 'order.Food is Ready', 'Food is Ready', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1243', '1', 'eng', 'modules', 'order.Order Served', 'Order Served', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1244', '1', 'eng', 'modules', 'order.Delivered', 'Delivered', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1245', '1', 'eng', 'modules', 'order.moveTo', 'Move to', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1246', '1', 'eng', 'modules', 'order.info_placed', 'Order Placed', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1247', '1', 'eng', 'modules', 'order.info_confirmed', 'Order Confirmed', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1248', '1', 'eng', 'modules', 'order.info_preparing', 'Order Preparing', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1249', '1', 'eng', 'modules', 'order.info_ready_for_pickup', 'Order is Ready for Pickup', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1250', '1', 'eng', 'modules', 'order.info_out_for_delivery', 'Order is Out for Delivery', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1251', '1', 'eng', 'modules', 'order.info_served', 'Order Served', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1252', '1', 'eng', 'modules', 'order.info_delivered', 'Delivered', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1253', '1', 'eng', 'modules', 'order.info_cancelled', 'Order Cancelled', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1254', '1', 'eng', 'modules', 'order.info_food_ready', 'Food is Ready', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1255', '1', 'eng', 'modules', 'order.orderCancelledMessage', 'This Order is cancelled and cannot be modified', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1256', '1', 'eng', 'modules', 'order.others', 'Others', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1257', '1', 'eng', 'modules', 'order.pending_verification', 'Payment Verification', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1258', '1', 'eng', 'modules', 'order.pendingPaymentVerification', 'Payment Verification Pending', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1259', '1', 'eng', 'modules', 'order.confirmPayment', 'Confirm Payment', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1260', '1', 'eng', 'modules', 'order.reportUnpaid', 'Report Unpaid', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1261', '1', 'eng', 'modules', 'order.viewOnMap', 'View on Map', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1262', '1', 'eng', 'modules', 'order.estimatedDeliveryTime', 'Estimated Delivery Time', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1263', '1', 'eng', 'modules', 'order.deliveryFee', 'Delivery Fee', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1264', '1', 'eng', 'modules', 'order.kotTicket', 'KOT Ticket', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1265', '1', 'eng', 'modules', 'order.kitchenOrderTicket', 'Kitchen Order Ticket', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1266', '1', 'eng', 'modules', 'order.specialInstructions', 'Special Instructions', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1267', '1', 'eng', 'modules', 'order.order', 'Order', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1268', '1', 'eng', 'modules', 'order.paypal', 'PayPal', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1269', '1', 'eng', 'modules', 'order.updateCustomerDetails', 'Update Customer Details', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1270', '1', 'eng', 'modules', 'order.ready', 'Food is Ready', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1271', '1', 'eng', 'modules', 'order.undo', 'Undo', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1272', '1', 'eng', 'modules', 'order.itemReady', 'Item Ready', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1273', '1', 'eng', 'modules', 'order.itemCooking', 'Item Cooking', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1274', '1', 'eng', 'modules', 'order.payfast', 'PayFast', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1275', '1', 'eng', 'modules', 'order.all', 'All', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1276', '1', 'eng', 'modules', 'order.note', 'Note', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1277', '1', 'eng', 'modules', 'order.paymentDetails', 'Payment Details', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1278', '1', 'eng', 'modules', 'order.paystack', 'Paystack', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1279', '1', 'eng', 'modules', 'order.kotBillAndPayment', 'KOT, Bill & Payment', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1280', '1', 'eng', 'modules', 'order.cancelled', 'Cancelled', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1281', '1', 'eng', 'modules', 'order.prefixSettings', 'Prefix Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1282', '1', 'eng', 'modules', 'order.orderSettingsHelp', 'Configure order settings to manage how orders are processed.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1283', '1', 'eng', 'modules', 'order.totalTax', 'Total Tax', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1284', '1', 'eng', 'modules', 'order.itemTax', 'Item Tax', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1285', '1', 'eng', 'modules', 'order.itemTaxBreakdown', 'Item Tax Breakdown', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1286', '1', 'eng', 'modules', 'order.toggleTaxDetails', 'Toggle Tax Details', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1287', '1', 'eng', 'modules', 'order.increaseQuantity', 'Increase Quantity', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1288', '1', 'eng', 'modules', 'order.decreaseQuantity', 'Decrease Quantity', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1289', '1', 'eng', 'modules', 'order.thankYouMessage', 'Thank you for your order!', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1290', '1', 'eng', 'modules', 'order.pleaseProceedToPayment', 'Please proceed to payment.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1291', '1', 'eng', 'modules', 'order.amountDue', 'Amount Due', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1292', '1', 'eng', 'modules', 'order.pleaseReviewOrder', 'Please review your order and proceed to payment.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1293', '1', 'eng', 'modules', 'order.pickUpDateTime', 'Pickup Date & Time', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1294', '1', 'eng', 'modules', 'order.pickupDate', 'Pickup Date:', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1295', '1', 'eng', 'modules', 'order.orderDate', 'Order Date:', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1296', '1', 'eng', 'modules', 'order.selectPickupDateTime', 'Select Pickup Date - Time', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1297', '1', 'eng', 'modules', 'order.defineYourOwnPrefix', 'Define your own prefix.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1298', '1', 'eng', 'modules', 'order.useTheCurrentDate', 'Use the current date.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1299', '1', 'eng', 'modules', 'order.combineBranchIdWithDate', 'Combine branch ID with date.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1300', '1', 'eng', 'modules', 'order.thisIsALivePreview', 'This is a live preview of how your next order ID will be generated.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1301', '1', 'eng', 'modules', 'order.branchPrefix', 'Branch Prefix', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1302', '1', 'eng', 'modules', 'order.branchPrefixHelp', 'Prefix example: ODR, BR01, Taco Bell (TB). Use a short code to identify your orders.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1303', '1', 'eng', 'modules', 'order.customPrefixFeatureDisabled', 'Custom prefix off. Using default (e.g. #23).', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1304', '1', 'eng', 'modules', 'order.enableOrderPrefix', 'Enable Order Prefix Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1305', '1', 'eng', 'modules', 'order.enableOrderPrefixDescription', 'Enable this to use custom order number prefixes as per your settings. If disabled, the system will use default order numbering without any custom prefix.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1306', '1', 'eng', 'modules', 'order.bank_transfer', 'Bank Transfer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1307', '1', 'eng', 'modules', 'order.reservationConfirmation', 'Reservation Confirmation', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1308', '1', 'eng', 'modules', 'order.tableHasReservation', 'This table has an active reservation', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1309', '1', 'eng', 'modules', 'order.reservationFor', 'Reservation for', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1310', '1', 'eng', 'modules', 'order.reservationTime', 'Reservation time', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1311', '1', 'eng', 'modules', 'order.isThisSameCustomer', 'Is this the same customer who made the reservation?', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1312', '1', 'eng', 'modules', 'order.sameCustomer', 'Same Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1313', '1', 'eng', 'modules', 'order.differentCustomer', 'Different Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1314', '1', 'eng', 'modules', 'order.grandTotal', 'Grand Total', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1315', '1', 'eng', 'modules', 'order.splitTotal', 'Split Total', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1316', '1', 'eng', 'modules', 'order.split', 'Split', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1317', '1', 'eng', 'modules', 'order.remainingAmount', 'Remaining Amount', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1318', '1', 'eng', 'modules', 'order.amountPerSplit', 'Amount per split', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1319', '1', 'eng', 'modules', 'order.menuItemImageSettings', 'Menu Item Image Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1320', '1', 'eng', 'modules', 'order.hideMenuItemImageOnPos', 'Hide Menu Item Image on POS', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1321', '1', 'eng', 'modules', 'order.hideMenuItemImageOnCustomerSite', 'Hide Menu Item Image on Customer Site', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1322', '1', 'eng', 'modules', 'order.hideMenuItemImageOnPosDescription', 'Hide the menu item image on the POS.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1323', '1', 'eng', 'modules', 'order.hideMenuItemImageOnCustomerSiteDescription', 'Hide the menu item image on the customer site.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1324', '1', 'eng', 'modules', 'order.cancelKotItem', 'Cancel KOT Item', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1325', '1', 'eng', 'modules', 'order.cancelKotItemMessage', 'Are you sure you want to cancel this item?', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1326', '1', 'eng', 'modules', 'order.pleaseSelectReasonForCancellation', 'Please select a reason for cancellation.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1327', '1', 'eng', 'modules', 'order.actionCannotBeUndone', 'This action cannot be undone.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1328', '1', 'eng', 'modules', 'order.itemDetails', 'Item Details', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1329', '1', 'eng', 'modules', 'order.itemName', 'Item Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1330', '1', 'eng', 'modules', 'order.kotItemCancelledSuccessfully', 'KOT item cancelled successfully.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1331', '1', 'eng', 'modules', 'order.modifiers', 'Modifiers', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1332', '1', 'eng', 'modules', 'order.basePrice', 'Base Price', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1333', '1', 'eng', 'modules', 'order.variation', 'Variation', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1334', '1', 'eng', 'modules', 'order.paddle', 'Paddle', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1335', '1', 'eng', 'modules', 'order.tokenNumberSettings', 'Token Number Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1336', '1', 'eng', 'modules', 'order.tokenNumberSettingsDescription', 'Enable token numbers for specific order types. Tokens reset daily and are unique per order type.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1337', '1', 'eng', 'modules', 'order.tokenNumber', 'Token #', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1338', '1', 'eng', 'modules', 'order.customerOrderBoard', 'Customer Order Board', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1339', '1', 'eng', 'modules', 'order.preparing', 'Preparing', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1340', '1', 'eng', 'modules', 'order.readyForPickup', 'Ready for Pickup', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1341', '1', 'eng', 'modules', 'order.noOrders', 'Waiting for orders...', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1342', '1', 'eng', 'modules', 'order.tokenNumberSettingsDescriptionOrderType', 'Enable token numbers for :orderType orders. Tokens will be displayed on order details and reset daily.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1343', '1', 'eng', 'modules', 'order.noOrderTypesFound', 'No order types found for this branch.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1344', '1', 'eng', 'modules', 'order.epay', 'Epay', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1345', '1', 'eng', 'modules', 'customer.addCustomer', 'Add Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1346', '1', 'eng', 'modules', 'customer.name', 'Customer Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1347', '1', 'eng', 'modules', 'customer.phone', 'Phone', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1348', '1', 'eng', 'modules', 'customer.email', 'Email Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1349', '1', 'eng', 'modules', 'customer.customerAddress', 'Customer Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1350', '1', 'eng', 'modules', 'customer.address', 'Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1351', '1', 'eng', 'modules', 'customer.enterName', 'Please enter your name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1352', '1', 'eng', 'modules', 'customer.enterCustomerName', 'Please enter customer name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1353', '1', 'eng', 'modules', 'customer.editCustomer', 'Edit Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1354', '1', 'eng', 'modules', 'customer.deleteCustomer', 'Delete Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1355', '1', 'eng', 'modules', 'customer.deleteWithOrder', 'Delete with their Orders', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1356', '1', 'eng', 'modules', 'customer.deleteCustomerMessage', 'Are you sure you want to delete the customer?', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1357', '1', 'eng', 'modules', 'customer.customer', 'Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1358', '1', 'eng', 'modules', 'customer.importCustomer', 'Import Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1359', '1', 'eng', 'modules', 'customer.totalAmountReceived', 'Total Amount Received', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1360', '1', 'eng', 'modules', 'customer.enterCustomerPhone', 'You can search and insert customer phone number here', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1361', '1', 'eng', 'modules', 'customer.searchOrCreate', 'Search existing customers or create a new one', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1362', '1', 'eng', 'modules', 'customer.searchCustomer', 'Search Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1363', '1', 'eng', 'modules', 'customer.searchPlaceholder', 'Search by name, phone, or email...', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1364', '1', 'eng', 'modules', 'customer.foundCustomers', 'Found :count customer(s)', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1365', '1', 'eng', 'modules', 'customer.noCustomersFound', 'No customers found', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1366', '1', 'eng', 'modules', 'customer.noCustomersMatching', 'We couldn\'t find any customers matching \":query\"', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1367', '1', 'eng', 'modules', 'customer.createNewCustomer', 'Create New Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1368', '1', 'eng', 'modules', 'customer.customerDetails', 'Customer Details', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1369', '1', 'eng', 'modules', 'customer.existingCustomer', 'Existing Customer', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1370', '1', 'eng', 'modules', 'customer.createNewInstead', 'Create New Instead', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1371', '1', 'eng', 'modules', 'customer.enterPhoneNumber', 'Enter phone number', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1372', '1', 'eng', 'modules', 'customer.enterEmailAddress', 'Enter email address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1373', '1', 'eng', 'modules', 'customer.enterDeliveryAddress', 'Enter delivery address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1374', '1', 'eng', 'modules', 'customer.walkin', 'Walkin', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1375', '1', 'eng', 'modules', 'customer.epay', 'Epay', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1376', '1', 'eng', 'modules', 'settings.noQrCode', 'No QR Code', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1377', '1', 'eng', 'modules', 'settings.appSettings', 'App Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1378', '1', 'eng', 'modules', 'settings.restaurantInformation', 'Restaurant Information', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1379', '1', 'eng', 'modules', 'settings.restaurantName', 'Restaurant Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1380', '1', 'eng', 'modules', 'settings.restaurantPhoneNumber', 'Restaurant Phone Number', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1381', '1', 'eng', 'modules', 'settings.restaurantEmailAddress', 'Restaurant Email Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1382', '1', 'eng', 'modules', 'settings.restaurantAddress', 'Restaurant Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1383', '1', 'eng', 'modules', 'settings.generalHelp', 'Enter the general information about your restaurant.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1384', '1', 'eng', 'modules', 'settings.countryTimezone', 'Restaurant\'s Country, Timezone & Currency', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1385', '1', 'eng', 'modules', 'settings.restaurantCountry', 'Country', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1386', '1', 'eng', 'modules', 'settings.restaurantTimezone', 'Time Zone', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1387', '1', 'eng', 'modules', 'settings.timezone', 'Time Zone', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1388', '1', 'eng', 'modules', 'settings.selectTimezone', 'Select Timezone', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1389', '1', 'eng', 'modules', 'settings.showTax', 'Show Tax Id on Orders', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1390', '1', 'eng', 'modules', 'settings.addMore', 'Add More', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1391', '1', 'eng', 'modules', 'settings.addTax', 'Add Tax', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1392', '1', 'eng', 'modules', 'settings.restaurantCurrency', 'Currency', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1393', '1', 'eng', 'modules', 'settings.predefinedAmounts', 'Preset Amounts', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1394', '1', 'eng', 'modules', 'settings.editAmounts', 'Edit Amounts', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1395', '1', 'eng', 'modules', 'settings.editPredefinedAmounts', 'Edit Preset Amounts', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1396', '1', 'eng', 'modules', 'settings.enterAmount', 'Enter Amount', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1397', '1', 'eng', 'modules', 'settings.addAmount', 'Add Amount', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1398', '1', 'eng', 'modules', 'settings.themeColor', 'Theme Color', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1399', '1', 'eng', 'modules', 'settings.themeSettings', 'Theme Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1400', '1', 'eng', 'modules', 'settings.restaurantLogo', 'Show Restaurant Logo', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1401', '1', 'eng', 'modules', 'settings.uploadLogo', 'Upload Logo', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1402', '1', 'eng', 'modules', 'settings.removeLogo', 'Remove Logo', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1403', '1', 'eng', 'modules', 'settings.paymentgatewaySettings', 'Payment Gateways', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1404', '1', 'eng', 'modules', 'settings.paymentHelp', 'Enter payment gateway credentials to receive order payments.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1405', '1', 'eng', 'modules', 'settings.paymentHelpSuperadmin', 'Enter payment gateway credentials to receive subscription payments.', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1406', '1', 'eng', 'modules', 'settings.enableRazorpay', 'Enable Razorpay', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1407', '1', 'eng', 'modules', 'settings.enableStripe', 'Enable Stripe', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1408', '1', 'eng', 'modules', 'settings.enableFlutterwave', 'Enable Flutterwave', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1409', '1', 'eng', 'modules', 'settings.enablePaypal', 'Enable Paypal', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1410', '1', 'eng', 'modules', 'settings.enablePaystack', 'Enable Paystack', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1411', '1', 'eng', 'modules', 'settings.enableXendit', 'Enable Xendit', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1412', '1', 'eng', 'modules', 'settings.enableOfflinePayment', 'Pay Offline', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1413', '1', 'eng', 'modules', 'settings.enableQrPayment', 'Pay Via Qr Code', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1414', '1', 'eng', 'modules', 'settings.restaurantSettings', 'Restaurant Information', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1415', '1', 'eng', 'modules', 'settings.taxSettings', 'Taxes', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1416', '1', 'eng', 'modules', 'settings.currencySettings', 'Currencies', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1417', '1', 'eng', 'modules', 'settings.offline_payment_status', 'Enable Offline Payment', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1418', '1', 'eng', 'modules', 'settings.roleSettings', 'Staff Roles', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1419', '1', 'eng', 'modules', 'settings.reservationSettings', 'Reservation Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1420', '1', 'eng', 'modules', 'settings.languageSettings', 'Language Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1421', '1', 'eng', 'modules', 'settings.currencySymbol', 'Currency Symbol', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1422', '1', 'eng', 'modules', 'settings.currencyCode', 'Currency Code', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1423', '1', 'eng', 'modules', 'settings.editCurrency', 'Edit Currency', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1424', '1', 'eng', 'modules', 'settings.addCurrency', 'Add Currency', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1425', '1', 'eng', 'modules', 'settings.deleteCurrency', 'Delete Currency', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1426', '1', 'eng', 'modules', 'settings.deleteCurrencyMessage', 'Are you sure you want to delete the Currency?', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1427', '1', 'eng', 'modules', 'settings.deleteTaxMessage', 'Delete tax permanently', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1428', '1', 'eng', 'modules', 'settings.taxName', 'Tax Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1429', '1', 'eng', 'modules', 'settings.taxPercent', 'Tax Percent', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1430', '1', 'eng', 'modules', 'settings.taxId', 'Tax ID', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1431', '1', 'eng', 'modules', 'settings.deleteTax', 'Are you Sure, you want to delete this Tax?', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1432', '1', 'eng', 'modules', 'settings.editTax', 'Edit Tax', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1433', '1', 'eng', 'modules', 'settings.emailSettings', 'Email Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1434', '1', 'eng', 'modules', 'settings.mailFromName', 'Mail From Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1435', '1', 'eng', 'modules', 'settings.mailFromEmail', 'Mail From Email', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1436', '1', 'eng', 'modules', 'settings.enableQueue', 'Enable Email Queue', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1437', '1', 'eng', 'modules', 'settings.mailDriver', 'Mail Driver', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1438', '1', 'eng', 'modules', 'settings.smtpHost', 'SMTP Host', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1439', '1', 'eng', 'modules', 'settings.smtpPort', 'SMTP Port', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1440', '1', 'eng', 'modules', 'settings.smtpEncryption', 'SMTP Mail Encryption', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1441', '1', 'eng', 'modules', 'settings.mailUsername', 'Mail Username', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1442', '1', 'eng', 'modules', 'settings.mailPassword', 'Mail Password', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1443', '1', 'eng', 'modules', 'settings.notificationSettings', 'Notification Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1444', '1', 'eng', 'modules', 'settings.branchSettings', 'Branch Settings', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1445', '1', 'eng', 'modules', 'settings.addBranch', 'Add Branch', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1446', '1', 'eng', 'modules', 'settings.editBranch', 'Edit Branch', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1447', '1', 'eng', 'modules', 'settings.branchName', 'Branch Name', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1448', '1', 'eng', 'modules', 'settings.branchAddress', 'Branch Address', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1449', '1', 'eng', 'modules', 'settings.deleteBranch', 'Delete Branch', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1450', '1', 'eng', 'modules', 'settings.branches', 'Branches', '2025-11-27 01:06:22', '2025-11-27 01:06:22'),
('1451', '1', 'eng', 'modules', 'settings.deleteBranchMessage', 'Are you sure you want to delete the Branch? All the orders, staff members and payments related to this branch will be deleted.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1452', '1', 'eng', 'modules', 'settings.upgradeLicense', 'Upgrade Plan', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1453', '1', 'eng', 'modules', 'settings.licenseType', 'License Type', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1454', '1', 'eng', 'modules', 'settings.upgradeLicenseInfo', 'Simple, transparent pricing with everything you need to run your restaurant smoothly.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1455', '1', 'eng', 'modules', 'settings.pricing', 'Pricing', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1456', '1', 'eng', 'modules', 'settings.payNow', 'Pay Now', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1457', '1', 'eng', 'modules', 'settings.paymentSource', 'Payment Source', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1458', '1', 'eng', 'modules', 'settings.appName', 'App Name', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1459', '1', 'eng', 'modules', 'settings.paymentUpgradeHeading', 'Upgrade to Accept Payments Seamlessly', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1460', '1', 'eng', 'modules', 'settings.paymentUpgradeInfo', 'Take your restaurant\'s efficiency to the next level by integrating Payment Gateways. Upgrade now to offer your customers secure, fast, and convenient payment options like Stripe and Razorpay', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1461', '1', 'eng', 'modules', 'settings.themeUpgradeHeading', 'Upgrade for a Personalized Brand Experience', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1462', '1', 'eng', 'modules', 'settings.themeUpgradeInfo', 'Stand out with your unique brand identity! Upgrade now to customize your Theme Colors and add your Business Logo, creating a seamless experience that reflects your restaurant\'s personality.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1463', '1', 'eng', 'modules', 'settings.manageTranslations', 'Manage Translations', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1464', '1', 'eng', 'modules', 'settings.customerLoginRequired', 'Customer need to login to place order?', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1465', '1', 'eng', 'modules', 'settings.customerName', 'Show Customer Name', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1466', '1', 'eng', 'modules', 'settings.customerAddress', 'Show Customer Address', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1467', '1', 'eng', 'modules', 'settings.customerPhone', 'Show Customer Phone', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1468', '1', 'eng', 'modules', 'settings.tableNumber', 'Table no.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1469', '1', 'eng', 'modules', 'settings.paymentQrCode', 'Show QR code    ', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1470', '1', 'eng', 'modules', 'settings.waiter', 'Show Waiter Name', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1471', '1', 'eng', 'modules', 'settings.totalGuest', 'Show Total guest', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1472', '1', 'eng', 'modules', 'settings.restaurantTax', 'Show Restaurant Tax', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1473', '1', 'eng', 'modules', 'settings.noTaxFound', 'No Tax Found', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1474', '1', 'eng', 'modules', 'settings.selectEnvironment', 'Select Environment', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1475', '1', 'eng', 'modules', 'settings.enablePushNotification', 'Enable Push Notifications', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1476', '1', 'eng', 'modules', 'settings.pushNotificationSettings', 'Push Notification Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1477', '1', 'eng', 'modules', 'settings.aboutUsSettings', 'About Us', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1478', '1', 'eng', 'modules', 'settings.customerSiteSettings', 'Customer Site', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1479', '1', 'eng', 'modules', 'settings.receiptSetting', 'Receipt Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1480', '1', 'eng', 'modules', 'settings.allowCustomerDeliveryOrders', 'Allow Customer to place Delivery Orders', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1481', '1', 'eng', 'modules', 'settings.allowCustomerOrders', 'Allow Customer to place Orders', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1482', '1', 'eng', 'modules', 'settings.allowCustomerPickupOrders', 'Allow Customer to place Pickup Orders', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1483', '1', 'eng', 'modules', 'settings.disableLandingSite', 'Disable Landing Site', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1484', '1', 'eng', 'modules', 'settings.disableLandingSiteHelp', 'Disable the landing site or set your custom landing site.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1485', '1', 'eng', 'modules', 'settings.disableLandingSiteHelpDescription', 'When enabled, this will disable the front website and redirect all visitors directly to the login page.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1486', '1', 'eng', 'modules', 'settings.landingSiteType', 'Landing Site Type', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1487', '1', 'eng', 'modules', 'settings.landingSiteUrl', 'Landing Site URL', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1488', '1', 'eng', 'modules', 'settings.theme', 'Theme', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1489', '1', 'eng', 'modules', 'settings.custom', 'Custom', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1490', '1', 'eng', 'modules', 'settings.billing', 'Billing', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1491', '1', 'eng', 'modules', 'settings.package', 'Package', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1492', '1', 'eng', 'modules', 'settings.isWaiterRequestEnabled', 'Enable Waiter Request', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1493', '1', 'eng', 'modules', 'settings.dineInOnlinePaymentRequired', 'Dine-in: Online payment required', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1494', '1', 'eng', 'modules', 'settings.deliveryOnlinePaymentRequired', 'Delivery: Online payment required', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1495', '1', 'eng', 'modules', 'settings.pickupOnlinePaymentRequired', 'Pickup: Online payment required', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1496', '1', 'eng', 'modules', 'settings.enablePaymentGateway', 'Please enable at least one payment gateway (e.g., Razorpay, Stripe, Flutterwave, PayPal, Paystack, Payfast, Xendit) to configure online payment options.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1497', '1', 'eng', 'modules', 'settings.generalSettingsUseInfo', 'Enabling this allows only online payments via the active gateway. If disabled, both online and cash payments are accepted with an active gateway.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1498', '1', 'eng', 'modules', 'settings.defaultReservationStatus', 'Default Table Reservation Status', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1499', '1', 'eng', 'modules', 'settings.reservationStatusConfirmed', 'Confirmed', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1500', '1', 'eng', 'modules', 'settings.reservationStatusCheckedIn', 'Checked In', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1501', '1', 'eng', 'modules', 'settings.reservationStatusCancelled', 'Cancelled', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1502', '1', 'eng', 'modules', 'settings.reservationStatusPending', 'Pending', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1503', '1', 'eng', 'modules', 'settings.reservationStatusNoShow', 'No Show', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1504', '1', 'eng', 'modules', 'settings.receipt', 'receipt Setting', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1505', '1', 'eng', 'modules', 'settings.facebook_link', 'Facebook Link', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1506', '1', 'eng', 'modules', 'settings.instagram_link', 'Instagram Link', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1507', '1', 'eng', 'modules', 'settings.twitter_link', 'Twitter Link', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1508', '1', 'eng', 'modules', 'settings.yelp_link', 'Yelp Link', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1509', '1', 'eng', 'modules', 'settings.tableRequiredDineIn', 'Table Required for Dine-In', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1510', '1', 'eng', 'modules', 'settings.allowDineIn', 'Allow Dine-In', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1511', '1', 'eng', 'modules', 'settings.defaultLanguage', 'Default Language', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1512', '1', 'eng', 'modules', 'settings.defaultCurrency', 'Default Currency', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1513', '1', 'eng', 'modules', 'settings.storageSettings', 'Storage Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1514', '1', 'eng', 'modules', 'settings.selectStorage', 'Select Storage', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1515', '1', 'eng', 'modules', 'settings.localStorageNote', 'Local storage is the default storage option. It stores files on the server\'s local disk.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1516', '1', 'eng', 'modules', 'settings.storageSuggestion', '<b>Recommendation:</b> Consider using <a href=\"https://digitalocean.pxf.io/froiden\" class=\"underline\" target=\"_blank\">DigitalOcean Spaces</a>, <a href=\"https://aws.amazon.com/s3\" class=\"underline\" target=\"_blank\">AWS S3</a>, <a href=\"https://wasabi.com\" class=\"underline\" target=\"_blank\">Wasabi</a> or <a href=\"https://min.io/\" class=\"underline\" target=\"_blank\">MinIO</a> Storage for an additional layer of security', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1517', '1', 'eng', 'modules', 'settings.digitaloceanAccessKey', 'DigitalOcean Access Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1518', '1', 'eng', 'modules', 'settings.digitaloceanSecretKey', 'DigitalOcean Secret Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1519', '1', 'eng', 'modules', 'settings.digitaloceanBucket', 'DigitalOcean Bucket', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1520', '1', 'eng', 'modules', 'settings.digitaloceanRegion', 'DigitalOcean Region', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1521', '1', 'eng', 'modules', 'settings.minioAccessKey', 'Minio Access Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1522', '1', 'eng', 'modules', 'settings.minioSecretKey', 'Minio Secret Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1523', '1', 'eng', 'modules', 'settings.minioBucket', 'Minio Bucket', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1524', '1', 'eng', 'modules', 'settings.minioRegion', 'Minio Region', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1525', '1', 'eng', 'modules', 'settings.minioEndpoint', 'Minio Endpoint', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1526', '1', 'eng', 'modules', 'settings.wasabiAccessKey', 'Wasabi Access Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1527', '1', 'eng', 'modules', 'settings.wasabiSecretKey', 'Wasabi Secret Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1528', '1', 'eng', 'modules', 'settings.wasabiBucket', 'Wasabi Bucket', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1529', '1', 'eng', 'modules', 'settings.wasabiRegion', 'Wasabi Region', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1530', '1', 'eng', 'modules', 'settings.awsAccessKey', 'AWS Key ID', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1531', '1', 'eng', 'modules', 'settings.awsSecretKey', 'AWS Access Key', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1532', '1', 'eng', 'modules', 'settings.awsBucket', 'AWS Bucket', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1533', '1', 'eng', 'modules', 'settings.awsRegion', 'AWS Region', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1534', '1', 'eng', 'modules', 'settings.testStorage', 'Test Storage', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1535', '1', 'eng', 'modules', 'settings.testStorageFile', 'Upload file to test if it gets uploaded to bucket', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1536', '1', 'eng', 'modules', 'settings.moveFilesToCloud', 'Move Files to Cloud', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1537', '1', 'eng', 'modules', 'settings.local', 'Local', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1538', '1', 'eng', 'modules', 'settings.digitalocean', 'DigitalOcean', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1539', '1', 'eng', 'modules', 'settings.aws_s3', 'AWS S3', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1540', '1', 'eng', 'modules', 'settings.wasabi', 'Wasabi', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1541', '1', 'eng', 'modules', 'settings.minio', 'MinIO', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1542', '1', 'eng', 'modules', 'settings.currencyFormat', 'Currency Format', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1543', '1', 'eng', 'modules', 'settings.currencyPosition', 'Currency Position', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1544', '1', 'eng', 'modules', 'settings.thousandSeparator', 'Thousand Separator', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1545', '1', 'eng', 'modules', 'settings.decimalSeparator', 'Decimal Separator', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1546', '1', 'eng', 'modules', 'settings.numberOfdecimals', 'Number of Decimals', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1547', '1', 'eng', 'modules', 'settings.left', 'Left', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1548', '1', 'eng', 'modules', 'settings.right', 'Right', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1549', '1', 'eng', 'modules', 'settings.leftWithSpace', 'Left with Space', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1550', '1', 'eng', 'modules', 'settings.rightWithSpace', 'Right with Space', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1551', '1', 'eng', 'modules', 'settings.showLogoText', 'Show Restaurant Name with Logo', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1552', '1', 'eng', 'modules', 'settings.socialMediaLinks', 'Social Media Links', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1553', '1', 'eng', 'modules', 'settings.facebook', 'Facebook', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1554', '1', 'eng', 'modules', 'settings.instagram', 'Instagram', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1555', '1', 'eng', 'modules', 'settings.twitter', 'Twitter', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1556', '1', 'eng', 'modules', 'settings.facebookPlaceHolder', 'Enter your Facebook URL', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1557', '1', 'eng', 'modules', 'settings.instagramPlaceHolder', 'Enter your Instagram URL', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1558', '1', 'eng', 'modules', 'settings.twitterPlaceHolder', 'Enter your Twitter URL', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1559', '1', 'eng', 'modules', 'settings.tableRequiredDineInDescription', 'Enable this to require customers to select a table for dine-in orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1560', '1', 'eng', 'modules', 'settings.defaultReservationStatusDescription', 'Select the default status for new reservations.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1561', '1', 'eng', 'modules', 'settings.allowCustomerPickupOrdersDescription', 'Enable this to allow customers to place pickup orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1562', '1', 'eng', 'modules', 'settings.allowCustomerDeliveryOrdersDescription', 'Enable this to allow customers to place delivery orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1563', '1', 'eng', 'modules', 'settings.allowCustomerDineInOrdersDescription', 'Enable this to allow customers to place dine-in orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1564', '1', 'eng', 'modules', 'settings.allowCustomerOrdersDescription', 'Enable this to allow customers to place orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1565', '1', 'eng', 'modules', 'settings.allowQrOrderWithinRadius', 'Allow QR order within radius', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1566', '1', 'eng', 'modules', 'settings.allowQrOrderWithinRadiusDescription', 'Only allow QR orders if the customer is within the specified metres radius of the branch.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1567', '1', 'eng', 'modules', 'settings.qrOrderRadiusMeters', 'Radius (in metres)', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1568', '1', 'eng', 'modules', 'settings.qrOrderRadiusMetersDescription', 'Enter radius in metres within which QR orders are allowed.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1569', '1', 'eng', 'modules', 'settings.allowDineInDescription', 'Enable this to allow dine-in orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1570', '1', 'eng', 'modules', 'settings.customerLoginRequiredDescription', 'Enable this to require customers to login before placing orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1571', '1', 'eng', 'modules', 'settings.isWaiterRequestEnabledDescription', 'Enable this to allow customers to call waiters for service.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1572', '1', 'eng', 'modules', 'settings.orderSettings', 'Order Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1573', '1', 'eng', 'modules', 'settings.orderSettingsDescription', 'Configure settings related to customer orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1574', '1', 'eng', 'modules', 'settings.dineInSettings', 'Dine-in Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1575', '1', 'eng', 'modules', 'settings.customerSiteSettingsDescription', 'Configure settings related to the customer site.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1576', '1', 'eng', 'modules', 'settings.qrCodeImage', 'Upload QR Code Image', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1577', '1', 'eng', 'modules', 'settings.qrCodeRequirements', 'Upload a QR code image for payment. The image should be a clear, high-quality image of the QR code.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1578', '1', 'eng', 'modules', 'settings.qrPaymentDescription', 'Enable this to allow customers to pay via QR code.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1579', '1', 'eng', 'modules', 'settings.uploadQrCode', 'Upload QR Code', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1580', '1', 'eng', 'modules', 'settings.paymentQrCodeUploadHelp', 'Supported formats: JPEG, PNG, JPG, GIF, SVG, WEBP. Maximum size: 2MB. Recommended size: 200 × 200 pixels.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1581', '1', 'eng', 'modules', 'settings.logoDescription', 'Upload a logo for your restaurant.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1582', '1', 'eng', 'modules', 'settings.logoUploadHelp', 'Supported formats: JPEG, PNG, JPG, GIF, SVG, WEBP. Maximum size: 1MB. Recommended size: 97 × 96 pixels.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1583', '1', 'eng', 'modules', 'settings.imageDimensionsTooSmall', 'Image dimensions are too small. Recommended minimum: :width × :height pixels. Current size: :currentWidth × :currentHeight pixels.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1584', '1', 'eng', 'modules', 'settings.showLogoTextDescription', 'Enable this to show the restaurant name with the logo.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1585', '1', 'eng', 'modules', 'settings.customerInformation', 'Customer Information', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1586', '1', 'eng', 'modules', 'settings.receiptPreview', 'Receipt Preview', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1587', '1', 'eng', 'modules', 'settings.previewReceipt', 'Preview Receipt', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1588', '1', 'eng', 'modules', 'settings.orderDetails', 'Order Details', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1589', '1', 'eng', 'modules', 'settings.cronJobSetting', 'Cron Job Setting', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1590', '1', 'eng', 'modules', 'settings.customModules', 'Custom Modules', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1591', '1', 'eng', 'modules', 'settings.installCustomModule', 'Install Custom Module', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1592', '1', 'eng', 'modules', 'settings.enablePayViaCash', 'Pay Via Cash', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1593', '1', 'eng', 'modules', 'settings.seo', 'SEO', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1594', '1', 'eng', 'modules', 'settings.metaKeyword', 'Meta Keyword', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1595', '1', 'eng', 'modules', 'settings.metaDescription', 'Meta Description', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1596', '1', 'eng', 'modules', 'settings.offlinePaymentDescription', 'Enable this to allow customers to pay via offline payment methods.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1597', '1', 'eng', 'modules', 'settings.offlinePaymentDetailsDescription', 'Enable this to allow customers to pay via offline payment methods.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1598', '1', 'eng', 'modules', 'settings.offlinePaymentDetails', 'Offline Payment Details', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1599', '1', 'eng', 'modules', 'settings.cashPaymentDescription', 'Enable this to allow customers to pay via cash payment methods.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1600', '1', 'eng', 'modules', 'settings.restaurantRequiresApproval', 'Restaurant Requires Approval', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1601', '1', 'eng', 'modules', 'settings.restaurantRequiresApprovalInfo', 'Enable this to require admin approval for new restaurant registrations.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1602', '1', 'eng', 'modules', 'settings.themeColorDescription', 'Select the theme color for your restaurant.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1603', '1', 'eng', 'modules', 'settings.upload_fav_icon_android_chrome_192', 'Upload Favicon for Android Chrome (192x192)px', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1604', '1', 'eng', 'modules', 'settings.upload_fav_icon_android_chrome_512', 'Upload Favicon for Android Chrome (512x512)px', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1605', '1', 'eng', 'modules', 'settings.upload_fav_icon_apple_touch_icon', 'Upload Favicon for Apple Touch Icon', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1606', '1', 'eng', 'modules', 'settings.upload_favicon_16', 'Upload Favicon (16x16)px', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1607', '1', 'eng', 'modules', 'settings.upload_favicon_32', 'Upload Favicon (32x32)px', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1608', '1', 'eng', 'modules', 'settings.favicon', 'Upload Favicon', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1609', '1', 'eng', 'modules', 'settings.editCharge', 'Edit Charge', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1610', '1', 'eng', 'modules', 'settings.addCharge', 'Add Charge', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1611', '1', 'eng', 'modules', 'settings.chargeName', 'Charge Name', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1612', '1', 'eng', 'modules', 'settings.chargeType', 'Type', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1613', '1', 'eng', 'modules', 'settings.percent', 'Percent', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1614', '1', 'eng', 'modules', 'settings.fixed', 'Fixed', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1615', '1', 'eng', 'modules', 'settings.rate', 'Rate', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1616', '1', 'eng', 'modules', 'settings.orderType', 'Order Type', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1617', '1', 'eng', 'modules', 'settings.deleteCharge', 'Delete Charge', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1618', '1', 'eng', 'modules', 'settings.deleteChargeMessage', 'Are you sure you want to delete the charge?', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1619', '1', 'eng', 'modules', 'settings.hideTodayOrders', 'Hide Today\'s Orders', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1620', '1', 'eng', 'modules', 'settings.hideNewReservation', 'Hide New Reservation', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1621', '1', 'eng', 'modules', 'settings.hideNewWaiterRequest', 'Hide New Waiter Request', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1622', '1', 'eng', 'modules', 'settings.hideTopNav', 'Hide Top Navigation', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1623', '1', 'eng', 'modules', 'settings.hideTodayOrdersDescription', 'Enable this to hide today\'s orders widget from top navigation.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1624', '1', 'eng', 'modules', 'settings.hideNewReservationDescription', 'Enable this to hide new reservation widget from top navigation.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1625', '1', 'eng', 'modules', 'settings.hideNewWaiterRequestDescription', 'Enable this to hide new waiter request widget from top navigation.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1626', '1', 'eng', 'modules', 'settings.charges', 'Additional Charges', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1627', '1', 'eng', 'modules', 'settings.onDesktop', 'On Desktop', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1628', '1', 'eng', 'modules', 'settings.onMobile', 'On Mobile', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1629', '1', 'eng', 'modules', 'settings.openViaQrCode', 'Only When Open via QR Code', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1630', '1', 'eng', 'modules', 'settings.callWaiterSettings', 'Call Waiter Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1631', '1', 'eng', 'modules', 'settings.onDesktopDescription', 'Enable this to allow customers to call waiters on desktop.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1632', '1', 'eng', 'modules', 'settings.onMobileDescription', 'Enable this to allow customers to call waiters on mobile.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1633', '1', 'eng', 'modules', 'settings.openViaQrCodeDescription', 'Enable this to allow customers to call waiters only when they open the app via QR code.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1634', '1', 'eng', 'modules', 'settings.favicons', 'Favicons', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1635', '1', 'eng', 'modules', 'settings.faviconsDescription', 'Upload a favicon for your site.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1636', '1', 'eng', 'modules', 'settings.generateFavicon', 'Generate Favicon', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1637', '1', 'eng', 'modules', 'settings.siteWebManifest', 'Site Web Manifest', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1638', '1', 'eng', 'modules', 'settings.paymentDetails', 'Payment Details', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1639', '1', 'eng', 'modules', 'settings.paymentQrImage', 'Payment QR Image', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1640', '1', 'eng', 'modules', 'settings.uploadPaymentQrCode', 'Upload Payment QR Code', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1641', '1', 'eng', 'modules', 'settings.showPaymetQrCode', 'Show Payment QR Code', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1642', '1', 'eng', 'modules', 'settings.payFromYourPhone', 'PAY FROM YOUR PHONE', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1643', '1', 'eng', 'modules', 'settings.scanQrCode', 'Scan the QR code to pay Your Bill ', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1644', '1', 'eng', 'modules', 'settings.isChargeEnabled', 'Apply Charge', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1645', '1', 'eng', 'modules', 'settings.isChargeEnabledDescription', 'Check to enable this charge.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1646', '1', 'eng', 'modules', 'settings.enableTipShop', 'Enable Tip Customer Site', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1647', '1', 'eng', 'modules', 'settings.enableTipShopDescription', 'Enable this to allow customers to add tips to their orders.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1648', '1', 'eng', 'modules', 'settings.enableTipPos', 'Enable Tip POS', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1649', '1', 'eng', 'modules', 'settings.enableTipPosDescription', 'Enable this to allow adding tips to their orders in POS.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1650', '1', 'eng', 'modules', 'settings.pwaSettings', 'PWA Settings', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1651', '1', 'eng', 'modules', 'settings.enbalePwaApp', 'Enable PWA App', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1652', '1', 'eng', 'modules', 'settings.enablePwadescription', 'Enable this to allow customers to install your app on their devices.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1653', '1', 'eng', 'modules', 'settings.metaTitle', 'Meta Title', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1654', '1', 'eng', 'modules', 'settings.addMoreWebPage', 'Add More Web Page', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1655', '1', 'eng', 'modules', 'settings.addMoreWebPageHelp', 'Add a Dynamic web page to your site.', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1656', '1', 'eng', 'modules', 'settings.menuName', 'Menu Name', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1657', '1', 'eng', 'modules', 'settings.menuSlug', 'Menu Slug', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1658', '1', 'eng', 'modules', 'settings.menuContent', 'Menu Content', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1659', '1', 'eng', 'modules', 'settings.showMoreWebPage', 'Show More Web Page', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1660', '1', 'eng', 'modules', 'settings.addDyanamicMenu', 'Add Dynamic Menu', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1661', '1', 'eng', 'modules', 'settings.deleteDyanamicMenu', 'Delete Dynamic Menu', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1662', '1', 'eng', 'modules', 'settings.editDynamicMenu', 'Edit Dynamic Menu', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1663', '1', 'eng', 'modules', 'settings.addDynamicMenu', 'Add Dynamic Menu', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1664', '1', 'eng', 'modules', 'settings.isActive', 'Active', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1665', '1', 'eng', 'modules', 'settings.showPaymentDetails', 'Show Payment Details', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1666', '1', 'eng', 'modules', 'settings.showPaymentStatus', 'Show Payment Status', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1667', '1', 'eng', 'modules', 'settings.autoConfirmOrders', 'Auto Confirm Order Status', '2025-11-27 01:06:23', '2025-11-27 01:06:23'),
('1668', '1', 'eng', 'modules', 'settings.autoConfirmOrdersDescription', 'Enable this to automatically confirm orders status and send to KOT.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1669', '1', 'eng', 'modules', 'settings.printerSetting', 'Printer Settings', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1670', '1', 'eng', 'modules', 'settings.printerSettingDescription', 'Configure printer settings for your restaurant.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1671', '1', 'eng', 'modules', 'settings.printType', 'Print Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1672', '1', 'eng', 'modules', 'settings.printTypeDescription', 'Select the print type for your printer.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1673', '1', 'eng', 'modules', 'settings.image', 'Image', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1674', '1', 'eng', 'modules', 'settings.pdf', 'PDF', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1675', '1', 'eng', 'modules', 'settings.addPrinter', 'Add Printer', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1676', '1', 'eng', 'modules', 'settings.editPrinter', 'Edit Printer', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1677', '1', 'eng', 'modules', 'settings.deletePrinter', 'Delete Printer', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1678', '1', 'eng', 'modules', 'settings.printerName', 'Printer Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1679', '1', 'eng', 'modules', 'settings.printerType', 'Printer Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1680', '1', 'eng', 'modules', 'settings.printerStatus', 'Printer Status', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1681', '1', 'eng', 'modules', 'settings.headerPage', 'Header Page', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1682', '1', 'eng', 'modules', 'settings.headerTitle', 'Header Title', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1683', '1', 'eng', 'modules', 'settings.headerDescription', 'Header Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1684', '1', 'eng', 'modules', 'settings.headerImage', 'Header Image', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1685', '1', 'eng', 'modules', 'settings.preview', 'Preview', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1686', '1', 'eng', 'modules', 'settings.featureWithImage', 'Feature With Image', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1687', '1', 'eng', 'modules', 'settings.addFeature', 'Add Feature', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1688', '1', 'eng', 'modules', 'settings.editFeature', 'Edit Feature', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1689', '1', 'eng', 'modules', 'settings.deleteFeature', 'Delete Feature', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1690', '1', 'eng', 'modules', 'settings.featureTitle', 'Feature Title', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1691', '1', 'eng', 'modules', 'settings.featureDescription', 'Feature Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1692', '1', 'eng', 'modules', 'settings.featureImage', 'Feature Image', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1693', '1', 'eng', 'modules', 'settings.lanuage', 'Language', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1694', '1', 'eng', 'modules', 'settings.selectLanguage', 'Select Language', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1695', '1', 'eng', 'modules', 'settings.feature', 'Feature', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1696', '1', 'eng', 'modules', 'settings.featureIcon', 'Feature Icon', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1697', '1', 'eng', 'modules', 'settings.featureHeading', 'Feature Heading', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1698', '1', 'eng', 'modules', 'settings.addFeatureWithicon', 'Add Feature With Icon', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1699', '1', 'eng', 'modules', 'settings.editFeatureWithicon', 'Edit Feature With Icon', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1700', '1', 'eng', 'modules', 'settings.language', 'Language', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1701', '1', 'eng', 'modules', 'settings.featureWithIcon', 'Feature With Icon', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1702', '1', 'eng', 'modules', 'settings.reviewSetting', 'Review setting', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1703', '1', 'eng', 'modules', 'settings.addReview', 'Add Review', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1704', '1', 'eng', 'modules', 'settings.editReview', 'Edit Review', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1705', '1', 'eng', 'modules', 'settings.deleteReview', 'Delete Review', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1706', '1', 'eng', 'modules', 'settings.reviewerName', 'Reviewer Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1707', '1', 'eng', 'modules', 'settings.reviewerDesignation', 'Reviewer Designation', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1708', '1', 'eng', 'modules', 'settings.reviews', 'Reviews', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1709', '1', 'eng', 'modules', 'settings.noReviews', 'No Reviews', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1710', '1', 'eng', 'modules', 'settings.faqSetting', 'FAQ setting', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1711', '1', 'eng', 'modules', 'settings.addFaq', 'Add FAQ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1712', '1', 'eng', 'modules', 'settings.editFaq', 'Edit FAQ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1713', '1', 'eng', 'modules', 'settings.deleteFaq', 'Delete FAQ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1714', '1', 'eng', 'modules', 'settings.title', 'Title', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1715', '1', 'eng', 'modules', 'settings.description', 'Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1716', '1', 'eng', 'modules', 'settings.question', 'Question', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1717', '1', 'eng', 'modules', 'settings.answer', 'Answer', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1718', '1', 'eng', 'modules', 'settings.contactSetting', 'Contact setting', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1719', '1', 'eng', 'modules', 'settings.contact', 'Contact', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1720', '1', 'eng', 'modules', 'settings.contactCompany', 'Contact Company', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1721', '1', 'eng', 'modules', 'settings.contactImage', 'Contact Image', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1722', '1', 'eng', 'modules', 'settings.addContact', 'Add Contact', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1723', '1', 'eng', 'modules', 'settings.editContact', 'Edit Contact', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1724', '1', 'eng', 'modules', 'settings.deleteContact', 'Delete Contact', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1725', '1', 'eng', 'modules', 'settings.contactName', 'Contact Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1726', '1', 'eng', 'modules', 'settings.email', 'Email', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1727', '1', 'eng', 'modules', 'settings.address', 'Address', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1728', '1', 'eng', 'modules', 'settings.footerSetting', 'Footer setting', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1729', '1', 'eng', 'modules', 'settings.footerCopyrightText', 'Footer Copyright Text', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1730', '1', 'eng', 'modules', 'settings.addFeatureWithIcon', 'Add Feature With Icon', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1731', '1', 'eng', 'modules', 'settings.faq', 'FAQ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1732', '1', 'eng', 'modules', 'settings.noFaq', 'No FAQ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1733', '1', 'eng', 'modules', 'settings.priceSetting', 'Price setting', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1734', '1', 'eng', 'modules', 'settings.priceTitle', 'Price Title', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1735', '1', 'eng', 'modules', 'settings.priceDescription', 'Price Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1736', '1', 'eng', 'modules', 'settings.staticLandingPage', 'Static Landing Page', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1737', '1', 'eng', 'modules', 'settings.dynamicLandingPage', 'Dynamic Landing Page', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1738', '1', 'eng', 'modules', 'settings.flutterwaveSettings', 'Flutterwave Settings', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1739', '1', 'eng', 'modules', 'settings.flutterwaveKey', 'Flutterwave Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1740', '1', 'eng', 'modules', 'settings.flutterwaveSecret', 'Flutterwave Secret', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1741', '1', 'eng', 'modules', 'settings.flutterwaveEncryptionKey', 'Flutterwave Encryption Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1742', '1', 'eng', 'modules', 'settings.flutterwaveWebhookHash', 'Flutterwave Webhook Secret Hash', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1743', '1', 'eng', 'modules', 'settings.testFlutterwaveKey', 'Test Flutterwave Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1744', '1', 'eng', 'modules', 'settings.testFlutterwaveSecret', 'Test Flutterwave Secret', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1745', '1', 'eng', 'modules', 'settings.testFlutterwaveEncryptionKey', 'Test Flutterwave Encryption Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1746', '1', 'eng', 'modules', 'settings.testFlutterwaveWebhookHash', 'Test Flutterwave Webhook Secret Hash', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1747', '1', 'eng', 'modules', 'settings.webhookUrl', 'Webhook URL', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1748', '1', 'eng', 'modules', 'settings.copyWebhookUrl', 'Copy', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1749', '1', 'eng', 'modules', 'settings.copied', 'Copied!', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1750', '1', 'eng', 'modules', 'settings.save', 'Save', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1751', '1', 'eng', 'modules', 'settings.razorpayKey', 'Razorpay KEY', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1752', '1', 'eng', 'modules', 'settings.razorpaySecret', 'Razorpay SECRET', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1753', '1', 'eng', 'modules', 'settings.razorpayWebhookKey', 'Razorpay Webhook Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1754', '1', 'eng', 'modules', 'settings.testRazorpayKey', 'Test Razorpay KEY', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1755', '1', 'eng', 'modules', 'settings.testRazorpaySecret', 'Test Razorpay SECRET', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1756', '1', 'eng', 'modules', 'settings.testRazorpayWebhookKey', 'Test Razorpay Webhook Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1757', '1', 'eng', 'modules', 'settings.stripeKey', 'Stripe KEY', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1758', '1', 'eng', 'modules', 'settings.stripeSecret', 'Stripe SECRET', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1759', '1', 'eng', 'modules', 'settings.stripeWebhookKey', 'Stripe Webhook Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1760', '1', 'eng', 'modules', 'settings.getStripeCredentials', 'Get Stripe Credentials', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1761', '1', 'eng', 'modules', 'settings.getStripeTestCredentials', 'Get Stripe Test Credentials', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1762', '1', 'eng', 'modules', 'settings.testStripeKey', 'Test Stripe KEY', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1763', '1', 'eng', 'modules', 'settings.testStripeSecret', 'Test Stripe SECRET', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1764', '1', 'eng', 'modules', 'settings.testStripeWebhookKey', 'Test Stripe Webhook Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1765', '1', 'eng', 'modules', 'settings.flutterwavePublicKey', 'Flutterwave Public Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1766', '1', 'eng', 'modules', 'settings.flutterwaveSecretKey', 'Flutterwave Secret Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1767', '1', 'eng', 'modules', 'settings.deliverySettings', 'Delivery Settings', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1768', '1', 'eng', 'modules', 'settings.getGoogleMapApiKeyHelp', 'To get a Google Maps API key, you need to create a project in the Google Cloud Console and enable the Maps JavaScript API.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1769', '1', 'eng', 'modules', 'settings.learnMore', 'Learn more', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1770', '1', 'eng', 'modules', 'settings.enablePayPal', 'Enable PayPal', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1771', '1', 'eng', 'modules', 'settings.enablePayfast', 'Enable Payfast', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1772', '1', 'eng', 'modules', 'settings.branchPhone', 'Branch Phone ', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1773', '1', 'eng', 'modules', 'settings.sessionDriver', 'Session Driver', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1774', '1', 'eng', 'modules', 'settings.sessionDriverFile', 'File', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1775', '1', 'eng', 'modules', 'settings.sessionDriverDatabase', 'Database', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1776', '1', 'eng', 'modules', 'settings.paypalSandboxClientId', 'PayPal Sandbox Client ID', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1777', '1', 'eng', 'modules', 'settings.paypalSandboxSecret', 'PayPal Sandbox Secret', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1778', '1', 'eng', 'modules', 'settings.paypalLiveClientId', 'PayPal Live Client ID', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1779', '1', 'eng', 'modules', 'settings.paypalLiveSecret', 'PayPal Live Secret', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1780', '1', 'eng', 'modules', 'settings.xenditTestPublicKey', 'Xendit Test Public Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1781', '1', 'eng', 'modules', 'settings.xenditTestSecretKey', 'Xendit Test Secret Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1782', '1', 'eng', 'modules', 'settings.xenditLivePublicKey', 'Xendit Live Public Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1783', '1', 'eng', 'modules', 'settings.xenditLiveSecretKey', 'Xendit Live Secret Key', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1784', '1', 'eng', 'modules', 'settings.xenditTestWebhookToken', 'Xendit Test Webhook Token', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1785', '1', 'eng', 'modules', 'settings.xenditLiveWebhookToken', 'Xendit Live Webhook Token', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1786', '1', 'eng', 'modules', 'settings.kotSettings', 'KOT Settings', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1787', '1', 'eng', 'modules', 'settings.kotStatusesPending', 'Pending', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1788', '1', 'eng', 'modules', 'settings.kotStatusesCooking', 'Cooking', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1789', '1', 'eng', 'modules', 'settings.enableItemLevelStatus', 'Enable Item Level Status', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1790', '1', 'eng', 'modules', 'settings.enableItemLevelStatusDescription', 'Enable this to allow statuses to be set at the item level.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1791', '1', 'eng', 'modules', 'settings.defaultKotStatus', 'Default KOT Status', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1792', '1', 'eng', 'modules', 'settings.defaultKotStatusDescription', 'Set the default status for the KOT.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1793', '1', 'eng', 'modules', 'settings.kotStatusesPendingDescription', 'Initial status when KOT is created and waiting to be processed', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1794', '1', 'eng', 'modules', 'settings.kotStatusesCookingDescription', 'Status when kitchen staff is preparing the order', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1795', '1', 'eng', 'modules', 'settings.kotStatusesReadyDescription', 'Status when the order is completed and ready for serving', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1796', '1', 'eng', 'modules', 'settings.kotStatusesServedDescription', 'Status when the order is served to the customer', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1797', '1', 'eng', 'modules', 'settings.kotStatusesCancelledDescription', 'Status when the order is cancelled', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1798', '1', 'eng', 'modules', 'settings.cloneOptions', 'Clone Options', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1799', '1', 'eng', 'modules', 'settings.getDatafrom', 'Import Data from', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1800', '1', 'eng', 'modules', 'settings.menu', 'Menu', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1801', '1', 'eng', 'modules', 'settings.ItemCategories', 'Item Categories', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1802', '1', 'eng', 'modules', 'settings.menuItems', 'Menu Items', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1803', '1', 'eng', 'modules', 'settings.cloneSettings', 'Clone Settings', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1804', '1', 'eng', 'modules', 'settings.phone', 'Phone', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1805', '1', 'eng', 'modules', 'settings.selectPhoneCode', 'Select Phone Code', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1806', '1', 'eng', 'modules', 'settings.searchPhoneCode', 'Search phone code...', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1807', '1', 'eng', 'modules', 'settings.adminSettings', 'Enable payment gateways to show in restaurant panel', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1808', '1', 'eng', 'modules', 'settings.allowCustomOrderTypeOptions', 'Allow Custom Order Type Options', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1809', '1', 'eng', 'modules', 'settings.allowCustomOrderTypeOptionsDescription', 'Enable this to allow customers to select custom order type options.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1810', '1', 'eng', 'modules', 'settings.disableOrderTypePopup', 'Disable Order Type Popup', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1811', '1', 'eng', 'modules', 'settings.disableOrderTypePopupDescription', 'When enabled, the order type selection popup will be disabled and the selected default order type will be used automatically.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1812', '1', 'eng', 'modules', 'settings.defaultOrderType', 'Default Order Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1813', '1', 'eng', 'modules', 'settings.defaultOrderTypeDescription', 'Select which order type should be used as default when the popup is disabled.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1814', '1', 'eng', 'modules', 'settings.customOrderTypes', 'Custom Order Types', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1815', '1', 'eng', 'modules', 'settings.customOrderTypesDescription', 'Manage custom order types that customers can choose from.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1816', '1', 'eng', 'modules', 'settings.addFirstDeliveryType', 'Add First Delivery Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1817', '1', 'eng', 'modules', 'settings.deleteDeliveryType', 'Delete Delivery Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1818', '1', 'eng', 'modules', 'settings.deleteDeliveryTypeConfirm', 'Are you sure you want to delete this delivery type?', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1819', '1', 'eng', 'modules', 'settings.deleteOrderType', 'Delete Order Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1820', '1', 'eng', 'modules', 'settings.deleteOrderTypeConfirm', 'Are you sure you want to delete this order type?', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1821', '1', 'eng', 'modules', 'settings.noOrderTypesFound', 'Enable custom order type options to add order types.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1822', '1', 'eng', 'modules', 'settings.orderTypeName', 'Order Type Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1823', '1', 'eng', 'modules', 'settings.enterOrderTypeName', 'Enter Order Type Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1824', '1', 'eng', 'modules', 'settings.orderTypeDescription', 'Order Type Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1825', '1', 'eng', 'modules', 'settings.dineIn', 'Dine In', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1826', '1', 'eng', 'modules', 'settings.cannotDeleteDefaultOrderType', 'Default order types cannot be deleted.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1827', '1', 'eng', 'modules', 'settings.pickup', 'Pickup', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1828', '1', 'eng', 'modules', 'settings.delivery', 'Delivery', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1829', '1', 'eng', 'modules', 'settings.isDelivery', 'Is Delivery', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1830', '1', 'eng', 'modules', 'settings.defaultOrderTypeWarning', 'This is a default order type and cannot be modified.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1831', '1', 'eng', 'modules', 'settings.cannotModifyDefaultOrderType', 'Cannot modify default order type.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1832', '1', 'eng', 'modules', 'settings.cannotModifyDefaultOrderTypeName', 'Cannot modify default order type name.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1833', '1', 'eng', 'modules', 'settings.orderTypeNameRequired', 'Order type name is required.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1834', '1', 'eng', 'modules', 'settings.orderTypeRequired', 'Order type is required.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1835', '1', 'eng', 'modules', 'settings.invalidOrderType', 'Invalid order type selected.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1836', '1', 'eng', 'modules', 'settings.enabled', 'Enabled', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1837', '1', 'eng', 'modules', 'settings.kotCancelReasons', 'Cancel Reasons', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1838', '1', 'eng', 'modules', 'settings.addKotCancelReason', 'Add Cancel Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1839', '1', 'eng', 'modules', 'settings.reason', 'Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1840', '1', 'eng', 'modules', 'settings.enterCancelReason', 'Additional Comment', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1841', '1', 'eng', 'modules', 'settings.cancelSettings', 'Cancellation Reasons', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1842', '1', 'eng', 'modules', 'settings.cancellationTypes', 'Cancellation Types', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1843', '1', 'eng', 'modules', 'settings.deleteCancelReasonWarning', 'Are you sure you want to delete this cancellation reason?', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1844', '1', 'eng', 'modules', 'settings.deleteReason', 'Delete Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1845', '1', 'eng', 'modules', 'settings.editKotCancelReason', 'Edit Cancel Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1846', '1', 'eng', 'modules', 'settings.default', 'Default', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1847', '1', 'eng', 'modules', 'settings.select', 'Select', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1848', '1', 'eng', 'modules', 'settings.selectCancelReason', 'Select Cancel Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1849', '1', 'eng', 'modules', 'settings.cancelReason', 'Cancel Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1850', '1', 'eng', 'modules', 'settings.customReason', 'Custom Reason', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1851', '1', 'eng', 'modules', 'settings.enterCustomReason', 'Enter custom reason...', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1852', '1', 'eng', 'modules', 'settings.cancelReasonRequired', 'Please select a cancellation reason or provide a custom reason.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1853', '1', 'eng', 'modules', 'settings.customReasonRequired', 'Please provide a custom reason when \"Other\" is selected.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1854', '1', 'eng', 'modules', 'settings.deliveryType', 'Delivery Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1855', '1', 'eng', 'modules', 'settings.enterDeliveryTypeName', 'Enter Delivery Type Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1856', '1', 'eng', 'modules', 'settings.deliveryTypeDescription', 'Delivery Type Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1857', '1', 'eng', 'modules', 'settings.enterDeliveryTypeDescription', 'Enter Delivery Type Description', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1858', '1', 'eng', 'modules', 'settings.deliveryTypeEnabled', 'Delivery Type Enabled', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1859', '1', 'eng', 'modules', 'settings.enterDeliveryTypeEnabled', 'Enter Delivery Type Enabled', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1860', '1', 'eng', 'modules', 'settings.deliveryTypeName', 'Delivery Type Name', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1861', '1', 'eng', 'modules', 'settings.customOrderType', 'Custom Order Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1862', '1', 'eng', 'modules', 'settings.phoneNumber', 'Phone Number', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1863', '1', 'eng', 'modules', 'settings.customerSiteLanguage', 'Customer Site Language', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1864', '1', 'eng', 'modules', 'settings.pickupDaysRange', 'Pickup Days Range', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1865', '1', 'eng', 'modules', 'settings.showOrderType', 'Show Order Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1866', '1', 'eng', 'modules', 'settings.taxMode', 'Tax Mode', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1867', '1', 'eng', 'modules', 'settings.taxModeOrder', 'Order-Level Tax', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1868', '1', 'eng', 'modules', 'settings.taxModeOrderHelp', 'Apply tax on the total order amount.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1869', '1', 'eng', 'modules', 'settings.taxModeItem', 'Item-Level Tax', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1870', '1', 'eng', 'modules', 'settings.taxModeItemHelp', 'Apply different tax rates to each item.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1871', '1', 'eng', 'modules', 'settings.defaultItemTaxType', 'Item Tax Type', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1872', '1', 'eng', 'modules', 'settings.taxInclusive', 'Inclusive Tax', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1873', '1', 'eng', 'modules', 'settings.taxExclusive', 'Exclusive Tax', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1874', '1', 'eng', 'modules', 'settings.taxInclusiveHelp', 'If enabled, item prices include tax. Otherwise, tax is added at checkout.', '2025-11-27 01:06:24', '2025-11-27 01:06:24'),
('1875', '1', 'eng', 'modules', 'settings.taxSettingsDescription', 'Manage how taxes are applied to orders and items.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1876', '1', 'eng', 'modules', 'settings.taxSetting', 'Tax Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1877', '1', 'eng', 'modules', 'settings.taxTable', 'All Taxes', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1878', '1', 'eng', 'modules', 'settings.orderSetting', 'Order Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1879', '1', 'eng', 'modules', 'settings.orderSettingsHelp', 'Configure order settings to manage how orders are processed.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1880', '1', 'eng', 'modules', 'settings.assignAllTaxesToItems', 'Assign all taxes to items', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1881', '1', 'eng', 'modules', 'settings.assignAllTaxesToItemsDescription', 'Note: If enabled, taxes will be applied to items that do not already have any. Items with existing taxes will remain unchanged.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1882', '1', 'eng', 'modules', 'settings.showVeg', 'Show Veg', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1883', '1', 'eng', 'modules', 'settings.showVegDescription', 'Show veg items in the menu.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1884', '1', 'eng', 'modules', 'settings.showHalal', 'Show Halal', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1885', '1', 'eng', 'modules', 'settings.showHalalDescription', 'Show halal items in the menu.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1886', '1', 'eng', 'modules', 'settings.customizeHeader', 'Customize Header', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1887', '1', 'eng', 'modules', 'settings.headerCustomization', 'Header Customization', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1888', '1', 'eng', 'modules', 'settings.disableHeaderSection', 'Disable Header Section on Customer Site', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1889', '1', 'eng', 'modules', 'settings.disableHeaderSectionDescription', 'Enable this to hide the header section on the customer site.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1890', '1', 'eng', 'modules', 'settings.headerType', 'Header Type', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1891', '1', 'eng', 'modules', 'settings.headerTypeDescription', 'Choose whether to display text or images in the cart page header.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1892', '1', 'eng', 'modules', 'settings.textHeader', 'Text Header', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1893', '1', 'eng', 'modules', 'settings.imageHeader', 'Image Header', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1894', '1', 'eng', 'modules', 'settings.headerText', 'Header Text', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1895', '1', 'eng', 'modules', 'settings.headerTextDescription', 'Enter the text to display in the cart page header.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1896', '1', 'eng', 'modules', 'settings.headerImages', 'Header Images', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1897', '1', 'eng', 'modules', 'settings.headerImagesDescription', 'Upload multiple images to create a slider in the cart page header.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1898', '1', 'eng', 'modules', 'settings.headerImagesUploadHelp', 'Supported formats: JPEG, PNG, JPG, GIF, SVG, WEBP. Maximum size: 2MB. Recommended size: 1024 × 1014 pixels.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1899', '1', 'eng', 'modules', 'settings.existingImages', 'Existing Images', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1900', '1', 'eng', 'modules', 'settings.noPhoneCodesFound', 'No phone codes found', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1901', '1', 'eng', 'modules', 'settings.superAdminPhoneNumber', 'Super Admin Phone Number', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1902', '1', 'eng', 'modules', 'settings.deliveryApps', 'Delivery Apps', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1903', '1', 'eng', 'modules', 'settings.deliveryAppsDescription', 'Manage third-party delivery platform integrations and commission settings.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1904', '1', 'eng', 'modules', 'settings.addDeliveryApp', 'Add Delivery App', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1905', '1', 'eng', 'modules', 'settings.editDeliveryApp', 'Edit Delivery App', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1906', '1', 'eng', 'modules', 'settings.deliveryAppFormDescription', 'Configure delivery platform settings including commission rates.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1907', '1', 'eng', 'modules', 'settings.appNamePlaceholder', 'e.g., Uber Eats, DoorDash', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1908', '1', 'eng', 'modules', 'settings.orDragAndDrop', 'or drag and drop', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1909', '1', 'eng', 'modules', 'settings.upTo', 'up to', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1910', '1', 'eng', 'modules', 'settings.commissionType', 'Commission Type', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1911', '1', 'eng', 'modules', 'settings.commissionValue', 'Commission Value', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1912', '1', 'eng', 'modules', 'settings.percentage', 'Percentage (%)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1913', '1', 'eng', 'modules', 'settings.fixedAmount', 'Fixed Amount', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1914', '1', 'eng', 'modules', 'settings.activeStatus', 'Active Status', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1915', '1', 'eng', 'modules', 'settings.activeStatusDescription', 'Enable this delivery platform for order processing.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1916', '1', 'eng', 'modules', 'settings.toggleStatus', 'Toggle Status', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1917', '1', 'eng', 'modules', 'settings.name', 'Name', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1918', '1', 'eng', 'modules', 'settings.commission', 'Commission %', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1919', '1', 'eng', 'modules', 'settings.status', 'Status', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1920', '1', 'eng', 'modules', 'settings.noDeliveryApps', 'No delivery apps configured', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1921', '1', 'eng', 'modules', 'settings.noDeliveryAppsDescription', 'Get started by adding your first delivery platform integration.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1922', '1', 'eng', 'modules', 'settings.deleteDeliveryApp', 'Delete Delivery App', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1923', '1', 'eng', 'modules', 'settings.deleteDeliveryAppConfirmation', 'Are you sure you want to delete this delivery app? This action cannot be undone.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1924', '1', 'eng', 'modules', 'settings.tableSettings', 'Table Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1925', '1', 'eng', 'modules', 'settings.tableLockTimeoutMinutes', 'Table Lock Timeout (Minutes)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1926', '1', 'eng', 'modules', 'settings.tableLockTimeoutMinutesDescription', 'Set how long a table remains locked when a staff member is working on it.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1927', '1', 'eng', 'modules', 'settings.privacyPolicyLink', 'Legal Consent Page Link (Privacy Policy)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1928', '1', 'eng', 'modules', 'settings.privacyPolicyLinkHelp', 'Enter the URL to your legal consent page. This will be used for legal compliance and user consent.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1929', '1', 'eng', 'modules', 'settings.showPrivacyConsentCheckbox', 'Legal Consent Checkbox', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1930', '1', 'eng', 'modules', 'settings.showPrivacyConsentCheckboxHelp', 'Enable this to show a legal consent checkbox on the signup page. When enabled, you must provide a legal link.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1931', '1', 'eng', 'modules', 'settings.uploadPlatformLogoDescription', 'Upload platform logo (PNG, JPG, GIF up to 2MB)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1932', '1', 'eng', 'modules', 'settings.sample', 'Sample', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1933', '1', 'eng', 'modules', 'settings.multiPOS', 'MultiPOS Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1934', '1', 'eng', 'modules', 'settings.multiposSettings', 'MultiPOS Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1935', '1', 'eng', 'modules', 'settings.multiPOSDescription', 'Configure your MultiPOS settings here.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1936', '1', 'eng', 'modules', 'settings.epay', 'Epay', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1937', '1', 'eng', 'modules', 'settings.enableEpay', 'Enable Epay', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1938', '1', 'eng', 'modules', 'settings.testEpayClientId', 'Test Epay Client ID', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1939', '1', 'eng', 'modules', 'settings.testEpayClientSecret', 'Test Epay Client Secret', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1940', '1', 'eng', 'modules', 'settings.testEpayTerminalId', 'Test Epay Terminal ID', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1941', '1', 'eng', 'modules', 'settings.epayClientId', 'Epay Client ID', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1942', '1', 'eng', 'modules', 'settings.epayClientSecret', 'Epay Client Secret', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1943', '1', 'eng', 'modules', 'settings.epayTerminalId', 'Epay Terminal ID', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1944', '1', 'eng', 'modules', 'delivery.useDifferentLocation', 'Use Different Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1945', '1', 'eng', 'modules', 'delivery.deliverySettings', 'Delivery Settings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1946', '1', 'eng', 'modules', 'delivery.enableDelivery', 'Enable Delivery', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1947', '1', 'eng', 'modules', 'delivery.maxRadius', 'Maximum Delivery Radius', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1948', '1', 'eng', 'modules', 'delivery.kilometers', 'Kilometers (km)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1949', '1', 'eng', 'modules', 'delivery.miles', 'Miles (mi)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1950', '1', 'eng', 'modules', 'delivery.feeCalculationMethod', 'Fee Calculation Method', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1951', '1', 'eng', 'modules', 'delivery.fixedFee', 'Fixed Fee', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1952', '1', 'eng', 'modules', 'delivery.feePerDistance', 'Fee per :unit', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1953', '1', 'eng', 'modules', 'delivery.distanceTiers', 'Distance Tiers', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1954', '1', 'eng', 'modules', 'delivery.distanceTiersDescription', 'Set different fees for different distance ranges', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1955', '1', 'eng', 'modules', 'delivery.minDistance', 'Min Distance (:unit)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1956', '1', 'eng', 'modules', 'delivery.maxDistance', 'Max Distance (:unit)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1957', '1', 'eng', 'modules', 'delivery.fee', 'Fee', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1958', '1', 'eng', 'modules', 'delivery.addTier', 'Add Tier', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1959', '1', 'eng', 'modules', 'delivery.freeDeliveryOptions', 'Free Delivery Options', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1960', '1', 'eng', 'modules', 'delivery.freeDeliveryOverAmount', 'Free Delivery Over Amount', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1961', '1', 'eng', 'modules', 'delivery.freeDeliveryWithinRadius', 'Free Delivery Within Radius', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1962', '1', 'eng', 'modules', 'delivery.leaveEmptyToDisable', 'Leave empty to disable this option', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1963', '1', 'eng', 'modules', 'delivery.deliverySchedule', 'Delivery Schedule', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1964', '1', 'eng', 'modules', 'delivery.deliveryHoursStart', 'Delivery Hours Start', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1965', '1', 'eng', 'modules', 'delivery.deliveryHoursEnd', 'Delivery Hours End', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1966', '1', 'eng', 'modules', 'delivery.leave247Delivery', 'Leave both fields empty or 00:00 for 24/7 delivery', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1967', '1', 'eng', 'modules', 'delivery.deliveryTimeEstimate', 'Delivery Time Estimation', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1968', '1', 'eng', 'modules', 'delivery.avgPrepTime', 'Average Preparation Time', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1969', '1', 'eng', 'modules', 'delivery.avgDeliverySpeed', 'Average Speed of Delivery Rider', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1970', '1', 'eng', 'modules', 'delivery.minutes', 'Minutes', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1971', '1', 'eng', 'modules', 'delivery.feeDetails', 'Fee Details', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1972', '1', 'eng', 'modules', 'delivery.distanceUnit', 'Distance Unit', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1973', '1', 'eng', 'modules', 'delivery.mapApiKey', 'Google Map API Key', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1974', '1', 'eng', 'modules', 'delivery.privacyPolicyLink', 'Privacy Policy Link', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1975', '1', 'eng', 'modules', 'delivery.branchLat', 'Branch Latitude', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1976', '1', 'eng', 'modules', 'delivery.branchLng', 'Branch Longitude', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1977', '1', 'eng', 'modules', 'delivery.addNewAddress', 'Add New Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1978', '1', 'eng', 'modules', 'delivery.editAddress', 'Edit Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1979', '1', 'eng', 'modules', 'delivery.addressLabel', 'Address Label (e.g. Home, Office)', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1980', '1', 'eng', 'modules', 'delivery.addressLabelPlaceholder', 'Home, Office, etc.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1981', '1', 'eng', 'modules', 'delivery.searchLocation', 'Search for your location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1982', '1', 'eng', 'modules', 'delivery.searchLocationPlaceholder', 'Enter your address or location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1983', '1', 'eng', 'modules', 'delivery.fullAddress', 'Complete Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1984', '1', 'eng', 'modules', 'delivery.fullAddressPlaceholder', 'Enter apartment, floor, landmark, etc.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1985', '1', 'eng', 'modules', 'delivery.noAddressesFound', 'No addresses found', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1986', '1', 'eng', 'modules', 'delivery.addAddressDescription', 'Add your delivery addresses to make ordering faster', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1987', '1', 'eng', 'modules', 'delivery.saveAddress', 'Save Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1988', '1', 'eng', 'modules', 'delivery.updateAddress', 'Update Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1989', '1', 'eng', 'modules', 'delivery.confirmDeleteAddress', 'Are you sure you want to delete this address?', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1990', '1', 'eng', 'modules', 'delivery.confirmDeleteAddressDescription', 'This action cannot be undone.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1991', '1', 'eng', 'modules', 'delivery.pleaseSelectLocation', 'Please select a location on the map', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1992', '1', 'eng', 'modules', 'delivery.autoDetectMyLocation', 'Detect My Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1993', '1', 'eng', 'modules', 'delivery.selectDeliveryLocation', 'Select Delivery Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1994', '1', 'eng', 'modules', 'delivery.selectLocationDescription', 'Choose a saved address or add a new delivery location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1995', '1', 'eng', 'modules', 'delivery.useSavedAddress', 'Use Saved Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1996', '1', 'eng', 'modules', 'delivery.addNewLocation', 'Add New Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1997', '1', 'eng', 'modules', 'delivery.confirmLocation', 'Confirm Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1998', '1', 'eng', 'modules', 'delivery.locationOutOfRange', 'Location is out of delivery range', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('1999', '1', 'eng', 'modules', 'delivery.deliveryAreaMap', 'Delivery Area Map', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2000', '1', 'eng', 'modules', 'delivery.showDeliveryArea', 'Show Delivery Area', '2025-11-27 01:06:25', '2025-11-27 01:06:25');

INSERT INTO `ltm_translations` VALUES
('2001', '1', 'eng', 'modules', 'delivery.hideDeliveryArea', 'Hide Delivery Area', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2002', '1', 'eng', 'modules', 'delivery.orderWillBeDeliveredHere', 'Your order will be delivered here', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2003', '1', 'eng', 'modules', 'delivery.placePinAccurately', 'Place the pin accurately on the map', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2004', '1', 'eng', 'modules', 'delivery.detectLocation', 'Detect My Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2005', '1', 'eng', 'modules', 'delivery.savedAddresses', 'Saved Addresses', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2006', '1', 'eng', 'modules', 'delivery.noSavedAddresses', 'No saved addresses found', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2007', '1', 'eng', 'modules', 'delivery.addressDetails', 'Address Details', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2008', '1', 'eng', 'modules', 'delivery.showDeliveryRange', 'Show Delivery Range', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2009', '1', 'eng', 'modules', 'delivery.hideDeliveryRange', 'Hide Delivery Range', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2010', '1', 'eng', 'modules', 'delivery.dragMarkerToAdjust', 'Place the pin accurately on the map', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2011', '1', 'eng', 'modules', 'delivery.deliveryLocation', 'Order will be delivered here', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2012', '1', 'eng', 'modules', 'delivery.deliveryFee', 'Delivery Fee', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2013', '1', 'eng', 'modules', 'delivery.maxRadiusAutoSet', 'Max Radius will be set automatically.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2014', '1', 'eng', 'modules', 'delivery.shopLocation', 'The restaurant location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2015', '1', 'eng', 'modules', 'delivery.orderQualifiesForFreeDelivery', 'Your order qualifies for free delivery', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2016', '1', 'eng', 'modules', 'delivery.freeDelivery', 'Free Delivery', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2017', '1', 'eng', 'modules', 'delivery.changeDeliveryAddress', 'Change Delivery Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2018', '1', 'eng', 'modules', 'delivery.deliveryAddress', 'Delivery Address', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2019', '1', 'eng', 'modules', 'delivery.useCurrentLocation', 'Use Current Location', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2020', '1', 'eng', 'modules', 'delivery.deliveryNotAvailable', 'Delivery is not available at the moment. Please connect with the restaurant directly for assistance.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2021', '1', 'eng', 'modules', 'delivery.deliveryHours', 'Delivery Hours', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2022', '1', 'eng', 'modules', 'delivery.nextDeliveryAt', 'Next delivery available at :time', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2023', '1', 'eng', 'modules', 'delivery.deliveryScheduleStart', 'Delivery Start Time', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2024', '1', 'eng', 'modules', 'delivery.deliveryScheduleEnd', 'Delivery End Time', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2025', '1', 'eng', 'modules', 'delivery.locationPermissionDenied', 'Location permission denied. Please enable location access and try again.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2026', '1', 'eng', 'modules', 'delivery.outsideDeliveryHours', 'Delivery service available from :start to :end (:timezone). Please order during these hours.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2027', '1', 'eng', 'modules', 'delivery.currentlyOutsideHours', 'Currently outside delivery hours', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2028', '1', 'eng', 'modules', 'delivery.24hDelivery', '24/7 Delivery Available', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2029', '1', 'eng', 'modules', 'delivery.deliveryTimeEstimation', 'Estimated delivery time: :time minutes', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2030', '1', 'eng', 'modules', 'delivery.estimatedTimeUnavailable', 'Estimated time unavailable. Please contact the restaurant for more details.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2031', '1', 'eng', 'modules', 'delivery.additionalEtaBufferTime', 'Additional Time Buffer', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2032', '1', 'eng', 'modules', 'delivery.additionalEtaBufferTimeDescription', 'Add optional buffer time (in minutes) to cover possible delays. Default is 0 if not specified.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2033', '1', 'eng', 'modules', 'dashboard.todayOrderCount', 'Today\'s Orders', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2034', '1', 'eng', 'modules', 'dashboard.todayEarnings', 'Today\'s Earnings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2035', '1', 'eng', 'modules', 'dashboard.sinceYesterday', 'Since yesterday', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2036', '1', 'eng', 'modules', 'dashboard.todayStats', 'Statistics', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2037', '1', 'eng', 'modules', 'dashboard.todayCustomerCount', 'Today\'s Customer', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2038', '1', 'eng', 'modules', 'dashboard.averageDailyEarning', 'Average Daily Earnings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2039', '1', 'eng', 'modules', 'dashboard.sincePreviousMonth', 'Since Previous Month', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2040', '1', 'eng', 'modules', 'dashboard.earnings', 'Earnings', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2041', '1', 'eng', 'modules', 'dashboard.salesThisMonth', 'Sales This Month', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2042', '1', 'eng', 'modules', 'dashboard.topTables', 'Top Selling Tables', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2043', '1', 'eng', 'modules', 'dashboard.topDish', 'Top Selling Dish', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2044', '1', 'eng', 'modules', 'dashboard.todayRestaurantCount', 'Today\'s Restaurant Count', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2045', '1', 'eng', 'modules', 'dashboard.totalRestaurantCount', 'Total Restaurant Count', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2046', '1', 'eng', 'modules', 'dashboard.totalFreeRestaurantCount', 'Total Free Restaurant Count', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2047', '1', 'eng', 'modules', 'dashboard.totalPaidRestaurantCount', 'Total Paid Restaurant Count', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2048', '1', 'eng', 'modules', 'dashboard.verificationPendingInfo', 'Your restaurant is pending verification. Please wait for admin approval.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2049', '1', 'eng', 'modules', 'dashboard.verificationPending', 'Verification Pending', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2050', '1', 'eng', 'modules', 'dashboard.verificationPendingDescription', 'Restaurant is waiting for approval', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2051', '1', 'eng', 'modules', 'dashboard.verificationRejectedInfo', 'Your restaurant verification has been rejected. Please contact admin for more details.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2052', '1', 'eng', 'modules', 'dashboard.approvalStatus', 'Approval Status', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2053', '1', 'eng', 'modules', 'dashboard.onboarding', 'Onboarding', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2054', '1', 'eng', 'modules', 'dashboard.onboardingDescription', 'Complete these steps to set up your application properly before using it.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2055', '1', 'eng', 'modules', 'dashboard.installation', 'Installation', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2056', '1', 'eng', 'modules', 'dashboard.installationCompleted', 'The application has been successfully installed.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2057', '1', 'eng', 'modules', 'dashboard.smtpConfiguration', 'SMTP Configuration', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2058', '1', 'eng', 'modules', 'dashboard.smtpConfigurationDescription', 'Configure your email settings to ensure all email notifications work properly.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2059', '1', 'eng', 'modules', 'dashboard.cronJobConfiguration', 'CRON Job Configuration', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2060', '1', 'eng', 'modules', 'dashboard.cronJobConfigurationDescription', 'Set up CRON jobs to ensure automated tasks run correctly.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2061', '1', 'eng', 'modules', 'dashboard.applicationNameChange', 'Application Name Change', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2062', '1', 'eng', 'modules', 'dashboard.applicationNameChangeDescription', 'Customize your application name to match your brand.', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2063', '1', 'eng', 'modules', 'dashboard.platformRevenueThisMonth', 'Platform Revenue This Month', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2064', '1', 'eng', 'modules', 'dashboard.platformRevenue', 'Platform Revenue', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2065', '1', 'eng', 'modules', 'dashboard.topPerformingRestaurants', 'Top Performing Restaurants', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2066', '1', 'eng', 'modules', 'dashboard.orders', 'Orders', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2067', '1', 'eng', 'modules', 'dashboard.newThisMonth', 'New This Month', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2068', '1', 'eng', 'modules', 'dashboard.growthRate', 'Growth Rate', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2069', '1', 'eng', 'modules', 'dashboard.newRestaurants', 'New Restaurants', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2070', '1', 'eng', 'modules', 'dashboard.recentRestaurants', 'Recent Restaurants', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2071', '1', 'eng', 'modules', 'dashboard.active', 'Active', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2072', '1', 'eng', 'modules', 'dashboard.inactive', 'Inactive', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2073', '1', 'eng', 'modules', 'dashboard.total', 'Total', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2074', '1', 'eng', 'modules', 'dashboard.platformOverview', 'Platform Overview', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2075', '1', 'eng', 'modules', 'dashboard.comprehensivePlatformMetrics', 'Comprehensive platform metrics and insights', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2076', '1', 'eng', 'modules', 'dashboard.totalRevenue', 'Total Revenue', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2077', '1', 'eng', 'modules', 'dashboard.totalOrders', 'Total Orders', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2078', '1', 'eng', 'modules', 'dashboard.totalCustomers', 'Total Customers', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2079', '1', 'eng', 'modules', 'dashboard.totalUsers', 'Total Users', '2025-11-27 01:06:25', '2025-11-27 01:06:25'),
('2080', '1', 'eng', 'modules', 'dashboard.totalRestaurants', 'Total Restaurants', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2081', '1', 'eng', 'modules', 'dashboard.todayActivity', 'Today\'s Activity', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2082', '1', 'eng', 'modules', 'dashboard.revenue', 'Revenue', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2083', '1', 'eng', 'modules', 'dashboard.monthlyGrowth', 'Monthly Growth', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2084', '1', 'eng', 'modules', 'dashboard.restaurantStatus', 'Restaurant Status', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2085', '1', 'eng', 'modules', 'dashboard.recentActivity', 'Recent Activity', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2086', '1', 'eng', 'modules', 'dashboard.latestPlatformActivities', 'Latest platform activities and updates', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2087', '1', 'eng', 'modules', 'dashboard.recentOrders', 'Recent Orders', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2088', '1', 'eng', 'modules', 'dashboard.recentPayments', 'Recent Payments', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2089', '1', 'eng', 'modules', 'dashboard.topPayingRestaurants', 'Top Paying Restaurants', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2090', '1', 'eng', 'modules', 'dashboard.payments', 'Payments', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2091', '1', 'eng', 'modules', 'dashboard.totalSubscriptions', 'Total Subscriptions', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2092', '1', 'eng', 'modules', 'dashboard.activeSubscriptions', 'Active Subscriptions', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2093', '1', 'eng', 'modules', 'dashboard.trialSubscriptions', 'Trial Subscriptions', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2094', '1', 'eng', 'modules', 'dashboard.expiredSubscriptions', 'Expired Subscriptions', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2095', '1', 'eng', 'modules', 'dashboard.inactiveSubscriptions', 'Inactive Subscriptions', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2096', '1', 'eng', 'modules', 'dashboard.subscriptionStatus', 'Subscription Status', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2097', '1', 'eng', 'modules', 'dashboard.trial', 'Trial', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2098', '1', 'eng', 'modules', 'dashboard.expired', 'Expired', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2099', '1', 'eng', 'modules', 'dashboard.subscriptionUpdates', 'Subscription Updates', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2100', '1', 'eng', 'modules', 'dashboard.newUsers', 'New Users', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2101', '1', 'eng', 'modules', 'update.systemDetails', 'System Details', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2102', '1', 'eng', 'modules', 'update.updateTitle', 'Update To New Version', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2103', '1', 'eng', 'modules', 'update.updateDatabase', 'Update Database', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2104', '1', 'eng', 'modules', 'update.fileReplaceAlert', 'To update the TableTrack to the new version check documentation for the instructions.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2105', '1', 'eng', 'modules', 'update.updateDatabaseButton', 'Click to update database', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2106', '1', 'eng', 'modules', 'update.newUpdate', 'New update available', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2107', '1', 'eng', 'modules', 'update.updateNow', 'Update Now', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2108', '1', 'eng', 'modules', 'update.updateAlternate', 'If the <b>Update Now</b> button does not work then follow the <b> <a href=\"https://froiden.freshdesk.com/support/solutions/articles/43000554421-update-application-manually\" target=\"_blank\">Manual update</a></b> instructions as mentioned in the documentation.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2109', '1', 'eng', 'modules', 'update.updateManual', 'Update Alternate Method', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2110', '1', 'eng', 'modules', 'update.updateFiles', 'Update Files', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2111', '1', 'eng', 'modules', 'update.install', 'Install', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2112', '1', 'eng', 'modules', 'update.downloadUpdateFile', 'Download Update File', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2113', '1', 'eng', 'modules', 'update.moduleFile', 'Once the zip file is uploaded, you will see a list of modules available for installation or update. To proceed with the installation or update, simply click on the \"install\" button for the respective module. Please note that after clicking the \"install\" button, you will be logged out. Once the installation is complete, you will be able to see the module on the module list. You can activate or deactivate the module from the list at any time.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2114', '1', 'eng', 'modules', 'update.customModules', 'Custom Modules', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2115', '1', 'eng', 'modules', 'update.customModulesDescription', 'Custom modules are additional features that can be added to your restaurant. They are installed as separate modules and can be activated or deactivated at any time.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2116', '1', 'eng', 'modules', 'update.customModulesList', 'Custom Modules List', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2117', '1', 'eng', 'modules', 'update.installCustomModule', 'Install Custom Module', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2118', '1', 'eng', 'modules', 'update.uploadModule', 'Upload Module', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2119', '1', 'eng', 'modules', 'update.downloadFilefromCodecanyon', 'Download file from Codecanyon', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2120', '1', 'eng', 'modules', 'update.moduleFileItem', 'Module File Item', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2121', '1', 'eng', 'modules', 'update.moduleFileItemDescription', 'Module File Item Description', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2122', '1', 'eng', 'modules', 'staff.addStaff', 'Add Member', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2123', '1', 'eng', 'modules', 'staff.name', 'Member Name', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2124', '1', 'eng', 'modules', 'staff.email', 'Email Address', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2125', '1', 'eng', 'modules', 'staff.enterName', 'Please enter your name', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2126', '1', 'eng', 'modules', 'staff.editMember', 'Edit Member', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2127', '1', 'eng', 'modules', 'staff.deleteMember', 'Delete Member', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2128', '1', 'eng', 'modules', 'staff.deleteMemberMessage', 'Are you sure you want to delete the member?', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2129', '1', 'eng', 'modules', 'staff.photo', 'Photo', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2130', '1', 'eng', 'modules', 'staff.addExecutive', 'Add Executive', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2131', '1', 'eng', 'modules', 'staff.available', 'Available', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2132', '1', 'eng', 'modules', 'staff.on_delivery', 'On Delivery', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2133', '1', 'eng', 'modules', 'staff.inactive', 'Inactive', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2134', '1', 'eng', 'modules', 'staff.editExecutive', 'Edit Executive', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2135', '1', 'eng', 'modules', 'staff.password', 'Password', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2136', '1', 'eng', 'modules', 'staff.Branch Head', 'Branch Head', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2137', '1', 'eng', 'modules', 'staff.Waiter', 'Waiter', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2138', '1', 'eng', 'modules', 'staff.Chef', 'Chef', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2139', '1', 'eng', 'modules', 'staff.Admin', 'Admin', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2140', '1', 'eng', 'modules', 'staff.Super Admin', 'Super Admin', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2141', '1', 'eng', 'modules', 'staff.passwordUpdateNote', 'Leave blank to keep the current password.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2142', '1', 'eng', 'modules', 'staff.manageStaff', 'Manage Staff', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2143', '1', 'eng', 'modules', 'staff.manageMenuItems', 'Manage Menu Items', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2144', '1', 'eng', 'modules', 'staff.manageOrders', 'Manage Orders', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2145', '1', 'eng', 'modules', 'staff.staffLimitExceeded', 'Staff Limit Reached', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2146', '1', 'eng', 'modules', 'staff.staffLimitExceededMessage', 'You have reached your staff limit. Current staff: :current / :limit. Please upgrade your plan to add more staff members.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2147', '1', 'eng', 'modules', 'reservation.slotType', 'Slot Type', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2148', '1', 'eng', 'modules', 'reservation.timeStart', 'Start Time', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2149', '1', 'eng', 'modules', 'reservation.timeEnd', 'End Time', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2150', '1', 'eng', 'modules', 'reservation.timeSlotDifference', 'Time Slot Difference', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2151', '1', 'eng', 'modules', 'reservation.available', 'Available', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2152', '1', 'eng', 'modules', 'reservation.unavailable', 'Unavailable', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2153', '1', 'eng', 'modules', 'reservation.maxGuests', 'Maximum Guests', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2154', '1', 'eng', 'modules', 'reservation.guests', 'Guests', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2155', '1', 'eng', 'modules', 'reservation.Lunch', 'Lunch', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2156', '1', 'eng', 'modules', 'reservation.Breakfast', 'Breakfast', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2157', '1', 'eng', 'modules', 'reservation.Dinner', 'Dinner', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2158', '1', 'eng', 'modules', 'reservation.No_Show', 'No Show', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2159', '1', 'eng', 'modules', 'reservation.Checked_In', 'Checked In', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2160', '1', 'eng', 'modules', 'reservation.Confirmed', 'Confirmed', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2161', '1', 'eng', 'modules', 'reservation.Cancelled', 'Cancelled', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2162', '1', 'eng', 'modules', 'reservation.Pending', 'Pending', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2163', '1', 'eng', 'modules', 'reservation.todayReservations', 'Today Reservations', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2164', '1', 'eng', 'modules', 'reservation.newReservations', 'New Reservations', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2165', '1', 'eng', 'modules', 'reservation.newReservation', 'New Reservation', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2166', '1', 'eng', 'modules', 'reservation.selectDate', 'Select Date of Booking', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2167', '1', 'eng', 'modules', 'reservation.upgradeHeading', 'Unlock Seamless Table Reservations Today!', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2168', '1', 'eng', 'modules', 'reservation.upgradeInfo', 'Effortlessly manage customer reservations with Table Reservation feature. Upgrade now and give your guests the convenience they deserve, while streamlining your operations.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2169', '1', 'eng', 'modules', 'reservation.reservedTables', 'Reservations', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2170', '1', 'eng', 'modules', 'reservation.currentTable', 'Current Table', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2171', '1', 'eng', 'modules', 'reservation.changeTable', 'Change Table', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2172', '1', 'eng', 'modules', 'reservation.reservationSettings', 'Reservation Settings', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2173', '1', 'eng', 'modules', 'reservation.enableAdminReservation', 'Enable Admin Reservations', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2174', '1', 'eng', 'modules', 'reservation.enableAdminReservationDescription', 'Allow staff to create reservations through the admin panel', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2175', '1', 'eng', 'modules', 'reservation.enableCustomerReservation', 'Enable Customer Reservations', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2176', '1', 'eng', 'modules', 'reservation.enableCustomerReservationDescription', 'Allow customers to make reservations through the customer site', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2177', '1', 'eng', 'modules', 'reservation.minimumPartySize', 'Minimum Party Size', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2178', '1', 'eng', 'modules', 'reservation.minimumPartySizeDescription', 'Set the minimum number of guests required for a reservation', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2179', '1', 'eng', 'modules', 'reservation.enterMinimumPartySize', 'Enter minimum party size', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2180', '1', 'eng', 'modules', 'reservation.generalSettings', 'General Settings', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2181', '1', 'eng', 'modules', 'reservation.timeSlotsSettings', 'Time Slots Settings', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2182', '1', 'eng', 'modules', 'reservation.reservationsDisabled', 'Reservations are currently disabled.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2183', '1', 'eng', 'modules', 'reservation.reservationsDisabledDescription', 'Reservations are currently disabled. Please enable them in the settings to allow customers to make reservations.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2184', '1', 'eng', 'modules', 'reservation.lastMinuteBookingSettings', 'Last-Minute Booking Settings', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2185', '1', 'eng', 'modules', 'reservation.disableSlotMinutes', 'Disable Slot Minutes', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2186', '1', 'eng', 'modules', 'reservation.disableSlotMinutesInfo', 'Set how many minutes before a time slot that bookings should be disabled. This only applies to reservations for today.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2187', '1', 'eng', 'modules', 'notifications.order_received', 'New Order Received', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2188', '1', 'eng', 'modules', 'notifications.order_received_info', 'Restaurant admin will receive an email when a new order is placed by the customer.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2189', '1', 'eng', 'modules', 'notifications.reservation_confirmed', 'Reservation Confirmation', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2190', '1', 'eng', 'modules', 'notifications.reservation_confirmed_info', 'Customer will receive an email after making the reservation.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2191', '1', 'eng', 'modules', 'notifications.new_reservation', 'New Reservation Received', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2192', '1', 'eng', 'modules', 'notifications.new_reservation_info', 'Restaurant admin will receive an email when a new reservation is made by the customer.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2193', '1', 'eng', 'modules', 'notifications.order_bill_sent', 'Order Bill', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2194', '1', 'eng', 'modules', 'notifications.order_bill_sent_info', 'Customer will receive the order bill via email.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2195', '1', 'eng', 'modules', 'notifications.staff_welcome', 'Staff Welcome Email', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2196', '1', 'eng', 'modules', 'notifications.staff_welcome_info', 'Staff Member will welcome email when you add a new staff member.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2197', '1', 'eng', 'modules', 'notifications.send_otp', 'Send OTP', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2198', '1', 'eng', 'modules', 'notifications.send_otp_info', 'Customer will receive an OTP to login to the restaurant.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2199', '1', 'eng', 'modules', 'onboarding.completeSteps', 'Complete following steps to get started', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2200', '1', 'eng', 'modules', 'onboarding.markComplete', 'Mark Complete', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2201', '1', 'eng', 'modules', 'onboarding.addBranchHeading', 'Add Branch Information', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2202', '1', 'eng', 'modules', 'onboarding.addBranchInfo', 'Provide the essential details of your restaurant branch.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2203', '1', 'eng', 'modules', 'onboarding.addAreaHeading', 'Set Up Your Restaurant Areas', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2204', '1', 'eng', 'modules', 'onboarding.addAreaInfo', 'Create distinct areas like dining rooms, patios, or bars to organize your tables.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2205', '1', 'eng', 'modules', 'onboarding.addTableHeading', 'Add a Table to the Area', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2206', '1', 'eng', 'modules', 'onboarding.addTableInfo', 'Assign and name the tables in each area for easy tracking during reservations and orders.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2207', '1', 'eng', 'modules', 'onboarding.addMenuHeading', 'Build Your Menu', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2208', '1', 'eng', 'modules', 'onboarding.addMenuInfo', 'Let\'s build your menu! First add a name to your menu like Drinks, Breakfast etc.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2209', '1', 'eng', 'modules', 'onboarding.addMenuItemHeading', 'Add Items to Your Menu', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2210', '1', 'eng', 'modules', 'onboarding.addMenuItemInfo', 'Add individual dishes with their descriptions and prices to complete your menu.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2211', '1', 'eng', 'modules', 'onboarding.addOrderHeading', 'Test Your Order Process', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2212', '1', 'eng', 'modules', 'onboarding.addOrderInfo', 'Make sure everything works by placing a test order for your setup.', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2213', '1', 'eng', 'modules', 'restaurant.addRestaurant', 'Add Restaurant', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2214', '1', 'eng', 'modules', 'restaurant.name', 'Restaurant Name', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2215', '1', 'eng', 'modules', 'restaurant.email', 'Email Address', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2216', '1', 'eng', 'modules', 'restaurant.address', 'Address', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2217', '1', 'eng', 'modules', 'restaurant.editRestaurant', 'Edit Restaurant', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2218', '1', 'eng', 'modules', 'restaurant.deleteRestaurant', 'Delete Restaurant', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2219', '1', 'eng', 'modules', 'restaurant.deleteRestaurantMessage', 'Are you sure you want to delete the restaurant?', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2220', '1', 'eng', 'modules', 'restaurant.logo', 'Logo', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2221', '1', 'eng', 'modules', 'restaurant.phone', 'Phone', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2222', '1', 'eng', 'modules', 'restaurant.restaurantDetails', 'Restaurant Details', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2223', '1', 'eng', 'modules', 'restaurant.restaurantBranchDetails', 'Add Restaurant Branch Details', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2224', '1', 'eng', 'modules', 'restaurant.changePassword', 'Change Password', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2225', '1', 'eng', 'modules', 'restaurant.firstAdmin', 'First Admin', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2226', '1', 'eng', 'modules', 'restaurant.nextBranchDetails', 'Next: Branch Details', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2227', '1', 'eng', 'modules', 'restaurant.updatePackage', 'Update Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2228', '1', 'eng', 'modules', 'restaurant.needApproval', 'Need Approval', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2229', '1', 'eng', 'modules', 'restaurant.resetFilter', 'Reset Filter', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2230', '1', 'eng', 'modules', 'restaurant.rejectionReason', 'Rejection Reason', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2231', '1', 'eng', 'modules', 'restaurant.currentPackage', 'Current Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2232', '1', 'eng', 'modules', 'restaurant.rejectionReasonPlaceholder', 'Provide a reason for rejection', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2233', '1', 'eng', 'modules', 'package.packageName', 'Package Name', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2234', '1', 'eng', 'modules', 'package.description', 'Description', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2235', '1', 'eng', 'modules', 'package.monthlyPrice', 'Monthly Plan Price', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2236', '1', 'eng', 'modules', 'package.annualPrice', 'Annual Plan Price', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2237', '1', 'eng', 'modules', 'package.annually', 'Annually', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2238', '1', 'eng', 'modules', 'package.monthly', 'Monthly', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2239', '1', 'eng', 'modules', 'package.trialDays', 'Trial Days', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2240', '1', 'eng', 'modules', 'package.trialStatus', 'Trial Status', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2241', '1', 'eng', 'modules', 'package.NotificationBeforeDays', 'Notification Before Days', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2242', '1', 'eng', 'modules', 'package.trialMessage', 'Trial Message', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2243', '1', 'eng', 'modules', 'package.lifetimePrice', 'Lifetime Price', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2244', '1', 'eng', 'modules', 'package.packagePrice', 'Package Price', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2245', '1', 'eng', 'modules', 'package.selectBillingCycle', 'Select Billing Cycle', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2246', '1', 'eng', 'modules', 'package.packageType', 'Package Type', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2247', '1', 'eng', 'modules', 'package.annual', 'Annual', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2248', '1', 'eng', 'modules', 'package.free', 'Free', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2249', '1', 'eng', 'modules', 'package.default', 'Default', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2250', '1', 'eng', 'modules', 'package.private', 'Private', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2251', '1', 'eng', 'modules', 'package.trial', 'Trial', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2252', '1', 'eng', 'modules', 'package.lifetime', 'Lifetime', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2253', '1', 'eng', 'modules', 'package.moduleInPackage', 'Modules in Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2254', '1', 'eng', 'modules', 'package.daysLeftTrial', 'days left on trial', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2255', '1', 'eng', 'modules', 'package.trialExpired', 'Trial expired', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2256', '1', 'eng', 'modules', 'package.selectPackage', 'Select Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2257', '1', 'eng', 'modules', 'package.normal', 'Normal', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2258', '1', 'eng', 'modules', 'package.addPackage', 'Add Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2259', '1', 'eng', 'modules', 'package.editPackage', 'Edit Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2260', '1', 'eng', 'modules', 'package.freePlan', 'Free Plan', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2261', '1', 'eng', 'modules', 'package.recommended', 'Recommended', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2262', '1', 'eng', 'modules', 'package.trialPackage', 'Trial Package', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2263', '1', 'eng', 'modules', 'package.monthlyRazorpayId', 'Monthly Razorpay Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2264', '1', 'eng', 'modules', 'package.annualRazorpayId', 'Annual Razorpay Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2265', '1', 'eng', 'modules', 'package.lifetimeRazorpayId', 'Lifetime Razorpay Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2266', '1', 'eng', 'modules', 'package.lifetimeStripeId', 'Lifetime Stripe Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2267', '1', 'eng', 'modules', 'package.monthlyStripeId', 'Monthly Stripe Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2268', '1', 'eng', 'modules', 'package.annualStripeId', 'Annual Stripe Id', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2269', '1', 'eng', 'modules', 'package.selectAdditionalFeature', 'Select Additional Feature', '2025-11-27 01:06:26', '2025-11-27 01:06:26'),
('2270', '1', 'eng', 'modules', 'package.trialPackageDetails', 'If this package is active, then the restaurant which registers for the first time goes to this package.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2271', '1', 'eng', 'modules', 'package.defaultPackage', 'Default Package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2272', '1', 'eng', 'modules', 'package.defaultPackageDetails', 'When the trial package expires, the restaurant goes back to this plan.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2273', '1', 'eng', 'modules', 'package.defaultPackageDetails2', 'When the restaurant fails the payment of an upgraded package, the restaurant goes back to this plan.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2274', '1', 'eng', 'modules', 'package.thisPackageCannotBeDeleted', 'This package cannot be deleted', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2275', '1', 'eng', 'modules', 'package.planExpire', 'Plan Expires On', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2276', '1', 'eng', 'modules', 'package.trialPeriod', 'Trial Period', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2277', '1', 'eng', 'modules', 'package.days', 'Day(s)', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2278', '1', 'eng', 'modules', 'package.paidPlan', 'Paid Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2279', '1', 'eng', 'modules', 'package.choosePackageType', 'Choose Package Type', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2280', '1', 'eng', 'modules', 'package.monthlyPlan', 'Monthly Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2281', '1', 'eng', 'modules', 'package.choseFreePlan', 'Choose Free Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2282', '1', 'eng', 'modules', 'package.currentPlan', 'Current Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2283', '1', 'eng', 'modules', 'package.chooseDefaultPlan', 'Choose Default Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2284', '1', 'eng', 'modules', 'package.active', 'Active', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2285', '1', 'eng', 'modules', 'package.inactive', 'Inactive', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2286', '1', 'eng', 'modules', 'package.annualPlan', 'Annual Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2287', '1', 'eng', 'modules', 'package.isPrivate', 'Make Private', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2288', '1', 'eng', 'modules', 'package.selectModules', 'Select Modules for this package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2289', '1', 'eng', 'modules', 'package.selectAll', 'Select All', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2290', '1', 'eng', 'modules', 'package.deletePackage', 'Delete Package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2291', '1', 'eng', 'modules', 'package.deletePackageMessage', 'Are you sure you want to delete the package?', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2292', '1', 'eng', 'modules', 'package.isRecommended', 'Mark as Recommended', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2293', '1', 'eng', 'modules', 'package.restaurantCurrentPackage', 'Restaurant\'s Current Package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2294', '1', 'eng', 'modules', 'package.updatePackage', 'Update Package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2295', '1', 'eng', 'modules', 'package.packageDetails', 'Package Details', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2296', '1', 'eng', 'modules', 'package.transactionId', 'Transaction ID', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2297', '1', 'eng', 'modules', 'package.paymentGateway', 'Payment Gateway', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2298', '1', 'eng', 'modules', 'package.choosePlan', 'Choose Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2299', '1', 'eng', 'modules', 'package.noPaymentOptionEnable', 'No payment options are enabled.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2300', '1', 'eng', 'modules', 'package.choosePaymentMethod', 'Choose Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2301', '1', 'eng', 'modules', 'package.amount', 'Amount', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2302', '1', 'eng', 'modules', 'package.paymentBy', 'Payment By', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2303', '1', 'eng', 'modules', 'package.created', 'Created', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2304', '1', 'eng', 'modules', 'package.status', 'Status', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2305', '1', 'eng', 'modules', 'package.receipt', 'Receipt', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2306', '1', 'eng', 'modules', 'package.paymentDate', 'Payment Date', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2307', '1', 'eng', 'modules', 'package.payOnline', 'Pay Online', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2308', '1', 'eng', 'modules', 'package.billingCycle', 'Billing Cycle', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2309', '1', 'eng', 'modules', 'package.payOffline', 'Pay Offline', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2310', '1', 'eng', 'modules', 'package.purchaseHistory', 'Purchase History', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2311', '1', 'eng', 'modules', 'package.offlineRequest', 'Offline Request', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2312', '1', 'eng', 'modules', 'package.planDetails', 'Plan Details', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2313', '1', 'eng', 'modules', 'package.offlineUploadFile', 'Please attach a file of your offline payment receipt', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2314', '1', 'eng', 'modules', 'package.offlineDescriptionPlaceholder', 'Provide details of your offline payment', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2315', '1', 'eng', 'modules', 'package.remark', 'Remark', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2316', '1', 'eng', 'modules', 'package.trialExpireOn', 'Trial Expires On', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2317', '1', 'eng', 'modules', 'package.selectDate', 'Select Date', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2318', '1', 'eng', 'modules', 'package.nextPaymentDate', 'Next Payment Date', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2319', '1', 'eng', 'modules', 'package.licenceExpiresOn', 'License Expires On', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2320', '1', 'eng', 'modules', 'package.defaultPlan', 'Your default plan.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2321', '1', 'eng', 'modules', 'package.payOnce', 'Pay One Time', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2322', '1', 'eng', 'modules', 'package.payMonthly', 'Pay Monthly', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2323', '1', 'eng', 'modules', 'package.payAnnually', 'Pay Annually', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2324', '1', 'eng', 'modules', 'package.branchLimit', 'Branch Limit', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2325', '1', 'eng', 'modules', 'package.branchLimitInfo', 'The restaurant can create a specified number of branches. Enter -1 for unlimited branches.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2326', '1', 'eng', 'modules', 'package.licenseExpiresOn', 'License Expires On', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2327', '1', 'eng', 'modules', 'package.additionalFeatures', 'Additional Features', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2328', '1', 'eng', 'modules', 'package.noAdditionalFeatures', 'No additional features available.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2329', '1', 'eng', 'modules', 'package.currency', 'Currency', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2330', '1', 'eng', 'modules', 'package.chooseCurrency', 'Choose Currency', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2331', '1', 'eng', 'modules', 'package.monthlyFlutterwaveId', 'Monthly Flutterwave Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2332', '1', 'eng', 'modules', 'package.annualFlutterwaveId', 'Annual Flutterwave Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2333', '1', 'eng', 'modules', 'package.monthlyPaypalId', 'Monthly Paypal Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2334', '1', 'eng', 'modules', 'package.annualPaypalId', 'Annual Paypal Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2335', '1', 'eng', 'modules', 'package.monthlyPaystackId', 'Monthly Paystack Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2336', '1', 'eng', 'modules', 'package.annualPaystackId', 'Annual Paystack Id', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2337', '1', 'eng', 'modules', 'package.menuItemsLimit', 'Menu Items Limit', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2338', '1', 'eng', 'modules', 'package.orderLimit', 'Order Limit', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2339', '1', 'eng', 'modules', 'package.staffLimit', 'Staff Limit', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2340', '1', 'eng', 'modules', 'package.packageLimitsConfiguration', 'Package Limits Configuration', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2341', '1', 'eng', 'modules', 'package.packageLimitsConfigurationInfo', 'The restaurant can create a specified number of menu items, orders, and staff. The order limit applies per branch and resets daily. Enter -1 for unlimited access.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2342', '1', 'eng', 'modules', 'billing.name', 'Name', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2343', '1', 'eng', 'modules', 'billing.description', 'Description', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2344', '1', 'eng', 'modules', 'billing.deleteOfflinePaymentMethod', 'Delete Offline Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2345', '1', 'eng', 'modules', 'billing.askDeleteOfflinePaymentMethod', 'Are you sure you want to delete the offline payment method?', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2346', '1', 'eng', 'modules', 'billing.offlinePaymentMethodDeleted', 'Offline Payment Method Deleted', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2347', '1', 'eng', 'modules', 'billing.addPaymentMethod', 'Add Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2348', '1', 'eng', 'modules', 'billing.razorpay', 'Razorpay', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2349', '1', 'eng', 'modules', 'billing.stripe', 'Stripe', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2350', '1', 'eng', 'modules', 'billing.flutterwave', 'Flutterwave', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2351', '1', 'eng', 'modules', 'billing.offline', 'Offline Payment', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2352', '1', 'eng', 'modules', 'billing.qr_code', 'QR Code Payment', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2353', '1', 'eng', 'modules', 'billing.paypal', 'Paypal', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2354', '1', 'eng', 'modules', 'billing.viewPaymentMethod', 'View Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2355', '1', 'eng', 'modules', 'billing.offlinePaymentMethod', 'Offline Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2356', '1', 'eng', 'modules', 'billing.restaurant', 'Restaurant Name', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2357', '1', 'eng', 'modules', 'billing.paymentDate', 'Payment Date', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2358', '1', 'eng', 'modules', 'billing.packageDetails', 'Package Details', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2359', '1', 'eng', 'modules', 'billing.transactionId', 'Transaction ID', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2360', '1', 'eng', 'modules', 'billing.paymentGateway', 'Payment Gateway', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2361', '1', 'eng', 'modules', 'billing.choosePlan', 'Choose Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2362', '1', 'eng', 'modules', 'billing.noPaymentOptionEnable', 'No payment options are enabled.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2363', '1', 'eng', 'modules', 'billing.choosePaymentMethod', 'Choose Payment Method', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2364', '1', 'eng', 'modules', 'billing.amount', 'Amount', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2365', '1', 'eng', 'modules', 'billing.package', 'Package', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2366', '1', 'eng', 'modules', 'billing.paymentBy', 'Payment By', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2367', '1', 'eng', 'modules', 'billing.paymentDone', 'Payment Done', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2368', '1', 'eng', 'modules', 'billing.created', 'Created', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2369', '1', 'eng', 'modules', 'billing.status', 'Status', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2370', '1', 'eng', 'modules', 'billing.receipt', 'Receipt', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2371', '1', 'eng', 'modules', 'billing.payOnline', 'Pay Online', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2372', '1', 'eng', 'modules', 'billing.billingCycle', 'Billing Cycle', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2373', '1', 'eng', 'modules', 'billing.paybyQr', 'Pay by QR Code', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2374', '1', 'eng', 'modules', 'billing.accountDetails', 'Account Details :', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2375', '1', 'eng', 'modules', 'billing.showOtherPaymentOption', 'Show Other Payment Option', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2376', '1', 'eng', 'modules', 'billing.bankTransfer', 'Bank Transfer', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2377', '1', 'eng', 'modules', 'billing.payOffline', 'Pay Offline', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2378', '1', 'eng', 'modules', 'billing.purchaseHistory', 'Purchase History', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2379', '1', 'eng', 'modules', 'billing.offlineRequest', 'Offline Request', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2380', '1', 'eng', 'modules', 'billing.generalSettings', 'General Settings', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2381', '1', 'eng', 'modules', 'billing.planDetails', 'Plan Details', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2382', '1', 'eng', 'modules', 'billing.currentPlan', 'Current Plan Name', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2383', '1', 'eng', 'modules', 'billing.daysLeft', ':count Days Left', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2384', '1', 'eng', 'modules', 'billing.licenseExpireOn', 'License Expire On', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2385', '1', 'eng', 'modules', 'billing.noPlanAssigned', 'No Plan Assigned', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2386', '1', 'eng', 'modules', 'billing.expired', 'Expired', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2387', '1', 'eng', 'modules', 'billing.currentPlanType', 'Current Plan Type', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2388', '1', 'eng', 'modules', 'billing.offlineUploadFile', 'Please attach a file of your offline payment receipt', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2389', '1', 'eng', 'modules', 'billing.offlineDescriptionPlaceholder', 'Provide details of your offline payment', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2390', '1', 'eng', 'modules', 'billing.nextPaymentDate', 'Next Payment Date', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2391', '1', 'eng', 'modules', 'billing.remark', 'Remark', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2392', '1', 'eng', 'modules', 'billing.monthly', 'Monthly', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2393', '1', 'eng', 'modules', 'billing.annually', 'Annually', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2394', '1', 'eng', 'modules', 'billing.lifetimeAccess', 'Lifetime Access', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2395', '1', 'eng', 'modules', 'billing.billed', 'Billed', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2396', '1', 'eng', 'modules', 'billing.free', 'Free', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2397', '1', 'eng', 'modules', 'billing.billedTo', 'Billed To', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2398', '1', 'eng', 'modules', 'billing.paid', 'Paid', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2399', '1', 'eng', 'modules', 'billing.total', 'Total', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2400', '1', 'eng', 'modules', 'billing.paidVia', 'Paid Via', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2401', '1', 'eng', 'modules', 'billing.acceptOfflineRequest', 'Accept Offline Request', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2402', '1', 'eng', 'modules', 'billing.rejectOfflineRequest', 'Reject Offline Request', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2403', '1', 'eng', 'modules', 'billing.pickYourPlan', 'Pick Your Plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2404', '1', 'eng', 'modules', 'billing.noPaymentMethodSelected', 'No payment method selected.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2405', '1', 'eng', 'modules', 'billing.cancelImmediately', 'Cancel Immediately', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2406', '1', 'eng', 'modules', 'billing.endOfBillingCycle', 'End of Billing Cycle', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2407', '1', 'eng', 'modules', 'billing.expiringToday', 'Expiring Today', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2408', '1', 'eng', 'modules', 'billing.paymentReceipt', 'Payment Receipt', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2409', '1', 'eng', 'modules', 'billing.trial', 'Trial', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2410', '1', 'eng', 'modules', 'billing.default', 'Default', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2411', '1', 'eng', 'modules', 'billing.standard', 'Standard', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2412', '1', 'eng', 'modules', 'billing.lifetime', 'Lifetime', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2413', '1', 'eng', 'modules', 'billing.annual', 'Annual', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2414', '1', 'eng', 'modules', 'billing.payfast', 'PayFast', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2415', '1', 'eng', 'modules', 'billing.payfastLiveId', 'Payfast Live ID', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2416', '1', 'eng', 'modules', 'billing.payfastLiveKey', 'Payfast Live KEY', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2417', '1', 'eng', 'modules', 'billing.payfastLivePassphrase', 'Payfast Live Passphrase', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2418', '1', 'eng', 'modules', 'billing.payfastTestId', 'Test Payfast ID', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2419', '1', 'eng', 'modules', 'billing.payfastTestKey', 'Test Payfast KEY', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2420', '1', 'eng', 'modules', 'billing.payfastTestPassphrase', 'Test Payfast Passphrase', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2421', '1', 'eng', 'modules', 'billing.paystack', 'Paystack', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2422', '1', 'eng', 'modules', 'billing.popular', 'Popular', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2423', '1', 'eng', 'modules', 'billing.xendit', 'Xendit', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2424', '1', 'eng', 'modules', 'billing.perPlan', 'per plan', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2425', '1', 'eng', 'modules', 'billing.perDay', 'per day', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2426', '1', 'eng', 'modules', 'billing.unlimited', 'Unlimited', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2427', '1', 'eng', 'modules', 'billing.epay', 'Epay', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2428', '1', 'eng', 'modules', 'language.languageCode', 'Language Code', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2429', '1', 'eng', 'modules', 'language.languageName', 'Language Name', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2430', '1', 'eng', 'modules', 'language.active', 'Active', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2431', '1', 'eng', 'modules', 'language.rtl', 'RTL', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2432', '1', 'eng', 'modules', 'language.addLanguage', 'Add Language', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2433', '1', 'eng', 'modules', 'language.flagCode', 'Flag Code', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2434', '1', 'eng', 'modules', 'language.flagCodeHelp', 'Click here to get the flag code', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2435', '1', 'eng', 'modules', 'language.editLanguage', 'Edit Language', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2436', '1', 'eng', 'modules', 'language.deleteLanguage', 'Delete Language', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2437', '1', 'eng', 'modules', 'language.deleteLanguageMessage', 'Are you sure you want to delete the language?', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2438', '1', 'eng', 'modules', 'language.defaultLanguage', 'Default Language', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2439', '1', 'eng', 'modules', 'language.modifyDefaultLanguage', 'To modify the default language, please navigate to the', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2440', '1', 'eng', 'modules', 'language.currentLanguageDefault', 'The current language is set as the default.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2441', '1', 'eng', 'modules', 'waiterRequest.markCompleted', 'Mark Attended', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2442', '1', 'eng', 'modules', 'waiterRequest.doItLater', 'Do it Later', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2443', '1', 'eng', 'modules', 'waiterRequest.activeWaiterRequests', 'Active Waiter Requests', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2444', '1', 'eng', 'modules', 'waiterRequest.newWaiterRequests', 'New Waiter Request', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2445', '1', 'eng', 'modules', 'waiterRequest.newWaiterRequestForTable', 'New Waiter Request for Table - :name', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2446', '1', 'eng', 'modules', 'waiterRequest.activeWaiterRequestsCount', 'Active Waiter Requests', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2447', '1', 'eng', 'modules', 'waiterRequest.noWaiterRequest', 'No waiter request found in this area.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2448', '1', 'eng', 'modules', 'profile.profileInfo', 'Profile Information', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2449', '1', 'eng', 'modules', 'profile.updateProfileInfo', 'Update your account\'s profile information and email address.', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2450', '1', 'eng', 'modules', 'profile.photo', 'Photo', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2451', '1', 'eng', 'modules', 'profile.selectNewPhoto', 'Select A New Photo', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2452', '1', 'eng', 'modules', 'profile.removePhoto', 'Remove Photo', '2025-11-27 01:06:27', '2025-11-27 01:06:27'),
('2453', '1', 'eng', 'modules', 'profile.name', 'Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2454', '1', 'eng', 'modules', 'profile.currentPassword', 'Current Password', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2455', '1', 'eng', 'modules', 'profile.newPassword', 'New Password', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2456', '1', 'eng', 'modules', 'profile.confirmPassword', 'Confirm Password', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2457', '1', 'eng', 'modules', 'profile.ensureAccountSecure', 'Ensure your account is using a long, random password to stay secure.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2458', '1', 'eng', 'modules', 'profile.updatePassword', 'Update Password', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2459', '1', 'eng', 'modules', 'profile.twoFactorAuth', 'Two Factor Authentication', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2460', '1', 'eng', 'modules', 'profile.addSecurity', 'Add additional security to your account using two factor authentication.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2461', '1', 'eng', 'modules', 'profile.finishEnablingTwoFactorAuth', 'Finish enabling two factor authentication.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2462', '1', 'eng', 'modules', 'profile.notEnabledTwoFactorAuth', 'You have not enabled two factor authentication.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2463', '1', 'eng', 'modules', 'profile.enabledTwoFactorAuth', 'You have enabled two factor authentication.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2464', '1', 'eng', 'modules', 'profile.twoFactorAuthMessage', 'When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2465', '1', 'eng', 'modules', 'profile.finishEnablingTwoFactorAuthMessage', 'To finish enabling two factor authentication, scan the following QR code using your phone\'s authenticator application or enter the setup key and provide the generated OTP code.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2466', '1', 'eng', 'modules', 'profile.setupKey', 'Setup Key', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2467', '1', 'eng', 'modules', 'profile.recoveryCodesMessage', 'Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two factor authentication device is lost.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2468', '1', 'eng', 'modules', 'profile.regenerateRecoveryCodes', 'Regenerate Recovery Codes', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2469', '1', 'eng', 'modules', 'profile.showRecoveryCodes', 'Show Recovery Codes', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2470', '1', 'eng', 'modules', 'profile.deleteAccount', 'Delete Account', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2471', '1', 'eng', 'modules', 'profile.permanentlyDeleteAccount', 'Permanently delete your account.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2472', '1', 'eng', 'modules', 'profile.permanentlyDeleteAccountMessage', 'Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2473', '1', 'eng', 'modules', 'profile.areYouSureDeleteAccount', 'Are you sure you want to delete your account? Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2474', '1', 'eng', 'modules', 'profile.password', 'Password', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2475', '1', 'eng', 'modules', 'profile.browserSessions', 'Browser Sessions', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2476', '1', 'eng', 'modules', 'profile.browserSessionsDescription', 'Manage and log out your active sessions on other browsers and devices.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2477', '1', 'eng', 'modules', 'profile.browserSessionsContent', 'If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2478', '1', 'eng', 'modules', 'profile.unknown', 'Unknown', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2479', '1', 'eng', 'modules', 'profile.thisDevice', 'This Device', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2480', '1', 'eng', 'modules', 'profile.lastActive', 'Last Active', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2481', '1', 'eng', 'modules', 'profile.logOutOtherBrowserSessions', 'Log Out Other Browser Sessions', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2482', '1', 'eng', 'modules', 'profile.done', 'Done.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2483', '1', 'eng', 'modules', 'profile.confirmLogoutContent', 'Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2484', '1', 'eng', 'modules', 'profile.passwordConfirmationContent', 'For your security, please confirm your password to continue.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2485', '1', 'eng', 'modules', 'profile.confirm', 'Confirm', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2486', '1', 'eng', 'modules', 'profile.code', 'Code', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2487', '1', 'eng', 'modules', 'profile.recoveryCode', 'Recovery Code', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2488', '1', 'eng', 'modules', 'profile.useRecoveryCode', 'Use a recovery code', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2489', '1', 'eng', 'modules', 'profile.useAuthCode', 'Use an authentication code', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2490', '1', 'eng', 'modules', 'profile.login', 'Log In', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2491', '1', 'eng', 'modules', 'expenses.title', 'Expenses', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2492', '1', 'eng', 'modules', 'expenses.amount', 'Amount', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2493', '1', 'eng', 'modules', 'expenses.category', 'Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2494', '1', 'eng', 'modules', 'expenses.vendor', 'Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2495', '1', 'eng', 'modules', 'expenses.expenseDate', 'Expense Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2496', '1', 'eng', 'modules', 'expenses.paymentDate', 'Payment Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2497', '1', 'eng', 'modules', 'expenses.paymentDueDate', 'Due Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2498', '1', 'eng', 'modules', 'expenses.paymentMethod', 'Payment Method', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2499', '1', 'eng', 'modules', 'expenses.paymentStatus', 'Payment Status', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2500', '1', 'eng', 'modules', 'expenses.description', 'Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2501', '1', 'eng', 'modules', 'expenses.receipt', 'Receipt', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2502', '1', 'eng', 'modules', 'expenses.receiptUploadHelp', 'Supported formats: JPEG, PNG, JPG, GIF, SVG, PDF. Maximum size: 5MB. Recommended size: 600 × 400 pixels.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2503', '1', 'eng', 'modules', 'expenses.imageDimensionsTooSmall', 'Image dimensions are too small. Recommended minimum: :width × :height pixels. Current size: :currentWidth × :currentHeight pixels.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2504', '1', 'eng', 'modules', 'expenses.addExpense', 'Add Expense', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2505', '1', 'eng', 'modules', 'expenses.editExpense', 'Edit Expense', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2506', '1', 'eng', 'modules', 'expenses.deleteExpense', 'Delete Expense', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2507', '1', 'eng', 'modules', 'expenses.selectCategory', 'Select Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2508', '1', 'eng', 'modules', 'expenses.selectVendor', 'Select Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2509', '1', 'eng', 'modules', 'expenses.pending', 'Pending', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2510', '1', 'eng', 'modules', 'expenses.paid', 'Paid', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2511', '1', 'eng', 'modules', 'expenses.addCategory', 'Add Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2512', '1', 'eng', 'modules', 'expenses.addVendor', 'Add Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2513', '1', 'eng', 'modules', 'expenses.expenses', 'Expenses', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2514', '1', 'eng', 'modules', 'expenses.filterExpenseCategory', 'Filter by Expense Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2515', '1', 'eng', 'modules', 'expenses.filterPaymentMethod', 'Filter by Payment Method', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2516', '1', 'eng', 'modules', 'expenses.expensesCategory', 'Expenses Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2517', '1', 'eng', 'modules', 'expenses.expensesPaymentMethod', 'Payment Method', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2518', '1', 'eng', 'modules', 'expenses.filterVendor', 'Filter by Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2519', '1', 'eng', 'modules', 'expenses.expensesVendor', 'Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2520', '1', 'eng', 'modules', 'expenses.filterDateRange', 'Filter by Date Range', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2521', '1', 'eng', 'modules', 'expenses.expensesDateRange', 'Date Range', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2522', '1', 'eng', 'modules', 'expenses.startDate', 'Start Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2523', '1', 'eng', 'modules', 'expenses.endDate', 'End Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2524', '1', 'eng', 'modules', 'expenses.deleteExpensesMessage', 'Are you sure you want to delete the expense?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2525', '1', 'eng', 'modules', 'expenses.total_amount_spent', 'Total Amount Spent', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2526', '1', 'eng', 'modules', 'expenses.no_of_transaction', 'Number of Transaction', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2527', '1', 'eng', 'modules', 'expenses.total_expense', 'Total Expense', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2528', '1', 'eng', 'modules', 'expenses.percentage_of_total', 'Percentage of Total', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2529', '1', 'eng', 'modules', 'expenses.addExpenseCategory', 'Add Expense Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2530', '1', 'eng', 'modules', 'expenses.receiptPreview', 'Receipt Preview', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2531', '1', 'eng', 'modules', 'expenses.expenseDetails', 'Expense Details', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2532', '1', 'eng', 'modules', 'expenses.expenseTitle', 'Expense Title', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2533', '1', 'eng', 'modules', 'expenses.expenseCategory', 'Expense Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2534', '1', 'eng', 'modules', 'expenses.expenseAmount', 'Expense Amount', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2535', '1', 'eng', 'modules', 'expenses.expenseDescription', 'Expense Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2536', '1', 'eng', 'modules', 'expenses.totalPaymentDue', 'Total Payment Due', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2537', '1', 'eng', 'modules', 'expenses.lastDueDate', 'Last Due Date', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2538', '1', 'eng', 'modules', 'expenses.status.paid', 'Paid', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2539', '1', 'eng', 'modules', 'expenses.status.pending', 'Pending', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2540', '1', 'eng', 'modules', 'expenses.status.approved', 'Approved', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2541', '1', 'eng', 'modules', 'expenses.status.rejected', 'Rejected', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2542', '1', 'eng', 'modules', 'expenses.methods.cash', 'Cash', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2543', '1', 'eng', 'modules', 'expenses.methods.bank_transfer', 'Bank Transfer', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2544', '1', 'eng', 'modules', 'expenses.methods.credit_card', 'Credit Card', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2545', '1', 'eng', 'modules', 'expenses.methods.debit_card', 'Debit Card', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2546', '1', 'eng', 'modules', 'expenses.methods.check', 'Cheque', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2547', '1', 'eng', 'modules', 'expenses.methods.digital_wallet', 'Digital Wallet', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2548', '1', 'eng', 'modules', 'expenses.reports.outstandingPaymentReport', 'Outstanding Payment Report', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2549', '1', 'eng', 'modules', 'expenses.reports.vendorWiseExpensePaymentReport', 'Vendor Wise Expense Payment Report', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2550', '1', 'eng', 'modules', 'expenses.reports.expenseSummaryReport', 'Expense Summary Report', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2551', '1', 'eng', 'modules', 'expenses.reports.NoReportsFound', 'No reports Found', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2552', '1', 'eng', 'modules', 'expenses.reports.description', 'Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2553', '1', 'eng', 'modules', 'expenses.noReceiptAvailable', 'No receipt available.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2554', '1', 'eng', 'modules', 'expenses.editExpenseCategory', 'Edit Expense Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2555', '1', 'eng', 'modules', 'vendors.vendorName', 'Vendor Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2556', '1', 'eng', 'modules', 'vendors.vendors', 'Vendors', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2557', '1', 'eng', 'modules', 'vendors.addVendor', 'Add Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2558', '1', 'eng', 'modules', 'vendors.editVendor', 'Edit Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2559', '1', 'eng', 'modules', 'vendors.deleteVendor', 'Delete Vendor', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2560', '1', 'eng', 'modules', 'vendors.id', 'Id', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2561', '1', 'eng', 'modules', 'vendors.name', 'Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2562', '1', 'eng', 'modules', 'vendors.email', 'Email', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2563', '1', 'eng', 'modules', 'vendors.phone', 'Phone', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2564', '1', 'eng', 'modules', 'vendors.address', 'Address', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2565', '1', 'eng', 'modules', 'vendors.contactPerson', 'Contact Person', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2566', '1', 'eng', 'modules', 'vendors.actions', 'Actions', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2567', '1', 'eng', 'modules', 'vendors.deleteVendorMessage', 'Are you sure you want to delete Vendor ?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2568', '1', 'eng', 'modules', 'modifier.menuItems', 'Menu Items', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2569', '1', 'eng', 'modules', 'modifier.menuCategories', 'Menu Categories', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2570', '1', 'eng', 'modules', 'modifier.addItemModifier', 'Add Item Modifier', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2571', '1', 'eng', 'modules', 'modifier.editItemModifier', 'Edit Item Modifier', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2572', '1', 'eng', 'modules', 'modifier.isRequired', 'Is Required', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2573', '1', 'eng', 'modules', 'modifier.sortOrder', 'Sort Order', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2574', '1', 'eng', 'modules', 'modifier.addModifierGroup', 'Add Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2575', '1', 'eng', 'modules', 'modifier.menuItemName', 'Menu Item Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2576', '1', 'eng', 'modules', 'modifier.modifierName', 'Modifier Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2577', '1', 'eng', 'modules', 'modifier.modifierDescription', 'Modifier Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2578', '1', 'eng', 'modules', 'modifier.modifierPrice', 'Modifier Price', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2579', '1', 'eng', 'modules', 'modifier.modifierType', 'Modifier Type', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2580', '1', 'eng', 'modules', 'modifier.chooseModifierType', 'Choose Modifier Type', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2581', '1', 'eng', 'modules', 'modifier.modifierCategory', 'Modifier Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2582', '1', 'eng', 'modules', 'modifier.addModifierCategory', 'Add Modifier Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2583', '1', 'eng', 'modules', 'modifier.editModifierCategory', 'Edit Modifier Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2584', '1', 'eng', 'modules', 'modifier.deleteModifierCategory', 'Delete Modifier Category', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2585', '1', 'eng', 'modules', 'modifier.modifierCategoryName', 'Modifier Category Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2586', '1', 'eng', 'modules', 'modifier.modifierCategoryDescription', 'Modifier Category Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2587', '1', 'eng', 'modules', 'modifier.deleteModifierMessage', 'Are you sure you want to delete the modifier?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2588', '1', 'eng', 'modules', 'modifier.deleteModifierCategoryMessage', 'Are you sure you want to delete the modifier category?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2589', '1', 'eng', 'modules', 'modifier.modifierHelp', 'Fill in the details below to add a new modifier.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2590', '1', 'eng', 'modules', 'modifier.modifierCategoryHelp', 'Fill in the details below to add a new modifier category.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2591', '1', 'eng', 'modules', 'modifier.deleteModifierGroup', 'Delete Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2592', '1', 'eng', 'modules', 'modifier.deleteModifierGroupMessage', 'Are you sure you want to delete the modifier group?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2593', '1', 'eng', 'modules', 'modifier.updateItemModifier', 'Update Item Modifier', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2594', '1', 'eng', 'modules', 'modifier.deleteItemModifier', 'Delete Item Modifier', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2595', '1', 'eng', 'modules', 'modifier.deleteItemModifierMessage', 'Are you sure you want to delete the item modifier?', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2596', '1', 'eng', 'modules', 'modifier.updateModifierGroup', 'Update Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2597', '1', 'eng', 'modules', 'modifier.editModifierGroup', 'Edit Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2598', '1', 'eng', 'modules', 'modifier.addModifierOption', 'Add Modifier Option', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2599', '1', 'eng', 'modules', 'modifier.modifierGroup', 'Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2600', '1', 'eng', 'modules', 'modifier.options', 'Options', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2601', '1', 'eng', 'modules', 'modifier.name', 'name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2602', '1', 'eng', 'modules', 'modifier.description', 'Description', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2603', '1', 'eng', 'modules', 'modifier.isAvailable', 'Is Available', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2604', '1', 'eng', 'modules', 'modifier.selectMenuItem', 'Select Menu Item', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2605', '1', 'eng', 'modules', 'modifier.modifierOptions', 'Modifier Options', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2606', '1', 'eng', 'modules', 'modifier.price', 'Price', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2607', '1', 'eng', 'modules', 'modifier.locations', 'Locations', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2608', '1', 'eng', 'modules', 'modifier.addOn', 'Add Modifiers', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2609', '1', 'eng', 'modules', 'modifier.optionName', 'Option Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2610', '1', 'eng', 'modules', 'modifier.groupName', 'Group Name', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2611', '1', 'eng', 'modules', 'modifier.required', 'Required', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2612', '1', 'eng', 'modules', 'modifier.optional', 'Optional', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2613', '1', 'eng', 'modules', 'modifier.itemModifiers', 'Item Modifiers', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2614', '1', 'eng', 'modules', 'modifier.noMenuItemsFound', 'No menu item found.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2615', '1', 'eng', 'modules', 'modifier.allowMultipleSelection', 'Allow Multiple Selection', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2616', '1', 'eng', 'modules', 'modifier.allowMultipleSelectionDescription', 'Allow users to select multiple options', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2617', '1', 'eng', 'modules', 'modifier.selectModifierGroup', 'Select Modifier Group', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2618', '1', 'eng', 'modules', 'modifier.variations', 'Variations', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2619', '1', 'eng', 'modules', 'modifier.addOption', 'Add Option', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2620', '1', 'eng', 'modules', 'modifier.variationOptions', 'Variation Options', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2621', '1', 'eng', 'modules', 'modifier.selectMenuItemsHelpText', 'Select menu items to which this modifier group should be applied', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2622', '1', 'eng', 'modules', 'modifier.showTranslations', 'Show Translations', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2623', '1', 'eng', 'modules', 'modifier.selectVariation', 'Select Variation', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2624', '1', 'eng', 'modules', 'modifier.applyToBaseItem', 'Apply To Base Item', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2625', '1', 'eng', 'modules', 'modifier.variationDescription', 'Select Variation to which this modifier group should be applied', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2626', '1', 'eng', 'modules', 'modifier.addModifierGroupDescription', 'Fill in the details below to add a new modifier group.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2627', '1', 'eng', 'modules', 'modifier.editModifierGroupDescription', 'Fill in the details below to Edit modifier group.', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2628', '1', 'eng', 'modules', 'modifier.defaultPrice', 'Default Price', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2629', '1', 'eng', 'modules', 'report.totalSales', 'Total Sales', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2630', '1', 'eng', 'modules', 'report.orders', 'Orders', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2631', '1', 'eng', 'modules', 'report.cashPayments', 'Cash Payments', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2632', '1', 'eng', 'modules', 'report.digitalPayments', 'Digital Payments', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2633', '1', 'eng', 'modules', 'report.averageOrderValue', 'Average Order Value', '2025-11-27 01:06:28', '2025-11-27 01:06:28'),
('2634', '1', 'eng', 'modules', 'report.totalRevenue', 'Total Revenue', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2635', '1', 'eng', 'modules', 'report.imSales', 'Item Sales', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2636', '1', 'eng', 'modules', 'report.quantitySold', 'Quantity Sold', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2637', '1', 'eng', 'modules', 'report.topSellingItems', 'Top Selling Items', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2638', '1', 'eng', 'modules', 'report.sellingPrice', 'Selling Price', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2639', '1', 'eng', 'modules', 'report.salesByCategory', 'Sales By Category', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2640', '1', 'eng', 'modules', 'report.salesByPaymentMethod', 'Sales By Payment Method', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2641', '1', 'eng', 'modules', 'report.orderType', 'Order Type', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2642', '1', 'eng', 'modules', 'report.salesByTime', 'Sales By Time', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2643', '1', 'eng', 'modules', 'report.salesByDay', 'Sales By Day', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2644', '1', 'eng', 'modules', 'report.salesByMonth', 'Sales By Month', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2645', '1', 'eng', 'modules', 'report.salesByYear', 'Sales By Year', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2646', '1', 'eng', 'modules', 'report.totalTaxes', 'Total Taxes', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2647', '1', 'eng', 'modules', 'report.totalDiscounts', 'Total Discounts', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2648', '1', 'eng', 'modules', 'report.averageItems', 'Average Items Per Order', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2649', '1', 'eng', 'modules', 'report.grossSales', 'Gross Sales', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2650', '1', 'eng', 'modules', 'report.netSales', 'Net Sales', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2651', '1', 'eng', 'modules', 'report.totalRefunds', 'Total Refunds', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2652', '1', 'eng', 'modules', 'report.pendingPayments', 'Pending Payments', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2653', '1', 'eng', 'modules', 'report.canceledOrders', 'Canceled Orders', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2654', '1', 'eng', 'modules', 'report.totalOrders', 'Total Orders', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2655', '1', 'eng', 'modules', 'report.totalQuantitySold', 'Total Quantity Sold', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2656', '1', 'eng', 'modules', 'report.sumOfTotalRevenue', 'Sum of Total Revenue', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2657', '1', 'eng', 'modules', 'report.totalCharges', 'Total Charges', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2658', '1', 'eng', 'modules', 'report.itemReportMessage', 'View detailed sales and performance of items', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2659', '1', 'eng', 'modules', 'report.salesReportMessage', 'Check and track your restaurant\'s earnings', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2660', '1', 'eng', 'modules', 'report.categoryReportMessage', 'See sales by category to understand performance', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2661', '1', 'eng', 'modules', 'report.printLogMessage', 'View print job history and status from :startDate to :endDate', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2662', '1', 'eng', 'modules', 'report.totalPrintJobs', 'Total Print Jobs', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2663', '1', 'eng', 'modules', 'report.pendingJobs', 'Pending Jobs', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2664', '1', 'eng', 'modules', 'report.completedJobs', 'Completed Jobs', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2665', '1', 'eng', 'modules', 'report.failedJobs', 'Failed Jobs', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2666', '1', 'eng', 'modules', 'report.printerStatistics', 'Printer Statistics', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2667', '1', 'eng', 'modules', 'report.printJobDetails', 'Print Job Details', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2668', '1', 'eng', 'modules', 'report.basicInformation', 'Basic Information', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2669', '1', 'eng', 'modules', 'report.printContent', 'Print Content', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2670', '1', 'eng', 'modules', 'report.noContentAvailable', 'No content available', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2671', '1', 'eng', 'modules', 'report.retryPrint', 'Retry Print', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2672', '1', 'eng', 'modules', 'report.printJobNotFound', 'Print Job Not Found', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2673', '1', 'eng', 'modules', 'report.printJobNotFoundMessage', 'The requested print job could not be found or you do not have permission to view it.', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2674', '1', 'eng', 'modules', 'report.paymentMethods', 'Payment Methods', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2675', '1', 'eng', 'modules', 'report.traditionalPayments', 'Traditional Payments', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2676', '1', 'eng', 'modules', 'report.paymentGateways', 'Payment Gateways', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2677', '1', 'eng', 'modules', 'report.additionalAmounts', 'Additional Amounts', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2678', '1', 'eng', 'modules', 'report.salesDataFor', 'Sales Data For', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2679', '1', 'eng', 'modules', 'report.timePeriod', 'Time Period', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2680', '1', 'eng', 'modules', 'report.timePeriodEachDay', 'Time Period Each Day', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2681', '1', 'eng', 'modules', 'report.salesDataFrom', 'Sales Data From', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2682', '1', 'eng', 'modules', 'report.deliveryApp', 'Delivery App', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2683', '1', 'eng', 'modules', 'report.deliveryAppReportMessage', 'Track orders and commissions from delivery platforms', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2684', '1', 'eng', 'modules', 'report.allDeliveryApps', 'All Delivery Apps', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2685', '1', 'eng', 'modules', 'report.directDelivery', 'Direct Delivery', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2686', '1', 'eng', 'modules', 'report.totalDeliveryFees', 'Total Delivery Fees', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2687', '1', 'eng', 'modules', 'report.totalCommission', 'Total Commission', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2688', '1', 'eng', 'modules', 'report.avgOrderValue', 'Avg Order Value', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2689', '1', 'eng', 'modules', 'report.commissionRate', 'Commission Rate', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2690', '1', 'eng', 'modules', 'report.perOrder', 'per order', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2691', '1', 'eng', 'modules', 'report.noDeliveryAppOrders', 'No delivery app orders found for the selected period', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2692', '1', 'eng', 'modules', 'report.netRevenue', 'Net Revenue', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2693', '1', 'eng', 'modules', 'report.salesDataTo', 'Sales Data To', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2694', '1', 'eng', 'modules', 'report.timePeriodEachMonth', 'Time Period Each Month', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2695', '1', 'eng', 'modules', 'report.timePeriodEachYear', 'Time Period Each Year', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2696', '1', 'eng', 'modules', 'report.taxDetails', 'Tax Details', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2697', '1', 'eng', 'modules', 'report.taxMode', 'Tax Mode', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2698', '1', 'eng', 'modules', 'report.totalTaxCollection', 'Total Tax Collection', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2699', '1', 'eng', 'modules', 'report.activeTaxes', 'Active Taxes', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2700', '1', 'eng', 'modules', 'report.mode', 'Mode', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2701', '1', 'eng', 'modules', 'report.taxBreakdownFor', 'Tax Breakdown For', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2702', '1', 'eng', 'modules', 'report.itemLevelTaxBreakdown', 'Item Level Tax Breakdown', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2703', '1', 'eng', 'modules', 'report.orderLevelTaxBreakdown', 'Order Level Tax Breakdown', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2704', '1', 'eng', 'modules', 'report.fromActualBreakdown', 'From Actual Breakdown', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2705', '1', 'eng', 'modules', 'report.taxBreakdown', 'Tax Breakdown', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2706', '1', 'eng', 'modules', 'report.taxRate', 'Tax Rate', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2707', '1', 'eng', 'modules', 'report.taxAmount', 'Tax Amount', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2708', '1', 'eng', 'modules', 'report.taxPercentage', 'Tax Percentage', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2709', '1', 'eng', 'modules', 'report.ordersWithTax', 'Orders with Tax', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2710', '1', 'eng', 'modules', 'report.viewTaxDetails', 'View Tax Details', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2711', '1', 'eng', 'modules', 'report.viewItemTaxBreakdown', 'View Item Tax Breakdown', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2712', '1', 'eng', 'modules', 'report.totalTaxAmount', 'Total Tax Amount', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2713', '1', 'eng', 'modules', 'report.outstandingPayments', 'Outstanding Payments', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2714', '1', 'eng', 'modules', 'report.outstandingOrders', 'Outstanding Orders', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2715', '1', 'eng', 'modules', 'report.averageOutstanding', 'Average Outstanding', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2716', '1', 'eng', 'modules', 'report.cancelledOrderReportDescription', 'Audit report for cancelled orders showing cancellation reasons and cancelled by', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2717', '1', 'eng', 'modules', 'report.totalCancelledOrders', 'Total Cancelled Orders', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2718', '1', 'eng', 'modules', 'report.totalCancelledAmount', 'Total Cancelled Amount', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2719', '1', 'eng', 'modules', 'report.topCancelledReasons', 'Top Cancelled Reasons', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2720', '1', 'eng', 'modules', 'report.noDataAvailable', 'No data available', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2721', '1', 'eng', 'modules', 'report.allCancellationReasons', 'All Cancellation Reasons', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2722', '1', 'eng', 'modules', 'report.allUsers', 'All Users', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2723', '1', 'eng', 'modules', 'report.orderNumber', 'Order Number', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2724', '1', 'eng', 'modules', 'report.orderDate', 'Order Date', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2725', '1', 'eng', 'modules', 'report.cancelledDate', 'Cancelled Date', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2726', '1', 'eng', 'modules', 'report.customer', 'Customer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2727', '1', 'eng', 'modules', 'report.tableWaiter', 'Table/Waiter', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2728', '1', 'eng', 'modules', 'report.cancellationReason', 'Cancellation Reason', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2729', '1', 'eng', 'modules', 'report.cancelledBy', 'Cancelled By', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2730', '1', 'eng', 'modules', 'report.orderTotal', 'Order Total', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2731', '1', 'eng', 'modules', 'report.walkIn', 'Walk-in', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2732', '1', 'eng', 'modules', 'report.table', 'Table', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2733', '1', 'eng', 'modules', 'report.waiter', 'Waiter', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2734', '1', 'eng', 'modules', 'report.notAvailable', 'N/A', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2735', '1', 'eng', 'modules', 'report.noCancelledOrdersFound', 'No cancelled orders found for the selected filters.', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2736', '1', 'eng', 'modules', 'report.total', 'Total', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2737', '1', 'eng', 'modules', 'report.removedKotItemReportDescription', 'Audit report for removed/cancelled KOT items showing waiter who cancelled, cancellation reasons, and other details', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2738', '1', 'eng', 'modules', 'report.totalRemovedItems', 'Total Removed Items', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2739', '1', 'eng', 'modules', 'report.totalRemovedAmount', 'Total Removed Amount', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2740', '1', 'eng', 'modules', 'report.topCancellationReasons', 'Top Cancellation Reasons', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2741', '1', 'eng', 'modules', 'report.topWaiters', 'Top Waiters', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2742', '1', 'eng', 'modules', 'report.items', 'items', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2743', '1', 'eng', 'modules', 'report.export', 'Export', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2744', '1', 'eng', 'modules', 'report.kotNumber', 'KOT Number', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2745', '1', 'eng', 'modules', 'report.removedBy', 'Removed By', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2746', '1', 'eng', 'modules', 'report.itemName', 'Item Name', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2747', '1', 'eng', 'modules', 'report.quantity', 'Quantity', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2748', '1', 'eng', 'modules', 'report.totalPrice', 'Total Price', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2749', '1', 'eng', 'modules', 'report.removedDate', 'Removed Date', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2750', '1', 'eng', 'modules', 'report.noRemovedKotItemsFound', 'No removed KOT items found for the selected filters.', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2751', '1', 'eng', 'modules', 'kot.kitchen_order_ticket', 'KITCHEN ORDER TICKET', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2752', '1', 'eng', 'modules', 'kot.order_number', 'Order # :number', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2753', '1', 'eng', 'modules', 'kot.kot_number', 'KOT # :number', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2754', '1', 'eng', 'modules', 'kot.date', 'Date: :date', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2755', '1', 'eng', 'modules', 'kot.time', 'Time: :time', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2756', '1', 'eng', 'modules', 'kot.item', 'Item', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2757', '1', 'eng', 'modules', 'kot.qty', 'Qty', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2758', '1', 'eng', 'modules', 'kot.special_instructions', 'Special Instructions:', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2759', '1', 'eng', 'modules', 'kot.print_success', 'Printed Successfully!', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2760', '1', 'eng', 'modules', 'kot.print_failed', 'Print Failed! :error', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2761', '1', 'eng', 'modules', 'printerSetting.browserPopupPrint', 'Browser Popup Print', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2762', '1', 'eng', 'modules', 'printerSetting.directPrint', 'Direct Print', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2763', '1', 'eng', 'modules', 'printerSetting.title', 'Title (To identify printer easily)', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2764', '1', 'eng', 'modules', 'printerSetting.printChoice', 'Printing Choice', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2765', '1', 'eng', 'modules', 'printerSetting.printFormat', 'Print Format', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2766', '1', 'eng', 'modules', 'printerSetting.noAutoKotPrint', 'No Auto KOT Print', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2767', '1', 'eng', 'modules', 'printerSetting.thermal56mm', 'Thermal 56mm', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2768', '1', 'eng', 'modules', 'printerSetting.thermal80mm', 'Thermal 80mm', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2769', '1', 'eng', 'modules', 'printerSetting.invoiceQrCode', 'Invoice QR Code', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2770', '1', 'eng', 'modules', 'printerSetting.disable', 'Disable', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2771', '1', 'eng', 'modules', 'printerSetting.regularQrCode', 'Regular QR Code', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2772', '1', 'eng', 'modules', 'printerSetting.printerType', 'Printer Type', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2773', '1', 'eng', 'modules', 'printerSetting.networkPrinter', 'Network Printer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2774', '1', 'eng', 'modules', 'printerSetting.usbPrinter', 'USB Printer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2775', '1', 'eng', 'modules', 'printerSetting.charactersPerLine', 'Characters Per Line', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2776', '1', 'eng', 'modules', 'printerSetting.printerIPAddress', 'Printer IP Address', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2777', '1', 'eng', 'modules', 'printerSetting.printerPortAddress', 'Printer Port Address', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2778', '1', 'eng', 'modules', 'printerSetting.shareName', 'Printer Name', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2779', '1', 'eng', 'modules', 'printerSetting.openCashDrawerWhenPrintingInvoice', 'Open Cash Drawer When Printing Invoice', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2780', '1', 'eng', 'modules', 'printerSetting.yes', 'Yes', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2781', '1', 'eng', 'modules', 'printerSetting.no', 'No', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2782', '1', 'eng', 'modules', 'printerSetting.ipv4Address', 'IPv4 Address', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2783', '1', 'eng', 'modules', 'printerSetting.thermalPrinter', 'Thermal Printer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2784', '1', 'eng', 'modules', 'printerSetting.nonThermalPrinter', 'Non Thermal Printer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2785', '1', 'eng', 'modules', 'printerSetting.name', 'Printer Name', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2786', '1', 'eng', 'modules', 'printerSetting.printingChoice', 'Printing Choice', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2787', '1', 'eng', 'modules', 'printerSetting.printType', 'Print Type', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2788', '1', 'eng', 'modules', 'printerSetting.image', 'Image', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2789', '1', 'eng', 'modules', 'printerSetting.pdf', 'PDF', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2790', '1', 'eng', 'modules', 'printerSetting.printTypeDescription', 'Select the format for generating print files. Image format is recommended for faster processing.', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2791', '1', 'eng', 'modules', 'printerSetting.ipAddress', 'IP Address', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2792', '1', 'eng', 'modules', 'printerSetting.port', 'Port', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2793', '1', 'eng', 'modules', 'printerSetting.action', 'Actions', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2794', '1', 'eng', 'modules', 'printerSetting.deletePritnerConfirm', 'Are you sure you want to delete this printer?', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2795', '1', 'eng', 'modules', 'printerSetting.deletePrinter', 'Delete Printer', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2796', '1', 'eng', 'modules', 'printerSetting.isThermal', 'Is Thermal', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2797', '1', 'eng', 'modules', 'printerSetting.printer_offline', 'Printer is offline', '2025-11-27 01:06:29', '2025-11-27 01:06:29'),
('2798', '1', 'eng', 'modules', 'printerSetting.printer_online', 'Printer is online', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2799', '1', 'eng', 'modules', 'printerSetting.printer_not_found', 'Printer not found', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2800', '1', 'eng', 'modules', 'printerSetting.kotSelection', 'Select Kitchen', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2801', '1', 'eng', 'modules', 'printerSetting.orderSelection', 'Select Pos Terminal', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2802', '1', 'eng', 'modules', 'printerSetting.selectedKitchens', 'Selected Kitchens', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2803', '1', 'eng', 'modules', 'printerSetting.selectedPosTerminal', 'Selected Pos Terminal', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2804', '1', 'eng', 'modules', 'printerSetting.addPrinter', 'Add Printer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2805', '1', 'eng', 'modules', 'printerSetting.isDefault', 'Is Default', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2806', '1', 'eng', 'modules', 'printerSetting.paymentGateways', 'Payment Gateways', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2807', '1', 'eng', 'modules', 'printerSetting.additionalAmounts', 'Additional Amounts', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2808', '1', 'eng', 'modules', 'printerSetting.network', 'Network', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2809', '1', 'eng', 'modules', 'printerSetting.windows', 'Windows', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2810', '1', 'eng', 'modules', 'printerSetting.kitchens', 'Kitchens', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2811', '1', 'eng', 'modules', 'printerSetting.orders', 'Orders', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2812', '1', 'eng', 'modules', 'printerSetting.default', 'Default', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2813', '1', 'eng', 'modules', 'printerSetting.select', 'Select', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2814', '1', 'eng', 'modules', 'printerSetting.isActive', 'Is Active', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2815', '1', 'eng', 'modules', 'printerSetting.thermal112mm', 'Thermal 112mm', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2816', '1', 'eng', 'modules', 'printerSetting.traditionalPayments', 'Traditional Payments', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2817', '1', 'eng', 'modules', 'printerSetting.salesDataFor', 'Data for', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2818', '1', 'eng', 'modules', 'printerSetting.timePeriod', 'Time period:', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2819', '1', 'eng', 'modules', 'printerSetting.salesDataFrom', 'Data from', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2820', '1', 'eng', 'modules', 'printerSetting.timePeriodEachDay', 'Time period each day:', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2821', '1', 'eng', 'modules', 'printerSetting.connected', 'Connected', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2822', '1', 'eng', 'modules', 'printerSetting.disconnected', 'Disconnected', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2823', '1', 'eng', 'modules', 'printerSetting.desktopAppConnection', 'Desktop App Connection', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2824', '1', 'eng', 'modules', 'printerSetting.domainUrl', 'Domain URL', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2825', '1', 'eng', 'modules', 'printerSetting.branchKey', 'API Key', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2826', '1', 'eng', 'modules', 'printerSetting.instructions', 'Instructions', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2827', '1', 'eng', 'modules', 'printerSetting.instruction1', 'Download and install the desktop app on your computer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2828', '1', 'eng', 'modules', 'printerSetting.instruction2', 'Open the desktop app and go to settings', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2829', '1', 'eng', 'modules', 'printerSetting.instruction3', 'Enter the Domain URL and Branch Key shown above', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2830', '1', 'eng', 'modules', 'printerSetting.instruction4', 'Click connect to establish the connection', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2831', '1', 'eng', 'modules', 'printerSetting.assigned', 'Assigned', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2832', '1', 'eng', 'modules', 'printerSetting.idle', 'Idle', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2833', '1', 'eng', 'modules', 'printerSetting.selectIdleKitchens', 'Select only idle (unassigned) kitchens to assign to this printer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2834', '1', 'eng', 'modules', 'printerSetting.selectIdlePosTerminals', 'Select only idle (unassigned) POS terminals to assign to this printer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2835', '1', 'eng', 'modules', 'printerSetting.currentlyAssigned', 'Currently Assigned', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2836', '1', 'eng', 'modules', 'printerSetting.selectKitchensForPrinter', 'Select kitchens to assign to this printer (currently assigned ones are pre-selected)', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2837', '1', 'eng', 'modules', 'printerSetting.selectPosTerminalsForPrinter', 'Select POS terminals to assign to this printer (currently assigned ones are pre-selected)', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2838', '1', 'eng', 'modules', 'printerSetting.shareNameDescription', 'Please enter the exact printer name showing on your Desktop', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2839', '1', 'eng', 'modules', 'printerSetting.details', 'Details', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2840', '1', 'eng', 'modules', 'printerSetting.downloadDesktopApp', 'Download Desktop App', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2841', '1', 'eng', 'modules', 'printerSetting.downloadNow', 'Download Now', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2842', '1', 'eng', 'modules', 'printerSetting.desktopAppRequired', 'Desktop App Required', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2843', '1', 'eng', 'modules', 'printerSetting.directPrintDesktopAppNote', 'For direct printing to work, you need to have the desktop app running in the background on your computer. The desktop app acts as a bridge between your web application and the physical printer.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2844', '1', 'eng', 'modules', 'printerSetting.downloadDesktopAppWindows', 'Download the desktop app for Windows to enable direct printing', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2845', '1', 'eng', 'modules', 'printerSetting.downloadDesktopAppMac', 'Download the desktop app for macOS to enable direct printing', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2846', '1', 'eng', 'modules', 'printerSetting.downloadForWindows', 'Download for Windows', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2847', '1', 'eng', 'modules', 'printerSetting.downloadForMac', 'Download for macOS', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2848', '1', 'eng', 'modules', 'printerSetting.yourDevice', 'Your Device', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2849', '1', 'eng', 'modules', 'printerSetting.resetBranchKey', 'Reset Branch Key', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2850', '1', 'eng', 'modules', 'printerSetting.confirmResetBranchKey', 'Confirm Reset Branch Key', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2851', '1', 'eng', 'modules', 'printerSetting.confirmResetBranchKeyDescription', 'Are you sure you want to reset the branch key? This action cannot be undone.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2852', '1', 'eng', 'modules', 'moduleLicenseStatus.moduleLicenseStatus', 'Module License Status', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2853', '1', 'eng', 'modules', 'moduleLicenseStatus.licensed', 'Licensed', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2854', '1', 'eng', 'modules', 'moduleLicenseStatus.verificationRequired', 'Verification Required', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2855', '1', 'eng', 'modules', 'moduleLicenseStatus.notActivated', 'Not Activated', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2856', '1', 'eng', 'modules', 'moduleLicenseStatus.supportExpired', 'Support Expired', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2857', '1', 'eng', 'modules', 'moduleLicenseStatus.supportUntil', 'Support Until', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2858', '1', 'eng', 'modules', 'moduleLicenseStatus.supportExpiredMessage', 'Support expired on', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2859', '1', 'eng', 'modules', 'moduleLicenseStatus.supportUntilMessage', 'Support until', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2860', '1', 'eng', 'pagination', 'previous', '&laquo; Previous', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2861', '1', 'eng', 'pagination', 'next', 'Next &raquo;', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2862', '1', 'eng', 'passwords', 'reset', 'Your password has been reset.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2863', '1', 'eng', 'passwords', 'sent', 'We have emailed your password reset link.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2864', '1', 'eng', 'passwords', 'throttled', 'Please wait before retrying.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2865', '1', 'eng', 'passwords', 'token', 'This password reset token is invalid.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2866', '1', 'eng', 'passwords', 'user', 'We can\'t find a user with that email address.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2867', '1', 'eng', 'passwords', 'reset_subject', 'Reset Password Notification - :app_name', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2868', '1', 'eng', 'passwords', 'reset_line1', 'You are receiving this email because we received a password reset request for your account.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2869', '1', 'eng', 'passwords', 'reset_line2', 'Click the button below to reset your password:', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2870', '1', 'eng', 'passwords', 'reset_action', 'Reset Password', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2871', '1', 'eng', 'passwords', 'reset_line3', 'This password reset link will expire in :count minutes.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2872', '1', 'eng', 'passwords', 'reset_line4', 'If you did not request a password reset, no further action is required.', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2873', '1', 'eng', 'permissions', 'permissions.Create Menu', 'Create Menu', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2874', '1', 'eng', 'permissions', 'permissions.Show Menu', 'Show Menu', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2875', '1', 'eng', 'permissions', 'permissions.Update Menu', 'Update Menu', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2876', '1', 'eng', 'permissions', 'permissions.Delete Menu', 'Delete Menu', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2877', '1', 'eng', 'permissions', 'permissions.Create Menu Item', 'Create Menu Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2878', '1', 'eng', 'permissions', 'permissions.Show Menu Item', 'Show Menu Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2879', '1', 'eng', 'permissions', 'permissions.Update Menu Item', 'Update Menu Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2880', '1', 'eng', 'permissions', 'permissions.Delete Menu Item', 'Delete Menu Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2881', '1', 'eng', 'permissions', 'permissions.Create Item Category', 'Create Item Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2882', '1', 'eng', 'permissions', 'permissions.Show Item Category', 'Show Item Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2883', '1', 'eng', 'permissions', 'permissions.Update Item Category', 'Update Item Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2884', '1', 'eng', 'permissions', 'permissions.Delete Item Category', 'Delete Item Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2885', '1', 'eng', 'permissions', 'permissions.Create Area', 'Create Area', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2886', '1', 'eng', 'permissions', 'permissions.Show Area', 'Show Area', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2887', '1', 'eng', 'permissions', 'permissions.Update Area', 'Update Area', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2888', '1', 'eng', 'permissions', 'permissions.Delete Area', 'Delete Area', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2889', '1', 'eng', 'permissions', 'permissions.Create Table', 'Create Table', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2890', '1', 'eng', 'permissions', 'permissions.Show Table', 'Show Table', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2891', '1', 'eng', 'permissions', 'permissions.Update Table', 'Update Table', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2892', '1', 'eng', 'permissions', 'permissions.Delete Table', 'Delete Table', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2893', '1', 'eng', 'permissions', 'permissions.Create Reservation', 'Create Reservation', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2894', '1', 'eng', 'permissions', 'permissions.Show Reservation', 'Show Reservation', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2895', '1', 'eng', 'permissions', 'permissions.Update Reservation', 'Update Reservation', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2896', '1', 'eng', 'permissions', 'permissions.Delete Reservation', 'Delete Reservation', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2897', '1', 'eng', 'permissions', 'permissions.Manage KOT', 'Manage KOT', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2898', '1', 'eng', 'permissions', 'permissions.Create Order', 'Create Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2899', '1', 'eng', 'permissions', 'permissions.Show Order', 'Show Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2900', '1', 'eng', 'permissions', 'permissions.Update Order', 'Update Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2901', '1', 'eng', 'permissions', 'permissions.Delete Order', 'Delete Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2902', '1', 'eng', 'permissions', 'permissions.Create Customer', 'Create Customer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2903', '1', 'eng', 'permissions', 'permissions.Show Customer', 'Show Customer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2904', '1', 'eng', 'permissions', 'permissions.Update Customer', 'Update Customer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2905', '1', 'eng', 'permissions', 'permissions.Delete Customer', 'Delete Customer', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2906', '1', 'eng', 'permissions', 'permissions.Create Staff Member', 'Create Staff Member', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2907', '1', 'eng', 'permissions', 'permissions.Show Staff Member', 'Show Staff Member', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2908', '1', 'eng', 'permissions', 'permissions.Update Staff Member', 'Update Staff Member', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2909', '1', 'eng', 'permissions', 'permissions.Delete Staff Member', 'Delete Staff Member', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2910', '1', 'eng', 'permissions', 'permissions.Create Delivery Executive', 'Create Delivery Executive', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2911', '1', 'eng', 'permissions', 'permissions.Show Delivery Executive', 'Show Delivery Executive', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2912', '1', 'eng', 'permissions', 'permissions.Update Delivery Executive', 'Update Delivery Executive', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2913', '1', 'eng', 'permissions', 'permissions.Delete Delivery Executive', 'Delete Delivery Executive', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2914', '1', 'eng', 'permissions', 'permissions.Show Payments', 'Show Payments', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2915', '1', 'eng', 'permissions', 'permissions.Show Reports', 'Show Reports', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2916', '1', 'eng', 'permissions', 'permissions.Manage Settings', 'Manage Settings', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2917', '1', 'eng', 'permissions', 'permissions.Manage Waiter Request', 'Manage Waiter Request', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2918', '1', 'eng', 'permissions', 'permissions.Create Expense', 'Create Expenses', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2919', '1', 'eng', 'permissions', 'permissions.Show Expense', 'Show Expenses', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2920', '1', 'eng', 'permissions', 'permissions.Update Expense', 'Update Expenses', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2921', '1', 'eng', 'permissions', 'permissions.Delete Expense', 'Delete Expenses', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2922', '1', 'eng', 'permissions', 'permissions.Create Vendor', 'Create Vendor', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2923', '1', 'eng', 'permissions', 'permissions.Show Vendor', 'Show Vendor', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2924', '1', 'eng', 'permissions', 'permissions.Update Vendor', 'Update Vendor', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2925', '1', 'eng', 'permissions', 'permissions.Delete Vendor', 'Delete Vendor', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2926', '1', 'eng', 'permissions', 'permissions.Create Inventory Item', 'Create Inventory Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2927', '1', 'eng', 'permissions', 'permissions.Show Inventory Item', 'Show Inventory Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2928', '1', 'eng', 'permissions', 'permissions.Update Inventory Item', 'Update Inventory Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2929', '1', 'eng', 'permissions', 'permissions.Delete Inventory Item', 'Delete Inventory Item', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2930', '1', 'eng', 'permissions', 'permissions.Create Inventory Movement', 'Create Inventory Movement', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2931', '1', 'eng', 'permissions', 'permissions.Show Inventory Movement', 'Show Inventory Movement', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2932', '1', 'eng', 'permissions', 'permissions.Update Inventory Movement', 'Update Inventory Movement', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2933', '1', 'eng', 'permissions', 'permissions.Delete Inventory Movement', 'Delete Inventory Movement', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2934', '1', 'eng', 'permissions', 'permissions.Create Unit', 'Create Unit', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2935', '1', 'eng', 'permissions', 'permissions.Show Unit', 'Show Unit', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2936', '1', 'eng', 'permissions', 'permissions.Update Unit', 'Update Unit', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2937', '1', 'eng', 'permissions', 'permissions.Delete Unit', 'Delete Unit', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2938', '1', 'eng', 'permissions', 'permissions.Create Recipe', 'Create Recipe', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2939', '1', 'eng', 'permissions', 'permissions.Show Recipe', 'Show Recipe', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2940', '1', 'eng', 'permissions', 'permissions.Update Recipe', 'Update Recipe', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2941', '1', 'eng', 'permissions', 'permissions.Delete Recipe', 'Delete Recipe', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2942', '1', 'eng', 'permissions', 'permissions.Create Purchase Order', 'Create Purchase Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2943', '1', 'eng', 'permissions', 'permissions.Show Purchase Order', 'Show Purchase Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2944', '1', 'eng', 'permissions', 'permissions.Update Purchase Order', 'Update Purchase Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2945', '1', 'eng', 'permissions', 'permissions.Delete Purchase Order', 'Delete Purchase Order', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2946', '1', 'eng', 'permissions', 'permissions.Show Report', 'Show Report', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2947', '1', 'eng', 'permissions', 'permissions.Update Settings', 'Update Settings', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2948', '1', 'eng', 'permissions', 'permissions.Show Inventory Stock', 'Show Inventory Stock', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2949', '1', 'eng', 'permissions', 'permissions.Show Inventory Report', 'Show Inventory Report', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2950', '1', 'eng', 'permissions', 'permissions.Update Inventory Settings', 'Update Inventory Settings', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2951', '1', 'eng', 'permissions', 'permissions.Show Supplier', 'Show Supplier', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2952', '1', 'eng', 'permissions', 'permissions.Create Supplier', 'Create Supplier', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2953', '1', 'eng', 'permissions', 'permissions.Update Supplier', 'Update Supplier', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2954', '1', 'eng', 'permissions', 'permissions.Delete Supplier', 'Delete Supplier', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2955', '1', 'eng', 'permissions', 'permissions.Create Expense Category', 'Create Expense Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2956', '1', 'eng', 'permissions', 'permissions.Show Expense Category', 'Show Expense Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2957', '1', 'eng', 'permissions', 'permissions.Update Expense Category', 'Update Expense Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2958', '1', 'eng', 'permissions', 'permissions.Delete Expense Category', 'Delete Expense Category', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2959', '1', 'eng', 'permissions', 'permissions.Show Kitchen Place', 'Show Kitchen Place', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2960', '1', 'eng', 'permissions', 'permissions.Create Kitchen Place', 'Create Kitchen Place', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2961', '1', 'eng', 'permissions', 'permissions.Update Kitchen Place', 'Update Kitchen Place', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2962', '1', 'eng', 'permissions', 'permissions.Delete Kitchen Place', 'Delete Kitchen Place', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2963', '1', 'eng', 'permissions', 'permissions.Update Sms Settings', 'Update Sms Settings', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2964', '1', 'eng', 'permissions', 'permissions.Log Cash Register', 'Log Cash Register', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2965', '1', 'eng', 'permissions', 'permissions.Approve Cash Register', 'Approve Cash Register', '2025-11-27 01:06:30', '2025-11-27 01:06:30'),
('2966', '1', 'eng', 'permissions', 'permissions.Manage Cash Register Settings', 'Manage Cash Register Settings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2967', '1', 'eng', 'permissions', 'permissions.View Cash Register Reports', 'View Cash Register Reports', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2968', '1', 'eng', 'permissions', 'permissions.Manage Cash Denominations', 'Manage Cash Denominations', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2969', '1', 'eng', 'permissions', 'permissions.Manage Cash Register', 'Manage Cash Register Settings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2970', '1', 'eng', 'permissions', 'permissions.Manage Denominations', 'Manage Cash Denominations', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2971', '1', 'eng', 'permissions', 'permissions.Open Register', 'Open Cash Register', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2972', '1', 'eng', 'permissions', 'permissions.View Cash Register Sessions', 'View Cash Register Sessions', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2973', '1', 'eng', 'permissions', 'permissions.Close Cash Register', 'Close Cash Register', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2974', '1', 'eng', 'permissions', 'permissions.Open Cash Register', 'Open Cash Register', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2975', '1', 'eng', 'permissions', 'permissions.Manage MultiPOS Machines', 'Manage MultiPOS Machines', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2976', '1', 'eng', 'permissions', 'permissions.Add Discount on POS', 'Add Discount on POS', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2977', '1', 'eng', 'permissions', 'modules.Menu', 'Menu', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2978', '1', 'eng', 'permissions', 'modules.Menu Item', 'Menu Item', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2979', '1', 'eng', 'permissions', 'modules.Item Category', 'Item Category', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2980', '1', 'eng', 'permissions', 'modules.Area', 'Area', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2981', '1', 'eng', 'permissions', 'modules.Table', 'Table', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2982', '1', 'eng', 'permissions', 'modules.Reservation', 'Reservation', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2983', '1', 'eng', 'permissions', 'modules.KOT', 'KOT', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2984', '1', 'eng', 'permissions', 'modules.Order', 'Order', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2985', '1', 'eng', 'permissions', 'modules.Customer', 'Customer', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2986', '1', 'eng', 'permissions', 'modules.Staff', 'Staff', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2987', '1', 'eng', 'permissions', 'modules.Delivery Executive', 'Delivery Executive', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2988', '1', 'eng', 'permissions', 'modules.Payment', 'Payment', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2989', '1', 'eng', 'permissions', 'modules.Report', 'Report', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2990', '1', 'eng', 'permissions', 'modules.Settings', 'Settings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2991', '1', 'eng', 'permissions', 'modules.Waiter Request', 'Waiter Request', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2992', '1', 'eng', 'permissions', 'modules.Expense', 'Expenses', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2993', '1', 'eng', 'permissions', 'modules.Vendor', 'Vendor', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2994', '1', 'eng', 'permissions', 'modules.Inventory', 'Inventory', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2995', '1', 'eng', 'permissions', 'modules.Sms', 'Sms', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2996', '1', 'eng', 'permissions', 'modules.Change Branch', 'Change Branch', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2997', '1', 'eng', 'permissions', 'modules.Export Report', 'Export Report', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2998', '1', 'eng', 'permissions', 'modules.Table Reservation', 'Table Reservation', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('2999', '1', 'eng', 'permissions', 'modules.Payment Gateway Integration', 'Payment Gateway Integration', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3000', '1', 'eng', 'permissions', 'modules.Theme Setting', 'Theme Setting', '2025-11-27 01:06:31', '2025-11-27 01:06:31');

INSERT INTO `ltm_translations` VALUES
('3001', '1', 'eng', 'permissions', 'modules.Kitchen', 'Multiple Kitchen', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3002', '1', 'eng', 'permissions', 'modules.Customer Display', 'Customer Display', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3003', '1', 'eng', 'permissions', 'modules.Open Register', 'Open Register', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3004', '1', 'eng', 'permissions', 'modules.Kiosk', 'Kiosk', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3005', '1', 'eng', 'permissions', 'modules.Cash Register', 'Cash Register', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3006', '1', 'eng', 'permissions', 'modules.MultiPOS', 'MultiPOS', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3007', '1', 'eng', 'placeholders', 'menuNamePlaceholder', 'e.g. Breakfast', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3008', '1', 'eng', 'placeholders', 'searchMenus', 'Search your menu here', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3009', '1', 'eng', 'placeholders', 'searchMenuItems', 'Search your menu item here', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3010', '1', 'eng', 'placeholders', 'menuItemNamePlaceholder', 'e.g., Margherita Pizza', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3011', '1', 'eng', 'placeholders', 'itemVariationPlaceholder', 'e.g., Small, Medium, Large', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3012', '1', 'eng', 'placeholders', 'itemDescriptionPlaceholder', 'e.g., A classic Italian pizza with fresh tomatoes and basil.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3013', '1', 'eng', 'placeholders', 'categoryNamePlaceholder', 'e.g., Desserts', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3014', '1', 'eng', 'placeholders', 'searchItemCategory', 'Search your item category here', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3015', '1', 'eng', 'placeholders', 'areaNamePlaceholder', 'e.g. Rooftop', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3016', '1', 'eng', 'placeholders', 'tableCodePlaceholder', 'e.g. T01', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3017', '1', 'eng', 'placeholders', 'tableSeatPlaceholder', 'Enter number of seats (e.g., 4)', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3018', '1', 'eng', 'placeholders', 'searchCustomers', 'Search by name, email or phone number', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3019', '1', 'eng', 'placeholders', 'searchStaffmember', 'Search by name or email', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3020', '1', 'eng', 'placeholders', 'searchPackages', 'Search your package here', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3021', '1', 'eng', 'placeholders', 'restaurantNamePlaceHolder', 'e.g., The Midtown Cafe', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3022', '1', 'eng', 'placeholders', 'searchPayments', 'Search payments by amount, method, TX ID', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3023', '1', 'eng', 'placeholders', 'searchDuePayments', 'Search payments by amount or order #', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3024', '1', 'eng', 'placeholders', 'methodExamples', 'e.g., Cash, Cheque, Bank Transfer, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3025', '1', 'eng', 'placeholders', 'methodDescription', 'e.g., via USD dollar, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3026', '1', 'eng', 'placeholders', 'facebookPlaceHolder', 'Enter your Facebook URL', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3027', '1', 'eng', 'placeholders', 'instagramPlaceHolder', 'Enter your Instagram URL', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3028', '1', 'eng', 'placeholders', 'twitterPlaceHolder', 'Enter your Twitter handle', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3029', '1', 'eng', 'placeholders', 'yelpPlaceHolder', 'Enter your Yelp URL', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3030', '1', 'eng', 'placeholders', 'metaKeywordPlaceHolder', 'Enter Comma Saperated keyword', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3031', '1', 'eng', 'placeholders', 'metaDescriptionPlaceHolder', 'Enter Meta Description', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3032', '1', 'eng', 'placeholders', 'languageCodePlaceholder', 'e.g., en, ar, fr, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3033', '1', 'eng', 'placeholders', 'languageNamePlaceholder', 'e.g., English, Arabic, French, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3034', '1', 'eng', 'placeholders', 'flagCodePlaceholder', 'e.g., us, gb, sa, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3035', '1', 'eng', 'placeholders', 'modifierOptionNamePlaceholder', 'e.g., Extra Cheese', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3036', '1', 'eng', 'placeholders', 'modifierOptionPricePlaceholder', 'e.g., 1.50', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3037', '1', 'eng', 'placeholders', 'modifierOptionSortOrderPlaceholder', 'e.g., 1', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3038', '1', 'eng', 'placeholders', 'modifierGroupNamePlaceholder', 'e.g., Toppings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3039', '1', 'eng', 'placeholders', 'modifierGroupDescriptionPlaceholder', 'e.g., Additional toppings for your pizza.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3040', '1', 'eng', 'placeholders', 'purchaseCode', 'e.g. 147778a2-dfa2-424e-a29f-xxxxxxxxx', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3041', '1', 'eng', 'placeholders', 'addTitle', 'Add Expense Title', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3042', '1', 'eng', 'placeholders', 'addDescription', 'Add Expense Description', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3043', '1', 'eng', 'placeholders', 'addAmount', 'Add Amount', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3044', '1', 'eng', 'placeholders', 'expense', 'Expense', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3045', '1', 'eng', 'placeholders', 'vendors', 'Vendors', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3046', '1', 'eng', 'placeholders', 'vendorName', 'Vendor Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3047', '1', 'eng', 'placeholders', 'vendorEmail', 'Vendor Email', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3048', '1', 'eng', 'placeholders', 'vendorPhone', 'Vendor Phone', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3049', '1', 'eng', 'placeholders', 'vendorAddress', 'Vendor Address', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3050', '1', 'eng', 'placeholders', 'contactPerson', 'Contact Person', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3051', '1', 'eng', 'placeholders', 'expensesCategory', 'Expenses Category', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3052', '1', 'eng', 'placeholders', 'searchMenuItem', 'Search Menu Item', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3053', '1', 'eng', 'placeholders', 'customerName', 'Add Customer Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3054', '1', 'eng', 'placeholders', 'customerEmail', 'Add Customer Email', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3055', '1', 'eng', 'placeholders', 'customerPhone', 'Add Customer Phone', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3056', '1', 'eng', 'placeholders', 'customerAddress', 'Add Customer Address', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3057', '1', 'eng', 'placeholders', 'metaTtilePlaceHolder', 'Enter Meta Title', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3058', '1', 'eng', 'placeholders', 'menuNamePlaceHolder', 'Add Menu Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3059', '1', 'eng', 'placeholders', 'menuSlugPlaceHolder', 'Add Menu Slug', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3060', '1', 'eng', 'placeholders', 'menuContentPlaceHolder', 'Add Menu Content', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3061', '1', 'eng', 'placeholders', 'enterCustomAmountPlaceholder', 'Enter custom amount', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3062', '1', 'eng', 'placeholders', 'addNotePlaceholder', 'Add a note with your tip...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3063', '1', 'eng', 'placeholders', 'addOrderNotesPlaceholder', 'Add order notes here...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3064', '1', 'eng', 'placeholders', 'enterExpenseCategoryName', 'Enter Category Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3065', '1', 'eng', 'placeholders', 'enterExpenseCategoryDescription', 'Enter Category Description', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3066', '1', 'eng', 'placeholders', 'addPrinterName', 'Add Printer Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3067', '1', 'eng', 'placeholders', 'addPrinterSharedName', 'Add Printer Name', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3068', '1', 'eng', 'placeholders', 'IpAddress', 'Add Printer IP Address', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3069', '1', 'eng', 'placeholders', 'portAddress', 'Add Printer Port Address', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3070', '1', 'eng', 'placeholders', 'ipv4Addres', 'Add Printer IPv4 Address', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3071', '1', 'eng', 'placeholders', 'enterGoogleMapApiKey', 'Enter Google Map API Key e.g., AIzaSyD-xxxxxxxxxxxxxxxxx', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3072', '1', 'eng', 'placeholders', 'enterPrivacyPolicyLink', 'Enter privacy policy URL e.g., https://yoursite.com/privacy-policy', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3073', '1', 'eng', 'placeholders', 'addressLabelPlaceholder', 'e.g., home, office, etc.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3074', '1', 'eng', 'placeholders', 'addressPlaceholder', 'e.g., 123 Main St, City, Country', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3075', '1', 'eng', 'placeholders', 'addItemNotesPlaceholder', 'Special Instructions? (e.g., no onions, extra spicy)', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3076', '1', 'eng', 'placeholders', 'searchMenuOrCategory', 'Search menu or category here', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3077', '1', 'eng', 'placeholders', 'addDeliveryTypeName', 'e.g., Express Delivery', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3078', '1', 'eng', 'placeholders', 'addDeliveryTypeDescription', 'e.g., Fast delivery within 30 minutes', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3079', '1', 'eng', 'placeholders', 'search', 'Search', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3080', '1', 'eng', 'placeholders', 'searchModifierGroups', 'Search Modifier Groups...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3081', '1', 'eng', 'placeholders', 'headerTextPlaceHolder', 'Enter your custom header text here...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3082', '1', 'eng', 'placeholders', 'tableLockTimeoutPlaceholder', 'Enter timeout in minutes. Default is 10 minutes.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3083', '1', 'eng', 'placeholders', 'qrOrderRadiusMetersPlaceholder', 'e.g., 100', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3084', '1', 'eng', 'placeholders', 'featureDescriptionPlaceHolder', 'Enter feature description here...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3085', '1', 'eng', 'placeholders', 'appNamePlaceHolder', 'e.g., Swiggy', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3086', '1', 'eng', 'sidebar', 'dashboard', 'Dashboard', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3087', '1', 'eng', 'sidebar', 'menu', 'Menu', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3088', '1', 'eng', 'superadmin', 'menu.restaurants', 'Restaurants', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3089', '1', 'eng', 'superadmin', 'menu.superadmin', 'SuperAdmin', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3090', '1', 'eng', 'superadmin', 'regenerateQrCode', 'Regenerate QR Codes', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3091', '1', 'eng', 'superadmin', 'domainChanged', 'It seems you have changed the domain. You need to regenerate the qr codes so that qr codes can have new url', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3092', '1', 'eng', 'superadmin', 'qrCodesRegenerated', 'QR Codes Regenerated for new domain', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3093', '1', 'eng', 'superadmin', 'raiseSupportTicket', 'Raise Support Ticket', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3094', '1', 'eng', 'superadmin', 'generateCredentials', 'Generate Credentials', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3095', '1', 'eng', 'superadmin', 'pusherBeams', 'Pusher Beams (Browser Push Notification)', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3096', '1', 'eng', 'superadmin', 'pusherChannels', 'Pusher Channels (Live Page Update)', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3097', '1', 'eng', 'superadmin', 'pusherDashboard', 'Pusher Dashboard', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3098', '1', 'eng', 'superadmin', 'pusherChannelsDescription', 'Configure Pusher Channels for real-time page updates (Laravel broadcasting).', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3099', '1', 'eng', 'superadmin', 'pusherBeamsDescription', 'Configure Pusher Beams for browser push notifications.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3100', '1', 'eng', 'superadmin', 'desktopApplicationSettings', 'Desktop Application Settings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3101', '1', 'eng', 'superadmin', 'desktopApplicationSettingsDescription', 'Provide download URLs for Windows and Mac desktop applications.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3102', '1', 'eng', 'superadmin', 'desktopApplicationSettingsDescription2', '1. Empty the download field if you do not want your customers to download the application.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3103', '1', 'eng', 'superadmin', 'windowsApplication', 'Windows Application', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3104', '1', 'eng', 'superadmin', 'downloadUrl', 'Download URL', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3105', '1', 'eng', 'superadmin', 'resetToDefault', 'Reset to Default', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3106', '1', 'eng', 'superadmin', 'downloadNow', 'Download Now', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3107', '1', 'eng', 'superadmin', 'macApplication', 'Mac Application', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3108', '1', 'eng', 'superadmin', 'linuxApplication', 'Linux Application', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3109', '1', 'eng', 'superadmin', 'saveAllSettings', 'Save All Settings', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3110', '1', 'eng', 'superadmin', 'saving', 'Saving...', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3111', '1', 'eng', 'superadmin', 'whiteLabelDesktopApp', 'White Label Desktop App (Printing App)', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3112', '1', 'eng', 'superadmin', 'whiteLabelDesktopAppDescription', 'Get your own branded desktop printing application with your company name and logo.', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3113', '1', 'eng', 'superadmin', 'whiteLabelFeatures', 'Features', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3114', '1', 'eng', 'superadmin', 'whiteLabelFeature1', 'Custom branding with your company name and logo', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3115', '1', 'eng', 'superadmin', 'whiteLabelFeature2', 'Personalized installer and application icons', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3116', '1', 'eng', 'superadmin', 'whiteLabelFeature3', 'Custom splash screen and about dialog', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3117', '1', 'eng', 'superadmin', 'whiteLabelFeature4', 'Dedicated support and updates', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3118', '1', 'eng', 'superadmin', 'whiteLabelPricing', 'Pricing', '2025-11-27 01:06:31', '2025-11-27 01:06:31'),
('3119', '1', 'eng', 'superadmin', 'whiteLabelPricingDescription', 'One-time payment includes customization, testing, and delivery', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3120', '1', 'eng', 'superadmin', 'whiteLabelDelivery', 'Delivery', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3121', '1', 'eng', 'superadmin', 'whiteLabelDeliveryDescription', 'Custom app delivered within 3-5 business days after approval', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3122', '1', 'eng', 'superadmin', 'orderWhiteLabelApp', 'Order White Label Printing App', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3123', '1', 'eng', 'superadmin', 'desktopAppRequired', 'Desktop Application Required', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3124', '1', 'eng', 'superadmin', 'desktopAppRequiredDescription', 'The desktop application is required for direct printing functionality. Users must download and install the desktop app to enable thermal printer support.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3125', '1', 'eng', 'superadmin', 'desktopAppDemo', 'Desktop App Demo', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3126', '1', 'eng', 'superadmin', 'desktopAppDemoDescription', 'Watch how the TableTrack desktop application works', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3127', '1', 'eng', 'superadmin', 'desktopAppDemoLink', 'https://www.youtube.com/watch?v=KKla4E_e_tY', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3128', '1', 'eng', 'superadmin', 'desktopAppDemoLinkText', 'Watch Demo on YouTube', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3129', '1', 'eng', 'validation', 'accepted', 'The :attribute field must be accepted.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3130', '1', 'eng', 'validation', 'accepted_if', 'The :attribute field must be accepted when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3131', '1', 'eng', 'validation', 'active_url', 'The :attribute field must be a valid URL.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3132', '1', 'eng', 'validation', 'after', 'The :attribute field must be a date after :date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3133', '1', 'eng', 'validation', 'after_or_equal', 'The :attribute field must be a date after or equal to :date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3134', '1', 'eng', 'validation', 'alpha', 'The :attribute field must only contain letters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3135', '1', 'eng', 'validation', 'alpha_dash', 'The :attribute field must only contain letters, numbers, dashes, and underscores.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3136', '1', 'eng', 'validation', 'alpha_num', 'The :attribute field must only contain letters and numbers.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3137', '1', 'eng', 'validation', 'array', 'The :attribute field must be an array.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3138', '1', 'eng', 'validation', 'ascii', 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3139', '1', 'eng', 'validation', 'before', 'The :attribute field must be a date before :date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3140', '1', 'eng', 'validation', 'before_or_equal', 'The :attribute field must be a date before or equal to :date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3141', '1', 'eng', 'validation', 'between.array', 'The :attribute field must have between :min and :max items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3142', '1', 'eng', 'validation', 'between.file', 'The :attribute field must be between :min and :max kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3143', '1', 'eng', 'validation', 'between.numeric', 'The :attribute field must be between :min and :max.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3144', '1', 'eng', 'validation', 'between.string', 'The :attribute field must be between :min and :max characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3145', '1', 'eng', 'validation', 'boolean', 'The :attribute field must be true or false.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3146', '1', 'eng', 'validation', 'can', 'The :attribute field contains an unauthorized value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3147', '1', 'eng', 'validation', 'confirmed', 'The :attribute field confirmation does not match.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3148', '1', 'eng', 'validation', 'contains', 'The :attribute field is missing a required value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3149', '1', 'eng', 'validation', 'current_password', 'The password is incorrect.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3150', '1', 'eng', 'validation', 'date', 'The :attribute field must be a valid date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3151', '1', 'eng', 'validation', 'date_equals', 'The :attribute field must be a date equal to :date.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3152', '1', 'eng', 'validation', 'date_format', 'The :attribute field must match the format :format.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3153', '1', 'eng', 'validation', 'decimal', 'The :attribute field must have :decimal decimal places.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3154', '1', 'eng', 'validation', 'declined', 'The :attribute field must be declined.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3155', '1', 'eng', 'validation', 'declined_if', 'The :attribute field must be declined when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3156', '1', 'eng', 'validation', 'different', 'The :attribute field and :other must be different.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3157', '1', 'eng', 'validation', 'digits', 'The :attribute field must be :digits digits.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3158', '1', 'eng', 'validation', 'digits_between', 'The :attribute field must be between :min and :max digits.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3159', '1', 'eng', 'validation', 'dimensions', 'The :attribute field has invalid image dimensions.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3160', '1', 'eng', 'validation', 'distinct', 'The :attribute field has a duplicate value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3161', '1', 'eng', 'validation', 'doesnt_end_with', 'The :attribute field must not end with one of the following: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3162', '1', 'eng', 'validation', 'doesnt_start_with', 'The :attribute field must not start with one of the following: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3163', '1', 'eng', 'validation', 'email', 'The :attribute field must be a valid email address.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3164', '1', 'eng', 'validation', 'ends_with', 'The :attribute field must end with one of the following: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3165', '1', 'eng', 'validation', 'enum', 'The selected :attribute is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3166', '1', 'eng', 'validation', 'exists', 'The selected :attribute is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3167', '1', 'eng', 'validation', 'extensions', 'The :attribute field must have one of the following extensions: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3168', '1', 'eng', 'validation', 'file', 'The :attribute field must be a file.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3169', '1', 'eng', 'validation', 'filled', 'The :attribute field must have a value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3170', '1', 'eng', 'validation', 'gt.array', 'The :attribute field must have more than :value items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3171', '1', 'eng', 'validation', 'gt.file', 'The :attribute field must be greater than :value kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3172', '1', 'eng', 'validation', 'gt.numeric', 'The :attribute field must be greater than :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3173', '1', 'eng', 'validation', 'gt.string', 'The :attribute field must be greater than :value characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3174', '1', 'eng', 'validation', 'gte.array', 'The :attribute field must have :value items or more.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3175', '1', 'eng', 'validation', 'gte.file', 'The :attribute field must be greater than or equal to :value kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3176', '1', 'eng', 'validation', 'gte.numeric', 'The :attribute field must be greater than or equal to :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3177', '1', 'eng', 'validation', 'gte.string', 'The :attribute field must be greater than or equal to :value characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3178', '1', 'eng', 'validation', 'hex_color', 'The :attribute field must be a valid hexadecimal color.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3179', '1', 'eng', 'validation', 'image', 'The :attribute field must be an image.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3180', '1', 'eng', 'validation', 'in', 'The selected :attribute is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3181', '1', 'eng', 'validation', 'in_array', 'The :attribute field must exist in :other.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3182', '1', 'eng', 'validation', 'integer', 'The :attribute field must be an integer.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3183', '1', 'eng', 'validation', 'ip', 'The :attribute field must be a valid IP address.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3184', '1', 'eng', 'validation', 'ipv4', 'The :attribute field must be a valid IPv4 address.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3185', '1', 'eng', 'validation', 'ipv6', 'The :attribute field must be a valid IPv6 address.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3186', '1', 'eng', 'validation', 'json', 'The :attribute field must be a valid JSON string.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3187', '1', 'eng', 'validation', 'list', 'The :attribute field must be a list.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3188', '1', 'eng', 'validation', 'lowercase', 'The :attribute field must be lowercase.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3189', '1', 'eng', 'validation', 'lt.array', 'The :attribute field must have less than :value items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3190', '1', 'eng', 'validation', 'lt.file', 'The :attribute field must be less than :value kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3191', '1', 'eng', 'validation', 'lt.numeric', 'The :attribute field must be less than :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3192', '1', 'eng', 'validation', 'lt.string', 'The :attribute field must be less than :value characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3193', '1', 'eng', 'validation', 'lte.array', 'The :attribute field must not have more than :value items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3194', '1', 'eng', 'validation', 'lte.file', 'The :attribute field must be less than or equal to :value kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3195', '1', 'eng', 'validation', 'lte.numeric', 'The :attribute field must be less than or equal to :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3196', '1', 'eng', 'validation', 'lte.string', 'The :attribute field must be less than or equal to :value characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3197', '1', 'eng', 'validation', 'mac_address', 'The :attribute field must be a valid MAC address.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3198', '1', 'eng', 'validation', 'max.array', 'The :attribute field must not have more than :max items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3199', '1', 'eng', 'validation', 'max.file', 'The :attribute field must not be greater than :max kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3200', '1', 'eng', 'validation', 'max.numeric', 'The :attribute field must not be greater than :max.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3201', '1', 'eng', 'validation', 'max.string', 'The :attribute field must not be greater than :max characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3202', '1', 'eng', 'validation', 'max_digits', 'The :attribute field must not have more than :max digits.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3203', '1', 'eng', 'validation', 'mimes', 'The :attribute field must be a file of type: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3204', '1', 'eng', 'validation', 'mimetypes', 'The :attribute field must be a file of type: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3205', '1', 'eng', 'validation', 'min.array', 'The :attribute field must have at least :min items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3206', '1', 'eng', 'validation', 'min.file', 'The :attribute field must be at least :min kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3207', '1', 'eng', 'validation', 'min.numeric', 'The :attribute field must be at least :min.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3208', '1', 'eng', 'validation', 'min.string', 'The :attribute field must be at least :min characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3209', '1', 'eng', 'validation', 'min_digits', 'The :attribute field must have at least :min digits.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3210', '1', 'eng', 'validation', 'missing', 'The :attribute field must be missing.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3211', '1', 'eng', 'validation', 'missing_if', 'The :attribute field must be missing when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3212', '1', 'eng', 'validation', 'missing_unless', 'The :attribute field must be missing unless :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3213', '1', 'eng', 'validation', 'missing_with', 'The :attribute field must be missing when :values is present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3214', '1', 'eng', 'validation', 'missing_with_all', 'The :attribute field must be missing when :values are present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3215', '1', 'eng', 'validation', 'multiple_of', 'The :attribute field must be a multiple of :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3216', '1', 'eng', 'validation', 'not_in', 'The selected :attribute is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3217', '1', 'eng', 'validation', 'not_regex', 'The :attribute field format is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3218', '1', 'eng', 'validation', 'numeric', 'The :attribute field must be a number.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3219', '1', 'eng', 'validation', 'password.letters', 'The :attribute field must contain at least one letter.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3220', '1', 'eng', 'validation', 'password.mixed', 'The :attribute field must contain at least one uppercase and one lowercase letter.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3221', '1', 'eng', 'validation', 'password.numbers', 'The :attribute field must contain at least one number.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3222', '1', 'eng', 'validation', 'password.symbols', 'The :attribute field must contain at least one symbol.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3223', '1', 'eng', 'validation', 'password.uncompromised', 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3224', '1', 'eng', 'validation', 'present', 'The :attribute field must be present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3225', '1', 'eng', 'validation', 'present_if', 'The :attribute field must be present when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3226', '1', 'eng', 'validation', 'present_unless', 'The :attribute field must be present unless :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3227', '1', 'eng', 'validation', 'present_with', 'The :attribute field must be present when :values is present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3228', '1', 'eng', 'validation', 'present_with_all', 'The :attribute field must be present when :values are present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3229', '1', 'eng', 'validation', 'prohibited', 'The :attribute field is prohibited.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3230', '1', 'eng', 'validation', 'prohibited_if', 'The :attribute field is prohibited when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3231', '1', 'eng', 'validation', 'prohibited_unless', 'The :attribute field is prohibited unless :other is in :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3232', '1', 'eng', 'validation', 'prohibits', 'The :attribute field prohibits :other from being present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3233', '1', 'eng', 'validation', 'regex', 'The :attribute field format is invalid.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3234', '1', 'eng', 'validation', 'required', 'The :attribute field is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3235', '1', 'eng', 'validation', 'required_array_keys', 'The :attribute field must contain entries for: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3236', '1', 'eng', 'validation', 'required_if', 'The :attribute field is required when :other is :value.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3237', '1', 'eng', 'validation', 'required_if_accepted', 'The :attribute field is required when :other is accepted.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3238', '1', 'eng', 'validation', 'required_if_declined', 'The :attribute field is required when :other is declined.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3239', '1', 'eng', 'validation', 'required_unless', 'The :attribute field is required unless :other is in :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3240', '1', 'eng', 'validation', 'required_with', 'The :attribute field is required when :values is present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3241', '1', 'eng', 'validation', 'required_with_all', 'The :attribute field is required when :values are present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3242', '1', 'eng', 'validation', 'required_without', 'The :attribute field is required when :values is not present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3243', '1', 'eng', 'validation', 'required_without_all', 'The :attribute field is required when none of :values are present.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3244', '1', 'eng', 'validation', 'same', 'The :attribute field must match :other.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3245', '1', 'eng', 'validation', 'size.array', 'The :attribute field must contain :size items.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3246', '1', 'eng', 'validation', 'size.file', 'The :attribute field must be :size kilobytes.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3247', '1', 'eng', 'validation', 'size.numeric', 'The :attribute field must be :size.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3248', '1', 'eng', 'validation', 'size.string', 'The :attribute field must be :size characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3249', '1', 'eng', 'validation', 'starts_with', 'The :attribute field must start with one of the following: :values.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3250', '1', 'eng', 'validation', 'string', 'The :attribute field must be a string.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3251', '1', 'eng', 'validation', 'timezone', 'The :attribute field must be a valid timezone.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3252', '1', 'eng', 'validation', 'unique', 'The :attribute has already been taken.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3253', '1', 'eng', 'validation', 'uploaded', 'The :attribute failed to upload.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3254', '1', 'eng', 'validation', 'uppercase', 'The :attribute field must be uppercase.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3255', '1', 'eng', 'validation', 'url', 'The :attribute field must be a valid URL.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3256', '1', 'eng', 'validation', 'ulid', 'The :attribute field must be a valid ULID.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3257', '1', 'eng', 'validation', 'uuid', 'The :attribute field must be a valid UUID.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3258', '1', 'eng', 'validation', 'custom.attribute-name.rule-name', 'custom-message', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3259', '1', 'eng', 'validation', 'variationNameRequired', 'The variation name is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3260', '1', 'eng', 'validation', 'variationNameMustBeString', 'The variation name must be a valid text.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3261', '1', 'eng', 'validation', 'variationNameMaxLength', 'The variation name must not exceed 255 characters.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3262', '1', 'eng', 'validation', 'variationPriceRequired', 'The variation price is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3263', '1', 'eng', 'validation', 'variationPriceNumeric', 'The variation price must be a number.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3264', '1', 'eng', 'validation', 'variationPriceMustBeNumeric', 'The variation price must be a valid number.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3265', '1', 'eng', 'validation', 'variationPriceMustBePositive', 'The variation price must be at least 0.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3266', '1', 'eng', 'validation', 'itemNameRequired', 'The item name is required for the :language language.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3267', '1', 'eng', 'validation', 'itemPriceRequired', 'The item price is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3268', '1', 'eng', 'validation', 'itemPriceMustBeNumeric', 'The item price must be a valid number.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3269', '1', 'eng', 'validation', 'itemPriceMustBePositive', 'The item price must be at least 0.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3270', '1', 'eng', 'validation', 'menuNameRequired', 'The menu name is required for the :language language.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3271', '1', 'eng', 'validation', 'categoryNameRequired', 'The category name is required for the :language language.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3272', '1', 'eng', 'validation', 'categoryNameUnique', 'The category name for the :language language has already been taken.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3273', '1', 'eng', 'validation', 'categoryRequired', 'The category is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3274', '1', 'eng', 'validation', 'menuRequired', 'The menu is required.', '2025-11-27 01:06:32', '2025-11-27 01:06:32'),
('3275', '1', 'eng', 'validation', 'priceRequired', 'The price is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3276', '1', 'eng', 'validation', 'priceMustBeNumeric', 'The price must be a valid number.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3277', '1', 'eng', 'validation', 'priceMinZero', 'The price must be at least 0.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3278', '1', 'eng', 'validation', 'orderTypePriceRequired', 'The price for :orderType is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3279', '1', 'eng', 'validation', 'baseDeliveryPriceMustBeNumeric', 'The base delivery price must be a valid number.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3280', '1', 'eng', 'validation', 'baseDeliveryPriceMustBePositive', 'The base delivery price must be at least 0.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3281', '1', 'eng', 'validation', 'availabilityRequired', 'The availability status is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3282', '1', 'eng', 'validation', 'availabilityMustBeBoolean', 'The availability status must be true or false.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3283', '1', 'eng', 'validation', 'showOnCustomerSiteRequired', 'The show on customer site status is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3284', '1', 'eng', 'validation', 'showOnCustomerSiteMustBeBoolean', 'The show on customer site status must be true or false.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3285', '1', 'eng', 'validation', 'alreadyAssociatedGroup', 'The selected modifier group is already associated with this menu item.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3286', '1', 'eng', 'validation', 'cannotRemoveTranslation', 'Cannot remove the :language translation as it is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3287', '1', 'eng', 'validation', 'InvalidFlutterwaveKeyOrSecret', 'Invalid Flutterwave key or secret.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3288', '1', 'eng', 'validation', 'flutterwaveStatusRequired', 'Flutterwave status is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3289', '1', 'eng', 'validation', 'flutterwaveModeRequired', 'Flutterwave mode is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3290', '1', 'eng', 'validation', 'liveFlutterwaveKeyRequired', 'Live Flutterwave key is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3291', '1', 'eng', 'validation', 'liveFlutterwaveSecretRequired', 'Live Flutterwave secret is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3292', '1', 'eng', 'validation', 'liveFlutterwaveHashRequired', 'Live Flutterwave hash is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3293', '1', 'eng', 'validation', 'testFlutterwaveKeyRequired', 'Test Flutterwave key is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3294', '1', 'eng', 'validation', 'testFlutterwaveSecretRequired', 'Test Flutterwave secret is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3295', '1', 'eng', 'validation', 'testFlutterwaveHashRequired', 'Test Flutterwave hash is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3296', '1', 'eng', 'validation', 'greaterThanPrevious', 'This field must be greater than the previous tier\'s maximum distance.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3297', '1', 'eng', 'validation', 'tiers.required', 'The tiers field is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3298', '1', 'eng', 'validation', 'modifierGroupNameRequired', 'Modifier group name is required for the :language language.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3299', '1', 'eng', 'validation', 'modifierOptionNameRequired', 'Option name is required for the :language language.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3300', '1', 'eng', 'validation', 'atLeastOneVariationRequired', 'At least one variation with name and price is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3301', '1', 'eng', 'validation', 'orderTypeNameRequired', 'Order type name is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3302', '1', 'eng', 'validation', 'orderTypeRequired', 'Order type is required.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3303', '1', 'eng', 'validation', 'invalidOrderType', 'The selected order type is invalid.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3304', '1', 'eng', 'validation', 'defaultOrderTypeRequired', 'Default order type is required when popup is disabled.', '2025-11-27 01:06:33', '2025-11-27 01:06:33'),
('3305', '1', 'eng', 'validation', 'requiredModifierGroup', 'The \':name\' modifier group is required. Please select at least one option.', '2025-11-27 01:06:33', '2025-11-27 01:06:33');


-- Table structure for table `menu_item_prices`
DROP TABLE IF EXISTS `menu_item_prices`;
CREATE TABLE `menu_item_prices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint unsigned NOT NULL,
  `order_type_id` bigint unsigned NOT NULL,
  `delivery_app_id` bigint unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `calculated_price` decimal(16,2) NOT NULL,
  `override_price` decimal(16,2) DEFAULT NULL,
  `final_price` decimal(16,2) NOT NULL DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_item_prices_menu_item_id_foreign` (`menu_item_id`),
  KEY `menu_item_prices_order_type_id_foreign` (`order_type_id`),
  KEY `menu_item_prices_delivery_app_id_foreign` (`delivery_app_id`),
  KEY `menu_item_prices_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  CONSTRAINT `menu_item_prices_delivery_app_id_foreign` FOREIGN KEY (`delivery_app_id`) REFERENCES `delivery_platforms` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_item_prices_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_item_prices_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_item_prices_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=405 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_item_prices`
INSERT INTO `menu_item_prices` VALUES
('145', '47', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-11-27 14:20:27', '2025-11-27 14:20:27'),
('146', '47', '11', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-11-27 14:20:27', '2025-11-27 14:20:27'),
('147', '47', '12', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-11-27 14:20:27', '2025-11-27 14:20:27'),
('292', '88', '13', NULL, NULL, '7.99', NULL, '7.99', '1', '2025-12-19 18:26:02', '2025-12-19 18:26:02'),
('293', '88', '14', NULL, NULL, '7.99', NULL, '7.99', '1', '2025-12-19 18:26:02', '2025-12-19 18:26:02'),
('294', '88', '15', NULL, NULL, '7.99', NULL, '7.99', '1', '2025-12-19 18:26:02', '2025-12-19 18:26:02'),
('295', '89', '13', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-19 18:29:19', '2025-12-19 18:29:19'),
('296', '89', '14', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-19 18:29:19', '2025-12-19 18:29:19'),
('297', '89', '15', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-19 18:29:19', '2025-12-19 18:29:19'),
('298', '90', '13', NULL, NULL, '6.99', NULL, '6.99', '1', '2025-12-19 18:31:12', '2025-12-19 18:31:12'),
('299', '90', '14', NULL, NULL, '6.99', NULL, '6.99', '1', '2025-12-19 18:31:12', '2025-12-19 18:31:12'),
('300', '90', '15', NULL, NULL, '6.99', NULL, '6.99', '1', '2025-12-19 18:31:12', '2025-12-19 18:31:12'),
('301', '91', '13', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-20 09:09:46', '2025-12-20 09:09:46'),
('302', '91', '14', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-20 09:09:46', '2025-12-20 09:09:46'),
('303', '91', '15', NULL, NULL, '8.99', NULL, '8.99', '1', '2025-12-20 09:09:46', '2025-12-20 09:09:46'),
('304', '92', '13', NULL, NULL, '6.49', NULL, '6.49', '1', '2025-12-27 15:53:00', '2025-12-27 15:53:00'),
('305', '92', '14', NULL, NULL, '6.49', NULL, '6.49', '1', '2025-12-27 15:53:00', '2025-12-27 15:53:00'),
('306', '92', '15', NULL, NULL, '6.49', NULL, '6.49', '1', '2025-12-27 15:53:00', '2025-12-27 15:53:00'),
('307', '87', '10', NULL, NULL, '15.00', NULL, '15.00', '1', '2025-12-31 15:15:10', '2025-12-31 15:15:10'),
('308', '85', '10', NULL, NULL, '25.00', NULL, '25.00', '1', '2025-12-31 15:15:36', '2025-12-31 15:15:36'),
('309', '84', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:16:08', '2025-12-31 15:16:08'),
('310', '83', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:16:39', '2025-12-31 15:16:39'),
('311', '82', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:16:58', '2025-12-31 15:16:58'),
('312', '81', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:17:21', '2025-12-31 15:17:21'),
('313', '80', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:17:42', '2025-12-31 15:17:42'),
('314', '79', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:18:06', '2025-12-31 15:18:06'),
('315', '78', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:18:23', '2025-12-31 15:18:23'),
('316', '77', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:18:43', '2025-12-31 15:18:43'),
('317', '76', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:19:03', '2025-12-31 15:19:03'),
('318', '75', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:19:26', '2025-12-31 15:19:26'),
('319', '74', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:19:46', '2025-12-31 15:19:46'),
('320', '73', '10', NULL, NULL, '9.00', NULL, '9.00', '1', '2025-12-31 15:20:38', '2025-12-31 15:20:38'),
('322', '72', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:24:27', '2025-12-31 15:24:27'),
('323', '71', '10', NULL, NULL, '25.00', NULL, '25.00', '1', '2025-12-31 15:25:19', '2025-12-31 15:25:19'),
('324', '70', '10', NULL, NULL, '11.00', NULL, '11.00', '1', '2025-12-31 15:26:02', '2025-12-31 15:26:02'),
('325', '69', '10', NULL, NULL, '7.00', NULL, '7.00', '1', '2025-12-31 15:26:28', '2025-12-31 15:26:28'),
('326', '68', '10', NULL, NULL, '12.00', NULL, '12.00', '1', '2025-12-31 15:27:22', '2025-12-31 15:27:22'),
('327', '67', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-12-31 15:28:19', '2025-12-31 15:28:19'),
('328', '66', '10', NULL, NULL, '7.00', NULL, '7.00', '1', '2025-12-31 15:28:53', '2025-12-31 15:28:53'),
('329', '65', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:29:45', '2025-12-31 15:29:45'),
('330', '64', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:31:26', '2025-12-31 15:31:26'),
('331', '63', '10', NULL, NULL, '7.00', NULL, '7.00', '1', '2025-12-31 15:32:01', '2025-12-31 15:32:01'),
('332', '62', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-12-31 15:32:36', '2025-12-31 15:32:36'),
('333', '61', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:34:16', '2025-12-31 15:34:16'),
('334', '60', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-12-31 15:34:51', '2025-12-31 15:34:51'),
('335', '59', '10', NULL, NULL, '10.00', NULL, '10.00', '1', '2025-12-31 15:35:35', '2025-12-31 15:35:35'),
('336', '58', '10', NULL, NULL, '15.00', NULL, '15.00', '1', '2025-12-31 15:36:22', '2025-12-31 15:36:22'),
('337', '57', '10', NULL, NULL, '8.00', NULL, '8.00', '1', '2025-12-31 15:36:55', '2025-12-31 15:36:55'),
('338', '56', '10', NULL, NULL, '6.00', NULL, '6.00', '1', '2025-12-31 15:37:41', '2025-12-31 15:37:41'),
('339', '55', '10', NULL, NULL, '46.00', NULL, '46.00', '1', '2025-12-31 15:38:26', '2025-12-31 15:38:26'),
('340', '54', '10', NULL, NULL, '8.00', NULL, '8.00', '1', '2025-12-31 15:39:06', '2025-12-31 15:39:06'),
('341', '53', '10', NULL, NULL, '6.00', NULL, '6.00', '1', '2025-12-31 15:39:53', '2025-12-31 15:39:53'),
('342', '52', '10', NULL, NULL, '3.50', NULL, '3.50', '1', '2025-12-31 15:40:39', '2025-12-31 15:40:39'),
('343', '51', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:41:39', '2025-12-31 15:41:39'),
('344', '50', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:42:27', '2025-12-31 15:42:27'),
('345', '49', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:43:44', '2025-12-31 15:43:44'),
('346', '48', '10', NULL, NULL, '3.50', NULL, '3.50', '1', '2025-12-31 15:44:32', '2025-12-31 15:44:32'),
('347', '31', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:45:37', '2025-12-31 15:45:37'),
('348', '46', '10', NULL, NULL, '20.00', NULL, '20.00', '1', '2025-12-31 15:46:59', '2025-12-31 15:46:59'),
('349', '45', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:47:53', '2025-12-31 15:47:53'),
('350', '44', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:48:42', '2025-12-31 15:48:42'),
('351', '43', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:49:37', '2025-12-31 15:49:37'),
('352', '42', '10', NULL, NULL, '2.50', NULL, '2.50', '1', '2025-12-31 15:50:38', '2025-12-31 15:50:38'),
('353', '41', '10', NULL, NULL, '7.00', NULL, '7.00', '1', '2025-12-31 15:51:38', '2025-12-31 15:51:38'),
('354', '40', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:52:29', '2025-12-31 15:52:29'),
('355', '39', '10', NULL, NULL, '3.50', NULL, '3.50', '1', '2025-12-31 15:53:29', '2025-12-31 15:53:29'),
('356', '38', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:54:20', '2025-12-31 15:54:20'),
('357', '37', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 15:55:23', '2025-12-31 15:55:23'),
('358', '36', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 15:56:23', '2025-12-31 15:56:23'),
('359', '35', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-12-31 15:57:39', '2025-12-31 15:57:39'),
('360', '34', '10', NULL, NULL, '3.50', NULL, '3.50', '1', '2025-12-31 15:58:49', '2025-12-31 15:58:49'),
('361', '32', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 16:00:28', '2025-12-31 16:00:28'),
('362', '30', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:01:36', '2025-12-31 16:01:36'),
('363', '29', '10', NULL, NULL, '19.00', NULL, '19.00', '1', '2025-12-31 16:03:07', '2025-12-31 16:03:07'),
('364', '28', '10', NULL, NULL, '17.00', NULL, '17.00', '1', '2025-12-31 16:04:10', '2025-12-31 16:04:10'),
('365', '27', '10', NULL, NULL, '15.00', NULL, '15.00', '1', '2025-12-31 16:05:10', '2025-12-31 16:05:10'),
('366', '26', '10', NULL, NULL, '5.00', NULL, '5.00', '1', '2025-12-31 16:06:30', '2025-12-31 16:06:30'),
('367', '25', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:07:48', '2025-12-31 16:07:48'),
('369', '23', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:09:58', '2025-12-31 16:09:58'),
('370', '22', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 16:12:16', '2025-12-31 16:12:16'),
('371', '21', '10', NULL, NULL, '7.00', NULL, '7.00', '1', '2025-12-31 16:13:41', '2025-12-31 16:13:41'),
('372', '20', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:14:48', '2025-12-31 16:14:48'),
('373', '19', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:15:53', '2025-12-31 16:15:53'),
('374', '18', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 16:17:18', '2025-12-31 16:17:18'),
('375', '17', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:18:37', '2025-12-31 16:18:37'),
('376', '16', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:20:04', '2025-12-31 16:20:04'),
('377', '15', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:21:19', '2025-12-31 16:21:19'),
('379', '14', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:23:14', '2025-12-31 16:23:14'),
('380', '13', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:23:45', '2025-12-31 16:23:45'),
('381', '12', '10', NULL, NULL, '6.00', NULL, '6.00', '1', '2025-12-31 16:25:11', '2025-12-31 16:25:11'),
('382', '11', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:26:33', '2025-12-31 16:26:33'),
('383', '10', '10', NULL, NULL, '3.50', NULL, '3.50', '1', '2025-12-31 16:28:09', '2025-12-31 16:28:09'),
('385', '9', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 16:30:01', '2025-12-31 16:30:01'),
('386', '8', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:30:51', '2025-12-31 16:30:51'),
('387', '7', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:32:24', '2025-12-31 16:32:24'),
('388', '6', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2025-12-31 16:34:20', '2025-12-31 16:34:20'),
('390', '5', '10', NULL, NULL, '2.00', NULL, '2.00', '1', '2025-12-31 16:35:39', '2025-12-31 16:35:39'),
('391', '4', '10', NULL, NULL, '2.50', NULL, '2.50', '1', '2025-12-31 16:36:04', '2025-12-31 16:36:04'),
('392', '3', '10', NULL, NULL, '1.50', NULL, '1.50', '1', '2025-12-31 16:37:03', '2025-12-31 16:37:03'),
('393', '2', '10', NULL, NULL, '1.50', NULL, '1.50', '1', '2025-12-31 16:37:47', '2025-12-31 16:37:47'),
('394', '33', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2025-12-31 16:41:14', '2025-12-31 16:41:14'),
('396', '93', '10', NULL, NULL, '4.00', NULL, '4.00', '1', '2026-01-13 19:31:25', '2026-01-13 19:31:25'),
('399', '104', '10', NULL, NULL, '1.00', NULL, '1.00', '1', '2026-01-19 22:19:33', '2026-01-19 22:19:33'),
('401', '105', '10', NULL, NULL, '10.00', NULL, '10.00', '1', '2026-01-23 19:44:04', '2026-01-23 19:44:04'),
('402', '24', '10', NULL, NULL, '6.00', NULL, '6.00', '1', '2026-01-31 19:52:08', '2026-01-31 19:52:08'),
('403', '106', '10', NULL, NULL, '6.00', NULL, '6.00', '1', '2026-02-27 18:35:33', '2026-02-27 18:35:33'),
('404', '107', '10', NULL, NULL, '3.00', NULL, '3.00', '1', '2026-03-11 23:40:32', '2026-03-11 23:40:32');


-- Table structure for table `menu_item_tax`
DROP TABLE IF EXISTS `menu_item_tax`;
CREATE TABLE `menu_item_tax` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint unsigned NOT NULL,
  `tax_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_item_tax_menu_item_id_foreign` (`menu_item_id`),
  KEY `menu_item_tax_tax_id_foreign` (`tax_id`),
  CONSTRAINT `menu_item_tax_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_item_tax_tax_id_foreign` FOREIGN KEY (`tax_id`) REFERENCES `taxes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `menu_item_translations`
DROP TABLE IF EXISTS `menu_item_translations`;
CREATE TABLE `menu_item_translations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint unsigned NOT NULL,
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `item_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `menu_item_translations_menu_item_id_locale_unique` (`menu_item_id`,`locale`),
  KEY `menu_item_translations_locale_index` (`locale`),
  CONSTRAINT `menu_item_translations_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_item_translations`
INSERT INTO `menu_item_translations` VALUES
('1', '1', 'en', 'Pizza', NULL),
('2', '2', 'en', 'Water', ''),
('3', '3', 'en', 'Sparkling water', ''),
('4', '4', 'en', 'Coke products', ''),
('5', '5', 'en', 'Juice', ''),
('6', '6', 'en', 'Perrier', ''),
('7', '7', 'en', 'Redbull', ''),
('8', '8', 'en', 'LIXR', ''),
('9', '9', 'en', 'Tuborg', ''),
('10', '10', 'en', 'Britos', ''),
('11', '11', 'en', 'Corona', ''),
('12', '12', 'en', 'Guinness', ''),
('13', '13', 'en', 'Somersby', ''),
('14', '14', 'en', 'Haineken 0.0%', ''),
('15', '15', 'en', 'White wine', ''),
('16', '16', 'en', 'Rose wine', ''),
('17', '17', 'en', 'Red wine', ''),
('18', '18', 'en', 'Captain Fred', ''),
('19', '19', 'en', 'Captain Morgan', ''),
('20', '20', 'en', 'Bacardi', ''),
('21', '21', 'en', 'Bambu', ''),
('22', '22', 'en', 'Gin Nordix', ''),
('23', '23', 'en', 'Beefeater', ''),
('24', '24', 'en', 'Bombay Sappfire', ''),
('25', '25', 'en', 'Mixed Nuts', ''),
('26', '26', 'en', 'Chocolate ', ''),
('27', '27', 'en', 'Meze Pletter ', ''),
('28', '28', 'en', 'Yellow, Red ', ''),
('29', '29', 'en', 'Black', ''),
('30', '30', 'en', 'Rosie Premium with 100% BIO rose water ', ''),
('31', '31', 'en', 'Rosie Platinum', ''),
('32', '32', 'en', 'Highlighter', ''),
('33', '33', 'en', 'Smuggler', ''),
('34', '34', 'en', 'Dewar\'s', ''),
('35', '35', 'en', 'Martini', ''),
('36', '36', 'en', 'Bailey\'s', ''),
('37', '37', 'en', 'Mint', ''),
('38', '38', 'en', 'Bocmanska', ''),
('39', '39', 'en', 'Ouzo Plomari', ''),
('40', '40', 'en', 'Yeni Raki', ''),
('41', '41', 'en', 'Aperol Spritz', ''),
('42', '42', 'en', 'Tequilla BG ', ''),
('43', '43', 'en', 'Tequilla Mexico ', ''),
('44', '44', 'en', 'AMNESIA', ''),
('45', '45', 'en', 'Pickles', ''),
('46', '46', 'en', '10 Shaker Shots', ''),
('47', '47', 'en', 'Karaoke', ''),
('48', '48', 'en', 'Teacher\'s', ''),
('49', '49', 'en', 'Claymore', ''),
('50', '50', 'en', 'Hankey Bannister ', ''),
('51', '51', 'en', 'Passport ', ''),
('52', '52', 'en', 'Johnnie Walker Red ', ''),
('53', '53', 'en', 'Johnnie Walker Black ', ''),
('54', '54', 'en', 'Johnnie Walker Gold', ''),
('55', '55', 'en', 'Johnnie Walker Blue ', ''),
('56', '56', 'en', 'Chivas Regal 12 y.o', ''),
('57', '57', 'en', 'Glenfiddich 12 y.o', ''),
('58', '58', 'en', 'Glenfiddich 14 y.o', ''),
('59', '59', 'en', 'Glenfiddich 15 y.o', ''),
('60', '60', 'en', 'Tenjaku Japanese', ''),
('61', '61', 'en', 'Bushmills', ''),
('62', '62', 'en', 'Bushmills Black', ''),
('63', '63', 'en', 'Bushmills Green 10 y.o', ''),
('64', '64', 'en', 'Four Roses', ''),
('65', '65', 'en', 'Olives', ''),
('66', '66', 'en', 'Maker\'s Mark', ''),
('67', '67', 'en', 'Jack Daniel\'s', ''),
('68', '68', 'en', 'Bruschetti plate 12', ''),
('69', '69', 'en', 'Gentleman Jack', ''),
('70', '70', 'en', 'Jack Single Barrel', ''),
('71', '71', 'en', 'Jack Gold 27', ''),
('72', '72', 'en', 'Staropramen Dark', ''),
('73', '73', 'en', 'Sex at AL CAPONE', ''),
('74', '74', 'en', 'Mojito', ''),
('75', '75', 'en', 'Cuba Libre ', ''),
('76', '76', 'en', 'White Russian', ''),
('77', '77', 'en', 'Blue Lagoon', ''),
('78', '78', 'en', 'Strawberry Daiquiri', ''),
('79', '79', 'en', 'Margarita', ''),
('80', '80', 'en', 'Long Island ', ''),
('81', '81', 'en', 'Cosmopolitan', ''),
('82', '82', 'en', 'Black Russian', ''),
('83', '83', 'en', 'Tequilla Sunrise', ''),
('84', '84', 'en', 'Bloody Mary', ''),
('85', '85', 'en', 'Bottle Wine', ''),
('86', '86', 'en', 'Oenope Red Wine', NULL),
('87', '87', 'en', 'Juice 1L Bottle', ''),
('88', '88', 'en', 'Pinta Craft Right Now', ''),
('89', '89', 'en', 'Pinta Seems Perfect', ''),
('90', '90', 'en', 'Pinta Modern Drinking', ''),
('91', '91', 'en', 'Mikkeller Preztelbock', ''),
('92', '92', 'en', 'Chasha Vino', ''),
('93', '93', 'en', 'REEPER B.  IPA', ''),
('94', '104', 'en', 'Token', ''),
('95', '105', 'en', 'Music ticket', ''),
('96', '106', 'en', '0.0% Cocktail', ''),
('97', '107', 'en', 'Ballon', '');


-- Table structure for table `menu_item_variations`
DROP TABLE IF EXISTS `menu_item_variations`;
CREATE TABLE `menu_item_variations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `variation` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `batch_recipe_id` bigint unsigned DEFAULT NULL,
  `batch_serving_size` decimal(16,3) DEFAULT NULL,
  `menu_item_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menu_item_variations_menu_item_id_foreign` (`menu_item_id`),
  KEY `menu_item_variations_batch_recipe_id_foreign` (`batch_recipe_id`),
  CONSTRAINT `menu_item_variations_batch_recipe_id_foreign` FOREIGN KEY (`batch_recipe_id`) REFERENCES `batch_recipes` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `menu_item_variations_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `menu_items`
DROP TABLE IF EXISTS `menu_items`;
CREATE TABLE `menu_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `kot_place_id` bigint unsigned DEFAULT NULL,
  `item_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `type` enum('veg','non-veg','egg','drink','other','halal') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `price` decimal(16,2) DEFAULT NULL,
  `menu_id` bigint unsigned NOT NULL,
  `item_category_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `preparation_time` int DEFAULT NULL,
  `is_available` tinyint(1) NOT NULL DEFAULT '1',
  `show_on_customer_site` tinyint(1) NOT NULL DEFAULT '1',
  `in_stock` tinyint(1) NOT NULL DEFAULT '1',
  `batch_recipe_id` bigint unsigned DEFAULT NULL,
  `batch_serving_size` decimal(16,3) DEFAULT NULL,
  `sort_order` int unsigned NOT NULL DEFAULT '0',
  `tax_inclusive` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `menu_items_menu_id_foreign` (`menu_id`),
  KEY `menu_items_item_category_id_foreign` (`item_category_id`),
  KEY `idx_branch_available` (`branch_id`,`is_available`),
  KEY `menu_items_batch_recipe_id_foreign` (`batch_recipe_id`),
  CONSTRAINT `menu_items_batch_recipe_id_foreign` FOREIGN KEY (`batch_recipe_id`) REFERENCES `batch_recipes` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `menu_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_items_item_category_id_foreign` FOREIGN KEY (`item_category_id`) REFERENCES `item_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `menu_items_menu_id_foreign` FOREIGN KEY (`menu_id`) REFERENCES `menus` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menu_items`
INSERT INTO `menu_items` VALUES
('1', '3', NULL, 'Pizza', NULL, NULL, 'veg', '10.00', '1', '1', '2025-11-27 01:35:35', '2025-11-27 01:35:35', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('2', '4', NULL, 'Water', NULL, '', 'drink', '1.50', '2', '2', '2025-11-27 10:36:22', '2025-12-31 16:37:47', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('3', '4', NULL, 'Sparkling water', NULL, '', 'drink', '1.50', '2', '2', '2025-11-27 13:35:18', '2025-12-31 16:37:03', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('4', '4', NULL, 'Coke products', NULL, '', 'drink', '2.50', '2', '2', '2025-11-27 13:36:14', '2025-12-31 16:36:04', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('5', '4', NULL, 'Juice', NULL, '', 'drink', '2.00', '2', '2', '2025-11-27 13:38:35', '2025-12-31 16:35:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('6', '4', NULL, 'Perrier', NULL, '', 'drink', '4.00', '2', '2', '2025-11-27 13:39:20', '2025-12-31 16:34:20', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('7', '4', NULL, 'Redbull', NULL, '', 'drink', '4.00', '2', '2', '2025-11-27 13:39:50', '2025-12-31 16:32:24', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('8', '4', NULL, 'LIXR', NULL, '', 'drink', '4.00', '2', '2', '2025-11-27 13:40:21', '2025-12-31 16:30:51', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('9', '4', NULL, 'Tuborg', NULL, '', 'drink', '3.00', '2', '3', '2025-11-27 13:40:57', '2025-12-31 16:30:01', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('10', '4', NULL, 'Britos', NULL, '', 'drink', '3.50', '2', '3', '2025-11-27 13:41:27', '2025-12-31 16:28:09', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('11', '4', NULL, 'Corona', NULL, '', 'drink', '4.00', '2', '3', '2025-11-27 13:41:58', '2025-12-31 16:26:33', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('12', '4', NULL, 'Guinness', NULL, '', 'drink', '6.00', '2', '3', '2025-11-27 13:42:36', '2025-12-31 16:25:11', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('13', '4', NULL, 'Somersby', NULL, '', 'drink', '4.00', '2', '3', '2025-11-27 13:43:16', '2025-12-31 16:23:45', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('14', '4', NULL, 'Haineken 0.0%', NULL, '', 'drink', '4.00', '2', '3', '2025-11-27 13:44:22', '2025-12-31 16:23:14', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('15', '4', NULL, 'White wine', NULL, '', 'drink', '4.00', '2', '4', '2025-11-27 13:45:00', '2025-12-31 16:21:19', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('16', '4', NULL, 'Rose wine', NULL, '', 'drink', '4.00', '2', '4', '2025-11-27 13:46:09', '2025-12-31 16:20:04', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('17', '4', NULL, 'Red wine', NULL, '', 'drink', '4.00', '2', '4', '2025-11-27 13:46:35', '2025-12-31 16:18:37', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('18', '4', NULL, 'Captain Fred', NULL, '', 'drink', '3.00', '2', '14', '2025-11-27 13:47:11', '2025-12-31 16:17:18', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('19', '4', NULL, 'Captain Morgan', NULL, '', 'drink', '4.00', '2', '14', '2025-11-27 13:47:55', '2025-12-31 16:15:53', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('20', '4', NULL, 'Bacardi', NULL, '', 'drink', '4.00', '2', '14', '2025-11-27 13:48:25', '2025-12-31 16:14:48', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('21', '4', NULL, 'Bambu', NULL, '', 'drink', '7.00', '2', '14', '2025-11-27 13:48:55', '2025-12-31 16:13:41', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('22', '4', NULL, 'Gin Nordix', NULL, '', 'drink', '3.00', '2', '8', '2025-11-27 13:49:45', '2025-12-31 16:12:16', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('23', '4', NULL, 'Beefeater', NULL, '', 'drink', '4.00', '2', '8', '2025-11-27 13:50:23', '2025-12-31 16:09:58', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('24', '4', NULL, 'Bombay Sappfire', NULL, '', 'drink', '6.00', '2', '8', '2025-11-27 13:51:17', '2026-01-31 19:52:08', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('25', '4', NULL, 'Mixed Nuts', NULL, '', 'other', '4.00', '2', '9', '2025-11-27 13:52:21', '2025-12-31 16:07:48', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('26', '4', NULL, 'Chocolate ', NULL, '', 'other', '5.00', '2', '9', '2025-11-27 13:53:26', '2025-12-31 16:06:30', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('27', '4', NULL, 'Meze Pletter ', NULL, '', 'other', '15.00', '2', '9', '2025-11-27 13:54:11', '2025-12-31 16:05:10', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('28', '4', NULL, 'Yellow, Red ', NULL, '', 'other', '17.00', '2', '10', '2025-11-27 13:55:34', '2025-12-31 16:04:10', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('29', '4', NULL, 'Black', NULL, '', 'other', '19.00', '2', '10', '2025-11-27 13:56:14', '2025-12-31 16:03:07', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('30', '4', NULL, 'Rosie Premium with 100% BIO rose water ', NULL, '', 'drink', '4.00', '2', '5', '2025-11-27 13:57:37', '2025-12-31 16:01:36', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('31', '4', NULL, 'Rosie Platinum', NULL, '', 'drink', '4.00', '2', '5', '2025-11-27 13:58:43', '2025-12-31 15:45:37', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('32', '4', NULL, 'Highlighter', NULL, '', 'drink', '3.00', '2', '6', '2025-11-27 13:59:31', '2025-12-31 16:00:28', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('33', '4', NULL, 'Smuggler', NULL, '', 'drink', '3.00', '2', '6', '2025-11-27 14:00:06', '2025-12-31 16:41:14', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('34', '4', NULL, 'Dewar\'s', NULL, '', 'drink', '3.50', '2', '6', '2025-11-27 14:01:28', '2025-12-31 15:58:49', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('35', '4', NULL, 'Martini', NULL, '', 'drink', '5.00', '2', '11', '2025-11-27 14:02:17', '2025-12-31 15:57:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('36', '4', NULL, 'Bailey\'s', NULL, '', 'drink', '4.00', '2', '11', '2025-11-27 14:03:39', '2025-12-31 15:56:23', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('37', '4', NULL, 'Mint', NULL, '', 'drink', '3.00', '2', '11', '2025-11-27 14:04:18', '2025-12-31 15:55:23', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('38', '4', NULL, 'Bocmanska', NULL, '', 'drink', '3.00', '2', '11', '2025-11-27 14:05:04', '2025-12-31 15:54:20', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('39', '4', NULL, 'Ouzo Plomari', NULL, '', 'drink', '3.50', '2', '11', '2025-11-27 14:05:53', '2025-12-31 15:53:29', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('40', '4', NULL, 'Yeni Raki', NULL, '', 'drink', '4.00', '2', '11', '2025-11-27 14:07:11', '2025-12-31 15:52:29', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('41', '4', NULL, 'Aperol Spritz', NULL, '', 'drink', '7.00', '2', '11', '2025-11-27 14:08:01', '2025-12-31 15:51:38', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('42', '4', NULL, 'Tequilla BG ', NULL, '', 'drink', '2.50', '2', '12', '2025-11-27 14:08:45', '2025-12-31 15:50:38', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('43', '4', NULL, 'Tequilla Mexico ', NULL, '', 'drink', '3.00', '2', '12', '2025-11-27 14:09:56', '2025-12-31 15:49:37', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('44', '4', NULL, 'AMNESIA', '497ad40124ff4811d0efe8b2fef87809.jpg', '', 'drink', '3.00', '2', '12', '2025-11-27 14:13:28', '2025-12-31 15:48:42', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('45', '4', NULL, 'Pickles', NULL, '', 'veg', '3.00', '2', '9', '2025-11-27 14:19:13', '2025-12-31 15:47:53', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('46', '4', NULL, '10 Shaker Shots', NULL, '', 'drink', '20.00', '2', '12', '2025-11-27 14:20:00', '2025-12-31 15:46:59', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('47', '4', NULL, 'Karaoke', NULL, '', 'other', '5.00', '2', '13', '2025-11-27 14:20:27', '2025-11-27 14:20:27', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('48', '4', NULL, 'Teacher\'s', NULL, '', 'drink', '3.50', '2', '6', '2025-11-27 14:21:08', '2025-12-31 15:44:32', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('49', '4', NULL, 'Claymore', NULL, '', 'drink', '3.00', '2', '6', '2025-11-27 14:23:00', '2025-12-31 15:43:44', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('50', '4', NULL, 'Hankey Bannister ', NULL, '', 'drink', '3.00', '2', '6', '2025-11-27 14:23:35', '2025-12-31 15:42:27', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('51', '4', NULL, 'Passport ', NULL, '', 'drink', '3.00', '2', '6', '2025-11-27 14:24:31', '2025-12-31 15:41:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('52', '4', NULL, 'Johnnie Walker Red ', NULL, '', 'drink', '3.50', '2', '6', '2025-11-27 14:25:11', '2025-12-31 15:40:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('53', '4', NULL, 'Johnnie Walker Black ', NULL, '', 'drink', '6.00', '2', '6', '2025-11-27 14:25:43', '2025-12-31 15:39:53', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('54', '4', NULL, 'Johnnie Walker Gold', NULL, '', 'drink', '8.00', '2', '6', '2025-11-27 14:26:18', '2025-12-31 15:39:06', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('55', '4', NULL, 'Johnnie Walker Blue ', NULL, '', 'drink', '46.00', '2', '6', '2025-11-27 14:26:51', '2025-12-31 15:38:26', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('56', '4', NULL, 'Chivas Regal 12 y.o', NULL, '', 'drink', '6.00', '2', '6', '2025-11-27 14:27:39', '2025-12-31 15:37:41', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('57', '4', NULL, 'Glenfiddich 12 y.o', NULL, '', 'drink', '8.00', '2', '6', '2025-11-27 14:28:27', '2025-12-31 15:36:55', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('58', '4', NULL, 'Glenfiddich 14 y.o', NULL, '', 'drink', '15.00', '2', '6', '2025-11-27 14:29:30', '2025-12-31 15:36:22', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('59', '4', NULL, 'Glenfiddich 15 y.o', NULL, '', 'drink', '10.00', '2', '6', '2025-11-27 14:30:18', '2025-12-31 15:35:35', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('60', '4', NULL, 'Tenjaku Japanese', NULL, '', 'drink', '5.00', '2', '6', '2025-11-27 18:11:35', '2025-12-31 15:34:51', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('61', '4', NULL, 'Bushmills', NULL, '', 'drink', '4.00', '2', '6', '2025-11-27 18:12:05', '2025-12-31 15:34:16', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('62', '4', NULL, 'Bushmills Black', NULL, '', 'drink', '5.00', '2', '6', '2025-11-27 18:12:54', '2025-12-31 15:32:36', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('63', '4', NULL, 'Bushmills Green 10 y.o', NULL, '', 'drink', '7.00', '2', '6', '2025-11-27 18:13:59', '2025-12-31 15:32:01', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('64', '4', NULL, 'Four Roses', NULL, '', 'drink', '4.00', '2', '6', '2025-11-27 18:14:35', '2025-12-31 15:31:26', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('65', '4', NULL, 'Olives', NULL, '', 'veg', '3.00', '2', '9', '2025-11-27 18:15:54', '2025-12-31 15:29:45', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('66', '4', NULL, 'Maker\'s Mark', NULL, '', 'drink', '7.00', '2', '6', '2025-11-27 18:16:39', '2025-12-31 15:28:53', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('67', '4', NULL, 'Jack Daniel\'s', NULL, '', 'drink', '5.00', '2', '6', '2025-11-27 18:17:19', '2025-12-31 15:28:19', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('68', '4', NULL, 'Bruschetti plate 12', NULL, '', 'other', '12.00', '2', '9', '2025-11-27 18:20:00', '2025-12-31 15:27:22', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('69', '4', NULL, 'Gentleman Jack', NULL, '', 'drink', '7.00', '2', '6', '2025-11-27 18:20:53', '2025-12-31 15:26:28', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('70', '4', NULL, 'Jack Single Barrel', NULL, '', 'drink', '11.00', '2', '6', '2025-11-27 18:21:38', '2025-12-31 15:26:02', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('71', '4', NULL, 'Jack Gold 27', NULL, '', 'drink', '25.00', '2', '6', '2025-11-27 18:22:17', '2025-12-31 15:25:19', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('72', '4', NULL, 'Staropramen Dark', NULL, '', 'drink', '4.00', '2', '3', '2025-11-27 18:23:03', '2025-12-31 15:24:27', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('73', '4', NULL, 'Sex at AL CAPONE', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:28:40', '2025-12-31 15:20:38', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('74', '4', NULL, 'Mojito', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:29:10', '2025-12-31 15:19:46', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('75', '4', NULL, 'Cuba Libre ', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:29:43', '2025-12-31 15:19:26', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('76', '4', NULL, 'White Russian', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:31:04', '2025-12-31 15:19:03', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('77', '4', NULL, 'Blue Lagoon', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:31:39', '2025-12-31 15:18:43', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('78', '4', NULL, 'Strawberry Daiquiri', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:32:20', '2025-12-31 15:18:23', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('79', '4', NULL, 'Margarita', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:32:48', '2025-12-31 15:18:06', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('80', '4', NULL, 'Long Island ', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:33:29', '2025-12-31 15:17:42', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('81', '4', NULL, 'Cosmopolitan', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:34:03', '2025-12-31 15:17:21', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('82', '4', NULL, 'Black Russian', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:34:30', '2025-12-31 15:16:58', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('83', '4', NULL, 'Tequilla Sunrise', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:35:08', '2025-12-31 15:16:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('84', '4', NULL, 'Bloody Mary', NULL, '', 'drink', '9.00', '2', '15', '2025-11-27 18:35:43', '2025-12-31 15:16:08', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('85', '4', NULL, 'Bottle Wine', NULL, '', 'drink', '25.00', '2', '4', '2025-11-27 18:36:18', '2025-12-31 15:15:36', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('86', '5', NULL, 'Oenope Red Wine', NULL, NULL, 'drink', '21.99', '3', '19', '2025-12-01 11:50:16', '2025-12-01 11:50:16', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('87', '4', NULL, 'Juice 1L Bottle', NULL, '', 'drink', '15.00', '2', '2', '2025-12-03 10:28:17', '2025-12-31 15:15:10', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('88', '5', NULL, 'Pinta Craft Right Now', NULL, '', 'veg', '7.99', '3', '17', '2025-12-19 18:26:02', '2025-12-19 18:26:02', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('89', '5', NULL, 'Pinta Seems Perfect', NULL, '', 'veg', '8.99', '3', '17', '2025-12-19 18:29:19', '2025-12-19 18:29:19', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('90', '5', NULL, 'Pinta Modern Drinking', NULL, '', 'veg', '6.99', '3', '17', '2025-12-19 18:31:12', '2025-12-19 18:31:12', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('91', '5', NULL, 'Mikkeller Preztelbock', NULL, '', 'veg', '8.99', '3', '17', '2025-12-20 09:09:46', '2025-12-20 09:09:46', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('92', '5', NULL, 'Chasha Vino', NULL, '', 'veg', '6.49', '3', '16', '2025-12-27 15:53:00', '2025-12-27 15:53:00', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('93', '4', NULL, 'REEPER B.  IPA', NULL, '', 'drink', '4.00', '2', '3', '2026-01-13 19:30:00', '2026-01-13 19:31:25', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('94', '1', '1', 'Margherita Pizza', NULL, 'Classic cheese and tomato pizza', 'veg', '299.00', '4', '20', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('95', '1', '1', 'Pepperoni Pizza', NULL, 'Pepperoni and mozzarella cheese', 'non-veg', '349.00', '4', '20', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('96', '1', '1', 'Veg Burger', NULL, 'Grilled veggie patty with lettuce and mayo', 'veg', '199.00', '5', '21', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('97', '1', '1', 'Chicken Burger', NULL, 'Grilled chicken patty with cheese', 'non-veg', '249.00', '5', '21', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('98', '1', '1', 'French Fries', NULL, 'Crispy golden fries', 'veg', '99.00', '5', '22', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('99', '1', '1', 'Coke', NULL, 'Chilled Coca-Cola', 'veg', '49.00', '6', '23', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('100', '1', '1', 'Cold Coffee', NULL, 'Iced coffee with milk and sugar', 'veg', '129.00', '6', '23', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('101', '1', '1', 'Chocolate Cake', NULL, 'Rich chocolate layered cake', 'veg', '179.00', '7', '24', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('102', '1', '1', 'Pasta Alfredo', NULL, 'Creamy white sauce pasta', 'veg', '229.00', '4', '25', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('103', '1', '1', 'Grilled Sandwich', NULL, 'Grilled bread with cheese and veggies', 'veg', '149.00', '5', '26', '2026-01-19 07:07:39', '2026-01-19 07:07:39', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('104', '4', NULL, 'Token', NULL, '', 'drink', '1.00', '2', '11', '2026-01-19 22:07:27', '2026-01-19 22:19:33', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('105', '4', NULL, 'Music ticket', NULL, '', 'drink', '10.00', '2', '13', '2026-01-23 19:43:52', '2026-01-23 19:44:04', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('106', '4', NULL, '0.0% Cocktail', NULL, '', 'drink', '6.00', '2', '15', '2026-02-27 18:35:33', '2026-02-27 18:35:33', NULL, '1', '1', '1', NULL, NULL, '0', '0'),
('107', '4', NULL, 'Ballon', NULL, '', 'other', '3.00', '2', '11', '2026-03-11 23:40:32', '2026-03-11 23:40:32', NULL, '1', '1', '1', NULL, NULL, '0', '0');


-- Table structure for table `menus`
DROP TABLE IF EXISTS `menus`;
CREATE TABLE `menus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `menu_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `sort_order` int unsigned NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `menus_branch_id_foreign` (`branch_id`),
  CONSTRAINT `menus_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `menus`
INSERT INTO `menus` VALUES
('1', '3', '{\"en\":\"Main Menu\"}', '0', '2025-11-27 01:34:35', '2025-11-27 01:34:35'),
('2', '4', '{\"en\":\"Menu\"}', '0', '2025-11-27 10:26:31', '2025-11-27 10:26:31'),
('3', '5', '{\"en\":\"Menu\"}', '0', '2025-12-01 11:44:14', '2025-12-01 11:44:14'),
('4', '1', '{\"en\":\"Main Menu\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('5', '1', '{\"en\":\"Snacks\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('6', '1', '{\"en\":\"Drinks\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39'),
('7', '1', '{\"en\":\"Dessert Menu\"}', '0', '2026-01-19 07:07:39', '2026-01-19 07:07:39');


-- Table structure for table `migrations`
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=320 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `migrations`
INSERT INTO `migrations` VALUES
('1', '0001_01_01_000000_create_users_table', '1'),
('2', '0001_01_01_000001_create_cache_table', '1'),
('3', '0001_01_01_000002_create_jobs_table', '1'),
('4', '2014_04_02_193005_create_translations_table', '1'),
('5', '2024_01_01_create_printers_table', '1'),
('6', '2024_03_13_000002_create_expense_categories_table', '1'),
('7', '2024_07_01_060651_add_two_factor_columns_to_users_table', '1'),
('8', '2024_07_01_060707_create_personal_access_tokens_table', '1'),
('9', '2024_07_02_064204_create_menus_table', '1'),
('10', '2024_07_12_070634_create_areas_table', '1'),
('11', '2024_07_16_103816_create_orders_table', '1'),
('12', '2024_07_21_083459_add_user_type_column', '1'),
('13', '2024_07_24_131631_create_payments_table', '1'),
('14', '2024_07_31_081306_add_email_otp_column', '1'),
('15', '2024_08_02_061808_create_countries_table', '1'),
('16', '2024_08_02_071637_create_restaurant_settings_table', '1'),
('17', '2024_08_04_104258_create_razorpay_payments_table', '1'),
('18', '2024_08_05_092258_create_stripe_payments_table', '1'),
('19', '2024_08_05_110157_create_payment_gateway_credentials_table', '1'),
('20', '2024_08_13_033139_create_global_settings_table', '1'),
('21', '2024_08_13_073129_update_settings_add_envato_key', '1'),
('22', '2024_08_13_073129_update_settings_add_support_key', '1'),
('23', '2024_08_14_073129_update_settings_add_email', '1'),
('24', '2024_08_14_073129_update_settings_add_last_verified_key', '1'),
('25', '2024_09_13_081726_create_modules_table', '1'),
('26', '2024_09_14_130619_create_permission_tables', '1'),
('27', '2024_09_27_071339_create_reservations_table', '1'),
('28', '2024_10_02_090924_create_email_settings_table', '1'),
('29', '2024_10_03_073837_create_notification_settings_table', '1'),
('30', '2024_10_11_100539_create_branches_table', '1'),
('31', '2024_10_14_121135_create_onboarding_steps_table', '1'),
('32', '2024_10_15_071238_add_restaurant_hash_column', '1'),
('33', '2024_10_15_071238_storage', '1'),
('34', '2024_10_15_100639_create_restaurant_payments_table', '1'),
('35', '2024_10_27_101326_create_packages_table', '1'),
('36', '2024_11_02_112920_create_language_settings_table', '1'),
('37', '2024_11_02_120314_create_flags_table', '1'),
('38', '2024_11_02_120314_email_settings_table', '1'),
('39', '2024_11_08_071617_add_customer_login_required_column', '1'),
('40', '2024_11_08_093032_create_superadmin_payment_gateways_table', '1'),
('41', '2024_11_08_133506_add_stripe_column_for_license', '1'),
('42', '2024_11_12_055119_create_delivery_executives_table', '1'),
('43', '2024_11_12_055632_add_order_types_column', '1'),
('44', '2024_11_12_060500_create_order_histories_table', '1'),
('45', '2024_11_12_060500_global_license_type_table', '1'),
('46', '2024_11_12_060500_global_purchase_on_table', '1'),
('47', '2024_11_12_060500_global_setting_timezone_table', '1'),
('48', '2024_11_17_052707_currency_position', '1'),
('49', '2024_11_17_052707_move_qr_code', '1'),
('50', '2024_11_19_113852_add_is_active_to_restaurants_table', '1'),
('51', '2024_11_20_114816_add_staff_welcome_email_notification', '1'),
('52', '2024_11_25_061322_create_pusher_settings_table', '1'),
('53', '2024_11_26_090216_create_global_currencies_table', '1'),
('54', '2024_12_03_085842_add_about_us_column', '1'),
('55', '2024_12_03_104817_add_currency_id_packages', '1'),
('56', '2024_12_04_080223_add_allow_customer_delivery_orders', '1'),
('57', '2024_12_04_115601_add_preparation_time_column', '1'),
('58', '2024_12_11_110000_create_tables_for_subscription_table', '1'),
('59', '2024_12_11_131225_add_disable_landing_site_columns', '1'),
('60', '2024_12_12_090840_create_waiter_requests_table', '1'),
('61', '2024_12_13_090840_add_domain_global_setting', '1'),
('62', '2024_12_16_080201_create_lifetime_subscriptions_for_paid_restaurants', '1'),
('63', '2024_12_23_124452_add_payment_enabled_columns_to_payment_settings_table', '1'),
('64', '2024_12_27_054246_add_table_reservation_default_status_to_restaurants_table', '1'),
('65', '2024_12_30_074018_create_split_orders_table', '1'),
('66', '2024_12_30_200942_create_restaurant_settings_table', '1'),
('67', '2025_01_03_050139_add_social_media_links_to_reataurants_table', '1'),
('68', '2025_01_03_093938_add_social_media_links_to_global_settings_table', '1'),
('69', '2025_01_06_111550_create_receipt_settings_table', '1'),
('70', '2025_01_09_073145_generate_qr_codes_for_existing_branches', '1'),
('71', '2025_01_09_115652_update_receipt_settings_for_existing_restaurants', '1'),
('72', '2025_01_10_064103_add_table_required_column_to_customer_settings_table', '1'),
('73', '2025_01_10_100552_insert_to_file_storage_settings_default_values', '1'),
('74', '2025_01_11_063817_add_default_currency_column', '1'),
('75', '2025_01_15_000000_create_cart_header_settings_table', '1'),
('76', '2025_01_15_000001_create_cart_header_images_table', '1'),
('77', '2025_01_16_000000_add_is_header_disabled_to_cart_header_settings_table', '1'),
('78', '2025_01_16_125322_add_is_enabled_to_menu_items_table', '1'),
('79', '2025_01_16_131100_regenrate_qr_codes', '1'),
('80', '2025_01_20_000000_add_restaurant_id_to_roles', '1'),
('81', '2025_01_20_071544_add_branch_limit_to_packages_table', '1'),
('82', '2025_01_20_091630_update_item_type', '1'),
('83', '2025_01_20_125429_add_discount_columns_to_orders_table', '1'),
('84', '2025_01_21_064139_add_show_logo_text_column', '1'),
('85', '2025_01_21_064256_add_offline_payment', '1'),
('86', '2025_01_21_132218_fix_user_roles', '1'),
('87', '2025_01_22_114720_add_show_tax_to_receipt_setting', '1'),
('88', '2025_01_23_065746_create_modifier_groups_table', '1'),
('89', '2025_01_23_085333_create_restaurant_taxes_table', '1'),
('90', '2025_01_23_090554_create_modifier_options_table', '1'),
('91', '2025_01_23_094318_create_item_modifiers_table', '1'),
('92', '2025_01_23_121154_create_order_item_modifier_options_table', '1'),
('93', '2025_01_27_065822_add_balance_column_to_payment', '1'),
('94', '2025_01_28_111039_add_allow_dine_in_orders_to_restaurant', '1'),
('95', '2025_01_30_050755_add_yelp_icon_to_global_settings', '1'),
('96', '2025_01_30_055744_add_yelp_link_to_restaurants', '1'),
('97', '2025_01_30_100556_fix_package_price_length', '1'),
('98', '2025_01_30_104043_add_meta_data_to_global_settings', '1'),
('99', '2025_01_31_000001_create_predefined_amounts_table', '1'),
('100', '2025_02_03_062109_add_is_cash_payment_enabled_to_payment', '1'),
('101', '2025_02_04_140538_add_transaction_id_kot', '1'),
('102', '2025_02_15_121956_add_hide_new_orders_option_to_restaurant', '1'),
('103', '2025_02_17_052801_create_restaurant_charges_settings_table', '1'),
('104', '2025_02_17_093729_add_favicon_to_restaurant', '1'),
('105', '2025_02_19_091730_update_menu_name_to_json', '1'),
('106', '2025_02_20_095321_add_waiter_request_options_to_restaurant', '1'),
('107', '2025_02_21_051534_add_hash_to_global_settings_table', '1'),
('108', '2025_02_21_102116_add_column_to_settings', '1'),
('109', '2025_02_24_063827_add_payment_qr_to_receipt_settings', '1'),
('110', '2025_02_24_111946_add_permissions_to_customers', '1'),
('111', '2025_03_04_114535_add_is_enabled_to_restaurant_charges', '1'),
('112', '2025_03_10_055100_add_tip_column_to_orders_table', '1'),
('113', '2025_03_10_100727_add_is_pwa_intall_alert_show_column_in_restaurants_table', '1'),
('114', '2025_03_17_090450_add_meta_title_to_global_settings', '1'),
('115', '2025_03_18_044410_create_expenses_table', '1'),
('116', '2025_03_19_092459_create_custom_menus_table', '1'),
('117', '2025_03_19_103047_update_additional_modules', '1'),
('118', '2025_03_24_084350_add_show_payments_column_to_receipt_settings_table', '1'),
('119', '2025_04_01_050059_add_branch_id_to_expense_category', '1'),
('120', '2025_04_01_051356_add_branch_id_to_expenses', '1'),
('121', '2025_04_02_071911_update_kot_status_enum', '1'),
('122', '2025_04_07_112351_add_payment_recived_status_to_orders_table', '1'),
('123', '2025_04_08_063624_update_meta_keywords', '1'),
('124', '2025_04_10_065753_add_flutterwave_payment_gateway_columns_and_tables', '1'),
('125', '2025_04_15_084543_create_front_details_table', '1'),
('126', '2025_04_22_065157_create_front_reviews_setting_table', '1'),
('127', '2025_04_22_091055_create_branch_delivery_settings_table', '1'),
('128', '2025_04_22_091146_create_customer_addresses_table', '1'),
('129', '2025_04_22_091223_create_delivery_fee_tiers_table', '1'),
('130', '2025_04_22_091258_add_delivery_columns_to_orders_table', '1'),
('131', '2025_04_29_102014_add_landing_type_column_in_global_settings_table', '1'),
('132', '2025_04_29_114538_add_front_data_in_front_details_table', '1'),
('133', '2025_05_14_094039_update_printers_settings_columns_to_printers_table', '1'),
('134', '2025_05_15_071027_create_kot_places_table', '1'),
('135', '2025_05_23_124746_add_in_stock_column', '1'),
('136', '2025_05_26_105151_relocate_map_api_key_to_superadmin_settings', '1'),
('137', '2025_05_26_114443_modify_kot_places_table', '1'),
('138', '2025_05_30_081624_add_show_item_on_customer_site_to_menu_items', '1'),
('139', '2025_06_02_081928_add_session_driver_column_to_global_settings', '1'),
('140', '2025_06_02_112147_add_columns_to_superadmin_payment_gateways_table', '1'),
('141', '2025_06_02_112903_add_paypal_payment_column_to_payment_gateway_credentials', '1'),
('142', '2025_06_02_113108_create_paypal_payments_table', '1'),
('143', '2025_06_02_114326_add_paypal_payment_in_payment_method_to_payments', '1'),
('144', '2025_06_03_095923_add_status_column_kot_item', '1'),
('145', '2025_06_04_065130_add_columns_payfast_in_superadmin_payment_gateways_table', '1'),
('146', '2025_06_05_063256_add_sort_order_columns_in_menu_and_items', '1'),
('147', '2025_06_05_112055_create_kot_settings_table', '1'),
('148', '2025_06_06_050159_add_payfast_payment_column_to_payment_gateway_credentials', '1'),
('149', '2025_06_06_051204_create_payfast_payments_table', '1'),
('150', '2025_06_10_093131_change_delete_cascade_for_orders', '1'),
('151', '2025_06_11_061716_add_uuid_to_orders_table', '1'),
('152', '2025_06_11_062354_add_columns_paystack_in_superadmin_payment_gateways_table', '1'),
('153', '2025_06_13_112612_add_phone_to_users', '1'),
('154', '2025_06_13_113200_add_column_paystack_payments_to_payment_gateway_credentials', '1'),
('155', '2025_06_13_113240_create_paystack_payments_table', '1'),
('156', '2025_06_16_104533_add_note_columns_to_kot_items_and_order_items', '1'),
('157', '2025_06_18_112425_add_payment_gateways_to_restaurants_table', '1'),
('158', '2025_06_19_070518_add_position_to_custom_menus_table', '1'),
('159', '2025_06_20_060452_add_columns_to_branch_table', '1'),
('160', '2025_06_20_092521_add_others_type_to_payments_table', '1'),
('161', '2025_06_23_101041_create_kot_cancel_reasons_table', '1'),
('162', '2025_06_23_120021_update_kot_place_id_in_menu_items', '1'),
('163', '2025_06_24_092521_disable_printer', '1'),
('164', '2025_06_24_092811_add_column_cancel_kot_reason_to_kots_table', '1'),
('165', '2025_06_24_102830_update_enum_status_to_kots_table', '1'),
('166', '2025_06_25_094311_add_column_cancellation_reason_to_orders_table', '1'),
('167', '2025_06_26_060831_add_custom_delivery_options_to_restaurants_table', '1'),
('168', '2025_06_27_084541_insert_sample_kot_cancel_reasons_data', '1'),
('169', '2025_07_01_112529_create_print_jobs_table', '1'),
('170', '2025_07_01_133114_add_placed_via_column_orders_table', '1'),
('171', '2025_07_02_090709_create_order_types_table', '1'),
('172', '2025_07_02_105440_add_translations_columns_for_modifier_group', '1'),
('173', '2025_07_02_114040_add_unique_hash_to_branches_table', '1'),
('174', '2025_07_03_123829_update_kot_place_id_for_cloned_menu_items', '1'),
('175', '2025_07_04_064350_update_order_type_id_in_orders', '1'),
('176', '2025_07_04_081809_add_tax_mode_to_restaurants_table', '1'),
('177', '2025_07_04_131541_create_desktop_applications_table', '1'),
('178', '2025_07_07_070122_add_pusher_broadcast_to_pusher_settings_table', '1'),
('179', '2025_07_07_110131_create_menu_item_taxes_table', '1'),
('180', '2025_07_14_082950_add_columns_to_restaurants_table', '1'),
('181', '2025_07_14_124125_add_pick_up_date_range_in_restaurants_table', '1'),
('182', '2025_07_17_122331_create_order_number_settings', '1'),
('183', '2025_07_29_063129_modify_item_type_in-menus', '1'),
('184', '2025_07_29_082605_add_show_halal_and_veg_option_to_restaurants', '1'),
('185', '2025_07_30_125616_add_tax_mode_to_orders', '1'),
('186', '2025_08_01_114055_add_reservation_column_to_restaurants_table', '1'),
('187', '2025_08_04_131541_create_desktop_applications_update_table', '1'),
('188', '2025_08_05_081541_modify_split_orders_table_add_bank_transfer', '1'),
('189', '2025_08_06_065323_change_payment_method_to_string_in_payments_table', '1'),
('190', '2025_08_07_033322_add_column_disable_slot_minutes_to_restaurants_table', '1'),
('191', '2025_08_08_115502_add_variation_id_to_item_modifiers', '1'),
('192', '2025_08_12_133228_change_package_description_length', '1'),
('193', '2025_08_13_060315_rename_payfast_columns_in_superadmin_payment_gateways_table', '1'),
('194', '2025_08_13_110934_add_default_expense_categories_to_existing_branches', '1'),
('195', '2025_08_16_110310_add_slot_time_difference_to_reservations', '1'),
('196', '2025_08_19_071639_fix_tax_percent_to_unlimited_decimal', '1'),
('197', '2025_08_19_131541_create_desktop_applications_mac_update_table', '1'),
('198', '2025_08_20_000001_add_quantity_to_split_order_items', '1'),
('199', '2025_08_21_100452_add_html_content_print_job', '1'),
('200', '2025_08_25_050939_add_hide_menu_item_image_columns_to_restaurants_table', '1'),
('201', '2025_08_25_060934_add_xendit_payment_gateway_to_payment_gateway_credentials_table', '1'),
('202', '2025_08_25_061405_add_xendit_to_global_settings_table', '1'),
('203', '2025_08_25_061500_create_xendit_payments_table', '1'),
('204', '2025_08_25_062000_add_xendit_webhook_verification_tokens', '1'),
('205', '2025_08_29_091315_add_phone_code_to_customers_table', '1'),
('206', '2025_09_02_085025_add_xendit_payment_column_to_superadmin_payment_gateways_table', '1'),
('207', '2025_09_02_113846_add_xendit_payments_column_to_packages_table', '1'),
('208', '2025_09_02_130000_create_otps_table', '1'),
('209', '2025_09_11_094443_remove_phone_unique', '1'),
('210', '2025_09_15_100452_remove_extra_content_print_job', '1'),
('211', '2025_09_17_094034_create_cart_session_tables', '1'),
('212', '2025_09_18_051324_add_limit_columns_to_packages_table', '1'),
('213', '2025_09_18_083624_add_table_lock_columns_and_settings', '1'),
('214', '2025_09_23_062535_add_cancel_functionality_to_kot_items_table', '1'),
('215', '2025_09_25_063220_add_xendit_webhook_token_to_superadmin_payment_gateways', '1'),
('216', '2025_09_26_115847_add_token_number_to_orders_table', '1'),
('217', '2025_09_26_115854_add_enable_token_number_to_order_types_table', '1'),
('218', '2025_09_29_095519_create_delivery_platforms_table', '1'),
('219', '2025_10_01_064424_create_menu_item_prices_table', '1'),
('220', '2025_10_07_070000_add_reference_id_to_payment_tables', '1'),
('221', '2025_10_07_094006_add_token_number_to_kots_table', '1'),
('222', '2025_10_07_094018_remove_token_number_from_orders_table', '1'),
('223', '2025_10_08_095954_add_columns_paddle_payment_keys_to_superadmin_payment_gateways', '1'),
('224', '2025_10_08_102000_add_paddle_client_token_columns_to_superadmin_payment_gateways', '1'),
('225', '2025_10_09_041734_add_enable_paddle_to_global_settings_table', '1'),
('226', '2025_10_09_065853_remove_payload_from_print_jobs', '1'),
('227', '2025_10_09_084200_add_package_id_to_restaurant_payments_table', '1'),
('228', '2025_10_09_091500_add_paddle_price_ids_to_packages_table', '1'),
('229', '2025_10_10_100000_add_paddle_webhook_secret_to_superadmin_payment_gateways', '1'),
('230', '2025_10_10_122321_add_privacy_policy_link_to_global_settings_table', '1'),
('231', '2025_10_14_000001_create_modifier_option_prices_table', '1'),
('232', '2025_10_14_071228_add_consent_fields_to_users_table', '1'),
('233', '2025_10_14_105354_add_order_item_id_to_kot_items_table', '1'),
('234', '2025_10_15_045419_sms_count_packages', '1'),
('235', '2025_10_17_074528_add_delivery_app_id_orders_table', '1'),
('236', '2025_10_27_065853_add_from_printer_type', '1'),
('237', '2025_10_28_065738_add_discount_permission_to_existing_roles', '1'),
('238', '2025_10_28_081340_add_multipos_limit_to_packages_table', '1'),
('239', '2025_10_30_055800_add_qr_order_location_columns_to_restaurants_table', '1'),
('240', '2025_11_03_065853_add_from_printer_enum', '1'),
('241', '2025_11_07_065319_add_disable_order_type_popup_to_restaurants_table', '1'),
('242', '2025_11_10_000000_add_show_customer_phone_to_receipt_settings_table', '1'),
('243', '2025_11_10_000001_add_show_payment_status_to_receipt_settings_table', '1'),
('244', '2025_11_10_100652_add_added_by_to_orders_table', '1'),
('245', '2025_11_12_081126_create_table_epay_payments_table', '1'),
('246', '2025_11_13_060849_add_cancelled_by_to_orders_table', '1'),
('247', '2025_11_18_083606_add_modifier_option_prices_column_to_table', '1'),
('248', '2025_12_20_000000_add_cancelled_by_to_kot_items_table', '1'),
('249', '2023_10_17_073008_create_universal_bundle_settings_table', '2'),
('250', '2025_01_15_000000_create_database_backups_table', '3'),
('251', '2025_01_15_000001_create_database_backup_settings_table', '3'),
('252', '2025_01_01_121040_inventory_global_settings', '4'),
('253', '2025_02_06_095827_create_invetory_module_table', '4'),
('254', '2025_02_12_create_purchase_orders_tables', '4'),
('255', '2025_03_02_181226_create_inventory_settings_table', '4'),
('256', '2025_03_05_100018_create_inventory_settings_table', '4'),
('257', '2025_03_19_113535_soft_delete_supplier', '4'),
('258', '2025_03_20_113535_permission_supplier', '4'),
('259', '2025_07_07_000000_add_variation_support_to_recipes_table', '4'),
('260', '2025_07_07_000001_add_modifier_option_support_to_recipes_table', '4'),
('261', '2025_07_07_000002_make_menu_item_id_nullable_in_recipes_table copy', '4'),
('262', '2025_01_01_121040_kitchen_global_settings', '5'),
('263', '2025_05_19_163251_add_permission_to_kot_places', '5'),
('264', '2025_06_12_094512_add_kitchen_place_id_to_kot', '5'),
('265', '2025_09_11_000002_update_cascade_purchase_orders_table', '6'),
('266', '2025_11_25_000000_create_purchase_order_payments_table', '6'),
('267', '2025_11_25_120001_add_description_photo_to_inventory_items_table', '6'),
('268', '2025_06_16_121348_update_kot_place_id_in_menu_items', '7'),
('269', '2020_04_09_121040_subdomain_settings', '8'),
('270', '2024_11_01_000000_add_sub_domain_in_companies_table', '8'),
('271', '2025_08_25_062431_create_sms_settings_table', '9'),
('272', '2025_08_25_085421_create_sms_permissions_table', '9'),
('273', '2025_08_28_081001_create_sms_notification_settings_table', '9'),
('274', '2025_09_09_045430_create_sms_template_table', '9'),
('275', '2025_09_25_065936_create_sms_usage_logs_table', '9'),
('276', '2025_09_26_055517_add_columns_to_packages_table', '9'),
('277', '2025_01_01_073008_create_global_settings_table', '10'),
('278', '2025_01_15_000001_create_pos_machines_table', '10'),
('279', '2025_01_15_000002_add_pos_machine_id_to_orders_table', '10'),
('280', '2025_01_15_000003_add_pos_machine_id_to_register_sessions_table', '10'),
('281', '2025_01_15_000004_add_pos_machine_request_notification_setting', '10'),
('282', '2025_10_24_100001_create_multi_pos_module', '10'),
('283', '2025_11_07_093246_add_device_id_to_pos_machines_table', '10'),
('284', '2025_11_24_181400_call_activate_command_for_notification_settings', '10'),
('285', '2023_10_09_114356_create_language_pack_settings_table', '11'),
('286', '2023_11_02_094141_language_pack_notify_update_global_settings', '11'),
('287', '2023_11_28_094141_language_license_type_update_global_settings', '11'),
('288', '2023_12_19_091940_purchased_on_language_setting_table', '11'),
('289', '2025_08_01_164051_create_kiosk_setting_tables', '12'),
('290', '2025_09_26_164051_create_kiosk_tables', '12'),
('291', '2025_09_26_164052_create_kiosk_promos_tables', '12'),
('292', '2025_10_08_164052_create_kiosks', '12'),
('293', '2025_09_01_073008_create_global_settings_table', '13'),
('294', '2025_09_16_000001_create_cash_register_module', '13'),
('295', '2025_09_16_000001_create_cash_registers_tables', '13'),
('296', '2025_09_18_000002_add_approval_columns_to_cash_register_sessions', '13'),
('297', '2025_09_20_000003_create_denominations_table', '13'),
('298', '2025_09_26_043532_create_cash_register_settings_table', '13'),
('299', '2025_09_29_120001_add_order_id_to_cash_register_transactions_table', '13'),
('300', '2025_10_08_070529_add_open_register_permission_to_cash_register_module', '13'),
('301', '2025_10_08_080000_rename_cash_register_permissions', '13'),
('302', '2025_10_10_120000_drop_currency_from_denominations', '13'),
('303', '2025_11_27_082212_create_push_notifications_table', '14'),
('304', '2025_11_27_084813_allow_duplicate_customer_email_per_restaurant', '14'),
('305', '2025_12_01_061505_add_columns_to_restaurants_table', '14'),
('306', '2025_12_03_055406_change_column_into_orders_table', '14'),
('307', '2025_12_03_090241_add_phone_code_to_delivery_executives_table', '14'),
('308', '2025_12_03_101309_add_disable_from_customer_site_to_order_types_table', '14'),
('309', '2025_12_05_120000_update_customer_email_unique_per_restaurant', '14'),
('310', '2025_11_30_000001_create_batch_recipes_table', '15'),
('311', '2025_11_30_000002_create_batch_recipe_items_table', '15'),
('312', '2025_11_30_000003_create_batch_productions_table', '15'),
('313', '2025_11_30_000004_create_batch_stocks_table', '15'),
('314', '2025_11_30_000005_add_batch_fields_to_menu_items_table', '15'),
('315', '2025_11_30_000006_create_batch_consumptions_table', '15'),
('316', '2025_11_30_000007_add_batch_recipe_permissions', '15'),
('317', '2025_11_30_000008_assign_batch_permissions_to_admins', '15'),
('318', '2025_11_30_000009_add_references_to_inventory_movements_table', '15'),
('319', '2025_12_05_070719_update_decimal_precision_to_3_in_inventory_module', '15');


-- Table structure for table `model_has_permissions`
DROP TABLE IF EXISTS `model_has_permissions`;
CREATE TABLE `model_has_permissions` (
  `permission_id` bigint unsigned NOT NULL,
  `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `model_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
  KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `model_has_roles`
DROP TABLE IF EXISTS `model_has_roles`;
CREATE TABLE `model_has_roles` (
  `role_id` bigint unsigned NOT NULL,
  `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `model_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`role_id`,`model_id`,`model_type`),
  KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `model_has_roles`
INSERT INTO `model_has_roles` VALUES
('1', 'App\\Models\\User', '1'),
('2', 'App\\Models\\User', '2'),
('4', 'App\\Models\\User', '3'),
('6', 'App\\Models\\User', '4'),
('10', 'App\\Models\\User', '5'),
('14', 'App\\Models\\User', '6'),
('15', 'App\\Models\\User', '7'),
('1', 'App\\Models\\User', '8'),
('14', 'App\\Models\\User', '9'),
('1', 'App\\Models\\User', '10'),
('14', 'App\\Models\\User', '11'),
('14', 'App\\Models\\User', '12');


-- Table structure for table `modifier_group_translations`
DROP TABLE IF EXISTS `modifier_group_translations`;
CREATE TABLE `modifier_group_translations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `modifier_group_id` bigint unsigned NOT NULL,
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `modifier_group_translations_modifier_group_id_locale_unique` (`modifier_group_id`,`locale`),
  KEY `modifier_group_translations_locale_index` (`locale`),
  CONSTRAINT `modifier_group_translations_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modifier_groups`
DROP TABLE IF EXISTS `modifier_groups`;
CREATE TABLE `modifier_groups` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `branch_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modifier_groups_branch_id_foreign` (`branch_id`),
  CONSTRAINT `modifier_groups_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modifier_option_prices`
DROP TABLE IF EXISTS `modifier_option_prices`;
CREATE TABLE `modifier_option_prices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `modifier_group_id` bigint unsigned NOT NULL,
  `modifier_option_id` bigint unsigned DEFAULT NULL,
  `order_type_id` bigint unsigned DEFAULT NULL,
  `delivery_app_id` bigint unsigned DEFAULT NULL,
  `calculated_price` decimal(16,2) NOT NULL,
  `override_price` decimal(16,2) DEFAULT NULL,
  `final_price` decimal(16,2) NOT NULL DEFAULT '0.00',
  `status` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modifier_option_prices_modifier_group_id_foreign` (`modifier_group_id`),
  KEY `modifier_option_prices_modifier_option_id_foreign` (`modifier_option_id`),
  KEY `modifier_option_prices_order_type_id_foreign` (`order_type_id`),
  KEY `modifier_option_prices_delivery_app_id_foreign` (`delivery_app_id`),
  CONSTRAINT `modifier_option_prices_delivery_app_id_foreign` FOREIGN KEY (`delivery_app_id`) REFERENCES `delivery_platforms` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `modifier_option_prices_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `modifier_option_prices_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `modifier_option_prices_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modifier_options`
DROP TABLE IF EXISTS `modifier_options`;
CREATE TABLE `modifier_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `modifier_group_id` bigint unsigned NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `price` decimal(16,2) NOT NULL,
  `is_available` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `is_preselected` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `modifier_options_modifier_group_id_foreign` (`modifier_group_id`),
  CONSTRAINT `modifier_options_modifier_group_id_foreign` FOREIGN KEY (`modifier_group_id`) REFERENCES `modifier_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `modules`
DROP TABLE IF EXISTS `modules`;
CREATE TABLE `modules` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `modules`
INSERT INTO `modules` VALUES
('1', 'Menu', NULL, NULL),
('2', 'Menu Item', NULL, NULL),
('3', 'Item Category', NULL, NULL),
('4', 'Area', NULL, NULL),
('5', 'Table', NULL, NULL),
('6', 'Reservation', NULL, NULL),
('7', 'KOT', NULL, NULL),
('8', 'Order', NULL, NULL),
('9', 'Customer', NULL, NULL),
('10', 'Staff', NULL, NULL),
('11', 'Payment', NULL, NULL),
('12', 'Report', NULL, NULL),
('13', 'Settings', NULL, NULL),
('14', 'Delivery Executive', NULL, NULL),
('15', 'Waiter Request', NULL, NULL),
('16', 'Expense', NULL, NULL),
('17', 'Inventory', '2025-11-27 00:59:43', '2025-11-27 00:59:43'),
('18', 'Kitchen', '2025-11-27 00:59:55', '2025-11-27 00:59:55'),
('19', 'Sms', '2025-11-27 01:00:55', '2025-11-27 01:00:55'),
('20', 'MultiPOS', '2025-11-27 01:01:04', '2025-11-27 01:01:04'),
('21', 'Kiosk', '2025-11-27 01:01:24', '2025-11-27 01:01:24'),
('22', 'Cash Register', '2025-11-27 01:01:32', '2025-11-27 01:01:32');


-- Table structure for table `multi_pos_global_settings`
DROP TABLE IF EXISTS `multi_pos_global_settings`;
CREATE TABLE `multi_pos_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `multi_pos_global_settings`
INSERT INTO `multi_pos_global_settings` VALUES
('1', '384c0006-c196-4a86-bfa0-4a1d78192734', '2026-05-28 03:22:34', NULL, NULL, '1', '2025-11-27 01:01:04', '2025-11-27 01:01:05');


-- Table structure for table `notification_settings`
DROP TABLE IF EXISTS `notification_settings`;
CREATE TABLE `notification_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `send_email` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notification_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `notification_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `notification_settings`
INSERT INTO `notification_settings` VALUES
('1', '1', 'order_received', '1', NULL, NULL),
('2', '1', 'reservation_confirmed', '1', NULL, NULL),
('3', '1', 'new_reservation', '1', NULL, NULL),
('4', '1', 'order_bill_sent', '1', NULL, NULL),
('5', '1', 'staff_welcome', '1', NULL, NULL),
('6', '1', 'pos_machine_request', '1', '2025-11-27 01:01:04', '2025-11-27 01:01:04'),
('7', '2', 'order_received', '1', NULL, NULL),
('8', '2', 'reservation_confirmed', '1', NULL, NULL),
('9', '2', 'new_reservation', '1', NULL, NULL),
('10', '2', 'order_bill_sent', '1', NULL, NULL),
('11', '2', 'staff_welcome', '1', NULL, NULL),
('12', '3', 'order_received', '1', NULL, NULL),
('13', '3', 'reservation_confirmed', '1', NULL, NULL),
('14', '3', 'new_reservation', '1', NULL, NULL),
('15', '3', 'order_bill_sent', '1', NULL, NULL),
('16', '3', 'staff_welcome', '1', NULL, NULL),
('17', '4', 'order_received', '1', NULL, NULL),
('18', '4', 'reservation_confirmed', '1', NULL, NULL),
('19', '4', 'new_reservation', '1', NULL, NULL),
('20', '4', 'order_bill_sent', '1', NULL, NULL),
('21', '4', 'staff_welcome', '1', NULL, NULL);


-- Table structure for table `notifications`
DROP TABLE IF EXISTS `notifications`;
CREATE TABLE `notifications` (
  `id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `notifiable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `notifiable_id` bigint unsigned NOT NULL,
  `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_restaurant_id_foreign` (`restaurant_id`),
  KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`),
  CONSTRAINT `notifications_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `notifications`
INSERT INTO `notifications` VALUES
('051211d7-ae90-4fff-bfad-a1953145eee7', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '5', '{\"pos_machine_id\":12,\"machine_alias\":\"AL CAPONE CLUB POS 1768403995\",\"machine_public_id\":\"01KEYHF30724Z7T87MR8WVC44B\",\"branch_id\":4,\"branch_name\":\"AL CAPONE CLUB\",\"created_by\":5,\"creator_name\":\"Kalofer Zakov\",\"status\":\"active\",\"created_at\":\"2026-01-14 15:19:55\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-01-14 15:20:04', '2026-01-14 15:20:04'),
('1eadd6a6-c0f2-4c6d-a7a4-d8452be6dd49', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '2', '{\"pos_machine_id\":14,\"machine_alias\":\"Carolyneton POS 1768806432\",\"machine_public_id\":\"01KFAH8G77S47T04VBHWDHK09R\",\"branch_id\":1,\"branch_name\":\"Carolyneton\",\"created_by\":2,\"creator_name\":\"John Doe\",\"status\":\"active\",\"created_at\":\"2026-01-19 07:07:12\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-01-19 07:08:04', '2026-01-19 07:08:04'),
('1f608e34-ae5d-46eb-af2c-b5612b9ceb24', NULL, 'App\\Notifications\\NewOrderReceived', 'App\\Models\\User', '5', '{\"restaurant_id\":3,\"order_id\":553,\"message\":\"New Order Received #Order #511\",\"url\":\"https:\\/\\/hellopos.online\\/orders\",\"created_at\":\"2026-02-13 18:46:04\",\"user_name\":\"Kalofer Zakov\"}', NULL, '2026-02-13 18:46:04', '2026-02-13 18:46:04'),
('4005eb17-70b7-4c0a-90c6-1c9ed84616fd', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '4', '{\"pos_machine_id\":10,\"machine_alias\":\"Phone\",\"machine_public_id\":\"01KDJ6FSAJP5TMV6MB5JHBZKP7\",\"branch_id\":3,\"branch_name\":\"Grafix\",\"created_by\":4,\"creator_name\":\"Halil Sidzhimov\",\"status\":\"active\",\"created_at\":\"2025-12-28 10:01:29\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2025-12-28 10:02:04', '2025-12-28 10:02:04'),
('4be2d9bd-1512-49d8-a127-4657e4bea5be', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '4', '{\"pos_machine_id\":17,\"machine_alias\":\"Grafix POS 1773523792\",\"machine_public_id\":\"01KKQ42WRY9KEY50J5E23M7E17\",\"branch_id\":3,\"branch_name\":\"Grafix\",\"created_by\":4,\"creator_name\":\"Halil Sidzhimov\",\"status\":\"active\",\"created_at\":\"2026-03-14 21:29:52\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-03-14 21:30:04', '2026-03-14 21:30:04'),
('8482c671-c23f-4113-8340-2b5e870e4a90', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '5', '{\"pos_machine_id\":13,\"machine_alias\":\"AL CAPONE CLUB POS 1768804792\",\"machine_public_id\":\"01KFAFPEBBRH1AAYGECHGK5XRM\",\"branch_id\":4,\"branch_name\":\"AL CAPONE CLUB\",\"created_by\":5,\"creator_name\":\"Kalofer Zakov\",\"status\":\"pending\",\"created_at\":\"2026-01-19 06:39:52\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-01-19 06:40:04', '2026-01-19 06:40:04'),
('8ba3dcb7-a6a4-4328-9c4e-714775d5306c', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '5', '{\"pos_machine_id\":15,\"machine_alias\":\"iPhone\",\"machine_public_id\":\"01KFPF296W98F344CA70D8NCB1\",\"branch_id\":4,\"branch_name\":\"AL CAPONE CLUB\",\"created_by\":5,\"creator_name\":\"Kalofer Zakov\",\"status\":\"active\",\"created_at\":\"2026-01-23 22:19:45\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-01-23 22:20:05', '2026-01-23 22:20:05'),
('ad3fe318-98e1-4c66-84d2-a2b5f9dc07e3', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '5', '{\"pos_machine_id\":11,\"machine_alias\":\"AL CAPONE CLUB POS 1767193523\",\"machine_public_id\":\"01KDTF2D0GHSW69Z4RT4XQW817\",\"branch_id\":4,\"branch_name\":\"AL CAPONE CLUB\",\"created_by\":5,\"creator_name\":\"Kalofer Zakov\",\"status\":\"pending\",\"created_at\":\"2025-12-31 15:05:23\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2025-12-31 15:06:03', '2025-12-31 15:06:03'),
('d40a5333-ec97-4d2a-adbf-3d57ed4a028d', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '4', '{\"pos_machine_id\":16,\"machine_alias\":\"Grafix POS 1773451258\",\"machine_public_id\":\"01KKMYXAKEZX11DMSZ23XY6YB3\",\"branch_id\":3,\"branch_name\":\"Grafix\",\"created_by\":4,\"creator_name\":\"Halil Sidzhimov\",\"status\":\"active\",\"created_at\":\"2026-03-14 01:20:58\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2026-03-14 01:21:04', '2026-03-14 01:21:04'),
('e0eaea04-6e79-450a-a509-4320a6b2ba6c', NULL, 'Modules\\MultiPOS\\Notifications\\PosMachineRegistrationRequest', 'App\\Models\\User', '4', '{\"pos_machine_id\":9,\"machine_alias\":\"Grafix POS 1766178516\",\"machine_public_id\":\"01KCW72V3TFJZGEKWGZSCQ5S92\",\"branch_id\":3,\"branch_name\":\"Grafix\",\"created_by\":4,\"creator_name\":\"Halil Sidzhimov\",\"status\":\"active\",\"created_at\":\"2025-12-19 21:08:36\",\"url\":\"https:\\/\\/hellopos.online\\/settings?tab=multipos\"}', NULL, '2025-12-19 21:09:03', '2025-12-19 21:09:03');


-- Table structure for table `offline_payment_methods`
DROP TABLE IF EXISTS `offline_payment_methods`;
CREATE TABLE `offline_payment_methods` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('active','inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `offline_payment_methods_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `offline_payment_methods_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `offline_plan_changes`
DROP TABLE IF EXISTS `offline_plan_changes`;
CREATE TABLE `offline_plan_changes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `package_id` bigint unsigned NOT NULL,
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `pay_date` date DEFAULT NULL,
  `next_pay_date` date DEFAULT NULL,
  `invoice_id` bigint unsigned DEFAULT NULL,
  `offline_method_id` bigint unsigned DEFAULT NULL,
  `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('verified','pending','rejected') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `offline_plan_changes_restaurant_id_foreign` (`restaurant_id`),
  KEY `offline_plan_changes_package_id_foreign` (`package_id`),
  KEY `offline_plan_changes_invoice_id_foreign` (`invoice_id`),
  KEY `offline_plan_changes_offline_method_id_foreign` (`offline_method_id`),
  CONSTRAINT `offline_plan_changes_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `global_invoices` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_offline_method_id_foreign` FOREIGN KEY (`offline_method_id`) REFERENCES `offline_payment_methods` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `offline_plan_changes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `onboarding_steps`
DROP TABLE IF EXISTS `onboarding_steps`;
CREATE TABLE `onboarding_steps` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `add_area_completed` tinyint(1) NOT NULL DEFAULT '0',
  `add_table_completed` tinyint(1) NOT NULL DEFAULT '0',
  `add_menu_completed` tinyint(1) NOT NULL DEFAULT '0',
  `add_menu_items_completed` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `onboarding_steps_branch_id_foreign` (`branch_id`),
  CONSTRAINT `onboarding_steps_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `onboarding_steps`
INSERT INTO `onboarding_steps` VALUES
('1', '1', '0', '0', '0', '0', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('2', '1', '0', '0', '0', '0', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '2', '0', '0', '0', '0', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '2', '0', '0', '0', '0', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', '3', '1', '1', '1', '1', '2025-11-27 01:20:35', '2025-11-27 01:35:35'),
('6', '4', '1', '1', '1', '1', '2025-11-27 10:17:19', '2025-11-27 10:36:23'),
('7', '5', '1', '1', '1', '1', '2025-12-01 11:34:12', '2025-12-01 11:50:16');


-- Table structure for table `order_charges`
DROP TABLE IF EXISTS `order_charges`;
CREATE TABLE `order_charges` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `charge_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_charges_order_id_foreign` (`order_id`),
  KEY `order_charges_charge_id_foreign` (`charge_id`),
  CONSTRAINT `order_charges_charge_id_foreign` FOREIGN KEY (`charge_id`) REFERENCES `restaurant_charges` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_charges_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_histories`
DROP TABLE IF EXISTS `order_histories`;
CREATE TABLE `order_histories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_histories_order_id_foreign` (`order_id`),
  CONSTRAINT `order_histories_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_item_modifier_options`
DROP TABLE IF EXISTS `order_item_modifier_options`;
CREATE TABLE `order_item_modifier_options` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint unsigned NOT NULL,
  `modifier_option_id` bigint unsigned DEFAULT NULL,
  `modifier_option_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `modifier_option_price` decimal(10,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_item_modifier_options_order_item_id_foreign` (`order_item_id`),
  KEY `order_item_modifier_options_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `order_item_modifier_options_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_item_modifier_options_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_items`
DROP TABLE IF EXISTS `order_items`;
CREATE TABLE `order_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `menu_item_id` bigint unsigned NOT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `quantity` int NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `tax_amount` decimal(15,2) DEFAULT NULL,
  `tax_percentage` decimal(8,4) DEFAULT NULL,
  `tax_breakup` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_items_order_id_foreign` (`order_id`),
  KEY `order_items_menu_item_id_foreign` (`menu_item_id`),
  KEY `order_items_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `order_items_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_items_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_items_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_items_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_items_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2538 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_items`
INSERT INTO `order_items` VALUES
('2', '4', '3', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-27 16:09:10', '2025-11-27 16:09:10'),
('3', '4', '4', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-27 16:30:13', '2025-11-27 16:30:13'),
('4', '4', '6', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-27 18:51:10', '2025-11-27 18:51:10'),
('5', '4', '7', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-27 18:53:31', '2025-11-27 18:53:31'),
('6', '3', '8', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-11-27 20:05:40', '2025-11-27 20:05:40'),
('7', '3', '2', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-11-27 20:06:45', '2025-11-27 20:06:45'),
('8', '4', '10', NULL, '2', NULL, '', '18', '3.00', '54.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('9', '4', '10', NULL, '4', NULL, '', '16', '4.00', '64.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('10', '4', '10', NULL, '25', NULL, '', '8', '8.00', '64.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('11', '4', '10', NULL, '45', NULL, '', '4', '7.00', '28.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('12', '4', '10', NULL, '65', NULL, '', '4', '7.00', '28.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('13', '4', '10', NULL, '68', NULL, '', '4', '24.00', '96.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('14', '4', '10', NULL, '27', NULL, '', '8', '30.00', '240.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('15', '4', '10', NULL, '85', NULL, '', '4', '40.00', '160.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('16', '4', '10', NULL, '61', NULL, '', '4', '7.00', '28.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('17', '4', '10', NULL, '62', NULL, '', '6', '9.00', '54.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('18', '4', '10', NULL, '31', NULL, '', '28', '8.00', '224.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('19', '4', '10', NULL, '44', NULL, '', '16', '5.00', '80.00', NULL, NULL, NULL, '2025-11-27 23:50:36', '2025-11-27 23:50:36'),
('20', '4', '11', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-11-28 20:37:49', '2025-11-28 20:37:49'),
('21', '4', '12', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-28 23:06:40', '2025-11-28 23:06:40'),
('22', '4', '12', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-11-28 23:06:40', '2025-11-28 23:06:40'),
('23', '4', '12', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-11-28 23:06:40', '2025-11-28 23:06:40'),
('24', '4', '12', NULL, '38', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-11-28 23:06:40', '2025-11-28 23:06:40'),
('25', '4', '12', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-11-28 23:06:40', '2025-11-28 23:06:40'),
('26', '4', '13', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-11-29 00:25:39', '2025-11-29 00:25:39'),
('27', '4', '13', NULL, '38', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-11-29 00:25:39', '2025-11-29 00:25:39'),
('28', '4', '14', NULL, '5', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-11-29 04:12:33', '2025-11-29 04:12:33'),
('29', '4', '14', NULL, '4', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2025-11-29 04:12:33', '2025-11-29 04:12:33'),
('30', '4', '14', NULL, '67', NULL, '', '5', '9.00', '45.00', NULL, NULL, NULL, '2025-11-29 04:12:33', '2025-11-29 04:12:33'),
('31', '4', '14', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-11-29 04:12:33', '2025-11-29 04:12:33'),
('32', '4', '15', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-29 22:32:26', '2025-11-29 22:32:26'),
('33', '4', '15', NULL, '31', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-29 22:32:26', '2025-11-29 22:32:26'),
('34', '4', '16', NULL, '73', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-11-29 22:37:35', '2025-11-29 22:37:35'),
('35', '4', '17', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-29 22:40:28', '2025-11-29 22:40:28'),
('36', '4', '17', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-29 22:40:28', '2025-11-29 22:40:28'),
('37', '4', '17', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-11-29 22:40:28', '2025-11-29 22:40:28'),
('38', '4', '18', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-29 22:58:35', '2025-11-29 22:58:35'),
('39', '4', '19', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-11-29 23:08:35', '2025-11-29 23:08:35'),
('40', '4', '19', NULL, '29', NULL, '', '1', '35.00', '35.00', NULL, NULL, NULL, '2025-11-29 23:08:35', '2025-11-29 23:08:35'),
('41', '4', '20', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-11-30 00:18:17', '2025-11-30 00:18:17'),
('42', '4', '20', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-30 00:18:17', '2025-11-30 00:18:17'),
('43', '4', '21', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-11-30 00:31:13', '2025-11-30 00:31:13'),
('44', '4', '21', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-30 00:31:13', '2025-11-30 00:31:13'),
('45', '4', '21', NULL, '31', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-11-30 00:31:13', '2025-11-30 00:31:13'),
('46', '4', '22', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-30 00:47:00', '2025-11-30 00:47:00'),
('47', '4', '23', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-11-30 00:47:57', '2025-11-30 00:47:57'),
('48', '4', '24', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-11-30 01:16:54', '2025-11-30 01:16:54'),
('49', '4', '24', NULL, '10', NULL, '', '4', '6.00', '24.00', NULL, NULL, NULL, '2025-11-30 01:16:54', '2025-11-30 01:16:54'),
('50', '4', '24', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-30 01:16:54', '2025-11-30 01:16:54'),
('51', '4', '25', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-11-30 01:19:06', '2025-11-30 01:19:06'),
('52', '4', '25', NULL, '4', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2025-11-30 01:19:06', '2025-11-30 01:19:06'),
('53', '3', '1', NULL, '1', NULL, NULL, '2', '10.00', '20.00', NULL, NULL, NULL, '2025-11-30 08:50:45', '2025-11-30 08:50:45'),
('54', '4', '27', 'TXN_692cb563ab1c15.92546994_541067', '57', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-11-30 21:21:39', '2025-11-30 21:21:39'),
('55', '4', '28', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-11-30 21:44:54', '2025-11-30 21:44:54'),
('56', '4', '28', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-11-30 21:44:54', '2025-11-30 21:44:54'),
('57', '4', '29', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-11-30 22:29:25', '2025-11-30 22:29:25'),
('58', '4', '30', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-11-30 22:35:58', '2025-11-30 22:35:58'),
('59', '4', '31', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-11-30 22:51:50', '2025-11-30 22:51:50'),
('60', '4', '32', NULL, '72', NULL, '', '3', '7.00', '21.00', NULL, NULL, NULL, '2025-12-01 00:48:38', '2025-12-01 00:48:38'),
('61', '4', '33', NULL, '10', NULL, '', '3', '6.00', '18.00', NULL, NULL, NULL, '2025-12-01 00:49:10', '2025-12-01 00:49:10'),
('62', '4', '34', NULL, '2', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2025-12-01 00:52:58', '2025-12-01 00:52:58'),
('63', '4', '34', NULL, '17', NULL, '', '7', '8.00', '56.00', NULL, NULL, NULL, '2025-12-01 00:52:58', '2025-12-01 00:52:58'),
('64', '4', '35', NULL, '10', NULL, '', '4', '6.00', '24.00', NULL, NULL, NULL, '2025-12-01 02:06:35', '2025-12-01 02:06:35'),
('65', '4', '35', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-01 02:06:35', '2025-12-01 02:06:35'),
('66', '4', '5', NULL, '4', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-02 18:23:26', '2025-12-02 18:23:26'),
('67', '4', '36', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-02 18:24:53', '2025-12-02 18:24:53'),
('68', '4', '37', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-02 20:52:44', '2025-12-02 20:52:44'),
('69', '4', '37', NULL, '30', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-02 20:52:44', '2025-12-02 20:52:44'),
('70', '4', '37', NULL, '43', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-02 20:52:44', '2025-12-02 20:52:44'),
('71', '4', '38', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-02 20:53:05', '2025-12-02 20:53:05'),
('72', '3', '39', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-03 09:18:28', '2025-12-03 09:18:28'),
('73', '3', '40', NULL, '1', NULL, '', '2', '10.00', '20.00', NULL, NULL, NULL, '2025-12-03 09:31:28', '2025-12-03 09:31:28'),
('74', '4', '41', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-05 20:55:33', '2025-12-05 20:55:33'),
('75', '4', '41', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-05 20:55:33', '2025-12-05 20:55:33'),
('76', '4', '42', NULL, '11', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-05 21:48:18', '2025-12-05 21:48:18'),
('77', '4', '42', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-05 21:48:18', '2025-12-05 21:48:18'),
('78', '4', '42', NULL, '67', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-05 21:48:18', '2025-12-05 21:48:18'),
('79', '4', '42', NULL, '83', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 21:48:18', '2025-12-05 21:48:18'),
('80', '4', '43', NULL, '83', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 22:16:20', '2025-12-05 22:16:20'),
('81', '4', '44', NULL, '83', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 22:28:55', '2025-12-05 22:28:55'),
('82', '4', '45', NULL, '14', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-05 22:31:43', '2025-12-05 22:31:43'),
('83', '4', '46', NULL, '74', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 22:34:55', '2025-12-05 22:34:55'),
('84', '4', '46', NULL, '81', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 22:34:55', '2025-12-05 22:34:55'),
('85', '4', '47', NULL, '32', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-05 22:35:27', '2025-12-05 22:35:27'),
('86', '4', '48', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-05 22:46:04', '2025-12-05 22:46:04'),
('87', '4', '49', NULL, '83', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-05 22:54:16', '2025-12-05 22:54:16'),
('88', '4', '50', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-05 22:55:10', '2025-12-05 22:55:10'),
('89', '4', '50', NULL, '62', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-05 22:55:10', '2025-12-05 22:55:10'),
('90', '4', '51', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-05 22:59:34', '2025-12-05 22:59:34'),
('91', '4', '51', NULL, '14', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-05 22:59:34', '2025-12-05 22:59:34'),
('92', '4', '52', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-05 23:11:09', '2025-12-05 23:11:09'),
('93', '4', '53', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-05 23:18:15', '2025-12-05 23:18:15'),
('94', '4', '54', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-05 23:22:15', '2025-12-05 23:22:15'),
('95', '4', '55', NULL, '10', NULL, '', '4', '6.00', '24.00', NULL, NULL, NULL, '2025-12-05 23:27:05', '2025-12-05 23:27:05'),
('96', '4', '55', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-05 23:27:05', '2025-12-05 23:27:05'),
('97', '4', '55', NULL, '44', NULL, '', '6', '5.00', '30.00', NULL, NULL, NULL, '2025-12-05 23:27:05', '2025-12-05 23:27:05'),
('98', '4', '56', NULL, '73', NULL, '', '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-05 23:50:14', '2025-12-05 23:50:14'),
('99', '4', '56', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-05 23:50:14', '2025-12-05 23:50:14'),
('100', '4', '56', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-05 23:50:14', '2025-12-05 23:50:14'),
('101', '4', '57', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-06 01:23:07', '2025-12-06 01:23:07'),
('102', '4', '58', NULL, '9', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-06 01:25:42', '2025-12-06 01:25:42'),
('103', '4', '58', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-06 01:25:42', '2025-12-06 01:25:42'),
('104', '4', '59', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-06 18:24:04', '2025-12-06 18:24:04'),
('105', '4', '60', NULL, '9', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-06 20:24:29', '2025-12-06 20:24:29'),
('106', '4', '60', NULL, '44', NULL, '', '11', '5.00', '55.00', NULL, NULL, NULL, '2025-12-06 20:24:29', '2025-12-06 20:24:29'),
('107', '4', '60', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-06 20:24:29', '2025-12-06 20:24:29'),
('108', '4', '60', NULL, '87', NULL, '', '1', '20.00', '20.00', NULL, NULL, NULL, '2025-12-06 20:24:29', '2025-12-06 20:24:29'),
('109', '4', '60', NULL, '3', NULL, '', '10', '3.00', '30.00', NULL, NULL, NULL, '2025-12-06 20:24:29', '2025-12-06 20:24:29'),
('110', '4', '61', NULL, '64', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-06 20:27:18', '2025-12-06 20:27:18'),
('111', '4', '61', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-06 20:27:18', '2025-12-06 20:27:18'),
('112', '4', '61', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-06 20:27:18', '2025-12-06 20:27:18'),
('113', '4', '62', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-06 20:54:05', '2025-12-06 20:54:05'),
('114', '4', '63', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-06 21:15:26', '2025-12-06 21:15:26'),
('115', '4', '63', NULL, '3', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-06 21:15:26', '2025-12-06 21:15:26'),
('116', '4', '63', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-06 21:15:26', '2025-12-06 21:15:26'),
('117', '4', '64', NULL, '44', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-06 21:18:14', '2025-12-06 21:18:14'),
('118', '4', '65', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-06 21:35:39', '2025-12-06 21:35:39'),
('119', '4', '65', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-06 21:35:39', '2025-12-06 21:35:39'),
('120', '4', '66', NULL, '31', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-06 21:42:49', '2025-12-06 21:42:49'),
('121', '4', '66', NULL, '4', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2025-12-06 21:42:49', '2025-12-06 21:42:49'),
('122', '4', '67', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-06 21:43:53', '2025-12-06 21:43:53'),
('123', '4', '67', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-06 21:43:53', '2025-12-06 21:43:53'),
('124', '4', '68', NULL, '15', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-06 21:59:57', '2025-12-06 21:59:57'),
('125', '4', '68', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-06 21:59:57', '2025-12-06 21:59:57'),
('126', '4', '69', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-06 22:05:17', '2025-12-06 22:05:17'),
('127', '4', '69', NULL, '44', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-06 22:05:17', '2025-12-06 22:05:17'),
('128', '4', '70', NULL, '44', NULL, '', '10', '5.00', '50.00', NULL, NULL, NULL, '2025-12-06 22:12:34', '2025-12-06 22:12:34'),
('129', '4', '71', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-06 22:14:49', '2025-12-06 22:14:49'),
('130', '4', '72', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-06 22:17:08', '2025-12-06 22:17:08'),
('131', '4', '73', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-06 22:20:21', '2025-12-06 22:20:21'),
('132', '4', '73', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-06 22:20:21', '2025-12-06 22:20:21'),
('133', '4', '74', NULL, '15', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-06 22:35:43', '2025-12-06 22:35:43'),
('134', '4', '75', NULL, '10', NULL, '', '3', '6.00', '18.00', NULL, NULL, NULL, '2025-12-06 22:44:16', '2025-12-06 22:44:16'),
('135', '4', '76', NULL, '44', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-06 23:12:44', '2025-12-06 23:12:44'),
('136', '4', '77', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-06 23:15:15', '2025-12-06 23:15:15'),
('137', '4', '78', NULL, '31', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-06 23:41:09', '2025-12-06 23:41:09'),
('138', '4', '78', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-06 23:41:09', '2025-12-06 23:41:09'),
('139', '4', '79', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-06 23:46:13', '2025-12-06 23:46:13'),
('140', '4', '80', NULL, '31', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('141', '4', '80', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('142', '4', '80', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('143', '4', '80', NULL, '6', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('144', '4', '80', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('145', '4', '80', NULL, '32', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('146', '4', '80', NULL, '36', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-07 00:18:46', '2025-12-07 00:18:46'),
('147', '4', '81', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-07 01:38:08', '2025-12-07 01:38:08'),
('148', '4', '82', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-07 03:13:29', '2025-12-07 03:13:29'),
('149', '4', '83', NULL, '67', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-07 19:24:56', '2025-12-07 19:24:56'),
('150', '4', '83', NULL, '6', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-07 19:24:56', '2025-12-07 19:24:56'),
('151', '4', '83', NULL, '44', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-07 19:24:56', '2025-12-07 19:24:56'),
('152', '4', '84', NULL, '44', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-07 22:32:10', '2025-12-07 22:32:10'),
('153', '4', '84', NULL, '37', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-07 22:32:10', '2025-12-07 22:32:10'),
('154', '4', '84', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-07 22:32:10', '2025-12-07 22:32:10'),
('155', '4', '85', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-07 22:32:31', '2025-12-07 22:32:31'),
('156', '4', '86', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-08 19:26:25', '2025-12-08 19:26:25'),
('157', '4', '86', NULL, '7', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-08 19:26:25', '2025-12-08 19:26:25'),
('158', '4', '86', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-08 19:26:25', '2025-12-08 19:26:25'),
('159', '4', '87', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-08 19:43:22', '2025-12-08 19:43:22'),
('160', '4', '88', NULL, '23', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-08 19:55:43', '2025-12-08 19:55:43'),
('161', '4', '88', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-08 19:55:43', '2025-12-08 19:55:43'),
('162', '4', '89', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-08 20:10:11', '2025-12-08 20:10:11'),
('163', '4', '89', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-08 20:10:11', '2025-12-08 20:10:11'),
('164', '4', '90', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-08 20:23:07', '2025-12-08 20:23:07'),
('165', '4', '91', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-08 22:39:29', '2025-12-08 22:39:29'),
('166', '4', '91', NULL, '44', NULL, '', '7', '5.00', '35.00', NULL, NULL, NULL, '2025-12-08 22:39:29', '2025-12-08 22:39:29'),
('167', '4', '91', NULL, '7', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-08 22:39:29', '2025-12-08 22:39:29'),
('168', '4', '92', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-08 22:48:48', '2025-12-08 22:48:48'),
('169', '4', '93', NULL, '78', NULL, '', '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-08 23:49:55', '2025-12-08 23:49:55'),
('170', '4', '93', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-08 23:49:55', '2025-12-08 23:49:55'),
('171', '4', '93', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-08 23:49:55', '2025-12-08 23:49:55'),
('172', '3', '94', NULL, '1', NULL, NULL, '3', '10.00', '30.00', NULL, NULL, NULL, '2025-12-11 05:48:29', '2025-12-11 05:48:29'),
('173', '3', '94', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-11 05:48:29', '2025-12-11 05:48:29'),
('174', '3', '95', NULL, '1', NULL, NULL, '2', '10.00', '20.00', NULL, NULL, NULL, '2025-12-11 05:51:26', '2025-12-11 05:51:26'),
('175', '3', '26', NULL, '1', NULL, NULL, '2', '10.00', '20.00', NULL, NULL, NULL, '2025-12-11 05:55:12', '2025-12-11 05:55:12'),
('176', '3', '26', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-11 05:55:12', '2025-12-11 05:55:12'),
('177', '4', '96', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-11 19:22:40', '2025-12-11 19:22:40'),
('178', '4', '97', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-11 19:23:16', '2025-12-11 19:23:16'),
('179', '4', '98', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-11 19:26:12', '2025-12-11 19:26:12'),
('180', '4', '99', NULL, '31', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-11 19:28:55', '2025-12-11 19:28:55'),
('181', '4', '99', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-11 19:28:55', '2025-12-11 19:28:55'),
('182', '4', '100', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-11 19:30:12', '2025-12-11 19:30:12'),
('183', '4', '100', NULL, '31', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-11 19:30:12', '2025-12-11 19:30:12'),
('184', '4', '101', NULL, '14', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-11 21:28:12', '2025-12-11 21:28:12'),
('185', '4', '101', NULL, '3', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-11 21:28:12', '2025-12-11 21:28:12'),
('186', '4', '101', NULL, '20', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-11 21:28:12', '2025-12-11 21:28:12'),
('187', '4', '101', NULL, '34', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-11 21:28:12', '2025-12-11 21:28:12'),
('188', '4', '102', NULL, '35', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('189', '4', '102', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('190', '4', '102', NULL, '20', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('191', '4', '102', NULL, '3', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('192', '4', '102', NULL, '14', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('193', '4', '102', NULL, '36', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('194', '4', '102', NULL, '34', NULL, '', '3', '7.00', '21.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('195', '4', '102', NULL, '18', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-11 23:16:23', '2025-12-11 23:16:23'),
('196', '4', '103', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-11 23:17:04', '2025-12-11 23:17:04'),
('197', '4', '104', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-11 23:38:48', '2025-12-11 23:38:48'),
('198', '4', '105', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-12 00:56:31', '2025-12-12 00:56:31'),
('199', '4', '105', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-12 00:56:31', '2025-12-12 00:56:31'),
('201', '4', '106', NULL, '9', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-12 21:31:07', '2025-12-12 21:31:07'),
('202', '4', '107', NULL, '14', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-12 21:35:30', '2025-12-12 21:35:30'),
('203', '4', '107', NULL, '53', NULL, '', '1', '12.00', '12.00', NULL, NULL, NULL, '2025-12-12 21:35:30', '2025-12-12 21:35:30'),
('204', '4', '107', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-12 21:35:30', '2025-12-12 21:35:30'),
('205', '4', '108', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-12 22:33:32', '2025-12-12 22:33:32'),
('206', '4', '108', NULL, '33', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-12 22:33:32', '2025-12-12 22:33:32'),
('207', '4', '108', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-12 22:33:32', '2025-12-12 22:33:32'),
('208', '4', '109', NULL, '33', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-13 00:03:57', '2025-12-13 00:03:57'),
('209', '4', '109', NULL, '42', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2025-12-13 00:03:57', '2025-12-13 00:03:57'),
('210', '4', '109', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-13 00:03:57', '2025-12-13 00:03:57'),
('211', '4', '110', NULL, '42', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2025-12-13 00:54:36', '2025-12-13 00:54:36'),
('212', '4', '111', NULL, '42', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2025-12-13 01:24:45', '2025-12-13 01:24:45'),
('213', '4', '112', NULL, '42', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-13 01:27:43', '2025-12-13 01:27:43'),
('214', '4', '113', NULL, '44', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-13 01:36:53', '2025-12-13 01:36:53'),
('215', '4', '114', NULL, '44', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-13 01:41:33', '2025-12-13 01:41:33'),
('216', '4', '115', NULL, '38', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-13 01:46:33', '2025-12-13 01:46:33'),
('217', '4', '116', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-13 02:11:42', '2025-12-13 02:11:42'),
('218', '4', '116', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-13 02:11:42', '2025-12-13 02:11:42'),
('219', '4', '116', NULL, '31', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 02:11:42', '2025-12-13 02:11:42'),
('220', '4', '116', NULL, '69', NULL, '', '1', '12.00', '12.00', NULL, NULL, NULL, '2025-12-13 02:11:42', '2025-12-13 02:11:42'),
('221', '4', '117', NULL, '23', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 02:55:51', '2025-12-13 02:55:51'),
('222', '4', '117', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-13 02:55:51', '2025-12-13 02:55:51'),
('223', '4', '117', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-13 02:55:51', '2025-12-13 02:55:51'),
('224', '4', '117', NULL, '21', NULL, '', '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-13 02:55:51', '2025-12-13 02:55:51'),
('225', '4', '118', NULL, '31', NULL, '', '15', '8.00', '120.00', NULL, NULL, NULL, '2025-12-13 03:10:27', '2025-12-13 03:10:27'),
('226', '4', '118', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-13 03:10:27', '2025-12-13 03:10:27'),
('227', '4', '118', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 03:10:27', '2025-12-13 03:10:27'),
('228', '4', '118', NULL, '45', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-13 03:10:27', '2025-12-13 03:10:27'),
('229', '4', '119', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-13 03:10:58', '2025-12-13 03:10:58'),
('230', '4', '119', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-13 03:10:58', '2025-12-13 03:10:58'),
('231', '4', '119', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 03:10:58', '2025-12-13 03:10:58'),
('232', '4', '119', NULL, '31', NULL, '', '15', '8.00', '120.00', NULL, NULL, NULL, '2025-12-13 03:10:58', '2025-12-13 03:10:58'),
('233', '4', '119', NULL, '45', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-13 03:10:58', '2025-12-13 03:10:58'),
('234', '4', '120', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 22:06:15', '2025-12-13 22:06:15'),
('235', '4', '121', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-13 22:13:14', '2025-12-13 22:13:14'),
('236', '4', '121', NULL, '33', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-13 22:13:14', '2025-12-13 22:13:14'),
('237', '4', '122', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-13 22:13:41', '2025-12-13 22:13:41'),
('238', '4', '122', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-13 22:13:41', '2025-12-13 22:13:41'),
('239', '4', '123', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-13 22:17:38', '2025-12-13 22:17:38'),
('240', '4', '124', NULL, '2', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('241', '4', '124', NULL, '25', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('242', '4', '124', NULL, '27', NULL, '', '2', '30.00', '60.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('243', '4', '124', NULL, '45', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('244', '4', '124', NULL, '17', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('245', '4', '124', NULL, '57', NULL, '', '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('246', '4', '124', NULL, '59', NULL, '', '2', '20.00', '40.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('247', '4', '124', NULL, '14', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-13 22:26:57', '2025-12-13 22:26:57'),
('248', '4', '125', NULL, '61', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-13 22:41:26', '2025-12-13 22:41:26'),
('249', '4', '125', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-13 22:41:26', '2025-12-13 22:41:26'),
('250', '4', '126', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-13 22:50:38', '2025-12-13 22:50:38'),
('251', '4', '127', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-13 23:06:00', '2025-12-13 23:06:00'),
('252', '4', '128', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-14 01:20:17', '2025-12-14 01:20:17'),
('253', '4', '128', NULL, '44', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-14 01:20:17', '2025-12-14 01:20:17'),
('254', '4', '129', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-14 01:23:12', '2025-12-14 01:23:12'),
('255', '4', '130', NULL, '31', NULL, '', '9', '8.00', '72.00', NULL, NULL, NULL, '2025-12-14 01:28:04', '2025-12-14 01:28:04'),
('256', '4', '130', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-14 01:28:04', '2025-12-14 01:28:04'),
('257', '4', '130', NULL, '3', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-14 01:28:04', '2025-12-14 01:28:04'),
('258', '4', '131', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-14 02:31:19', '2025-12-14 02:31:19'),
('259', '4', '132', NULL, '38', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-14 03:20:09', '2025-12-14 03:20:09'),
('260', '4', '132', NULL, '37', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-14 03:20:09', '2025-12-14 03:20:09'),
('261', '4', '133', NULL, '31', NULL, '', '9', '8.00', '72.00', NULL, NULL, NULL, '2025-12-14 03:22:13', '2025-12-14 03:22:13'),
('262', '4', '133', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-14 03:22:13', '2025-12-14 03:22:13'),
('263', '4', '133', NULL, '5', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-14 03:22:13', '2025-12-14 03:22:13'),
('264', '4', '134', NULL, '30', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-14 23:56:28', '2025-12-14 23:56:28'),
('265', '4', '134', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-14 23:56:28', '2025-12-14 23:56:28'),
('266', '4', '134', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-14 23:56:28', '2025-12-14 23:56:28'),
('267', '4', '134', NULL, '84', NULL, '', '4', '15.00', '60.00', NULL, NULL, NULL, '2025-12-14 23:56:28', '2025-12-14 23:56:28'),
('268', '4', '135', NULL, '31', NULL, '', '10', '8.00', '80.00', NULL, NULL, NULL, '2025-12-16 00:12:47', '2025-12-16 00:12:47'),
('269', '4', '135', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-16 00:12:47', '2025-12-16 00:12:47'),
('270', '4', '135', NULL, '44', NULL, '', '15', '5.00', '75.00', NULL, NULL, NULL, '2025-12-16 00:12:47', '2025-12-16 00:12:47'),
('271', '4', '135', NULL, '17', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-16 00:12:47', '2025-12-16 00:12:47'),
('272', '4', '136', NULL, '4', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('273', '4', '136', NULL, '33', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('274', '4', '136', NULL, '53', NULL, '', '1', '12.00', '12.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('275', '4', '136', NULL, '67', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('276', '4', '136', NULL, '25', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('277', '4', '136', NULL, '14', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-16 23:47:11', '2025-12-16 23:47:11'),
('278', '4', '137', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-17 20:22:52', '2025-12-17 20:22:52'),
('279', '4', '137', NULL, '34', NULL, '', '4', '7.00', '28.00', NULL, NULL, NULL, '2025-12-17 20:22:52', '2025-12-17 20:22:52'),
('280', '4', '137', NULL, '15', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-17 20:22:52', '2025-12-17 20:22:52'),
('281', '4', '138', NULL, '3', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-17 22:00:03', '2025-12-17 22:00:03'),
('282', '4', '138', NULL, '32', NULL, '', '4', '6.00', '24.00', NULL, NULL, NULL, '2025-12-17 22:00:03', '2025-12-17 22:00:03'),
('283', '4', '139', NULL, '61', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-18 22:47:46', '2025-12-18 22:47:46'),
('284', '4', '139', NULL, '44', NULL, '', '5', '5.00', '25.00', NULL, NULL, NULL, '2025-12-18 22:47:46', '2025-12-18 22:47:46'),
('285', '4', '140', NULL, '44', NULL, '', '10', '5.00', '50.00', NULL, NULL, NULL, '2025-12-18 22:48:53', '2025-12-18 22:48:53'),
('286', '4', '140', NULL, '30', NULL, '', '10', '8.00', '80.00', NULL, NULL, NULL, '2025-12-18 22:48:53', '2025-12-18 22:48:53'),
('287', '4', '140', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-18 22:48:53', '2025-12-18 22:48:53'),
('288', '4', '140', NULL, '2', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2025-12-18 22:48:53', '2025-12-18 22:48:53'),
('289', '4', '140', NULL, '4', NULL, '', '6', '4.00', '24.00', NULL, NULL, NULL, '2025-12-18 22:48:53', '2025-12-18 22:48:53'),
('290', '5', '141', NULL, '88', NULL, '', '1', '7.99', '7.99', NULL, NULL, NULL, '2025-12-19 18:31:48', '2025-12-19 18:31:48'),
('291', '5', '141', NULL, '89', NULL, '', '1', '8.99', '8.99', NULL, NULL, NULL, '2025-12-19 18:31:48', '2025-12-19 18:31:48'),
('292', '5', '141', NULL, '90', NULL, '', '1', '6.99', '6.99', NULL, NULL, NULL, '2025-12-19 18:31:48', '2025-12-19 18:31:48'),
('293', '3', '9', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-19 21:09:04', '2025-12-19 21:09:04'),
('294', '3', '142', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-19 21:25:56', '2025-12-19 21:25:56'),
('295', '4', '143', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-19 22:55:08', '2025-12-19 22:55:08'),
('296', '4', '143', NULL, '61', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-19 22:55:08', '2025-12-19 22:55:08'),
('297', '4', '144', NULL, '2', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-19 22:56:37', '2025-12-19 22:56:37'),
('298', '4', '144', NULL, '64', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-19 22:56:37', '2025-12-19 22:56:37'),
('299', '4', '144', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-19 22:56:37', '2025-12-19 22:56:37'),
('300', '4', '145', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-20 00:37:16', '2025-12-20 00:37:16'),
('301', '4', '145', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-20 00:37:16', '2025-12-20 00:37:16'),
('302', '4', '146', NULL, '30', NULL, '', '9', '8.00', '72.00', NULL, NULL, NULL, '2025-12-20 01:32:02', '2025-12-20 01:32:02'),
('303', '4', '146', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-20 01:32:02', '2025-12-20 01:32:02'),
('304', '4', '146', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-20 01:32:02', '2025-12-20 01:32:02'),
('305', '4', '146', NULL, '5', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-20 01:32:02', '2025-12-20 01:32:02'),
('306', '4', '146', NULL, '45', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-20 01:32:02', '2025-12-20 01:32:02'),
('307', '4', '147', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-20 20:53:19', '2025-12-20 20:53:19'),
('308', '4', '148', NULL, '61', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-20 21:02:51', '2025-12-20 21:02:51'),
('309', '4', '149', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-20 21:33:40', '2025-12-20 21:33:40'),
('310', '4', '149', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-20 21:33:40', '2025-12-20 21:33:40'),
('311', '4', '150', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-20 21:45:54', '2025-12-20 21:45:54'),
('312', '4', '150', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-20 21:45:54', '2025-12-20 21:45:54'),
('313', '4', '151', NULL, '67', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2025-12-20 21:53:39', '2025-12-20 21:53:39'),
('314', '4', '151', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-20 21:53:39', '2025-12-20 21:53:39'),
('315', '4', '152', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-20 21:54:03', '2025-12-20 21:54:03'),
('316', '4', '153', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-20 21:56:00', '2025-12-20 21:56:00'),
('317', '4', '154', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-20 22:28:22', '2025-12-20 22:28:22'),
('318', '4', '154', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-20 22:28:22', '2025-12-20 22:28:22'),
('319', '4', '154', NULL, '67', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-20 22:28:22', '2025-12-20 22:28:22'),
('320', '4', '155', NULL, '73', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-20 22:31:41', '2025-12-20 22:31:41'),
('321', '4', '156', NULL, '82', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-20 22:32:05', '2025-12-20 22:32:05'),
('322', '4', '156', NULL, '74', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-20 22:32:05', '2025-12-20 22:32:05'),
('323', '4', '157', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-20 22:32:52', '2025-12-20 22:32:52'),
('324', '4', '158', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-20 22:37:06', '2025-12-20 22:37:06'),
('325', '4', '158', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-20 22:37:06', '2025-12-20 22:37:06'),
('326', '4', '158', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-20 22:37:06', '2025-12-20 22:37:06'),
('327', '4', '159', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-20 22:40:02', '2025-12-20 22:40:02'),
('328', '4', '160', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-20 23:13:43', '2025-12-20 23:13:43'),
('329', '4', '161', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-20 23:18:12', '2025-12-20 23:18:12'),
('330', '4', '162', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-20 23:23:35', '2025-12-20 23:23:35'),
('339', '4', '165', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('340', '4', '165', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('341', '4', '165', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('342', '4', '165', NULL, '5', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('343', '4', '165', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('344', '4', '165', NULL, '31', NULL, '', '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-20 23:37:07', '2025-12-20 23:37:07'),
('345', '4', '166', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-21 00:00:22', '2025-12-21 00:00:22'),
('346', '4', '166', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-21 00:00:22', '2025-12-21 00:00:22'),
('347', '4', '167', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-21 00:06:55', '2025-12-21 00:06:55'),
('348', '4', '167', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-21 00:06:55', '2025-12-21 00:06:55'),
('349', '4', '168', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-21 00:07:57', '2025-12-21 00:07:57'),
('350', '4', '169', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-21 00:26:05', '2025-12-21 00:26:05'),
('351', '4', '170', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-21 00:31:11', '2025-12-21 00:31:11'),
('352', '4', '170', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-21 00:31:11', '2025-12-21 00:31:11'),
('353', '4', '171', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-21 00:40:50', '2025-12-21 00:40:50'),
('354', '4', '172', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-21 00:41:47', '2025-12-21 00:41:47'),
('355', '4', '163', NULL, '31', NULL, NULL, '16', '8.00', '128.00', NULL, NULL, NULL, '2025-12-21 01:12:04', '2025-12-21 01:12:04'),
('356', '4', '163', NULL, '7', NULL, NULL, '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-21 01:12:04', '2025-12-21 01:12:04'),
('357', '4', '163', NULL, '44', NULL, NULL, '6', '5.00', '30.00', NULL, NULL, NULL, '2025-12-21 01:12:04', '2025-12-21 01:12:04'),
('358', '4', '163', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-21 01:12:04', '2025-12-21 01:12:04'),
('359', '4', '173', NULL, '44', NULL, '', '10', '5.00', '50.00', NULL, NULL, NULL, '2025-12-21 01:15:38', '2025-12-21 01:15:38'),
('360', '4', '174', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('361', '4', '174', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('362', '4', '174', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('363', '4', '174', NULL, '31', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('364', '4', '174', NULL, '64', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('365', '4', '174', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-21 01:31:00', '2025-12-21 01:31:00'),
('366', '4', '175', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-21 02:05:44', '2025-12-21 02:05:44'),
('367', '4', '176', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-21 02:18:44', '2025-12-21 02:18:44'),
('368', '4', '177', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-21 02:42:35', '2025-12-21 02:42:35'),
('369', '4', '178', NULL, '73', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-21 03:11:01', '2025-12-21 03:11:01'),
('370', '4', '179', NULL, '21', NULL, '', '4', '12.00', '48.00', NULL, NULL, NULL, '2025-12-21 03:34:26', '2025-12-21 03:34:26'),
('371', '4', '179', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-21 03:34:26', '2025-12-21 03:34:26'),
('372', '4', '179', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-21 03:34:26', '2025-12-21 03:34:26'),
('373', '4', '179', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-21 03:34:26', '2025-12-21 03:34:26'),
('374', '4', '180', NULL, '9', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-21 03:43:32', '2025-12-21 03:43:32'),
('375', '4', '181', NULL, '64', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('376', '4', '181', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('377', '4', '181', NULL, '5', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('378', '4', '181', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('379', '4', '181', NULL, '7', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('380', '4', '181', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('381', '4', '181', NULL, '82', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('382', '4', '181', NULL, '31', NULL, '', '29', '8.00', '232.00', NULL, NULL, NULL, '2025-12-21 03:57:01', '2025-12-21 03:57:01'),
('383', '4', '182', NULL, '64', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-21 04:00:37', '2025-12-21 04:00:37'),
('384', '4', '183', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-21 04:21:05', '2025-12-21 04:21:05'),
('385', '4', '184', NULL, '79', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-21 04:30:07', '2025-12-21 04:30:07'),
('386', '4', '185', NULL, '47', NULL, '', '16', '5.00', '80.00', NULL, NULL, NULL, '2025-12-21 21:26:05', '2025-12-21 21:26:05'),
('387', '4', '185', NULL, '43', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-21 21:26:05', '2025-12-21 21:26:05'),
('388', '4', '186', NULL, '47', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-21 21:58:56', '2025-12-21 21:58:56'),
('389', '4', '186', NULL, '33', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-21 21:58:56', '2025-12-21 21:58:56'),
('390', '4', '186', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-21 21:58:56', '2025-12-21 21:58:56'),
('391', '4', '187', NULL, '47', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-21 22:28:58', '2025-12-21 22:28:58'),
('392', '4', '187', NULL, '17', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-21 22:28:58', '2025-12-21 22:28:58'),
('393', '4', '188', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-21 23:34:18', '2025-12-21 23:34:18'),
('394', '4', '188', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-21 23:34:18', '2025-12-21 23:34:18'),
('395', '4', '188', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-21 23:34:18', '2025-12-21 23:34:18'),
('396', '4', '189', NULL, '47', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-22 00:01:21', '2025-12-22 00:01:21'),
('397', '4', '189', NULL, '17', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-22 00:01:21', '2025-12-22 00:01:21'),
('398', '4', '189', NULL, '43', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-22 00:01:21', '2025-12-22 00:01:21'),
('399', '4', '190', NULL, '57', NULL, '', '3', '15.00', '45.00', NULL, NULL, NULL, '2025-12-22 00:20:05', '2025-12-22 00:20:05'),
('400', '4', '190', NULL, '6', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-22 00:20:05', '2025-12-22 00:20:05'),
('401', '4', '190', NULL, '26', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-22 00:20:05', '2025-12-22 00:20:05'),
('402', '4', '191', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-22 00:21:57', '2025-12-22 00:21:57'),
('403', '4', '191', NULL, '31', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-22 00:21:57', '2025-12-22 00:21:57'),
('404', '4', '192', NULL, '47', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-22 00:25:39', '2025-12-22 00:25:39'),
('405', '4', '193', NULL, '47', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-22 00:27:16', '2025-12-22 00:27:16'),
('406', '4', '193', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-22 00:27:16', '2025-12-22 00:27:16'),
('407', '4', '193', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-22 00:27:16', '2025-12-22 00:27:16'),
('408', '4', '194', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('409', '4', '194', NULL, '3', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('410', '4', '194', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('411', '4', '194', NULL, '9', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('412', '4', '194', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('413', '4', '194', NULL, '44', NULL, '', '7', '5.00', '35.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('414', '4', '194', NULL, '38', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('415', '4', '194', NULL, '73', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('416', '4', '194', NULL, '25', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('417', '4', '194', NULL, '26', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-22 00:43:30', '2025-12-22 00:43:30'),
('418', '4', '195', NULL, '31', NULL, '', '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-22 00:58:46', '2025-12-22 00:58:46'),
('419', '4', '195', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-22 00:58:46', '2025-12-22 00:58:46'),
('420', '4', '196', NULL, '73', NULL, '', '3', '15.00', '45.00', NULL, NULL, NULL, '2025-12-22 00:59:09', '2025-12-22 00:59:09'),
('421', '4', '197', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-22 01:24:43', '2025-12-22 01:24:43'),
('422', '4', '198', NULL, '9', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-22 01:45:18', '2025-12-22 01:45:18'),
('424', '4', '201', NULL, '44', NULL, NULL, '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-22 23:24:22', '2025-12-22 23:24:22'),
('425', '4', '201', NULL, '30', NULL, NULL, '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-22 23:24:22', '2025-12-22 23:24:22'),
('426', '4', '201', NULL, '4', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2025-12-22 23:24:22', '2025-12-22 23:24:22'),
('427', '4', '199', NULL, '9', NULL, NULL, '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-23 01:08:50', '2025-12-23 01:08:50'),
('428', '4', '199', NULL, '11', NULL, NULL, '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-23 01:08:50', '2025-12-23 01:08:50'),
('429', '4', '199', NULL, '11', NULL, NULL, '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-23 01:08:50', '2025-12-23 01:08:50'),
('430', '4', '199', NULL, '11', NULL, NULL, '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-23 01:08:50', '2025-12-23 01:08:50'),
('431', '4', '199', NULL, '47', NULL, NULL, '5', '5.00', '25.00', NULL, NULL, NULL, '2025-12-23 01:08:50', '2025-12-23 01:08:50'),
('432', '4', '202', NULL, '4', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-23 01:09:26', '2025-12-23 01:09:26'),
('433', '4', '202', NULL, '44', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-23 01:09:26', '2025-12-23 01:09:26'),
('434', '4', '202', NULL, '30', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-23 01:09:26', '2025-12-23 01:09:26'),
('435', '4', '203', NULL, '66', NULL, '', '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-23 01:37:16', '2025-12-23 01:37:16'),
('436', '4', '203', NULL, '7', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-23 01:37:16', '2025-12-23 01:37:16'),
('437', '4', '204', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-23 21:33:22', '2025-12-23 21:33:22'),
('438', '4', '205', NULL, '9', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-23 22:29:37', '2025-12-23 22:29:37'),
('439', '4', '207', NULL, '4', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-24 00:25:05', '2025-12-24 00:25:05'),
('440', '4', '207', NULL, '14', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-24 00:25:05', '2025-12-24 00:25:05'),
('441', '4', '207', NULL, '25', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:25:05', '2025-12-24 00:25:05'),
('442', '4', '209', NULL, '15', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:42:25', '2025-12-24 00:42:25'),
('443', '4', '209', NULL, '31', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:42:25', '2025-12-24 00:42:25'),
('444', '4', '209', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-24 00:42:25', '2025-12-24 00:42:25'),
('445', '4', '206', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('446', '4', '206', NULL, '31', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('447', '4', '206', NULL, '11', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('448', '4', '206', NULL, '11', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('449', '4', '206', NULL, '4', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('450', '4', '206', NULL, '44', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-24 00:56:48', '2025-12-24 00:56:48'),
('451', '4', '208', NULL, '30', NULL, NULL, '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('452', '4', '208', NULL, '31', NULL, NULL, '6', '8.00', '48.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('453', '4', '208', NULL, '66', NULL, NULL, '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('454', '4', '208', NULL, '57', NULL, NULL, '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('455', '4', '208', NULL, '2', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('456', '4', '208', NULL, '3', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('457', '4', '208', NULL, '44', NULL, NULL, '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('458', '4', '208', NULL, '44', NULL, NULL, '10', '5.00', '50.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('459', '4', '208', NULL, '31', NULL, NULL, '14', '8.00', '112.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('460', '4', '208', NULL, '7', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('461', '4', '208', NULL, '2', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('462', '4', '208', NULL, '57', NULL, NULL, '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('463', '4', '208', NULL, '44', NULL, NULL, '5', '5.00', '25.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('464', '4', '208', NULL, '47', NULL, NULL, '6', '5.00', '30.00', NULL, NULL, NULL, '2025-12-24 02:24:30', '2025-12-24 02:24:30'),
('465', '4', '210', NULL, '21', NULL, NULL, '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-24 02:49:55', '2025-12-24 02:49:55'),
('466', '4', '210', NULL, '2', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-24 02:49:55', '2025-12-24 02:49:55'),
('467', '4', '210', NULL, '4', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-24 02:49:55', '2025-12-24 02:49:55'),
('468', '4', '212', NULL, '13', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-24 22:59:08', '2025-12-24 22:59:08'),
('469', '4', '213', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-24 23:38:31', '2025-12-24 23:38:31'),
('470', '4', '214', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-24 23:43:31', '2025-12-24 23:43:31'),
('471', '4', '215', NULL, '75', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-25 20:25:40', '2025-12-25 20:25:40'),
('472', '4', '215', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-25 20:25:40', '2025-12-25 20:25:40'),
('473', '4', '216', NULL, '75', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-25 21:35:47', '2025-12-25 21:35:47'),
('474', '4', '216', NULL, '77', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-25 21:35:47', '2025-12-25 21:35:47'),
('475', '4', '216', NULL, '11', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-25 21:35:47', '2025-12-25 21:35:47'),
('476', '4', '217', NULL, '33', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-25 23:48:32', '2025-12-25 23:48:32'),
('477', '4', '218', NULL, '77', NULL, '', '3', '15.00', '45.00', NULL, NULL, NULL, '2025-12-26 00:18:14', '2025-12-26 00:18:14'),
('478', '4', '219', NULL, '77', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-26 00:50:42', '2025-12-26 00:50:42'),
('479', '4', '220', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-26 00:51:45', '2025-12-26 00:51:45'),
('480', '4', '221', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-26 00:59:03', '2025-12-26 00:59:03'),
('481', '4', '222', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-26 21:20:54', '2025-12-26 21:20:54'),
('482', '4', '222', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-26 21:20:54', '2025-12-26 21:20:54'),
('483', '4', '222', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-26 21:20:54', '2025-12-26 21:20:54'),
('484', '4', '223', NULL, '72', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-26 23:06:00', '2025-12-26 23:06:00'),
('485', '4', '224', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-26 23:08:49', '2025-12-26 23:08:49'),
('486', '4', '224', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-26 23:08:49', '2025-12-26 23:08:49'),
('487', '4', '224', NULL, '23', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-26 23:08:49', '2025-12-26 23:08:49'),
('488', '4', '225', NULL, '44', NULL, '', '10', '5.00', '50.00', NULL, NULL, NULL, '2025-12-26 23:10:47', '2025-12-26 23:10:47'),
('489', '4', '225', NULL, '17', NULL, '', '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-26 23:10:47', '2025-12-26 23:10:47'),
('490', '4', '225', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-26 23:10:47', '2025-12-26 23:10:47'),
('491', '4', '226', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-26 23:30:22', '2025-12-26 23:30:22'),
('492', '4', '226', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-26 23:30:22', '2025-12-26 23:30:22'),
('493', '4', '227', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-27 00:00:01', '2025-12-27 00:00:01'),
('494', '4', '227', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 00:00:01', '2025-12-27 00:00:01'),
('495', '4', '227', NULL, '3', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-27 00:00:01', '2025-12-27 00:00:01'),
('496', '4', '228', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-27 00:06:19', '2025-12-27 00:06:19'),
('497', '4', '228', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 00:06:19', '2025-12-27 00:06:19'),
('498', '4', '229', NULL, '44', NULL, '', '8', '5.00', '40.00', NULL, NULL, NULL, '2025-12-27 00:28:34', '2025-12-27 00:28:34'),
('499', '4', '230', NULL, '32', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-27 00:51:33', '2025-12-27 00:51:33'),
('500', '4', '230', NULL, '36', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 00:51:33', '2025-12-27 00:51:33'),
('501', '4', '230', NULL, '12', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-27 00:51:33', '2025-12-27 00:51:33'),
('502', '4', '231', NULL, '44', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2025-12-27 00:54:35', '2025-12-27 00:54:35'),
('503', '4', '232', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-27 00:59:52', '2025-12-27 00:59:52'),
('504', '4', '233', NULL, '18', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-27 01:18:07', '2025-12-27 01:18:07'),
('505', '4', '233', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-27 01:18:07', '2025-12-27 01:18:07'),
('506', '4', '234', NULL, '44', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-27 01:20:02', '2025-12-27 01:20:02'),
('507', '4', '234', NULL, '31', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-27 01:20:02', '2025-12-27 01:20:02'),
('508', '4', '235', NULL, '30', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 01:33:38', '2025-12-27 01:33:38'),
('509', '4', '236', NULL, '2', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2025-12-27 01:44:00', '2025-12-27 01:44:00'),
('510', '4', '237', NULL, '44', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-27 01:45:15', '2025-12-27 01:45:15'),
('511', '4', '238', NULL, '73', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-27 02:11:16', '2025-12-27 02:11:16'),
('512', '4', '238', NULL, '18', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-27 02:11:16', '2025-12-27 02:11:16'),
('513', '5', '239', NULL, '92', NULL, '', '1', '6.49', '6.49', NULL, NULL, NULL, '2025-12-27 15:54:18', '2025-12-27 15:54:18'),
('514', '3', '240', NULL, '1', NULL, '', '3', '10.00', '30.00', NULL, NULL, NULL, '2025-12-27 16:25:41', '2025-12-27 16:25:41'),
('515', '4', '241', NULL, '10', NULL, '', '5', '6.00', '30.00', NULL, NULL, NULL, '2025-12-27 20:01:56', '2025-12-27 20:01:56'),
('516', '4', '242', NULL, '23', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-27 20:09:52', '2025-12-27 20:09:52'),
('517', '4', '242', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-27 20:09:52', '2025-12-27 20:09:52'),
('518', '4', '243', NULL, '13', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-27 20:34:32', '2025-12-27 20:34:32'),
('519', '4', '243', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-27 20:34:32', '2025-12-27 20:34:32'),
('520', '4', '243', NULL, '23', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 20:34:32', '2025-12-27 20:34:32'),
('521', '4', '244', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-27 21:04:46', '2025-12-27 21:04:46'),
('522', '4', '245', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-27 21:13:40', '2025-12-27 21:13:40'),
('523', '4', '245', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-27 21:13:40', '2025-12-27 21:13:40'),
('524', '4', '245', NULL, '23', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-27 21:13:40', '2025-12-27 21:13:40'),
('525', '4', '245', NULL, '66', NULL, '', '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-27 21:13:40', '2025-12-27 21:13:40'),
('526', '4', '246', NULL, '25', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-27 21:24:11', '2025-12-27 21:24:11'),
('527', '4', '246', NULL, '45', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-27 21:24:11', '2025-12-27 21:24:11'),
('528', '4', '246', NULL, '56', NULL, '', '2', '12.00', '24.00', NULL, NULL, NULL, '2025-12-27 21:24:11', '2025-12-27 21:24:11'),
('529', '4', '246', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-27 21:24:11', '2025-12-27 21:24:11'),
('530', '4', '246', NULL, '14', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-27 21:24:11', '2025-12-27 21:24:11'),
('531', '4', '247', NULL, '26', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-27 21:24:42', '2025-12-27 21:24:42'),
('532', '4', '248', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-27 21:47:26', '2025-12-27 21:47:26'),
('533', '3', '250', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-27 21:50:33', '2025-12-27 21:50:33'),
('534', '3', '250', NULL, '1', NULL, NULL, '4', '10.00', '40.00', NULL, NULL, NULL, '2025-12-27 21:50:33', '2025-12-27 21:50:33'),
('535', '4', '252', NULL, '4', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-27 21:56:00', '2025-12-27 21:56:00'),
('536', '4', '252', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-27 21:56:00', '2025-12-27 21:56:00'),
('537', '4', '253', NULL, '30', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-27 22:08:58', '2025-12-27 22:08:58'),
('538', '4', '253', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-27 22:08:58', '2025-12-27 22:08:58'),
('539', '4', '254', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-27 22:32:15', '2025-12-27 22:32:15'),
('540', '4', '255', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-27 23:08:51', '2025-12-27 23:08:51'),
('541', '4', '256', NULL, '78', NULL, '', '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-27 23:23:49', '2025-12-27 23:23:49'),
('542', '4', '257', NULL, '10', NULL, '', '3', '6.00', '18.00', NULL, NULL, NULL, '2025-12-27 23:30:00', '2025-12-27 23:30:00'),
('543', '4', '258', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-27 23:31:07', '2025-12-27 23:31:07'),
('544', '4', '259', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-28 00:07:19', '2025-12-28 00:07:19'),
('545', '4', '260', NULL, '10', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2025-12-28 00:42:51', '2025-12-28 00:42:51'),
('546', '4', '261', NULL, '10', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-28 00:52:41', '2025-12-28 00:52:41'),
('547', '4', '262', NULL, '47', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2025-12-28 01:23:55', '2025-12-28 01:23:55'),
('548', '4', '263', NULL, '17', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-28 01:32:39', '2025-12-28 01:32:39'),
('549', '4', '263', NULL, '15', NULL, '', '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-28 01:32:39', '2025-12-28 01:32:39'),
('550', '4', '263', NULL, '3', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2025-12-28 01:32:39', '2025-12-28 01:32:39'),
('551', '4', '263', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-28 01:32:39', '2025-12-28 01:32:39'),
('552', '3', '264', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-28 09:42:00', '2025-12-28 09:42:00'),
('553', '3', '265', NULL, '1', NULL, '', '2', '10.00', '20.00', NULL, NULL, NULL, '2025-12-28 09:43:02', '2025-12-28 09:43:02'),
('554', '3', '266', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-28 09:47:25', '2025-12-28 09:47:25'),
('555', '3', '266', NULL, '1', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-28 09:47:25', '2025-12-28 09:47:25'),
('556', '3', '268', NULL, '1', NULL, '', '2', '10.00', '20.00', NULL, NULL, NULL, '2025-12-28 09:54:35', '2025-12-28 09:54:35'),
('557', '3', '269', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-28 09:57:57', '2025-12-28 09:57:57'),
('558', '3', '270', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2025-12-28 10:02:01', '2025-12-28 10:02:01'),
('559', '4', '271', NULL, '4', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-28 21:43:12', '2025-12-28 21:43:12'),
('560', '4', '271', NULL, '7', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-28 21:43:12', '2025-12-28 21:43:12'),
('561', '4', '271', NULL, '31', NULL, NULL, '4', '8.00', '32.00', NULL, NULL, NULL, '2025-12-28 21:43:12', '2025-12-28 21:43:12'),
('562', '4', '271', NULL, '61', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-28 21:43:12', '2025-12-28 21:43:12'),
('563', '4', '275', NULL, '14', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2025-12-28 22:47:52', '2025-12-28 22:47:52'),
('564', '4', '275', NULL, '61', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-28 22:47:52', '2025-12-28 22:47:52'),
('565', '4', '272', NULL, '29', NULL, NULL, '1', '35.00', '35.00', NULL, NULL, NULL, '2025-12-28 23:22:07', '2025-12-28 23:22:07'),
('566', '4', '272', NULL, '73', NULL, NULL, '2', '15.00', '30.00', NULL, NULL, NULL, '2025-12-28 23:22:07', '2025-12-28 23:22:07'),
('567', '4', '272', NULL, '75', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2025-12-28 23:22:07', '2025-12-28 23:22:07'),
('568', '4', '272', NULL, '43', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-28 23:22:07', '2025-12-28 23:22:07'),
('569', '4', '273', NULL, '9', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2025-12-28 23:23:32', '2025-12-28 23:23:32'),
('570', '4', '273', NULL, '13', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-28 23:23:32', '2025-12-28 23:23:32'),
('571', '4', '276', NULL, '11', NULL, NULL, '3', '8.00', '24.00', NULL, NULL, NULL, '2025-12-28 23:49:05', '2025-12-28 23:49:05'),
('572', '4', '276', NULL, '10', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-28 23:49:05', '2025-12-28 23:49:05'),
('573', '4', '276', NULL, '9', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-28 23:49:05', '2025-12-28 23:49:05'),
('574', '4', '276', NULL, '7', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-28 23:49:05', '2025-12-28 23:49:05'),
('575', '4', '278', NULL, '44', NULL, '', '5', '5.00', '25.00', NULL, NULL, NULL, '2025-12-28 23:49:35', '2025-12-28 23:49:35'),
('576', '4', '274', NULL, '9', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('577', '4', '274', NULL, '15', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('578', '4', '274', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('579', '4', '274', NULL, '9', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('580', '4', '274', NULL, '9', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('581', '4', '274', NULL, '15', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('582', '4', '274', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-29 00:04:18', '2025-12-29 00:04:18'),
('583', '4', '279', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-29 00:07:23', '2025-12-29 00:07:23'),
('584', '4', '279', NULL, '7', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-29 00:07:23', '2025-12-29 00:07:23'),
('585', '4', '279', NULL, '67', NULL, '', '10', '9.00', '90.00', NULL, NULL, NULL, '2025-12-29 00:07:23', '2025-12-29 00:07:23'),
('586', '4', '277', NULL, '61', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-29 01:10:53', '2025-12-29 01:10:53'),
('587', '4', '281', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-29 20:28:20', '2025-12-29 20:28:20'),
('588', '4', '282', NULL, '15', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-29 20:29:55', '2025-12-29 20:29:55'),
('589', '4', '283', NULL, '9', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-29 20:36:20', '2025-12-29 20:36:20'),
('590', '4', '280', NULL, '2', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-29 20:45:05', '2025-12-29 20:45:05'),
('591', '4', '211', NULL, '61', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2025-12-29 20:50:01', '2025-12-29 20:50:01'),
('592', '4', '211', NULL, '9', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2025-12-29 20:50:01', '2025-12-29 20:50:01'),
('593', '4', '284', NULL, '67', NULL, '', '7', '9.00', '63.00', NULL, NULL, NULL, '2025-12-30 20:11:27', '2025-12-30 20:11:27'),
('594', '4', '284', NULL, '4', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2025-12-30 20:11:27', '2025-12-30 20:11:27'),
('595', '4', '284', NULL, '2', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-30 20:11:27', '2025-12-30 20:11:27'),
('596', '4', '284', NULL, '7', NULL, '', '1', '8.00', '8.00', NULL, NULL, NULL, '2025-12-30 20:11:27', '2025-12-30 20:11:27'),
('597', '4', '286', NULL, '11', NULL, '', '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-30 21:40:01', '2025-12-30 21:40:01'),
('598', '4', '286', NULL, '2', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-30 21:40:01', '2025-12-30 21:40:01'),
('599', '4', '288', NULL, '85', NULL, NULL, '1', '40.00', '40.00', NULL, NULL, NULL, '2025-12-30 23:43:00', '2025-12-30 23:43:00'),
('600', '4', '288', NULL, '4', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2025-12-30 23:43:00', '2025-12-30 23:43:00'),
('601', '4', '288', NULL, '60', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2025-12-30 23:43:00', '2025-12-30 23:43:00'),
('602', '4', '288', NULL, '2', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-30 23:43:00', '2025-12-30 23:43:00'),
('603', '4', '289', NULL, '50', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2025-12-30 23:48:43', '2025-12-30 23:48:43'),
('604', '4', '289', NULL, '2', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2025-12-30 23:48:43', '2025-12-30 23:48:43'),
('605', '4', '287', NULL, '31', NULL, NULL, '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-31 01:00:35', '2025-12-31 01:00:35'),
('606', '4', '287', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-31 01:00:35', '2025-12-31 01:00:35'),
('607', '4', '287', NULL, '31', NULL, NULL, '2', '8.00', '16.00', NULL, NULL, NULL, '2025-12-31 01:00:35', '2025-12-31 01:00:35'),
('608', '4', '287', NULL, '3', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-31 01:00:35', '2025-12-31 01:00:35'),
('609', '4', '287', NULL, '44', NULL, NULL, '6', '5.00', '30.00', NULL, NULL, NULL, '2025-12-31 01:00:35', '2025-12-31 01:00:35'),
('610', '4', '285', NULL, '2', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2025-12-31 02:08:59', '2025-12-31 02:08:59'),
('611', '4', '294', NULL, '44', NULL, '', '12', '3.00', '36.00', NULL, NULL, NULL, '2026-01-01 22:21:18', '2026-01-01 22:21:18'),
('612', '4', '294', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-01 22:21:18', '2026-01-01 22:21:18'),
('613', '4', '294', NULL, '3', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-01 22:21:18', '2026-01-01 22:21:18'),
('614', '4', '294', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-01 22:21:18', '2026-01-01 22:21:18'),
('615', '4', '294', NULL, '79', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-01 22:21:18', '2026-01-01 22:21:18'),
('616', '4', '295', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-02 00:20:22', '2026-01-02 00:20:22'),
('617', '4', '295', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-02 00:20:22', '2026-01-02 00:20:22'),
('618', '4', '295', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-02 00:20:22', '2026-01-02 00:20:22'),
('619', '4', '296', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-02 19:31:29', '2026-01-02 19:31:29'),
('620', '4', '297', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-02 20:21:28', '2026-01-02 20:21:28'),
('621', '4', '298', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-02 21:01:44', '2026-01-02 21:01:44'),
('622', '4', '299', NULL, '77', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-01-02 21:14:33', '2026-01-02 21:14:33'),
('623', '4', '300', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-02 21:37:48', '2026-01-02 21:37:48'),
('624', '4', '301', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-02 22:01:31', '2026-01-02 22:01:31'),
('625', '4', '301', NULL, '77', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-02 22:01:31', '2026-01-02 22:01:31'),
('626', '4', '302', NULL, '77', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-02 22:27:29', '2026-01-02 22:27:29'),
('627', '4', '303', NULL, '83', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-02 23:01:24', '2026-01-02 23:01:24'),
('628', '4', '303', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-02 23:01:24', '2026-01-02 23:01:24'),
('629', '4', '304', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-02 23:40:46', '2026-01-02 23:40:46'),
('630', '4', '304', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-02 23:40:46', '2026-01-02 23:40:46'),
('631', '4', '304', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-02 23:40:46', '2026-01-02 23:40:46'),
('632', '4', '304', NULL, '3', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-02 23:40:46', '2026-01-02 23:40:46'),
('633', '4', '304', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-02 23:40:46', '2026-01-02 23:40:46'),
('634', '4', '305', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-02 23:50:21', '2026-01-02 23:50:21'),
('635', '4', '305', NULL, '3', NULL, '', '5', '1.50', '7.50', NULL, NULL, NULL, '2026-01-02 23:50:21', '2026-01-02 23:50:21'),
('636', '4', '305', NULL, '30', NULL, '', '20', '4.00', '80.00', NULL, NULL, NULL, '2026-01-02 23:50:21', '2026-01-02 23:50:21'),
('637', '4', '306', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-02 23:56:00', '2026-01-02 23:56:00'),
('638', '4', '307', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-02 23:59:51', '2026-01-02 23:59:51'),
('639', '4', '308', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-03 00:27:41', '2026-01-03 00:27:41'),
('640', '4', '309', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-03 00:43:40', '2026-01-03 00:43:40'),
('641', '4', '310', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-03 00:59:12', '2026-01-03 00:59:12'),
('642', '4', '311', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-03 01:05:28', '2026-01-03 01:05:28'),
('643', '4', '312', NULL, '11', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2026-01-03 23:47:41', '2026-01-03 23:47:41'),
('644', '4', '312', NULL, '77', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-03 23:47:41', '2026-01-03 23:47:41'),
('645', '4', '313', NULL, '77', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-03 23:48:16', '2026-01-03 23:48:16'),
('646', '4', '313', NULL, '75', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-03 23:48:16', '2026-01-03 23:48:16'),
('647', '4', '313', NULL, '82', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-03 23:48:16', '2026-01-03 23:48:16'),
('648', '4', '314', NULL, '77', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-03 23:48:44', '2026-01-03 23:48:44'),
('649', '4', '315', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-04 00:01:44', '2026-01-04 00:01:44'),
('650', '4', '316', NULL, '3', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-04 00:44:52', '2026-01-04 00:44:52'),
('651', '4', '316', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-04 00:44:52', '2026-01-04 00:44:52'),
('652', '4', '316', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-01-04 00:44:52', '2026-01-04 00:44:52'),
('653', '4', '317', NULL, '84', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-04 00:50:35', '2026-01-04 00:50:35'),
('654', '4', '318', NULL, '13', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-04 00:59:50', '2026-01-04 00:59:50'),
('655', '4', '319', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-04 23:29:29', '2026-01-04 23:29:29'),
('656', '4', '319', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-04 23:29:29', '2026-01-04 23:29:29'),
('657', '4', '321', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 21:53:51', '2026-01-07 21:53:51'),
('658', '4', '322', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 21:54:11', '2026-01-07 21:54:11'),
('659', '4', '322', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-07 21:54:11', '2026-01-07 21:54:11'),
('660', '4', '323', NULL, '49', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-07 22:03:09', '2026-01-07 22:03:09'),
('661', '4', '323', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 22:03:09', '2026-01-07 22:03:09'),
('662', '4', '323', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-07 22:03:09', '2026-01-07 22:03:09'),
('663', '4', '323', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-07 22:03:09', '2026-01-07 22:03:09'),
('664', '4', '324', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-07 22:10:11', '2026-01-07 22:10:11'),
('665', '4', '324', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 22:10:11', '2026-01-07 22:10:11'),
('666', '4', '324', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-07 22:10:11', '2026-01-07 22:10:11'),
('667', '4', '325', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-07 22:23:35', '2026-01-07 22:23:35'),
('668', '4', '325', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 22:23:35', '2026-01-07 22:23:35'),
('669', '4', '326', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-07 22:34:34', '2026-01-07 22:34:34'),
('670', '4', '327', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-07 22:43:05', '2026-01-07 22:43:05'),
('671', '4', '327', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-07 22:43:05', '2026-01-07 22:43:05'),
('672', '4', '328', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 22:47:18', '2026-01-07 22:47:18'),
('673', '4', '328', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-07 22:47:18', '2026-01-07 22:47:18'),
('674', '4', '329', NULL, '5', NULL, '', '2', '2.00', '4.00', NULL, NULL, NULL, '2026-01-07 23:34:12', '2026-01-07 23:34:12'),
('675', '4', '329', NULL, '49', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-07 23:34:12', '2026-01-07 23:34:12'),
('676', '4', '329', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-07 23:34:12', '2026-01-07 23:34:12'),
('677', '4', '330', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-07 23:38:28', '2026-01-07 23:38:28'),
('678', '4', '330', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-07 23:38:28', '2026-01-07 23:38:28'),
('679', '4', '330', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-07 23:38:28', '2026-01-07 23:38:28'),
('680', '4', '331', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-08 00:12:56', '2026-01-08 00:12:56'),
('681', '4', '331', NULL, '23', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-08 00:12:56', '2026-01-08 00:12:56'),
('682', '4', '332', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-08 00:55:51', '2026-01-08 00:55:51'),
('683', '4', '332', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-08 00:55:51', '2026-01-08 00:55:51'),
('684', '4', '333', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-08 01:33:29', '2026-01-08 01:33:29'),
('685', '4', '333', NULL, '31', NULL, '', '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-08 01:33:29', '2026-01-08 01:33:29'),
('686', '4', '334', NULL, '4', NULL, '', '8', '2.50', '20.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('687', '4', '334', NULL, '3', NULL, '', '5', '1.50', '7.50', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('688', '4', '334', NULL, '2', NULL, '', '9', '1.50', '13.50', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('689', '4', '334', NULL, '25', NULL, '', '6', '4.00', '24.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('690', '4', '334', NULL, '45', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('691', '4', '334', NULL, '65', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('692', '4', '334', NULL, '27', NULL, '', '2', '15.00', '30.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('693', '4', '334', NULL, '44', NULL, '', '27', '3.00', '81.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('694', '4', '334', NULL, '31', NULL, '', '28', '4.00', '112.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('695', '4', '334', NULL, '30', NULL, '', '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-09 23:46:57', '2026-01-09 23:46:57'),
('696', '4', '335', NULL, '9', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-01-10 03:03:20', '2026-01-10 03:03:20'),
('697', '4', '335', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-10 03:03:20', '2026-01-10 03:03:20'),
('698', '4', '336', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-10 18:46:51', '2026-01-10 18:46:51'),
('699', '4', '337', NULL, '2', NULL, '', '6', '1.50', '9.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('700', '4', '337', NULL, '3', NULL, '', '6', '1.50', '9.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('701', '4', '337', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('702', '4', '337', NULL, '4', NULL, '', '12', '2.50', '30.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('703', '4', '337', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('704', '4', '337', NULL, '61', NULL, '', '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('705', '4', '337', NULL, '62', NULL, '', '29', '5.00', '145.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('706', '4', '337', NULL, '31', NULL, '', '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('707', '4', '337', NULL, '25', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('708', '4', '337', NULL, '27', NULL, '', '3', '15.00', '45.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('709', '4', '337', NULL, '45', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('710', '4', '337', NULL, '65', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-10 18:49:11', '2026-01-10 18:49:11'),
('711', '4', '338', NULL, '74', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-11 00:15:44', '2026-01-11 00:15:44'),
('712', '4', '338', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 00:15:44', '2026-01-11 00:15:44'),
('713', '4', '338', NULL, '43', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-11 00:15:44', '2026-01-11 00:15:44'),
('714', '4', '338', NULL, '40', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 00:15:44', '2026-01-11 00:15:44'),
('715', '4', '339', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-11 00:16:45', '2026-01-11 00:16:45'),
('716', '4', '340', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 00:30:30', '2026-01-11 00:30:30'),
('717', '4', '340', NULL, '74', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-11 00:30:30', '2026-01-11 00:30:30'),
('718', '4', '341', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-11 00:33:26', '2026-01-11 00:33:26'),
('719', '4', '341', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-11 00:33:26', '2026-01-11 00:33:26'),
('720', '4', '342', NULL, '2', NULL, NULL, '61', '1.50', '91.50', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('721', '4', '342', NULL, '4', NULL, NULL, '3', '2.50', '7.50', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('722', '4', '342', NULL, '9', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('723', '4', '342', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('724', '4', '342', NULL, '15', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('725', '4', '342', NULL, '61', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('726', '4', '342', NULL, '23', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('727', '4', '342', NULL, '25', NULL, NULL, '9', '4.00', '36.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('728', '4', '342', NULL, '65', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('729', '4', '342', NULL, '45', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('730', '4', '342', NULL, '44', NULL, NULL, '16', '3.00', '3.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('731', '4', '342', NULL, '81', NULL, NULL, '6', '9.00', '54.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('732', '4', '342', NULL, '79', NULL, NULL, '11', '9.00', '99.00', NULL, NULL, NULL, '2026-01-11 00:55:09', '2026-01-11 00:55:09'),
('733', '4', '343', NULL, '67', NULL, '', '15', '5.00', '75.00', NULL, NULL, NULL, '2026-01-11 01:05:25', '2026-01-11 01:05:25'),
('734', '4', '343', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-11 01:05:25', '2026-01-11 01:05:25'),
('735', '4', '343', NULL, '3', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-11 01:05:25', '2026-01-11 01:05:25'),
('736', '4', '343', NULL, '4', NULL, '', '3', '2.50', '7.50', NULL, NULL, NULL, '2026-01-11 01:05:25', '2026-01-11 01:05:25'),
('737', '4', '343', NULL, '25', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 01:05:25', '2026-01-11 01:05:25'),
('738', '4', '344', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-11 01:06:07', '2026-01-11 01:06:07'),
('739', '4', '344', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-11 01:06:07', '2026-01-11 01:06:07'),
('740', '4', '345', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-11 01:52:56', '2026-01-11 01:52:56'),
('741', '4', '345', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-11 01:52:56', '2026-01-11 01:52:56'),
('742', '4', '346', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-13 19:19:19', '2026-01-13 19:19:19'),
('743', '4', '347', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-13 19:20:03', '2026-01-13 19:20:03'),
('744', '4', '357', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-14 21:49:57', '2026-01-14 21:49:57'),
('745', '4', '357', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-14 21:49:57', '2026-01-14 21:49:57'),
('746', '4', '357', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-14 21:49:57', '2026-01-14 21:49:57'),
('747', '4', '358', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-15 10:56:29', '2026-01-15 10:56:29'),
('748', '3', '359', NULL, '1', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2026-01-15 11:03:39', '2026-01-15 11:03:39'),
('749', '4', '363', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-16 19:14:50', '2026-01-16 19:14:50'),
('750', '4', '363', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-16 19:14:50', '2026-01-16 19:14:50'),
('751', '4', '364', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-16 20:49:07', '2026-01-16 20:49:07'),
('752', '4', '364', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-16 20:49:07', '2026-01-16 20:49:07'),
('753', '4', '364', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-16 20:49:07', '2026-01-16 20:49:07'),
('754', '4', '365', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-16 21:11:28', '2026-01-16 21:11:28'),
('755', '4', '365', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-16 21:11:28', '2026-01-16 21:11:28'),
('756', '4', '366', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-16 21:12:43', '2026-01-16 21:12:43'),
('757', '4', '366', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-01-16 21:12:43', '2026-01-16 21:12:43'),
('758', '4', '367', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-16 21:13:36', '2026-01-16 21:13:36'),
('759', '4', '367', NULL, '14', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-16 21:13:36', '2026-01-16 21:13:36'),
('760', '4', '368', NULL, '31', NULL, '', '10', '4.00', '40.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('761', '4', '368', NULL, '67', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('762', '4', '368', NULL, '4', NULL, '', '4', '2.50', '10.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('763', '4', '368', NULL, '5', NULL, '', '2', '2.00', '4.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('764', '4', '368', NULL, '46', NULL, '', '2', '20.00', '40.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('765', '4', '368', NULL, '45', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-17 01:39:11', '2026-01-17 01:39:11'),
('766', '4', '369', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-01-17 20:56:26', '2026-01-17 20:56:26'),
('767', '4', '370', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-17 21:21:54', '2026-01-17 21:21:54'),
('768', '4', '371', NULL, '67', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2026-01-17 21:47:44', '2026-01-17 21:47:44'),
('769', '4', '371', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-17 21:47:44', '2026-01-17 21:47:44'),
('770', '4', '372', NULL, '67', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2026-01-17 21:58:06', '2026-01-17 21:58:06'),
('771', '4', '372', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-17 21:58:06', '2026-01-17 21:58:06'),
('772', '4', '373', NULL, '31', NULL, '', '8', '4.00', '32.00', NULL, NULL, NULL, '2026-01-18 00:49:47', '2026-01-18 00:49:47'),
('773', '4', '373', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-18 00:49:47', '2026-01-18 00:49:47'),
('774', '1', '380', NULL, '96', NULL, '', '1', '199.00', '199.00', NULL, NULL, NULL, '2026-01-19 08:40:06', '2026-01-19 08:40:06'),
('775', '1', '380', NULL, '103', NULL, '', '1', '149.00', '149.00', NULL, NULL, NULL, '2026-01-19 08:40:06', '2026-01-19 08:40:06'),
('780', '4', '374', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-19 18:54:48', '2026-01-19 18:54:48'),
('781', '4', '376', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-19 18:55:44', '2026-01-19 18:55:44'),
('782', '4', '377', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-19 18:56:51', '2026-01-19 18:56:51'),
('783', '4', '383', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-19 18:57:16', '2026-01-19 18:57:16'),
('784', '4', '384', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-19 18:59:04', '2026-01-19 18:59:04'),
('785', '4', '385', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-19 19:01:48', '2026-01-19 19:01:48'),
('786', '4', '386', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-19 19:05:18', '2026-01-19 19:05:18'),
('787', '4', '386', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-19 19:05:18', '2026-01-19 19:05:18'),
('788', '4', '386', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-19 19:05:18', '2026-01-19 19:05:18'),
('789', '4', '386', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-19 19:05:18', '2026-01-19 19:05:18'),
('790', '4', '387', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-19 19:20:01', '2026-01-19 19:20:01'),
('791', '4', '387', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-19 19:20:01', '2026-01-19 19:20:01'),
('792', '4', '387', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-19 19:20:01', '2026-01-19 19:20:01'),
('793', '4', '389', NULL, '9', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-19 21:37:38', '2026-01-19 21:37:38'),
('794', '4', '390', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-19 21:48:03', '2026-01-19 21:48:03'),
('795', '4', '392', NULL, '83', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-19 21:49:45', '2026-01-19 21:49:45'),
('796', '4', '392', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-19 21:49:45', '2026-01-19 21:49:45'),
('797', '4', '394', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-01-19 22:08:49', '2026-01-19 22:08:49'),
('798', '4', '395', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-19 22:17:47', '2026-01-19 22:17:47'),
('799', '4', '396', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-19 22:50:17', '2026-01-19 22:50:17'),
('800', '4', '397', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-19 23:32:54', '2026-01-19 23:32:54'),
('801', '4', '391', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-01-19 23:39:03', '2026-01-19 23:39:03'),
('802', '4', '391', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-19 23:39:03', '2026-01-19 23:39:03'),
('803', '4', '391', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-19 23:39:03', '2026-01-19 23:39:03'),
('804', '4', '398', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-19 23:46:48', '2026-01-19 23:46:48'),
('805', '4', '399', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-20 00:04:59', '2026-01-20 00:04:59'),
('806', '4', '399', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-20 00:04:59', '2026-01-20 00:04:59'),
('807', '4', '400', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-20 00:07:14', '2026-01-20 00:07:14'),
('808', '4', '400', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 00:07:14', '2026-01-20 00:07:14'),
('809', '4', '401', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-20 00:41:10', '2026-01-20 00:41:10'),
('810', '4', '401', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 00:41:10', '2026-01-20 00:41:10'),
('811', '4', '401', NULL, '25', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 00:41:10', '2026-01-20 00:41:10'),
('812', '4', '393', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('813', '4', '393', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('814', '4', '393', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('815', '4', '393', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('816', '4', '393', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('817', '4', '393', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('818', '4', '393', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('819', '4', '393', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('820', '4', '393', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('821', '4', '393', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('822', '4', '393', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-20 01:27:09', '2026-01-20 01:27:09'),
('823', '4', '402', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-20 01:28:12', '2026-01-20 01:28:12'),
('824', '4', '403', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-01-23 19:39:43', '2026-01-23 19:39:43'),
('825', '4', '407', NULL, '105', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2026-01-23 21:04:12', '2026-01-23 21:04:12'),
('826', '4', '407', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-23 21:04:12', '2026-01-23 21:04:12'),
('827', '4', '408', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-01-23 21:52:27', '2026-01-23 21:52:27'),
('828', '4', '404', NULL, '62', NULL, NULL, '14', '5.00', '70.00', NULL, NULL, NULL, '2026-01-23 21:59:44', '2026-01-23 21:59:44'),
('829', '4', '404', NULL, '4', NULL, NULL, '7', '2.50', '17.50', NULL, NULL, NULL, '2026-01-23 21:59:44', '2026-01-23 21:59:44'),
('830', '4', '404', NULL, '2', NULL, NULL, '5', '1.50', '7.50', NULL, NULL, NULL, '2026-01-23 21:59:44', '2026-01-23 21:59:44'),
('831', '4', '404', NULL, '3', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-23 21:59:44', '2026-01-23 21:59:44'),
('832', '4', '404', NULL, '105', NULL, NULL, '5', '10.00', '50.00', NULL, NULL, NULL, '2026-01-23 21:59:44', '2026-01-23 21:59:44'),
('833', '4', '405', NULL, '62', NULL, NULL, '14', '5.00', '70.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('834', '4', '405', NULL, '105', NULL, NULL, '4', '10.00', '40.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('835', '4', '405', NULL, '2', NULL, NULL, '4', '1.50', '6.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('836', '4', '405', NULL, '7', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('837', '4', '405', NULL, '25', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('838', '4', '405', NULL, '27', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('839', '4', '405', NULL, '2', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('840', '4', '405', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-23 22:26:57', '2026-01-23 22:26:57'),
('841', '4', '410', NULL, '40', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-01-23 22:35:15', '2026-01-23 22:35:15'),
('842', '4', '410', NULL, '5', NULL, NULL, '2', '2.00', '4.00', NULL, NULL, NULL, '2026-01-23 22:35:15', '2026-01-23 22:35:15'),
('843', '4', '406', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('844', '4', '406', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('845', '4', '406', NULL, '105', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('846', '4', '406', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('847', '4', '406', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('848', '4', '406', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('849', '4', '406', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-23 23:32:37', '2026-01-23 23:32:37'),
('850', '4', '412', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-24 00:16:39', '2026-01-24 00:16:39'),
('851', '4', '412', NULL, '47', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-24 00:16:39', '2026-01-24 00:16:39'),
('852', '4', '411', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-24 01:01:20', '2026-01-24 01:01:20'),
('853', '4', '411', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-24 01:01:20', '2026-01-24 01:01:20'),
('854', '4', '409', NULL, '14', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-24 01:02:03', '2026-01-24 01:02:03'),
('855', '4', '409', NULL, '105', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2026-01-24 01:02:03', '2026-01-24 01:02:03'),
('856', '4', '413', NULL, '11', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-25 02:16:54', '2026-01-25 02:16:54'),
('857', '4', '413', NULL, '18', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-25 02:16:54', '2026-01-25 02:16:54'),
('858', '4', '413', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-25 02:16:54', '2026-01-25 02:16:54'),
('859', '4', '413', NULL, '47', NULL, '', '5', '5.00', '25.00', NULL, NULL, NULL, '2026-01-25 02:16:54', '2026-01-25 02:16:54'),
('860', '4', '414', NULL, '44', NULL, '', '80', '3.00', '240.00', NULL, NULL, NULL, '2026-01-25 02:17:36', '2026-01-25 02:17:36'),
('861', '4', '415', NULL, '21', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2026-01-27 20:00:23', '2026-01-27 20:00:23'),
('862', '4', '415', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-27 20:00:23', '2026-01-27 20:00:23'),
('863', '4', '415', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-27 20:00:23', '2026-01-27 20:00:23'),
('864', '4', '416', NULL, '32', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-27 20:01:19', '2026-01-27 20:01:19'),
('865', '4', '416', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-27 20:01:19', '2026-01-27 20:01:19'),
('866', '4', '417', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-27 22:43:15', '2026-01-27 22:43:15'),
('867', '4', '417', NULL, '48', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-01-27 22:43:15', '2026-01-27 22:43:15'),
('868', '4', '417', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-27 22:43:15', '2026-01-27 22:43:15'),
('869', '4', '418', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-27 22:48:34', '2026-01-27 22:48:34'),
('870', '4', '418', NULL, '32', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-01-27 22:48:34', '2026-01-27 22:48:34'),
('871', '4', '418', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-27 22:48:34', '2026-01-27 22:48:34'),
('872', '4', '419', NULL, '48', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-01-28 00:37:32', '2026-01-28 00:37:32'),
('873', '4', '419', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-28 00:37:32', '2026-01-28 00:37:32'),
('874', '4', '419', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-28 00:37:32', '2026-01-28 00:37:32'),
('875', '4', '420', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-28 21:42:37', '2026-01-28 21:42:37'),
('876', '4', '420', NULL, '87', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-01-28 21:42:37', '2026-01-28 21:42:37'),
('877', '4', '420', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-28 21:42:37', '2026-01-28 21:42:37'),
('878', '4', '420', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-28 21:42:37', '2026-01-28 21:42:37'),
('879', '4', '421', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-28 23:35:20', '2026-01-28 23:35:20'),
('880', '4', '421', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-28 23:35:20', '2026-01-28 23:35:20'),
('881', '4', '425', NULL, '23', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-30 20:01:42', '2026-01-30 20:01:42'),
('882', '4', '425', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-30 20:01:42', '2026-01-30 20:01:42'),
('883', '4', '425', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-30 20:01:42', '2026-01-30 20:01:42'),
('884', '4', '425', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-30 20:01:42', '2026-01-30 20:01:42'),
('885', '4', '422', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('886', '4', '422', NULL, '4', NULL, NULL, '6', '2.50', '15.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('887', '4', '422', NULL, '2', NULL, NULL, '6', '1.50', '9.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('888', '4', '422', NULL, '25', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('889', '4', '422', NULL, '45', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('890', '4', '422', NULL, '27', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('891', '4', '422', NULL, '7', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-30 21:28:07', '2026-01-30 21:28:07'),
('892', '4', '424', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-30 21:33:46', '2026-01-30 21:33:46'),
('893', '4', '426', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('894', '4', '426', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('895', '4', '426', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('896', '4', '426', NULL, '73', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('897', '4', '426', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('898', '4', '426', NULL, '44', NULL, NULL, '10', '3.00', '30.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('899', '4', '426', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('900', '4', '426', NULL, '3', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('901', '4', '426', NULL, '36', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('902', '4', '426', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('903', '4', '426', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-30 22:18:12', '2026-01-30 22:18:12'),
('904', '4', '428', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-31 01:07:44', '2026-01-31 01:07:44'),
('905', '4', '423', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('906', '4', '423', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('907', '4', '423', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('908', '4', '423', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('909', '4', '423', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('910', '4', '423', NULL, '31', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('911', '4', '423', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('912', '4', '423', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('913', '4', '423', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('914', '4', '423', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('915', '4', '423', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('916', '4', '423', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('917', '4', '423', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('918', '4', '423', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('919', '4', '423', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('920', '4', '423', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('921', '4', '423', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('922', '4', '423', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('923', '4', '423', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('924', '4', '423', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('925', '4', '423', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 01:47:27', '2026-01-31 01:47:27'),
('926', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('927', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('928', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('929', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('930', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('931', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('932', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('933', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('934', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('935', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('936', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('937', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('938', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('939', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('940', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('941', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('942', '4', '427', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('943', '4', '427', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('944', '4', '427', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 02:00:58', '2026-01-31 02:00:58'),
('945', '4', '429', NULL, '4', NULL, '', '5', '2.50', '12.50', NULL, NULL, NULL, '2026-01-31 02:03:11', '2026-01-31 02:03:11'),
('946', '4', '429', NULL, '9', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-01-31 02:03:11', '2026-01-31 02:03:11'),
('947', '4', '429', NULL, '31', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2026-01-31 02:03:11', '2026-01-31 02:03:11'),
('948', '4', '435', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-01-31 20:30:00', '2026-01-31 20:30:00'),
('949', '4', '436', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 20:37:45', '2026-01-31 20:37:45'),
('950', '4', '436', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-01-31 20:37:45', '2026-01-31 20:37:45'),
('951', '4', '439', NULL, '2', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-01-31 21:12:31', '2026-01-31 21:12:31'),
('952', '4', '440', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-01-31 21:13:36', '2026-01-31 21:13:36'),
('953', '4', '441', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 21:27:17', '2026-01-31 21:27:17'),
('954', '4', '442', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-01-31 21:27:57', '2026-01-31 21:27:57'),
('955', '4', '443', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-01-31 22:02:32', '2026-01-31 22:02:32'),
('956', '4', '444', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-01-31 22:08:08', '2026-01-31 22:08:08'),
('957', '4', '430', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('958', '4', '430', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('959', '4', '430', NULL, '26', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('960', '4', '430', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('961', '4', '430', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('962', '4', '430', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('963', '4', '430', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('964', '4', '430', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 22:49:51', '2026-01-31 22:49:51'),
('965', '4', '431', NULL, '60', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:50:23', '2026-01-31 22:50:23'),
('966', '4', '431', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 22:50:23', '2026-01-31 22:50:23'),
('967', '4', '431', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 22:50:23', '2026-01-31 22:50:23'),
('968', '4', '431', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 22:50:23', '2026-01-31 22:50:23'),
('969', '4', '431', NULL, '60', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-01-31 22:50:23', '2026-01-31 22:50:23'),
('970', '4', '432', NULL, '53', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-01-31 22:50:49', '2026-01-31 22:50:49'),
('971', '4', '432', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 22:50:49', '2026-01-31 22:50:49'),
('972', '4', '432', NULL, '53', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-01-31 22:50:49', '2026-01-31 22:50:49'),
('973', '4', '433', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('974', '4', '433', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('975', '4', '433', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('976', '4', '433', NULL, '8', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('977', '4', '433', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('978', '4', '433', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('979', '4', '433', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('980', '4', '433', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('981', '4', '433', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('982', '4', '433', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-01-31 23:22:33', '2026-01-31 23:22:33'),
('983', '4', '438', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('984', '4', '438', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('985', '4', '438', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('986', '4', '438', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('987', '4', '438', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('988', '4', '438', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-01-31 23:26:37', '2026-01-31 23:26:37'),
('989', '4', '437', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('990', '4', '437', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('991', '4', '437', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('992', '4', '437', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('993', '4', '437', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('994', '4', '437', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-01-31 23:27:08', '2026-01-31 23:27:08'),
('995', '4', '445', NULL, '9', NULL, '', '8', '3.00', '24.00', NULL, NULL, NULL, '2026-02-01 01:31:48', '2026-02-01 01:31:48'),
('996', '4', '434', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('997', '4', '434', NULL, '67', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('998', '4', '434', NULL, '3', NULL, NULL, '4', '1.50', '6.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('999', '4', '434', NULL, '67', NULL, NULL, '6', '5.00', '30.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1000', '4', '434', NULL, '67', NULL, NULL, '20', '5.00', '100.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1001', '4', '434', NULL, '30', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1002', '4', '434', NULL, '3', NULL, NULL, '10', '1.50', '15.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1003', '4', '434', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1004', '4', '434', NULL, '25', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1005', '4', '434', NULL, '45', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1006', '4', '434', NULL, '27', NULL, NULL, '2', '15.00', '30.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1007', '4', '434', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1008', '4', '434', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1009', '4', '434', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1010', '4', '434', NULL, '13', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1011', '4', '434', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1012', '4', '434', NULL, '3', NULL, NULL, '4', '1.50', '6.00', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1013', '4', '434', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 01:40:23', '2026-02-01 01:40:23'),
('1014', '4', '446', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-01 18:21:10', '2026-02-01 18:21:10'),
('1015', '4', '449', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-01 19:19:33', '2026-02-01 19:19:33');

INSERT INTO `order_items` VALUES
('1016', '4', '449', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 19:19:33', '2026-02-01 19:19:33'),
('1017', '4', '450', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-01 20:37:27', '2026-02-01 20:37:27'),
('1018', '4', '450', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-01 20:37:27', '2026-02-01 20:37:27'),
('1020', '4', '452', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-01 20:39:45', '2026-02-01 20:39:45'),
('1021', '4', '454', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-01 21:22:49', '2026-02-01 21:22:49'),
('1022', '4', '454', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 21:22:49', '2026-02-01 21:22:49'),
('1023', '4', '455', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-01 21:25:17', '2026-02-01 21:25:17'),
('1024', '4', '461', NULL, '84', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-01 22:16:30', '2026-02-01 22:16:30'),
('1025', '4', '461', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 22:16:30', '2026-02-01 22:16:30'),
('1026', '4', '462', NULL, '10', NULL, '', '3', '3.50', '10.50', NULL, NULL, NULL, '2026-02-01 22:35:06', '2026-02-01 22:35:06'),
('1027', '4', '463', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-01 22:40:39', '2026-02-01 22:40:39'),
('1028', '4', '460', NULL, '37', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-01 22:50:45', '2026-02-01 22:50:45'),
('1029', '4', '460', NULL, '37', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-01 22:50:45', '2026-02-01 22:50:45'),
('1030', '4', '460', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 22:50:45', '2026-02-01 22:50:45'),
('1031', '4', '459', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-01 23:13:39', '2026-02-01 23:13:39'),
('1032', '4', '459', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-01 23:13:39', '2026-02-01 23:13:39'),
('1033', '4', '459', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 23:13:39', '2026-02-01 23:13:39'),
('1034', '4', '458', NULL, '67', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-01 23:25:36', '2026-02-01 23:25:36'),
('1035', '4', '458', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 23:25:36', '2026-02-01 23:25:36'),
('1036', '4', '458', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 23:25:36', '2026-02-01 23:25:36'),
('1037', '4', '458', NULL, '67', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-01 23:25:36', '2026-02-01 23:25:36'),
('1038', '4', '458', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-01 23:25:36', '2026-02-01 23:25:36'),
('1039', '4', '466', NULL, '44', NULL, '', '7', '3.00', '21.00', NULL, NULL, NULL, '2026-02-02 00:06:02', '2026-02-02 00:06:02'),
('1040', '4', '465', NULL, '44', NULL, NULL, '9', '3.00', '27.00', NULL, NULL, NULL, '2026-02-02 00:25:35', '2026-02-02 00:25:35'),
('1041', '4', '468', NULL, '44', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-02 00:33:49', '2026-02-02 00:33:49'),
('1042', '4', '457', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-02 00:38:43', '2026-02-02 00:38:43'),
('1043', '4', '457', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 00:38:43', '2026-02-02 00:38:43'),
('1044', '4', '457', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 00:38:43', '2026-02-02 00:38:43'),
('1045', '4', '464', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1046', '4', '464', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1047', '4', '464', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1048', '4', '464', NULL, '37', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1049', '4', '464', NULL, '44', NULL, NULL, '7', '3.00', '21.00', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1050', '4', '464', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1051', '4', '464', NULL, '44', NULL, NULL, '7', '3.00', '21.00', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1052', '4', '464', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 01:50:17', '2026-02-02 01:50:17'),
('1053', '4', '469', NULL, '62', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-02 01:56:26', '2026-02-02 01:56:26'),
('1054', '4', '467', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-02 02:12:12', '2026-02-02 02:12:12'),
('1055', '4', '467', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 02:12:12', '2026-02-02 02:12:12'),
('1056', '4', '467', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-02 02:12:12', '2026-02-02 02:12:12'),
('1057', '4', '467', NULL, '23', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-02 02:12:12', '2026-02-02 02:12:12'),
('1058', '4', '467', NULL, '44', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-02 02:12:12', '2026-02-02 02:12:12'),
('1059', '4', '470', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-02 02:23:54', '2026-02-02 02:23:54'),
('1060', '4', '470', NULL, '23', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-02 02:23:54', '2026-02-02 02:23:54'),
('1061', '4', '470', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-02 02:23:54', '2026-02-02 02:23:54'),
('1062', '4', '471', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-02 02:25:32', '2026-02-02 02:25:32'),
('1063', '4', '472', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-02 23:25:28', '2026-02-02 23:25:28'),
('1064', '4', '473', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-03 00:31:20', '2026-02-03 00:31:20'),
('1065', '4', '474', NULL, '37', NULL, '', '8', '3.00', '24.00', NULL, NULL, NULL, '2026-02-03 18:41:57', '2026-02-03 18:41:57'),
('1066', '4', '474', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-03 18:41:57', '2026-02-03 18:41:57'),
('1067', '4', '475', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-03 18:45:42', '2026-02-03 18:45:42'),
('1068', '4', '475', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-03 18:45:42', '2026-02-03 18:45:42'),
('1069', '4', '475', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-03 18:45:42', '2026-02-03 18:45:42'),
('1070', '4', '476', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-03 22:55:40', '2026-02-03 22:55:40'),
('1071', '4', '476', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-03 22:55:40', '2026-02-03 22:55:40'),
('1072', '4', '476', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-03 22:55:41', '2026-02-03 22:55:41'),
('1073', '4', '476', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-03 22:55:41', '2026-02-03 22:55:41'),
('1074', '4', '477', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-04 21:05:58', '2026-02-04 21:05:58'),
('1075', '4', '477', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-04 21:05:59', '2026-02-04 21:05:59'),
('1076', '4', '477', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-04 21:05:59', '2026-02-04 21:05:59'),
('1077', '4', '477', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-04 21:05:59', '2026-02-04 21:05:59'),
('1078', '4', '477', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-04 21:05:59', '2026-02-04 21:05:59'),
('1079', '4', '477', NULL, '65', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-04 21:05:59', '2026-02-04 21:05:59'),
('1080', '4', '478', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-04 21:11:41', '2026-02-04 21:11:41'),
('1081', '4', '478', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-04 21:11:41', '2026-02-04 21:11:41'),
('1082', '4', '479', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-04 21:28:13', '2026-02-04 21:28:13'),
('1083', '4', '481', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-04 21:57:55', '2026-02-04 21:57:55'),
('1084', '4', '482', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-04 22:33:11', '2026-02-04 22:33:11'),
('1085', '4', '480', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-04 22:34:37', '2026-02-04 22:34:37'),
('1086', '4', '480', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-04 22:34:37', '2026-02-04 22:34:37'),
('1087', '4', '480', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-04 22:34:37', '2026-02-04 22:34:37'),
('1088', '4', '483', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-04 22:38:26', '2026-02-04 22:38:26'),
('1089', '4', '484', NULL, '47', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-04 23:24:42', '2026-02-04 23:24:42'),
('1090', '4', '484', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-04 23:24:42', '2026-02-04 23:24:42'),
('1091', '4', '484', NULL, '47', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-04 23:24:42', '2026-02-04 23:24:42'),
('1092', '4', '487', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-05 00:04:38', '2026-02-05 00:04:38'),
('1093', '4', '485', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-05 00:22:11', '2026-02-05 00:22:11'),
('1094', '4', '485', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-05 00:22:11', '2026-02-05 00:22:11'),
('1095', '4', '485', NULL, '47', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-05 00:22:11', '2026-02-05 00:22:11'),
('1096', '4', '485', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 00:22:11', '2026-02-05 00:22:11'),
('1097', '4', '485', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-05 00:22:11', '2026-02-05 00:22:11'),
('1098', '4', '486', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-05 00:28:46', '2026-02-05 00:28:46'),
('1099', '4', '486', NULL, '47', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-05 00:28:46', '2026-02-05 00:28:46'),
('1100', '4', '486', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 00:28:46', '2026-02-05 00:28:46'),
('1101', '4', '486', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-05 00:28:46', '2026-02-05 00:28:46'),
('1102', '4', '488', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-05 00:57:27', '2026-02-05 00:57:27'),
('1103', '4', '488', NULL, '47', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-05 00:57:27', '2026-02-05 00:57:27'),
('1104', '4', '491', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 01:23:46', '2026-02-05 01:23:46'),
('1105', '4', '491', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-05 01:23:46', '2026-02-05 01:23:46'),
('1106', '4', '492', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-05 02:33:48', '2026-02-05 02:33:48'),
('1107', '4', '493', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-05 02:39:12', '2026-02-05 02:39:12'),
('1108', '4', '490', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 02:40:37', '2026-02-05 02:40:37'),
('1109', '4', '490', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-05 02:40:37', '2026-02-05 02:40:37'),
('1110', '4', '490', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-05 02:40:37', '2026-02-05 02:40:37'),
('1111', '4', '490', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-05 02:40:37', '2026-02-05 02:40:37'),
('1112', '4', '490', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 02:40:37', '2026-02-05 02:40:37'),
('1113', '4', '489', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 02:48:54', '2026-02-05 02:48:54'),
('1114', '4', '489', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-05 02:48:54', '2026-02-05 02:48:54'),
('1115', '4', '489', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-05 02:48:54', '2026-02-05 02:48:54'),
('1116', '4', '489', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 02:48:54', '2026-02-05 02:48:54'),
('1117', '4', '489', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-05 02:48:54', '2026-02-05 02:48:54'),
('1118', '4', '496', NULL, '32', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-06 22:13:54', '2026-02-06 22:13:54'),
('1119', '4', '496', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-06 22:13:54', '2026-02-06 22:13:54'),
('1120', '4', '494', NULL, '11', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-06 22:28:55', '2026-02-06 22:28:55'),
('1121', '4', '494', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-06 22:28:55', '2026-02-06 22:28:55'),
('1122', '4', '494', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-06 22:28:55', '2026-02-06 22:28:55'),
('1123', '4', '494', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-06 22:28:55', '2026-02-06 22:28:55'),
('1124', '4', '494', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-02-06 22:28:55', '2026-02-06 22:28:55'),
('1125', '4', '497', NULL, '67', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-06 22:32:38', '2026-02-06 22:32:38'),
('1126', '4', '497', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-06 22:32:38', '2026-02-06 22:32:38'),
('1127', '4', '495', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-06 22:34:47', '2026-02-06 22:34:47'),
('1128', '4', '495', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-06 22:34:47', '2026-02-06 22:34:47'),
('1129', '4', '500', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-07 00:11:47', '2026-02-07 00:11:47'),
('1130', '4', '500', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-07 00:11:47', '2026-02-07 00:11:47'),
('1131', '4', '500', NULL, '35', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-07 00:11:47', '2026-02-07 00:11:47'),
('1132', '4', '498', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-07 00:36:32', '2026-02-07 00:36:32'),
('1133', '4', '498', NULL, '10', NULL, NULL, '3', '3.50', '10.50', NULL, NULL, NULL, '2026-02-07 00:36:32', '2026-02-07 00:36:32'),
('1134', '4', '498', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-07 00:36:32', '2026-02-07 00:36:32'),
('1135', '4', '498', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-07 00:36:32', '2026-02-07 00:36:32'),
('1136', '4', '498', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-07 00:36:32', '2026-02-07 00:36:32'),
('1137', '4', '502', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-07 01:27:04', '2026-02-07 01:27:04'),
('1138', '4', '504', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 02:06:43', '2026-02-07 02:06:43'),
('1139', '4', '503', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-07 03:18:24', '2026-02-07 03:18:24'),
('1140', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1141', '4', '501', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1142', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1143', '4', '501', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1144', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1145', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1146', '4', '501', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1147', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1148', '4', '501', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 03:24:05', '2026-02-07 03:24:05'),
('1149', '4', '499', NULL, '32', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-07 03:44:21', '2026-02-07 03:44:21'),
('1150', '4', '506', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-07 19:52:26', '2026-02-07 19:52:26'),
('1151', '4', '506', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-07 19:52:26', '2026-02-07 19:52:26'),
('1152', '4', '507', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-07 20:12:07', '2026-02-07 20:12:07'),
('1153', '4', '507', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-02-07 20:12:07', '2026-02-07 20:12:07'),
('1154', '4', '508', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-07 21:03:20', '2026-02-07 21:03:20'),
('1155', '4', '508', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-07 21:03:20', '2026-02-07 21:03:20'),
('1156', '4', '510', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-02-09 19:40:33', '2026-02-09 19:40:33'),
('1157', '4', '510', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-09 19:40:33', '2026-02-09 19:40:33'),
('1158', '4', '511', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-02-09 19:42:16', '2026-02-09 19:42:16'),
('1159', '4', '512', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-02-09 19:43:13', '2026-02-09 19:43:13'),
('1160', '4', '514', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-09 21:11:39', '2026-02-09 21:11:39'),
('1161', '4', '514', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-09 21:11:39', '2026-02-09 21:11:39'),
('1162', '4', '516', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-09 22:06:57', '2026-02-09 22:06:57'),
('1163', '4', '517', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-09 22:54:51', '2026-02-09 22:54:51'),
('1164', '4', '517', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-09 22:54:51', '2026-02-09 22:54:51'),
('1165', '4', '517', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-09 22:54:51', '2026-02-09 22:54:51'),
('1166', '4', '505', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1167', '4', '505', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1168', '4', '505', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1169', '4', '505', NULL, '44', NULL, NULL, '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1170', '4', '505', NULL, '9', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1171', '4', '505', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1172', '4', '505', NULL, '9', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1173', '4', '505', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1174', '4', '505', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1175', '4', '505', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-10 00:11:39', '2026-02-10 00:11:39'),
('1176', '4', '509', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 00:12:10', '2026-02-10 00:12:10'),
('1177', '4', '509', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-10 00:12:10', '2026-02-10 00:12:10'),
('1178', '4', '509', NULL, '43', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-10 00:12:10', '2026-02-10 00:12:10'),
('1179', '4', '513', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1180', '4', '513', NULL, '43', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1181', '4', '513', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1182', '4', '513', NULL, '43', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1183', '4', '513', NULL, '104', NULL, NULL, '5', '1.00', '5.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1184', '4', '513', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1185', '4', '513', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1186', '4', '513', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1187', '4', '513', NULL, '43', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1188', '4', '513', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1189', '4', '513', NULL, '43', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1190', '4', '513', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-10 00:12:36', '2026-02-10 00:12:36'),
('1191', '4', '515', NULL, '17', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-10 00:16:48', '2026-02-10 00:16:48'),
('1192', '4', '515', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-10 00:16:48', '2026-02-10 00:16:48'),
('1193', '4', '515', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-10 00:16:48', '2026-02-10 00:16:48'),
('1194', '4', '515', NULL, '105', NULL, NULL, '1', '10.00', '10.00', NULL, NULL, NULL, '2026-02-10 00:16:48', '2026-02-10 00:16:48'),
('1195', '4', '518', NULL, '19', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-10 01:59:14', '2026-02-10 01:59:14'),
('1196', '4', '518', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 01:59:14', '2026-02-10 01:59:14'),
('1197', '4', '520', NULL, '15', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 02:12:38', '2026-02-10 02:12:38'),
('1198', '4', '520', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 02:12:38', '2026-02-10 02:12:38'),
('1199', '4', '520', NULL, '45', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-10 02:12:38', '2026-02-10 02:12:38'),
('1200', '4', '522', NULL, '17', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 02:19:20', '2026-02-10 02:19:20'),
('1201', '4', '523', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-10 03:51:47', '2026-02-10 03:51:47'),
('1202', '4', '523', NULL, '32', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-10 03:51:47', '2026-02-10 03:51:47'),
('1203', '4', '523', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-10 03:51:47', '2026-02-10 03:51:47'),
('1204', '4', '523', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-10 03:51:47', '2026-02-10 03:51:47'),
('1205', '4', '521', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-10 04:15:21', '2026-02-10 04:15:21'),
('1206', '4', '525', NULL, '10', NULL, NULL, '3', '3.50', '10.50', NULL, NULL, NULL, '2026-02-10 21:53:57', '2026-02-10 21:53:57'),
('1207', '4', '524', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-11 00:25:48', '2026-02-11 00:25:48'),
('1208', '4', '524', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-11 00:25:48', '2026-02-11 00:25:48'),
('1209', '4', '527', NULL, '32', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-11 18:46:48', '2026-02-11 18:46:48'),
('1210', '4', '527', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-11 18:46:48', '2026-02-11 18:46:48'),
('1211', '4', '527', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-11 18:46:48', '2026-02-11 18:46:48'),
('1212', '4', '528', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-11 20:20:17', '2026-02-11 20:20:17'),
('1213', '4', '528', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-11 20:20:17', '2026-02-11 20:20:17'),
('1214', '4', '528', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-11 20:20:17', '2026-02-11 20:20:17'),
('1215', '4', '529', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-11 21:14:04', '2026-02-11 21:14:04'),
('1216', '4', '530', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1217', '4', '530', NULL, '80', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1218', '4', '530', NULL, '83', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1219', '4', '530', NULL, '31', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1220', '4', '530', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1221', '4', '530', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-11 21:28:01', '2026-02-11 21:28:01'),
('1222', '4', '531', NULL, '17', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-11 21:58:17', '2026-02-11 21:58:17'),
('1223', '4', '531', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-11 21:58:17', '2026-02-11 21:58:17'),
('1224', '4', '531', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-02-11 21:58:17', '2026-02-11 21:58:17'),
('1225', '4', '531', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-11 21:58:17', '2026-02-11 21:58:17'),
('1226', '4', '531', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-11 21:58:17', '2026-02-11 21:58:17'),
('1227', '4', '532', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-11 22:58:28', '2026-02-11 22:58:28'),
('1228', '4', '533', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-12 01:54:19', '2026-02-12 01:54:19'),
('1229', '4', '534', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-12 21:23:34', '2026-02-12 21:23:34'),
('1230', '4', '535', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-12 21:58:51', '2026-02-12 21:58:51'),
('1231', '4', '538', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-12 22:40:35', '2026-02-12 22:40:35'),
('1232', '4', '538', NULL, '79', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-12 22:40:35', '2026-02-12 22:40:35'),
('1233', '4', '538', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-12 22:40:35', '2026-02-12 22:40:35'),
('1234', '4', '538', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-12 22:40:35', '2026-02-12 22:40:35'),
('1235', '4', '538', NULL, '23', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-12 22:40:35', '2026-02-12 22:40:35'),
('1236', '4', '537', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-12 22:52:32', '2026-02-12 22:52:32'),
('1237', '4', '539', NULL, '79', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-12 22:53:36', '2026-02-12 22:53:36'),
('1238', '4', '536', NULL, '31', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-02-12 22:54:55', '2026-02-12 22:54:55'),
('1239', '4', '536', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-12 22:54:55', '2026-02-12 22:54:55'),
('1240', '4', '540', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-12 23:22:59', '2026-02-12 23:22:59'),
('1241', '4', '541', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-12 23:48:24', '2026-02-12 23:48:24'),
('1242', '4', '541', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-12 23:48:24', '2026-02-12 23:48:24'),
('1243', '4', '542', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-12 23:54:55', '2026-02-12 23:54:55'),
('1244', '4', '542', NULL, '84', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-12 23:54:55', '2026-02-12 23:54:55'),
('1245', '4', '546', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 00:32:15', '2026-02-13 00:32:15'),
('1246', '4', '546', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 00:32:15', '2026-02-13 00:32:15'),
('1247', '4', '545', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 00:32:59', '2026-02-13 00:32:59'),
('1248', '4', '545', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-13 00:32:59', '2026-02-13 00:32:59'),
('1249', '4', '545', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 00:32:59', '2026-02-13 00:32:59'),
('1250', '4', '545', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 00:32:59', '2026-02-13 00:32:59'),
('1251', '4', '547', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-13 00:39:00', '2026-02-13 00:39:00'),
('1252', '4', '543', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 01:56:51', '2026-02-13 01:56:51'),
('1253', '4', '543', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-13 01:56:51', '2026-02-13 01:56:51'),
('1254', '4', '543', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-13 01:56:51', '2026-02-13 01:56:51'),
('1255', '4', '543', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 01:56:51', '2026-02-13 01:56:51'),
('1256', '4', '548', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 02:24:57', '2026-02-13 02:24:57'),
('1257', '4', '548', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 02:24:57', '2026-02-13 02:24:57'),
('1258', '4', '548', NULL, '31', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-02-13 02:24:58', '2026-02-13 02:24:58'),
('1259', '4', '548', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 02:24:58', '2026-02-13 02:24:58'),
('1260', '4', '549', NULL, '9', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-13 02:39:14', '2026-02-13 02:39:14'),
('1261', '4', '549', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-13 02:39:14', '2026-02-13 02:39:14'),
('1262', '4', '550', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 02:57:34', '2026-02-13 02:57:34'),
('1263', '4', '550', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 02:57:34', '2026-02-13 02:57:34'),
('1264', '4', '551', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-13 03:15:26', '2026-02-13 03:15:26'),
('1265', '4', '551', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 03:15:26', '2026-02-13 03:15:26'),
('1266', '4', '551', NULL, '23', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 03:15:26', '2026-02-13 03:15:26'),
('1267', '4', '551', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-13 03:15:26', '2026-02-13 03:15:26'),
('1268', '4', '544', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1269', '4', '544', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1270', '4', '544', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1271', '4', '544', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1272', '4', '544', NULL, '61', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1273', '4', '544', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1274', '4', '544', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1275', '4', '544', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1276', '4', '544', NULL, '8', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 03:18:04', '2026-02-13 03:18:04'),
('1277', '4', '552', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-13 03:44:10', '2026-02-13 03:44:10'),
('1279', '4', '553', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 18:56:01', '2026-02-13 18:56:01'),
('1280', '4', '554', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-13 19:10:03', '2026-02-13 19:10:03'),
('1281', '4', '555', NULL, '44', NULL, '', '12', '3.00', '36.00', NULL, NULL, NULL, '2026-02-13 19:32:56', '2026-02-13 19:32:56'),
('1282', '4', '556', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 19:39:45', '2026-02-13 19:39:45'),
('1283', '4', '556', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 19:39:45', '2026-02-13 19:39:45'),
('1284', '4', '557', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 19:42:20', '2026-02-13 19:42:20'),
('1285', '4', '557', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 19:42:20', '2026-02-13 19:42:20'),
('1286', '4', '558', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 19:47:31', '2026-02-13 19:47:31'),
('1287', '4', '558', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 19:47:31', '2026-02-13 19:47:31'),
('1288', '4', '558', NULL, '7', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 19:47:31', '2026-02-13 19:47:31'),
('1289', '4', '559', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 20:05:37', '2026-02-13 20:05:37'),
('1290', '4', '559', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 20:05:37', '2026-02-13 20:05:37'),
('1291', '4', '559', NULL, '60', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-13 20:05:37', '2026-02-13 20:05:37'),
('1292', '4', '560', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 20:14:07', '2026-02-13 20:14:07'),
('1293', '4', '562', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 20:39:05', '2026-02-13 20:39:05'),
('1294', '4', '563', NULL, '105', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2026-02-13 20:50:33', '2026-02-13 20:50:33'),
('1295', '4', '564', NULL, '105', NULL, '', '2', '10.00', '20.00', NULL, NULL, NULL, '2026-02-13 20:51:16', '2026-02-13 20:51:16'),
('1296', '4', '565', NULL, '105', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2026-02-13 20:51:40', '2026-02-13 20:51:40'),
('1297', '4', '566', NULL, '105', NULL, '', '1', '10.00', '10.00', NULL, NULL, NULL, '2026-02-13 20:52:45', '2026-02-13 20:52:45'),
('1298', '4', '566', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-13 20:52:45', '2026-02-13 20:52:45'),
('1299', '4', '568', NULL, '60', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-13 20:56:48', '2026-02-13 20:56:48'),
('1300', '4', '569', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 21:00:39', '2026-02-13 21:00:39'),
('1301', '4', '571', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 21:17:36', '2026-02-13 21:17:36'),
('1302', '4', '570', NULL, '23', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 21:19:21', '2026-02-13 21:19:21'),
('1303', '4', '570', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 21:19:21', '2026-02-13 21:19:21'),
('1304', '4', '570', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 21:19:21', '2026-02-13 21:19:21'),
('1305', '4', '573', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-13 22:02:12', '2026-02-13 22:02:12'),
('1306', '4', '573', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-13 22:02:12', '2026-02-13 22:02:12'),
('1307', '4', '574', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 22:07:59', '2026-02-13 22:07:59'),
('1308', '4', '575', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 22:11:45', '2026-02-13 22:11:45'),
('1309', '4', '576', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 22:22:23', '2026-02-13 22:22:23'),
('1310', '4', '576', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 22:22:23', '2026-02-13 22:22:23'),
('1311', '4', '576', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-13 22:22:23', '2026-02-13 22:22:23'),
('1312', '4', '577', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 22:28:20', '2026-02-13 22:28:20'),
('1313', '4', '578', NULL, '62', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-13 22:35:03', '2026-02-13 22:35:03'),
('1314', '4', '579', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 22:36:55', '2026-02-13 22:36:55'),
('1315', '4', '561', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1316', '4', '561', NULL, '2', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1317', '4', '561', NULL, '6', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1318', '4', '561', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1319', '4', '561', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1320', '4', '561', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1321', '4', '561', NULL, '6', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1322', '4', '561', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-13 22:46:06', '2026-02-13 22:46:06'),
('1323', '4', '580', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-13 22:48:13', '2026-02-13 22:48:13'),
('1324', '4', '580', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 22:48:13', '2026-02-13 22:48:13'),
('1325', '4', '581', NULL, '44', NULL, '', '7', '3.00', '21.00', NULL, NULL, NULL, '2026-02-13 22:56:33', '2026-02-13 22:56:33'),
('1326', '4', '567', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-13 22:59:28', '2026-02-13 22:59:28'),
('1327', '4', '567', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 22:59:29', '2026-02-13 22:59:29'),
('1328', '4', '582', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 23:14:28', '2026-02-13 23:14:28'),
('1329', '4', '583', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-13 23:23:25', '2026-02-13 23:23:25'),
('1330', '4', '584', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-13 23:33:19', '2026-02-13 23:33:19'),
('1331', '4', '584', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-13 23:33:19', '2026-02-13 23:33:19'),
('1332', '4', '585', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-13 23:53:26', '2026-02-13 23:53:26'),
('1333', '4', '586', NULL, '13', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-13 23:54:14', '2026-02-13 23:54:14'),
('1334', '4', '587', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-13 23:56:32', '2026-02-13 23:56:32'),
('1335', '4', '588', NULL, '62', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2026-02-14 00:06:51', '2026-02-14 00:06:51'),
('1336', '4', '572', NULL, '84', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1337', '4', '572', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1338', '4', '572', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1339', '4', '572', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1340', '4', '572', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1341', '4', '572', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1342', '4', '572', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-14 00:10:52', '2026-02-14 00:10:52'),
('1343', '4', '589', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-14 00:13:04', '2026-02-14 00:13:04'),
('1344', '4', '590', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 00:52:37', '2026-02-14 00:52:37'),
('1345', '4', '591', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 01:01:12', '2026-02-14 01:01:12'),
('1346', '4', '591', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-14 01:01:12', '2026-02-14 01:01:12'),
('1347', '4', '592', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 02:13:11', '2026-02-14 02:13:11'),
('1348', '4', '592', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-14 02:13:11', '2026-02-14 02:13:11'),
('1349', '4', '592', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-14 02:13:11', '2026-02-14 02:13:11'),
('1350', '4', '593', NULL, '31', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-02-14 02:23:02', '2026-02-14 02:23:02'),
('1351', '4', '594', NULL, '2', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-02-14 03:11:11', '2026-02-14 03:11:11'),
('1352', '4', '595', NULL, '72', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-02-14 18:52:52', '2026-02-14 18:52:52'),
('1353', '4', '596', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-14 19:45:15', '2026-02-14 19:45:15'),
('1354', '4', '597', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 19:55:54', '2026-02-14 19:55:54'),
('1355', '4', '597', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-14 19:55:54', '2026-02-14 19:55:54'),
('1356', '4', '598', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 19:56:45', '2026-02-14 19:56:45'),
('1357', '4', '599', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 19:58:32', '2026-02-14 19:58:32'),
('1358', '4', '599', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-14 19:58:32', '2026-02-14 19:58:32'),
('1359', '4', '600', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 20:59:15', '2026-02-14 20:59:15'),
('1360', '4', '600', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-14 20:59:15', '2026-02-14 20:59:15'),
('1361', '4', '601', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 21:05:01', '2026-02-14 21:05:01'),
('1362', '4', '602', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 21:25:07', '2026-02-14 21:25:07'),
('1363', '4', '603', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 22:01:56', '2026-02-14 22:01:56'),
('1364', '4', '604', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 22:03:02', '2026-02-14 22:03:02'),
('1365', '4', '605', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 22:20:44', '2026-02-14 22:20:44'),
('1366', '4', '606', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 22:40:32', '2026-02-14 22:40:32'),
('1367', '4', '606', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-14 22:40:32', '2026-02-14 22:40:32'),
('1368', '4', '607', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 22:59:24', '2026-02-14 22:59:24'),
('1369', '4', '608', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-14 23:01:04', '2026-02-14 23:01:04'),
('1370', '4', '609', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-14 23:04:16', '2026-02-14 23:04:16'),
('1371', '4', '609', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-14 23:04:16', '2026-02-14 23:04:16'),
('1372', '4', '612', NULL, '104', NULL, '', '3', '1.00', '3.00', NULL, NULL, NULL, '2026-02-14 23:18:28', '2026-02-14 23:18:28'),
('1373', '4', '613', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-14 23:26:52', '2026-02-14 23:26:52'),
('1374', '4', '613', NULL, '73', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-14 23:26:52', '2026-02-14 23:26:52'),
('1375', '4', '614', NULL, '9', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-14 23:31:38', '2026-02-14 23:31:38'),
('1376', '4', '616', NULL, '104', NULL, '', '4', '1.00', '4.00', NULL, NULL, NULL, '2026-02-14 23:33:51', '2026-02-14 23:33:51'),
('1377', '4', '615', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-14 23:36:12', '2026-02-14 23:36:12'),
('1378', '4', '618', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 00:01:16', '2026-02-15 00:01:16'),
('1379', '4', '619', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-15 00:04:19', '2026-02-15 00:04:19'),
('1380', '4', '620', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-15 00:10:02', '2026-02-15 00:10:02'),
('1381', '4', '621', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 00:14:37', '2026-02-15 00:14:37'),
('1382', '4', '622', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-15 00:20:10', '2026-02-15 00:20:10'),
('1383', '4', '623', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-15 00:21:39', '2026-02-15 00:21:39'),
('1384', '4', '623', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-15 00:21:39', '2026-02-15 00:21:39'),
('1385', '4', '624', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 01:00:34', '2026-02-15 01:00:34'),
('1386', '4', '625', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-15 01:01:57', '2026-02-15 01:01:57'),
('1387', '4', '626', NULL, '80', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-15 01:04:14', '2026-02-15 01:04:14'),
('1388', '4', '627', NULL, '73', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-15 01:13:10', '2026-02-15 01:13:10'),
('1389', '4', '628', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-15 01:13:25', '2026-02-15 01:13:25'),
('1390', '4', '629', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-15 01:28:24', '2026-02-15 01:28:24'),
('1391', '4', '630', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 01:50:58', '2026-02-15 01:50:58'),
('1392', '4', '630', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-15 01:50:58', '2026-02-15 01:50:58'),
('1393', '4', '611', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1394', '4', '611', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1395', '4', '611', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1396', '4', '611', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1397', '4', '611', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1398', '4', '611', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1399', '4', '611', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-15 02:06:39', '2026-02-15 02:06:39'),
('1400', '4', '617', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1401', '4', '617', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1402', '4', '617', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1403', '4', '617', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1404', '4', '617', NULL, '73', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1405', '4', '617', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1406', '4', '617', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1407', '4', '617', NULL, '73', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1408', '4', '617', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1409', '4', '617', NULL, '87', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1410', '4', '617', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1411', '4', '617', NULL, '44', NULL, NULL, '20', '3.00', '60.00', NULL, NULL, NULL, '2026-02-15 02:15:10', '2026-02-15 02:15:10'),
('1412', '4', '631', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 03:05:56', '2026-02-15 03:05:56'),
('1413', '4', '632', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 03:06:26', '2026-02-15 03:06:26'),
('1414', '4', '633', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-15 04:05:07', '2026-02-15 04:05:07'),
('1415', '4', '635', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-15 21:12:24', '2026-02-15 21:12:24'),
('1416', '4', '636', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 21:31:24', '2026-02-15 21:31:24'),
('1417', '4', '637', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-15 21:41:02', '2026-02-15 21:41:02'),
('1418', '4', '638', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-15 21:52:57', '2026-02-15 21:52:57'),
('1419', '4', '638', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-15 21:52:57', '2026-02-15 21:52:57'),
('1420', '4', '639', NULL, '44', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-15 22:03:41', '2026-02-15 22:03:41'),
('1421', '4', '640', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-15 22:13:22', '2026-02-15 22:13:22'),
('1422', '4', '641', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 22:24:54', '2026-02-15 22:24:54'),
('1423', '4', '642', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-15 22:26:11', '2026-02-15 22:26:11'),
('1424', '4', '643', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-15 22:29:41', '2026-02-15 22:29:41'),
('1425', '4', '644', NULL, '44', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-15 22:43:25', '2026-02-15 22:43:25'),
('1426', '4', '645', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-15 22:57:20', '2026-02-15 22:57:20'),
('1427', '4', '646', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 23:00:46', '2026-02-15 23:00:46'),
('1428', '4', '647', NULL, '44', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-15 23:21:33', '2026-02-15 23:21:33'),
('1429', '4', '648', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-15 23:37:15', '2026-02-15 23:37:15'),
('1430', '4', '649', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-16 00:06:14', '2026-02-16 00:06:14'),
('1431', '4', '650', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-16 00:29:16', '2026-02-16 00:29:16'),
('1432', '4', '651', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-16 00:50:41', '2026-02-16 00:50:41'),
('1433', '4', '652', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-16 19:35:41', '2026-02-16 19:35:41'),
('1434', '4', '653', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-16 20:29:47', '2026-02-16 20:29:47'),
('1435', '4', '654', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-16 20:53:00', '2026-02-16 20:53:00'),
('1436', '4', '654', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-16 20:53:00', '2026-02-16 20:53:00'),
('1437', '4', '655', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-16 21:32:24', '2026-02-16 21:32:24'),
('1438', '4', '656', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-16 21:51:24', '2026-02-16 21:51:24'),
('1439', '4', '657', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-16 21:57:48', '2026-02-16 21:57:48'),
('1440', '4', '657', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-16 21:57:48', '2026-02-16 21:57:48'),
('1441', '4', '658', NULL, '42', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-16 22:01:57', '2026-02-16 22:01:57'),
('1442', '4', '659', NULL, '41', NULL, '', '1', '7.00', '7.00', NULL, NULL, NULL, '2026-02-16 22:14:20', '2026-02-16 22:14:20'),
('1443', '4', '659', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-16 22:14:20', '2026-02-16 22:14:20'),
('1444', '4', '660', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-16 22:23:00', '2026-02-16 22:23:00'),
('1445', '4', '662', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-16 22:37:00', '2026-02-16 22:37:00'),
('1446', '4', '662', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-16 22:37:00', '2026-02-16 22:37:00'),
('1447', '4', '661', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-16 23:02:16', '2026-02-16 23:02:16'),
('1448', '4', '661', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-16 23:02:16', '2026-02-16 23:02:16'),
('1449', '4', '663', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-16 23:11:48', '2026-02-16 23:11:48'),
('1450', '4', '665', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-17 00:12:59', '2026-02-17 00:12:59'),
('1451', '4', '666', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 00:50:48', '2026-02-17 00:50:48'),
('1452', '4', '667', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 01:01:09', '2026-02-17 01:01:09'),
('1453', '4', '668', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 01:05:30', '2026-02-17 01:05:30'),
('1454', '4', '664', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 01:15:02', '2026-02-17 01:15:02'),
('1455', '4', '664', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 01:15:02', '2026-02-17 01:15:02'),
('1456', '4', '669', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-17 01:59:01', '2026-02-17 01:59:01'),
('1457', '4', '669', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-17 01:59:01', '2026-02-17 01:59:01'),
('1458', '4', '670', NULL, '15', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 02:19:28', '2026-02-17 02:19:28'),
('1459', '4', '671', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-17 02:24:12', '2026-02-17 02:24:12'),
('1460', '4', '672', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-17 02:24:12', '2026-02-17 02:24:12'),
('1461', '4', '673', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 02:50:20', '2026-02-17 02:50:20'),
('1462', '4', '674', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-17 02:53:50', '2026-02-17 02:53:50'),
('1463', '4', '676', NULL, '15', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 20:10:03', '2026-02-17 20:10:03'),
('1464', '4', '677', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-17 20:15:40', '2026-02-17 20:15:40'),
('1465', '4', '679', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-17 20:47:32', '2026-02-17 20:47:32'),
('1466', '4', '680', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-17 22:24:10', '2026-02-17 22:24:10'),
('1467', '4', '681', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-17 23:12:33', '2026-02-17 23:12:33'),
('1468', '4', '681', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-17 23:12:33', '2026-02-17 23:12:33'),
('1469', '4', '682', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 23:52:54', '2026-02-17 23:52:54'),
('1470', '4', '683', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 23:54:06', '2026-02-17 23:54:06'),
('1471', '4', '675', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 23:55:40', '2026-02-17 23:55:40'),
('1472', '4', '675', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-17 23:55:40', '2026-02-17 23:55:40'),
('1473', '4', '684', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-17 23:56:21', '2026-02-17 23:56:21'),
('1474', '4', '686', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 00:05:42', '2026-02-18 00:05:42'),
('1475', '4', '687', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-18 00:14:10', '2026-02-18 00:14:10'),
('1476', '4', '688', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-18 00:16:33', '2026-02-18 00:16:33'),
('1477', '4', '685', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-18 00:34:56', '2026-02-18 00:34:56'),
('1478', '4', '678', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1479', '4', '678', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1480', '4', '678', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1481', '4', '678', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1482', '4', '678', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1483', '4', '678', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1484', '4', '678', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1485', '4', '678', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1486', '4', '678', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 01:03:44', '2026-02-18 01:03:44'),
('1487', '4', '690', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 01:07:16', '2026-02-18 01:07:16'),
('1488', '4', '689', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 01:37:44', '2026-02-18 01:37:44'),
('1489', '4', '689', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-18 01:37:44', '2026-02-18 01:37:44'),
('1490', '4', '689', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-18 01:37:44', '2026-02-18 01:37:44'),
('1491', '4', '692', NULL, '104', NULL, '', '3', '1.00', '3.00', NULL, NULL, NULL, '2026-02-18 01:58:27', '2026-02-18 01:58:27'),
('1492', '4', '693', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-18 02:15:27', '2026-02-18 02:15:27'),
('1493', '4', '691', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 02:20:35', '2026-02-18 02:20:35'),
('1494', '4', '691', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 02:20:35', '2026-02-18 02:20:35'),
('1495', '4', '694', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-18 19:57:47', '2026-02-18 19:57:47'),
('1496', '4', '695', NULL, '9', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-18 22:05:23', '2026-02-18 22:05:23'),
('1497', '4', '696', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-18 22:48:55', '2026-02-18 22:48:55'),
('1498', '4', '696', NULL, '17', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-18 22:48:55', '2026-02-18 22:48:55'),
('1499', '4', '698', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-19 01:18:03', '2026-02-19 01:18:03'),
('1500', '4', '697', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-19 20:09:11', '2026-02-19 20:09:11'),
('1501', '4', '697', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-19 20:09:12', '2026-02-19 20:09:12'),
('1502', '4', '699', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-19 21:51:13', '2026-02-19 21:51:13'),
('1503', '4', '699', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-19 21:51:13', '2026-02-19 21:51:13'),
('1504', '4', '700', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-19 21:56:45', '2026-02-19 21:56:45'),
('1505', '4', '701', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-20 00:44:12', '2026-02-20 00:44:12'),
('1506', '4', '701', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-20 00:44:12', '2026-02-20 00:44:12'),
('1507', '4', '701', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-20 00:44:12', '2026-02-20 00:44:12'),
('1508', '4', '701', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-20 00:44:12', '2026-02-20 00:44:12'),
('1509', '4', '702', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 18:56:08', '2026-02-20 18:56:08'),
('1510', '4', '704', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 19:03:57', '2026-02-20 19:03:57'),
('1511', '4', '705', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 19:12:41', '2026-02-20 19:12:41'),
('1512', '4', '706', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-20 19:17:33', '2026-02-20 19:17:33'),
('1513', '4', '707', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 19:30:52', '2026-02-20 19:30:52'),
('1514', '4', '708', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-20 19:42:40', '2026-02-20 19:42:40'),
('1515', '4', '709', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-20 20:59:54', '2026-02-20 20:59:54'),
('1516', '4', '710', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 21:02:13', '2026-02-20 21:02:13'),
('1517', '4', '711', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-20 21:15:48', '2026-02-20 21:15:48'),
('1518', '4', '712', NULL, '25', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 21:22:54', '2026-02-20 21:22:54'),
('1519', '4', '713', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 21:36:03', '2026-02-20 21:36:03'),
('1520', '4', '714', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 21:47:05', '2026-02-20 21:47:05'),
('1521', '4', '714', NULL, '25', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 21:47:05', '2026-02-20 21:47:05'),
('1522', '4', '715', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 22:21:55', '2026-02-20 22:21:55'),
('1523', '4', '715', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-20 22:21:55', '2026-02-20 22:21:55'),
('1524', '4', '703', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1525', '4', '703', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1526', '4', '703', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1527', '4', '703', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1528', '4', '703', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1529', '4', '703', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1530', '4', '703', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1531', '4', '703', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 22:30:43', '2026-02-20 22:30:43'),
('1532', '4', '718', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 22:35:38', '2026-02-20 22:35:38'),
('1533', '4', '717', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 22:39:06', '2026-02-20 22:39:06'),
('1534', '4', '717', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-20 22:39:06', '2026-02-20 22:39:06'),
('1535', '4', '717', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-20 22:39:06', '2026-02-20 22:39:06'),
('1536', '4', '719', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-20 22:51:10', '2026-02-20 22:51:10'),
('1537', '4', '722', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-20 23:23:53', '2026-02-20 23:23:53'),
('1538', '4', '716', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 23:44:32', '2026-02-20 23:44:32'),
('1539', '4', '716', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-20 23:44:32', '2026-02-20 23:44:32'),
('1540', '4', '716', NULL, '44', NULL, NULL, '7', '3.00', '21.00', NULL, NULL, NULL, '2026-02-20 23:44:32', '2026-02-20 23:44:32'),
('1541', '4', '716', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-20 23:44:32', '2026-02-20 23:44:32'),
('1542', '4', '720', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-20 23:45:43', '2026-02-20 23:45:43'),
('1543', '4', '723', NULL, '44', NULL, '', '14', '3.00', '42.00', NULL, NULL, NULL, '2026-02-20 23:47:01', '2026-02-20 23:47:01'),
('1544', '4', '725', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-20 23:55:39', '2026-02-20 23:55:39'),
('1545', '4', '726', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-20 23:59:58', '2026-02-20 23:59:58'),
('1546', '4', '727', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-21 00:01:01', '2026-02-21 00:01:01'),
('1547', '4', '728', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-21 00:09:44', '2026-02-21 00:09:44'),
('1548', '4', '729', NULL, '61', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-21 00:14:26', '2026-02-21 00:14:26'),
('1549', '4', '729', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-21 00:14:26', '2026-02-21 00:14:26'),
('1550', '4', '721', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-21 00:16:43', '2026-02-21 00:16:43'),
('1551', '4', '730', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-21 01:14:56', '2026-02-21 01:14:56'),
('1552', '4', '731', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-21 01:26:35', '2026-02-21 01:26:35'),
('1553', '4', '724', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-21 01:33:59', '2026-02-21 01:33:59'),
('1554', '4', '724', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-21 01:33:59', '2026-02-21 01:33:59'),
('1555', '4', '724', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-21 01:33:59', '2026-02-21 01:33:59'),
('1556', '4', '724', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-21 01:33:59', '2026-02-21 01:33:59'),
('1557', '4', '732', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-21 02:14:15', '2026-02-21 02:14:15'),
('1558', '4', '733', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-21 03:29:56', '2026-02-21 03:29:56'),
('1559', '4', '734', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-21 03:35:38', '2026-02-21 03:35:38'),
('1560', '4', '734', NULL, '48', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-21 03:35:38', '2026-02-21 03:35:38'),
('1561', '4', '735', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-21 18:18:20', '2026-02-21 18:18:20'),
('1562', '4', '737', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 00:11:08', '2026-02-22 00:11:08'),
('1563', '4', '738', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 00:13:12', '2026-02-22 00:13:12'),
('1564', '4', '738', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 00:13:12', '2026-02-22 00:13:12'),
('1565', '4', '739', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-22 01:21:14', '2026-02-22 01:21:14'),
('1566', '4', '739', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 01:21:14', '2026-02-22 01:21:14'),
('1567', '4', '740', NULL, '12', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2026-02-22 01:35:24', '2026-02-22 01:35:24'),
('1568', '4', '740', NULL, '45', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-22 01:35:24', '2026-02-22 01:35:24'),
('1569', '4', '741', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 01:57:04', '2026-02-22 01:57:04'),
('1570', '4', '742', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-22 02:31:03', '2026-02-22 02:31:03'),
('1571', '4', '743', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:48:36', '2026-02-22 02:48:36'),
('1572', '4', '736', NULL, '67', NULL, NULL, '28', '5.00', '140.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1573', '4', '736', NULL, '62', NULL, NULL, '28', '5.00', '140.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1574', '4', '736', NULL, '23', NULL, NULL, '84', '4.00', '336.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1575', '4', '736', NULL, '31', NULL, NULL, '28', '4.00', '112.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1576', '4', '736', NULL, '30', NULL, NULL, '28', '4.00', '112.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1577', '4', '736', NULL, '85', NULL, NULL, '2', '25.00', '50.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1578', '4', '736', NULL, '4', NULL, NULL, '28', '2.50', '70.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1579', '4', '736', NULL, '3', NULL, NULL, '12', '1.50', '18.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1580', '4', '736', NULL, '2', NULL, NULL, '12', '1.50', '18.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1581', '4', '736', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1582', '4', '736', NULL, '87', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1583', '4', '736', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1584', '4', '736', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1585', '4', '736', NULL, '4', NULL, NULL, '4', '2.50', '10.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1586', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1587', '4', '736', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1588', '4', '736', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1589', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1590', '4', '736', NULL, '67', NULL, NULL, '14', '5.00', '70.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1591', '4', '736', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1592', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1593', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1594', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1595', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1596', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1597', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1598', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1599', '4', '736', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1600', '4', '736', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1601', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1602', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1603', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1604', '4', '736', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1605', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1606', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1607', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1608', '4', '736', NULL, '87', NULL, NULL, '1', '15.00', '15.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1609', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1610', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1611', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1612', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1613', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1614', '4', '736', NULL, '67', NULL, NULL, '6', '5.00', '30.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1615', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1616', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1617', '4', '736', NULL, '104', NULL, NULL, '5', '1.00', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1618', '4', '736', NULL, '14', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1619', '4', '736', NULL, '4', NULL, NULL, '4', '2.50', '10.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1620', '4', '736', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1621', '4', '736', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1622', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1623', '4', '736', NULL, '62', NULL, NULL, '14', '5.00', '70.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1624', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1625', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1626', '4', '736', NULL, '72', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1627', '4', '736', NULL, '67', NULL, NULL, '20', '5.00', '100.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1628', '4', '736', NULL, '4', NULL, NULL, '5', '2.50', '12.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1629', '4', '736', NULL, '3', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1630', '4', '736', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1631', '4', '736', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1632', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1633', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1634', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1635', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1636', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1637', '4', '736', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1638', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1639', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1640', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1641', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1642', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1643', '4', '736', NULL, '23', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1644', '4', '736', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1645', '4', '736', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1646', '4', '736', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1647', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1648', '4', '736', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1649', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1650', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1651', '4', '736', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1652', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1653', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1654', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1655', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1656', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1657', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1658', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1659', '4', '736', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1660', '4', '736', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1661', '4', '736', NULL, '44', NULL, NULL, '10', '3.00', '30.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1662', '4', '736', NULL, '105', NULL, NULL, '4', '10.00', '40.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1663', '4', '736', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1664', '4', '736', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1665', '4', '736', NULL, '3', NULL, NULL, '4', '1.50', '6.00', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1666', '4', '736', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-22 02:49:12', '2026-02-22 02:49:12'),
('1667', '4', '744', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-22 03:04:52', '2026-02-22 03:04:52'),
('1668', '4', '744', NULL, '45', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-22 03:04:52', '2026-02-22 03:04:52'),
('1669', '4', '745', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-23 20:00:57', '2026-02-23 20:00:57'),
('1670', '4', '745', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-23 20:00:57', '2026-02-23 20:00:57'),
('1671', '4', '746', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-23 23:03:01', '2026-02-23 23:03:01'),
('1672', '4', '746', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-23 23:03:01', '2026-02-23 23:03:01'),
('1673', '4', '746', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-23 23:03:01', '2026-02-23 23:03:01'),
('1674', '4', '746', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-23 23:03:01', '2026-02-23 23:03:01'),
('1675', '4', '747', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-23 23:04:08', '2026-02-23 23:04:08'),
('1676', '4', '748', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-23 23:27:02', '2026-02-23 23:27:02'),
('1677', '4', '748', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-23 23:27:02', '2026-02-23 23:27:02'),
('1678', '4', '749', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-23 23:32:01', '2026-02-23 23:32:01'),
('1679', '4', '749', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-23 23:32:01', '2026-02-23 23:32:01'),
('1680', '4', '750', NULL, '44', NULL, NULL, '5', '3.00', '15.00', NULL, NULL, NULL, '2026-02-24 00:05:30', '2026-02-24 00:05:30'),
('1681', '4', '750', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-24 00:05:30', '2026-02-24 00:05:30'),
('1682', '4', '752', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-24 00:33:49', '2026-02-24 00:33:49'),
('1683', '4', '752', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-24 00:33:49', '2026-02-24 00:33:49'),
('1684', '4', '754', NULL, '7', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 00:46:57', '2026-02-24 00:46:57'),
('1685', '4', '755', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 01:40:03', '2026-02-24 01:40:03'),
('1686', '4', '755', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 01:40:03', '2026-02-24 01:40:03'),
('1687', '4', '755', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 01:40:03', '2026-02-24 01:40:03'),
('1688', '4', '756', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 01:49:27', '2026-02-24 01:49:27'),
('1689', '4', '753', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 01:50:50', '2026-02-24 01:50:50'),
('1690', '4', '753', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 01:50:50', '2026-02-24 01:50:50'),
('1691', '4', '758', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-24 02:00:15', '2026-02-24 02:00:15'),
('1692', '4', '751', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-24 02:01:09', '2026-02-24 02:01:09'),
('1693', '4', '759', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 02:06:36', '2026-02-24 02:06:36'),
('1694', '4', '757', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 02:12:47', '2026-02-24 02:12:47'),
('1695', '4', '761', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-24 02:30:25', '2026-02-24 02:30:25'),
('1696', '4', '761', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-24 02:30:25', '2026-02-24 02:30:25'),
('1697', '4', '762', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-24 02:44:12', '2026-02-24 02:44:12'),
('1698', '4', '760', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-24 02:52:43', '2026-02-24 02:52:43'),
('1699', '4', '760', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-24 02:52:43', '2026-02-24 02:52:43'),
('1700', '4', '760', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 02:52:43', '2026-02-24 02:52:43'),
('1701', '4', '763', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 03:21:27', '2026-02-24 03:21:27'),
('1702', '4', '765', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-02-24 18:48:31', '2026-02-24 18:48:31'),
('1703', '4', '765', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 18:48:31', '2026-02-24 18:48:31'),
('1704', '4', '765', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 18:48:31', '2026-02-24 18:48:31'),
('1705', '4', '766', NULL, '31', NULL, '', '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-24 19:26:05', '2026-02-24 19:26:05'),
('1706', '4', '766', NULL, '45', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-24 19:26:05', '2026-02-24 19:26:05'),
('1707', '4', '766', NULL, '65', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 19:26:05', '2026-02-24 19:26:05'),
('1708', '4', '767', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-24 19:43:25', '2026-02-24 19:43:25'),
('1709', '4', '768', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 20:08:39', '2026-02-24 20:08:39'),
('1710', '4', '769', NULL, '45', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-24 20:13:32', '2026-02-24 20:13:32'),
('1711', '4', '764', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 21:42:57', '2026-02-24 21:42:57'),
('1712', '4', '764', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 21:42:57', '2026-02-24 21:42:57'),
('1713', '4', '764', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-24 21:42:57', '2026-02-24 21:42:57'),
('1714', '4', '764', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 21:42:57', '2026-02-24 21:42:57'),
('1715', '4', '771', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 21:44:36', '2026-02-24 21:44:36'),
('1716', '4', '770', NULL, '45', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-24 21:48:36', '2026-02-24 21:48:36'),
('1717', '4', '770', NULL, '25', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 21:48:36', '2026-02-24 21:48:36'),
('1718', '4', '770', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-24 21:48:36', '2026-02-24 21:48:36'),
('1719', '4', '772', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-24 23:51:38', '2026-02-24 23:51:38'),
('1720', '4', '774', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 00:47:45', '2026-02-25 00:47:45'),
('1721', '4', '774', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 00:47:45', '2026-02-25 00:47:45'),
('1722', '4', '776', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-25 00:57:23', '2026-02-25 00:57:23'),
('1723', '4', '775', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 01:06:14', '2026-02-25 01:06:14'),
('1724', '4', '775', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 01:06:14', '2026-02-25 01:06:14'),
('1725', '4', '775', NULL, '44', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-25 01:06:14', '2026-02-25 01:06:14'),
('1726', '4', '773', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 01:11:05', '2026-02-25 01:11:05'),
('1727', '4', '773', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 01:11:05', '2026-02-25 01:11:05'),
('1728', '4', '777', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-25 01:32:41', '2026-02-25 01:32:41'),
('1729', '4', '778', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-25 23:18:19', '2026-02-25 23:18:19'),
('1730', '4', '778', NULL, '5', NULL, '', '2', '2.00', '4.00', NULL, NULL, NULL, '2026-02-25 23:18:19', '2026-02-25 23:18:19'),
('1731', '4', '779', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-25 23:19:33', '2026-02-25 23:19:33'),
('1732', '4', '779', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-25 23:19:33', '2026-02-25 23:19:33'),
('1733', '4', '780', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-25 23:19:54', '2026-02-25 23:19:54'),
('1734', '4', '781', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-26 00:13:27', '2026-02-26 00:13:27'),
('1735', '4', '781', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-26 00:13:27', '2026-02-26 00:13:27'),
('1736', '4', '782', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-26 00:25:03', '2026-02-26 00:25:03'),
('1737', '4', '782', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-26 00:25:03', '2026-02-26 00:25:03'),
('1738', '4', '783', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-26 00:51:59', '2026-02-26 00:51:59'),
('1739', '4', '783', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-26 00:51:59', '2026-02-26 00:51:59'),
('1740', '4', '784', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-26 01:06:01', '2026-02-26 01:06:01'),
('1741', '4', '784', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-26 01:06:01', '2026-02-26 01:06:01'),
('1742', '4', '785', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-26 01:31:59', '2026-02-26 01:31:59'),
('1743', '4', '785', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-26 01:31:59', '2026-02-26 01:31:59'),
('1744', '4', '786', NULL, '44', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-26 01:48:53', '2026-02-26 01:48:53'),
('1745', '4', '787', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-27 01:56:55', '2026-02-27 01:56:55'),
('1746', '4', '787', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-27 01:56:55', '2026-02-27 01:56:55'),
('1747', '4', '787', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 01:56:55', '2026-02-27 01:56:55'),
('1748', '4', '787', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 01:56:55', '2026-02-27 01:56:55'),
('1749', '4', '787', NULL, '65', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-27 01:56:55', '2026-02-27 01:56:55'),
('1750', '4', '790', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-27 19:39:10', '2026-02-27 19:39:10'),
('1751', '4', '789', NULL, '106', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-27 20:18:24', '2026-02-27 20:18:24'),
('1752', '4', '789', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-27 20:18:24', '2026-02-27 20:18:24'),
('1753', '4', '789', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-27 20:18:24', '2026-02-27 20:18:24'),
('1754', '4', '789', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-02-27 20:18:24', '2026-02-27 20:18:24'),
('1755', '4', '791', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-27 20:36:44', '2026-02-27 20:36:44'),
('1756', '4', '792', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-27 20:39:12', '2026-02-27 20:39:12'),
('1757', '4', '793', NULL, '79', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-02-27 21:07:37', '2026-02-27 21:07:37'),
('1758', '4', '795', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 21:20:28', '2026-02-27 21:20:28'),
('1759', '4', '796', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 21:20:51', '2026-02-27 21:20:51'),
('1760', '4', '798', NULL, '43', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-27 21:31:19', '2026-02-27 21:31:19'),
('1761', '4', '798', NULL, '53', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-27 21:31:19', '2026-02-27 21:31:19'),
('1762', '4', '798', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-27 21:31:19', '2026-02-27 21:31:19'),
('1763', '4', '788', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1764', '4', '788', NULL, '26', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1765', '4', '788', NULL, '62', NULL, NULL, '4', '5.00', '20.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1766', '4', '788', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1767', '4', '788', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1768', '4', '788', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1769', '4', '788', NULL, '61', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1770', '4', '788', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1771', '4', '788', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1772', '4', '788', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1773', '4', '788', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1774', '4', '788', NULL, '53', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1775', '4', '788', NULL, '53', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1776', '4', '788', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-02-27 22:13:13', '2026-02-27 22:13:13'),
('1777', '4', '799', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-27 22:26:27', '2026-02-27 22:26:27'),
('1778', '4', '799', NULL, '67', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-27 22:26:27', '2026-02-27 22:26:27'),
('1779', '4', '794', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-27 22:42:40', '2026-02-27 22:42:40'),
('1780', '4', '794', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-02-27 22:42:40', '2026-02-27 22:42:40'),
('1781', '4', '794', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 22:42:40', '2026-02-27 22:42:40'),
('1782', '4', '797', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-27 22:44:20', '2026-02-27 22:44:20'),
('1783', '4', '797', NULL, '43', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-27 22:44:20', '2026-02-27 22:44:20'),
('1784', '4', '797', NULL, '43', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-27 22:44:20', '2026-02-27 22:44:20'),
('1785', '4', '797', NULL, '105', NULL, NULL, '2', '10.00', '20.00', NULL, NULL, NULL, '2026-02-27 22:44:20', '2026-02-27 22:44:20'),
('1786', '4', '797', NULL, '10', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-02-27 22:44:20', '2026-02-27 22:44:20'),
('1787', '4', '801', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-27 22:46:20', '2026-02-27 22:46:20'),
('1788', '4', '802', NULL, '2', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-02-27 22:49:49', '2026-02-27 22:49:49'),
('1789', '4', '803', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-27 23:43:44', '2026-02-27 23:43:44'),
('1790', '4', '803', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-02-27 23:43:44', '2026-02-27 23:43:44'),
('1791', '4', '804', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-28 01:04:43', '2026-02-28 01:04:43'),
('1792', '4', '804', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-02-28 01:04:43', '2026-02-28 01:04:43'),
('1793', '4', '805', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-28 01:05:09', '2026-02-28 01:05:09'),
('1794', '4', '806', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-28 01:17:21', '2026-02-28 01:17:21'),
('1795', '4', '807', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-28 01:20:42', '2026-02-28 01:20:42'),
('1796', '4', '808', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 01:33:57', '2026-02-28 01:33:57'),
('1797', '4', '808', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-28 01:33:57', '2026-02-28 01:33:57'),
('1798', '4', '808', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-28 01:33:57', '2026-02-28 01:33:57'),
('1799', '4', '809', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-28 02:01:14', '2026-02-28 02:01:14'),
('1800', '4', '800', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1801', '4', '800', NULL, '30', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1802', '4', '800', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1803', '4', '800', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1804', '4', '800', NULL, '105', NULL, NULL, '6', '10.00', '60.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1805', '4', '800', NULL, '8', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1806', '4', '800', NULL, '8', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1807', '4', '800', NULL, '30', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1808', '4', '800', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-28 02:12:41', '2026-02-28 02:12:41'),
('1809', '4', '810', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-02-28 02:35:13', '2026-02-28 02:35:13'),
('1810', '4', '811', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-02-28 02:51:02', '2026-02-28 02:51:02'),
('1811', '4', '811', NULL, '3', NULL, '', '3', '1.50', '4.50', NULL, NULL, NULL, '2026-02-28 02:51:02', '2026-02-28 02:51:02'),
('1812', '4', '811', NULL, '31', NULL, '', '6', '4.00', '24.00', NULL, NULL, NULL, '2026-02-28 02:51:02', '2026-02-28 02:51:02'),
('1813', '4', '813', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-02-28 19:57:30', '2026-02-28 19:57:30'),
('1814', '4', '814', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-28 20:11:39', '2026-02-28 20:11:39'),
('1815', '4', '814', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-28 20:11:39', '2026-02-28 20:11:39'),
('1816', '4', '815', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-28 20:15:39', '2026-02-28 20:15:39'),
('1817', '4', '816', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 20:18:01', '2026-02-28 20:18:01'),
('1818', '4', '816', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 20:18:01', '2026-02-28 20:18:01'),
('1819', '4', '819', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 20:56:51', '2026-02-28 20:56:51'),
('1820', '4', '821', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-28 21:07:05', '2026-02-28 21:07:05'),
('1821', '4', '821', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-28 21:07:05', '2026-02-28 21:07:05'),
('1822', '4', '812', NULL, '60', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-28 21:31:53', '2026-02-28 21:31:53'),
('1823', '4', '822', NULL, '4', NULL, '', '3', '2.50', '7.50', NULL, NULL, NULL, '2026-02-28 21:39:25', '2026-02-28 21:39:25'),
('1824', '4', '822', NULL, '21', NULL, '', '2', '7.00', '14.00', NULL, NULL, NULL, '2026-02-28 21:39:25', '2026-02-28 21:39:25'),
('1825', '4', '822', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-02-28 21:39:25', '2026-02-28 21:39:25'),
('1826', '4', '822', NULL, '43', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-02-28 21:39:25', '2026-02-28 21:39:25'),
('1827', '4', '820', NULL, '8', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 21:52:05', '2026-02-28 21:52:05'),
('1828', '4', '820', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 21:52:05', '2026-02-28 21:52:05'),
('1829', '4', '823', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 21:55:05', '2026-02-28 21:55:05'),
('1830', '4', '823', NULL, '67', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-02-28 21:55:05', '2026-02-28 21:55:05'),
('1831', '4', '824', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 22:01:02', '2026-02-28 22:01:02'),
('1832', '4', '825', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-02-28 22:25:40', '2026-02-28 22:25:40'),
('1833', '4', '825', NULL, '20', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-02-28 22:25:40', '2026-02-28 22:25:40'),
('1834', '4', '826', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 22:59:17', '2026-02-28 22:59:17'),
('1835', '4', '818', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-28 23:02:19', '2026-02-28 23:02:19'),
('1836', '4', '818', NULL, '104', NULL, NULL, '3', '1.00', '3.00', NULL, NULL, NULL, '2026-02-28 23:02:19', '2026-02-28 23:02:19'),
('1837', '4', '818', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-28 23:02:19', '2026-02-28 23:02:19'),
('1838', '4', '818', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-02-28 23:02:19', '2026-02-28 23:02:19'),
('1839', '4', '827', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 23:30:24', '2026-02-28 23:30:24'),
('1840', '4', '827', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-02-28 23:30:24', '2026-02-28 23:30:24'),
('1841', '4', '828', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-02-28 23:31:47', '2026-02-28 23:31:47'),
('1842', '4', '828', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 23:31:47', '2026-02-28 23:31:47'),
('1843', '4', '829', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-02-28 23:36:01', '2026-02-28 23:36:01'),
('1844', '4', '830', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-02-28 23:37:31', '2026-02-28 23:37:31'),
('1845', '4', '830', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-02-28 23:37:31', '2026-02-28 23:37:31'),
('1846', '4', '832', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-03-01 00:13:32', '2026-03-01 00:13:32'),
('1847', '4', '833', NULL, '64', NULL, '', '6', '4.00', '24.00', NULL, NULL, NULL, '2026-03-01 00:24:24', '2026-03-01 00:24:24'),
('1848', '4', '833', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 00:24:24', '2026-03-01 00:24:24'),
('1849', '4', '834', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-01 00:25:19', '2026-03-01 00:25:19'),
('1850', '4', '834', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 00:25:19', '2026-03-01 00:25:19'),
('1851', '4', '834', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-01 00:25:19', '2026-03-01 00:25:19'),
('1852', '4', '831', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 00:43:49', '2026-03-01 00:43:49'),
('1853', '4', '831', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-01 00:43:49', '2026-03-01 00:43:49'),
('1854', '4', '831', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 00:43:49', '2026-03-01 00:43:49'),
('1855', '4', '836', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-01 00:46:40', '2026-03-01 00:46:40'),
('1856', '4', '836', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 00:46:40', '2026-03-01 00:46:40'),
('1857', '4', '838', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 01:02:15', '2026-03-01 01:02:15'),
('1858', '4', '838', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-01 01:02:15', '2026-03-01 01:02:15'),
('1859', '4', '838', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 01:02:15', '2026-03-01 01:02:15'),
('1860', '4', '835', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-01 01:04:15', '2026-03-01 01:04:15'),
('1861', '4', '835', NULL, '67', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-01 01:04:15', '2026-03-01 01:04:15'),
('1862', '4', '839', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-01 01:05:38', '2026-03-01 01:05:38'),
('1863', '4', '840', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-01 01:11:22', '2026-03-01 01:11:22'),
('1864', '4', '840', NULL, '30', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-01 01:11:22', '2026-03-01 01:11:22'),
('1865', '4', '837', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-01 01:46:07', '2026-03-01 01:46:07'),
('1866', '4', '841', NULL, '11', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-01 02:11:36', '2026-03-01 02:11:36'),
('1867', '4', '841', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-01 02:11:36', '2026-03-01 02:11:36'),
('1868', '4', '842', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 02:12:20', '2026-03-01 02:12:20'),
('1869', '4', '843', NULL, '64', NULL, '', '12', '4.00', '48.00', NULL, NULL, NULL, '2026-03-01 02:16:10', '2026-03-01 02:16:10'),
('1870', '4', '843', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-01 02:16:10', '2026-03-01 02:16:10'),
('1871', '4', '843', NULL, '3', NULL, '', '4', '1.50', '6.00', NULL, NULL, NULL, '2026-03-01 02:16:10', '2026-03-01 02:16:10'),
('1872', '4', '844', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 02:35:22', '2026-03-01 02:35:22'),
('1873', '4', '844', NULL, '52', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 02:35:22', '2026-03-01 02:35:22'),
('1874', '4', '844', NULL, '104', NULL, '', '4', '1.00', '4.00', NULL, NULL, NULL, '2026-03-01 02:35:22', '2026-03-01 02:35:22'),
('1875', '4', '845', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 02:40:10', '2026-03-01 02:40:10'),
('1876', '4', '846', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 02:41:18', '2026-03-01 02:41:18'),
('1877', '4', '848', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 02:48:35', '2026-03-01 02:48:35'),
('1878', '4', '847', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 02:49:13', '2026-03-01 02:49:13'),
('1879', '4', '847', NULL, '23', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 02:49:13', '2026-03-01 02:49:13'),
('1880', '4', '849', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-01 02:51:42', '2026-03-01 02:51:42'),
('1881', '4', '849', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 02:51:42', '2026-03-01 02:51:42'),
('1882', '4', '850', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 02:53:56', '2026-03-01 02:53:56'),
('1883', '4', '851', NULL, '23', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-01 02:56:09', '2026-03-01 02:56:09'),
('1884', '4', '851', NULL, '4', NULL, '', '3', '2.50', '7.50', NULL, NULL, NULL, '2026-03-01 02:56:09', '2026-03-01 02:56:09'),
('1885', '4', '852', NULL, '9', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-01 02:57:13', '2026-03-01 02:57:13'),
('1886', '4', '853', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-01 02:57:42', '2026-03-01 02:57:42'),
('1887', '4', '854', NULL, '15', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:00:06', '2026-03-01 03:00:06'),
('1888', '4', '855', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:00:24', '2026-03-01 03:00:24'),
('1889', '4', '856', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:06:24', '2026-03-01 03:06:24'),
('1890', '4', '857', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-01 03:09:08', '2026-03-01 03:09:08'),
('1891', '4', '858', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:09:33', '2026-03-01 03:09:33'),
('1892', '4', '859', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 03:15:09', '2026-03-01 03:15:09'),
('1893', '4', '859', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 03:15:09', '2026-03-01 03:15:09'),
('1894', '4', '859', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-01 03:15:09', '2026-03-01 03:15:09'),
('1895', '4', '860', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:20:21', '2026-03-01 03:20:21'),
('1896', '4', '860', NULL, '104', NULL, '', '3', '1.00', '3.00', NULL, NULL, NULL, '2026-03-01 03:20:21', '2026-03-01 03:20:21'),
('1897', '4', '861', NULL, '52', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 03:23:36', '2026-03-01 03:23:36'),
('1898', '4', '862', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 03:31:49', '2026-03-01 03:31:49'),
('1899', '4', '862', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-01 03:31:49', '2026-03-01 03:31:49'),
('1900', '4', '863', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 03:39:41', '2026-03-01 03:39:41'),
('1901', '4', '863', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 03:39:41', '2026-03-01 03:39:41'),
('1902', '4', '864', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:45:38', '2026-03-01 03:45:38'),
('1903', '4', '865', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 03:47:59', '2026-03-01 03:47:59'),
('1904', '4', '865', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 03:47:59', '2026-03-01 03:47:59'),
('1905', '4', '866', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-01 03:48:13', '2026-03-01 03:48:13'),
('1906', '4', '867', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 03:49:16', '2026-03-01 03:49:16'),
('1907', '4', '868', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-01 03:52:41', '2026-03-01 03:52:41'),
('1908', '4', '869', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-01 03:55:32', '2026-03-01 03:55:32'),
('1909', '4', '870', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 04:06:34', '2026-03-01 04:06:34'),
('1910', '4', '870', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 04:06:34', '2026-03-01 04:06:34'),
('1911', '4', '870', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-01 04:06:34', '2026-03-01 04:06:34'),
('1912', '4', '817', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 04:07:41', '2026-03-01 04:07:41'),
('1913', '4', '817', NULL, '16', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 04:07:41', '2026-03-01 04:07:41'),
('1914', '4', '817', NULL, '16', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-01 04:07:41', '2026-03-01 04:07:41'),
('1915', '4', '871', NULL, '79', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-01 19:01:14', '2026-03-01 19:01:14'),
('1916', '4', '872', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 19:49:38', '2026-03-01 19:49:38'),
('1917', '4', '872', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-01 19:49:38', '2026-03-01 19:49:38'),
('1918', '4', '873', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 19:51:09', '2026-03-01 19:51:09'),
('1919', '4', '873', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-01 19:51:09', '2026-03-01 19:51:09'),
('1920', '4', '873', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-01 19:51:09', '2026-03-01 19:51:09'),
('1921', '4', '874', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-01 20:25:53', '2026-03-01 20:25:53'),
('1922', '4', '875', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-01 22:28:40', '2026-03-01 22:28:40'),
('1923', '4', '876', NULL, '12', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2026-03-01 22:30:05', '2026-03-01 22:30:05'),
('1924', '4', '876', NULL, '28', NULL, '', '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-01 22:30:05', '2026-03-01 22:30:05'),
('1925', '4', '877', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-01 22:56:45', '2026-03-01 22:56:45'),
('1926', '4', '878', NULL, '77', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-03-01 23:46:04', '2026-03-01 23:46:04'),
('1927', '4', '878', NULL, '25', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-01 23:46:04', '2026-03-01 23:46:04'),
('1928', '4', '879', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-02 00:55:54', '2026-03-02 00:55:54'),
('1929', '4', '881', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-02 19:05:52', '2026-03-02 19:05:52'),
('1930', '4', '883', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-02 20:02:46', '2026-03-02 20:02:46'),
('1931', '4', '884', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-02 20:26:11', '2026-03-02 20:26:11'),
('1932', '4', '886', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-02 21:58:45', '2026-03-02 21:58:45'),
('1933', '4', '888', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-02 22:38:44', '2026-03-02 22:38:44'),
('1934', '4', '888', NULL, '3', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-02 22:38:44', '2026-03-02 22:38:44'),
('1935', '4', '882', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-02 22:54:13', '2026-03-02 22:54:13'),
('1936', '4', '882', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-02 22:54:13', '2026-03-02 22:54:13'),
('1937', '4', '882', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-02 22:54:13', '2026-03-02 22:54:13'),
('1938', '4', '882', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-02 22:54:13', '2026-03-02 22:54:13'),
('1939', '4', '882', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-02 22:54:13', '2026-03-02 22:54:13'),
('1940', '4', '880', NULL, '30', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-03-02 23:10:23', '2026-03-02 23:10:23'),
('1941', '4', '880', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-02 23:10:23', '2026-03-02 23:10:23'),
('1942', '4', '880', NULL, '44', NULL, NULL, '5', '3.00', '15.00', NULL, NULL, NULL, '2026-03-02 23:10:23', '2026-03-02 23:10:23'),
('1943', '4', '880', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-03-02 23:10:23', '2026-03-02 23:10:23'),
('1944', '4', '885', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-02 23:15:02', '2026-03-02 23:15:02'),
('1945', '4', '885', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-02 23:15:02', '2026-03-02 23:15:02'),
('1946', '4', '889', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-02 23:18:49', '2026-03-02 23:18:49'),
('1947', '4', '887', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-02 23:19:42', '2026-03-02 23:19:42'),
('1948', '4', '887', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-02 23:19:42', '2026-03-02 23:19:42'),
('1949', '4', '892', NULL, '37', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-02 23:52:57', '2026-03-02 23:52:57'),
('1950', '4', '891', NULL, '67', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-03 00:55:54', '2026-03-03 00:55:54'),
('1951', '4', '891', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-03 00:55:54', '2026-03-03 00:55:54'),
('1952', '4', '890', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-03 00:59:06', '2026-03-03 00:59:06'),
('1953', '4', '890', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-03 00:59:06', '2026-03-03 00:59:06'),
('1954', '4', '890', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-03 00:59:06', '2026-03-03 00:59:06'),
('1955', '4', '890', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-03 00:59:06', '2026-03-03 00:59:06'),
('1956', '4', '890', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-03 00:59:06', '2026-03-03 00:59:06'),
('1957', '4', '894', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-03 20:12:23', '2026-03-03 20:12:23'),
('1958', '4', '893', NULL, '44', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-03 21:02:27', '2026-03-03 21:02:27'),
('1959', '4', '893', NULL, '11', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-03 21:02:27', '2026-03-03 21:02:27'),
('1960', '4', '893', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-03 21:02:27', '2026-03-03 21:02:27'),
('1961', '4', '893', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-03 21:02:27', '2026-03-03 21:02:27'),
('1962', '4', '893', NULL, '44', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-03 21:02:27', '2026-03-03 21:02:27'),
('1963', '4', '895', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-03 22:19:25', '2026-03-03 22:19:25'),
('1964', '4', '896', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-03 22:20:47', '2026-03-03 22:20:47'),
('1965', '4', '896', NULL, '13', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-03 22:20:47', '2026-03-03 22:20:47'),
('1966', '4', '897', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-03 22:21:43', '2026-03-03 22:21:43'),
('1967', '4', '898', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-04 00:54:50', '2026-03-04 00:54:50'),
('1968', '4', '899', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-04 19:42:51', '2026-03-04 19:42:51'),
('1969', '4', '899', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-04 19:42:51', '2026-03-04 19:42:51'),
('1970', '4', '899', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-04 19:42:51', '2026-03-04 19:42:51'),
('1971', '4', '900', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-04 20:59:43', '2026-03-04 20:59:43'),
('1972', '4', '900', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-04 20:59:43', '2026-03-04 20:59:43'),
('1973', '4', '900', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-04 20:59:43', '2026-03-04 20:59:43'),
('1974', '4', '901', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1975', '4', '901', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1976', '4', '901', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1977', '4', '901', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1978', '4', '901', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1979', '4', '901', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-04 21:30:54', '2026-03-04 21:30:54'),
('1980', '4', '902', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-04 23:11:11', '2026-03-04 23:11:11'),
('1981', '4', '903', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 19:10:42', '2026-03-05 19:10:42'),
('1982', '4', '903', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 19:10:42', '2026-03-05 19:10:42'),
('1983', '4', '905', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 20:44:46', '2026-03-05 20:44:46'),
('1984', '4', '904', NULL, '44', NULL, NULL, '19', '3.00', '57.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1985', '4', '904', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1986', '4', '904', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1987', '4', '904', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1988', '4', '904', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1989', '4', '904', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1990', '4', '904', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1991', '4', '904', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1992', '4', '904', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1993', '4', '904', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1994', '4', '904', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1995', '4', '904', NULL, '44', NULL, NULL, '9', '3.00', '27.00', NULL, NULL, NULL, '2026-03-05 21:12:11', '2026-03-05 21:12:11'),
('1996', '4', '906', NULL, '44', NULL, '', '10', '3.00', '30.00', NULL, NULL, NULL, '2026-03-05 21:16:10', '2026-03-05 21:16:10'),
('1997', '4', '909', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-05 21:34:07', '2026-03-05 21:34:07'),
('1998', '4', '908', NULL, '44', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('1999', '4', '908', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2000', '4', '908', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2001', '4', '908', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2002', '4', '908', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2003', '4', '908', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2004', '4', '908', NULL, '44', NULL, NULL, '10', '3.00', '30.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2005', '4', '908', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2006', '4', '908', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2007', '4', '908', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2008', '4', '908', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-03-05 22:59:17', '2026-03-05 22:59:17'),
('2009', '4', '907', NULL, '67', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2010', '4', '907', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2011', '4', '907', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2012', '4', '907', NULL, '13', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2013', '4', '907', NULL, '30', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2014', '4', '907', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2015', '4', '907', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2016', '4', '907', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2017', '4', '907', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10');

INSERT INTO `order_items` VALUES
('2018', '4', '907', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2019', '4', '907', NULL, '44', NULL, NULL, '9', '3.00', '27.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2020', '4', '907', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2021', '4', '907', NULL, '30', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2022', '4', '907', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2023', '4', '907', NULL, '44', NULL, NULL, '9', '3.00', '27.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2024', '4', '907', NULL, '32', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-06 00:17:10', '2026-03-06 00:17:10'),
('2025', '4', '910', NULL, '31', NULL, NULL, '9', '4.00', '36.00', NULL, NULL, NULL, '2026-03-06 21:08:44', '2026-03-06 21:08:44'),
('2026', '4', '910', NULL, '3', NULL, NULL, '4', '1.50', '6.00', NULL, NULL, NULL, '2026-03-06 21:08:44', '2026-03-06 21:08:44'),
('2027', '4', '910', NULL, '7', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 21:08:44', '2026-03-06 21:08:44'),
('2028', '4', '910', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-06 21:08:44', '2026-03-06 21:08:44'),
('2029', '4', '910', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-06 21:08:44', '2026-03-06 21:08:44'),
('2030', '4', '914', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 22:43:19', '2026-03-06 22:43:19'),
('2031', '4', '912', NULL, '4', NULL, NULL, '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2032', '4', '912', NULL, '15', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2033', '4', '912', NULL, '44', NULL, NULL, '15', '3.00', '45.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2034', '4', '912', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2035', '4', '912', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2036', '4', '912', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2037', '4', '912', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2038', '4', '912', NULL, '9', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2039', '4', '912', NULL, '15', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2040', '4', '912', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-06 22:52:18', '2026-03-06 22:52:18'),
('2041', '4', '911', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-06 23:17:04', '2026-03-06 23:17:04'),
('2042', '4', '911', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-06 23:17:04', '2026-03-06 23:17:04'),
('2043', '4', '915', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-06 23:30:18', '2026-03-06 23:30:18'),
('2044', '4', '913', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-06 23:39:15', '2026-03-06 23:39:15'),
('2045', '4', '916', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-07 00:56:56', '2026-03-07 00:56:56'),
('2046', '4', '916', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-07 00:56:56', '2026-03-07 00:56:56'),
('2047', '4', '918', NULL, '28', NULL, '', '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-07 01:46:53', '2026-03-07 01:46:53'),
('2048', '4', '919', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 02:11:06', '2026-03-07 02:11:06'),
('2049', '4', '917', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 02:19:36', '2026-03-07 02:19:36'),
('2050', '4', '921', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 02:47:56', '2026-03-07 02:47:56'),
('2051', '4', '921', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-07 02:47:56', '2026-03-07 02:47:56'),
('2052', '4', '921', NULL, '23', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 02:47:56', '2026-03-07 02:47:56'),
('2053', '4', '922', NULL, '23', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 02:54:31', '2026-03-07 02:54:31'),
('2054', '4', '923', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-07 03:00:22', '2026-03-07 03:00:22'),
('2055', '4', '924', NULL, '46', NULL, NULL, '1', '20.00', '20.00', NULL, NULL, NULL, '2026-03-07 03:54:02', '2026-03-07 03:54:02'),
('2056', '4', '925', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-07 04:10:57', '2026-03-07 04:10:57'),
('2057', '4', '925', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-07 04:10:57', '2026-03-07 04:10:57'),
('2058', '4', '926', NULL, '43', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 04:17:16', '2026-03-07 04:17:16'),
('2059', '4', '926', NULL, '84', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-07 04:17:16', '2026-03-07 04:17:16'),
('2060', '4', '926', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 04:17:16', '2026-03-07 04:17:16'),
('2061', '4', '927', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-07 04:42:48', '2026-03-07 04:42:48'),
('2062', '4', '920', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 05:01:59', '2026-03-07 05:01:59'),
('2063', '4', '920', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-07 05:01:59', '2026-03-07 05:01:59'),
('2064', '4', '920', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 05:01:59', '2026-03-07 05:01:59'),
('2065', '4', '920', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-07 05:01:59', '2026-03-07 05:01:59'),
('2066', '4', '931', NULL, '9', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-07 21:20:06', '2026-03-07 21:20:06'),
('2067', '4', '931', NULL, '104', NULL, '', '5', '1.00', '5.00', NULL, NULL, NULL, '2026-03-07 21:20:06', '2026-03-07 21:20:06'),
('2068', '4', '932', NULL, '30', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-07 21:25:42', '2026-03-07 21:25:42'),
('2069', '4', '932', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-07 21:25:42', '2026-03-07 21:25:42'),
('2070', '4', '933', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-07 21:45:57', '2026-03-07 21:45:57'),
('2071', '4', '933', NULL, '104', NULL, '', '5', '1.00', '5.00', NULL, NULL, NULL, '2026-03-07 21:45:57', '2026-03-07 21:45:57'),
('2072', '4', '934', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 22:20:53', '2026-03-07 22:20:53'),
('2073', '4', '934', NULL, '104', NULL, '', '5', '1.00', '5.00', NULL, NULL, NULL, '2026-03-07 22:20:53', '2026-03-07 22:20:53'),
('2074', '4', '928', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-07 22:27:07', '2026-03-07 22:27:07'),
('2075', '4', '928', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 22:27:07', '2026-03-07 22:27:07'),
('2076', '4', '928', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-07 22:27:07', '2026-03-07 22:27:07'),
('2077', '4', '928', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-07 22:27:07', '2026-03-07 22:27:07'),
('2078', '4', '935', NULL, '11', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-07 22:29:28', '2026-03-07 22:29:28'),
('2079', '4', '935', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-07 22:29:28', '2026-03-07 22:29:28'),
('2080', '4', '936', NULL, '104', NULL, '', '5', '1.00', '5.00', NULL, NULL, NULL, '2026-03-07 22:58:21', '2026-03-07 22:58:21'),
('2081', '4', '936', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-07 22:58:21', '2026-03-07 22:58:21'),
('2082', '4', '938', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-07 23:26:16', '2026-03-07 23:26:16'),
('2083', '4', '929', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-08 01:14:25', '2026-03-08 01:14:25'),
('2084', '4', '929', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 01:14:25', '2026-03-08 01:14:25'),
('2085', '4', '929', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 01:14:25', '2026-03-08 01:14:25'),
('2086', '4', '929', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-08 01:14:25', '2026-03-08 01:14:25'),
('2087', '4', '929', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-08 01:14:25', '2026-03-08 01:14:25'),
('2088', '4', '937', NULL, '30', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 01:20:35', '2026-03-08 01:20:35'),
('2089', '4', '937', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-08 01:20:35', '2026-03-08 01:20:35'),
('2090', '4', '930', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-08 01:20:51', '2026-03-08 01:20:51'),
('2091', '4', '930', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-08 01:20:51', '2026-03-08 01:20:51'),
('2092', '4', '930', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-08 01:20:51', '2026-03-08 01:20:51'),
('2093', '4', '930', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-08 01:20:51', '2026-03-08 01:20:51'),
('2094', '4', '930', NULL, '16', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 01:20:51', '2026-03-08 01:20:51'),
('2095', '4', '939', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-08 01:23:37', '2026-03-08 01:23:37'),
('2096', '4', '939', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-08 01:23:37', '2026-03-08 01:23:37'),
('2097', '4', '940', NULL, '32', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-08 19:55:38', '2026-03-08 19:55:38'),
('2098', '4', '940', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-08 19:55:39', '2026-03-08 19:55:39'),
('2099', '4', '941', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-08 19:56:08', '2026-03-08 19:56:08'),
('2100', '4', '942', NULL, '32', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-08 21:17:36', '2026-03-08 21:17:36'),
('2101', '4', '942', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 21:17:36', '2026-03-08 21:17:36'),
('2102', '4', '943', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-08 22:22:53', '2026-03-08 22:22:53'),
('2103', '4', '944', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-08 22:53:40', '2026-03-08 22:53:40'),
('2104', '4', '944', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-08 22:53:40', '2026-03-08 22:53:40'),
('2105', '4', '947', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-08 23:53:37', '2026-03-08 23:53:37'),
('2106', '4', '946', NULL, '104', NULL, NULL, '3', '1.00', '3.00', NULL, NULL, NULL, '2026-03-09 00:14:14', '2026-03-09 00:14:14'),
('2107', '4', '946', NULL, '104', NULL, NULL, '3', '1.00', '3.00', NULL, NULL, NULL, '2026-03-09 00:14:14', '2026-03-09 00:14:14'),
('2108', '4', '949', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-09 00:34:24', '2026-03-09 00:34:24'),
('2109', '4', '949', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-09 00:34:24', '2026-03-09 00:34:24'),
('2110', '4', '945', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-09 01:08:33', '2026-03-09 01:08:33'),
('2111', '4', '945', NULL, '84', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-09 01:08:33', '2026-03-09 01:08:33'),
('2112', '4', '945', NULL, '73', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-09 01:08:33', '2026-03-09 01:08:33'),
('2113', '4', '948', NULL, '2', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-03-09 01:14:48', '2026-03-09 01:14:48'),
('2114', '4', '948', NULL, '79', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-03-09 01:14:48', '2026-03-09 01:14:48'),
('2115', '4', '948', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-09 01:14:48', '2026-03-09 01:14:48'),
('2116', '4', '948', NULL, '13', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-09 01:14:48', '2026-03-09 01:14:48'),
('2117', '4', '950', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-09 01:28:22', '2026-03-09 01:28:22'),
('2118', '4', '950', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-09 01:28:22', '2026-03-09 01:28:22'),
('2119', '4', '951', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-09 01:42:33', '2026-03-09 01:42:33'),
('2120', '4', '952', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-09 02:21:57', '2026-03-09 02:21:57'),
('2121', '4', '953', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-09 23:20:25', '2026-03-09 23:20:25'),
('2122', '4', '953', NULL, '32', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-09 23:20:25', '2026-03-09 23:20:25'),
('2123', '4', '955', NULL, '67', NULL, '', '4', '5.00', '20.00', NULL, NULL, NULL, '2026-03-10 22:07:51', '2026-03-10 22:07:51'),
('2124', '4', '955', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-10 22:07:51', '2026-03-10 22:07:51'),
('2125', '4', '956', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-10 22:09:01', '2026-03-10 22:09:01'),
('2126', '4', '954', NULL, '67', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2026-03-10 22:24:14', '2026-03-10 22:24:14'),
('2127', '4', '954', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-10 22:24:14', '2026-03-10 22:24:14'),
('2128', '4', '954', NULL, '45', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-10 22:24:14', '2026-03-10 22:24:14'),
('2129', '4', '957', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-10 22:45:20', '2026-03-10 22:45:20'),
('2130', '4', '957', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-10 22:45:20', '2026-03-10 22:45:20'),
('2131', '4', '958', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-11 21:24:10', '2026-03-11 21:24:10'),
('2132', '4', '958', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-11 21:24:10', '2026-03-11 21:24:10'),
('2133', '4', '958', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-11 21:24:10', '2026-03-11 21:24:10'),
('2134', '4', '958', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-11 21:24:10', '2026-03-11 21:24:10'),
('2135', '4', '959', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-11 22:41:19', '2026-03-11 22:41:19'),
('2136', '4', '959', NULL, '32', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-11 22:41:19', '2026-03-11 22:41:19'),
('2137', '4', '959', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-11 22:41:19', '2026-03-11 22:41:19'),
('2138', '4', '960', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-13 20:34:11', '2026-03-13 20:34:11'),
('2139', '4', '961', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-13 21:39:41', '2026-03-13 21:39:41'),
('2140', '4', '961', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-13 21:39:41', '2026-03-13 21:39:41'),
('2141', '4', '961', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-13 21:39:41', '2026-03-13 21:39:41'),
('2142', '4', '962', NULL, '3', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-13 23:05:26', '2026-03-13 23:05:26'),
('2143', '4', '962', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-13 23:05:26', '2026-03-13 23:05:26'),
('2144', '4', '963', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-13 23:14:39', '2026-03-13 23:14:39'),
('2145', '4', '963', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-13 23:14:39', '2026-03-13 23:14:39'),
('2146', '4', '964', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-13 23:39:29', '2026-03-13 23:39:29'),
('2147', '4', '964', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-13 23:39:29', '2026-03-13 23:39:29'),
('2148', '4', '964', NULL, '64', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-13 23:39:29', '2026-03-13 23:39:29'),
('2149', '4', '964', NULL, '73', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-13 23:39:29', '2026-03-13 23:39:29'),
('2150', '4', '965', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-13 23:52:28', '2026-03-13 23:52:28'),
('2151', '4', '965', NULL, '15', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-13 23:52:28', '2026-03-13 23:52:28'),
('2152', '4', '965', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-13 23:52:28', '2026-03-13 23:52:28'),
('2153', '4', '965', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-13 23:52:28', '2026-03-13 23:52:28'),
('2154', '4', '966', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-13 23:54:49', '2026-03-13 23:54:49'),
('2155', '4', '967', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-14 00:07:48', '2026-03-14 00:07:48'),
('2156', '4', '968', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-14 00:10:34', '2026-03-14 00:10:34'),
('2157', '4', '968', NULL, '31', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-14 00:10:34', '2026-03-14 00:10:34'),
('2158', '4', '969', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-14 01:02:01', '2026-03-14 01:02:01'),
('2159', '4', '969', NULL, '83', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-03-14 01:02:01', '2026-03-14 01:02:01'),
('2160', '4', '969', NULL, '37', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-03-14 01:02:01', '2026-03-14 01:02:01'),
('2161', '4', '969', NULL, '31', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-14 01:02:01', '2026-03-14 01:02:01'),
('2162', '4', '970', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-14 01:02:51', '2026-03-14 01:02:51'),
('2163', '4', '971', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2164', '4', '971', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2165', '4', '971', NULL, '31', NULL, '', '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2166', '4', '971', NULL, '2', NULL, '', '4', '1.50', '6.00', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2167', '4', '971', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2168', '4', '971', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-14 02:06:32', '2026-03-14 02:06:32'),
('2169', '4', '972', NULL, '42', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-14 18:46:39', '2026-03-14 18:46:39'),
('2170', '4', '973', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-14 19:46:49', '2026-03-14 19:46:49'),
('2171', '4', '974', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-14 19:58:24', '2026-03-14 19:58:24'),
('2172', '4', '974', NULL, '37', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-14 19:58:24', '2026-03-14 19:58:24'),
('2173', '4', '975', NULL, '81', NULL, '', '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-14 20:01:11', '2026-03-14 20:01:11'),
('2174', '4', '976', NULL, '37', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-14 21:17:34', '2026-03-14 21:17:34'),
('2175', '4', '976', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-14 21:17:34', '2026-03-14 21:17:34'),
('2176', '4', '977', NULL, '7', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2026-03-14 21:46:52', '2026-03-14 21:46:52'),
('2177', '4', '978', NULL, '11', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-14 21:52:13', '2026-03-14 21:52:13'),
('2178', '4', '979', NULL, '11', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2026-03-14 22:12:06', '2026-03-14 22:12:06'),
('2179', '4', '980', NULL, '81', NULL, '', '2', '9.00', '18.00', NULL, NULL, NULL, '2026-03-14 22:13:08', '2026-03-14 22:13:08'),
('2180', '4', '980', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-14 22:13:08', '2026-03-14 22:13:08'),
('2181', '4', '981', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-14 22:13:38', '2026-03-14 22:13:38'),
('2182', '4', '982', NULL, '11', NULL, '', '5', '4.00', '20.00', NULL, NULL, NULL, '2026-03-14 22:37:56', '2026-03-14 22:37:56'),
('2183', '4', '983', NULL, '14', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-14 23:04:50', '2026-03-14 23:04:50'),
('2184', '4', '983', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-14 23:04:50', '2026-03-14 23:04:50'),
('2185', '4', '984', NULL, '85', NULL, '', '1', '25.00', '25.00', NULL, NULL, NULL, '2026-03-14 23:06:33', '2026-03-14 23:06:33'),
('2186', '4', '984', NULL, '15', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-14 23:06:33', '2026-03-14 23:06:33'),
('2187', '4', '984', NULL, '6', NULL, '', '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-14 23:06:33', '2026-03-14 23:06:33'),
('2188', '4', '985', NULL, '7', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-15 02:35:56', '2026-03-15 02:35:56'),
('2189', '4', '985', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-15 02:35:56', '2026-03-15 02:35:56'),
('2190', '4', '986', NULL, '107', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-15 23:53:20', '2026-03-15 23:53:20'),
('2191', '4', '987', NULL, '11', NULL, NULL, '3', '4.00', '12.00', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2192', '4', '987', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2193', '4', '987', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2194', '4', '987', NULL, '69', NULL, NULL, '4', '7.00', '28.00', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2195', '4', '987', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2196', '4', '987', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-18 00:45:09', '2026-03-18 00:45:09'),
('2197', '4', '988', NULL, '32', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-18 18:54:37', '2026-03-18 18:54:37'),
('2198', '4', '988', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-18 18:54:37', '2026-03-18 18:54:37'),
('2199', '4', '990', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-18 19:05:04', '2026-03-18 19:05:04'),
('2200', '4', '994', NULL, '9', NULL, NULL, '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-18 20:59:08', '2026-03-18 20:59:08'),
('2201', '4', '989', NULL, '81', NULL, NULL, '2', '9.00', '18.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2202', '4', '989', NULL, '28', NULL, NULL, '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2203', '4', '989', NULL, '35', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2204', '4', '989', NULL, '61', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2205', '4', '989', NULL, '7', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2206', '4', '989', NULL, '47', NULL, NULL, '5', '5.00', '25.00', NULL, NULL, NULL, '2026-03-18 21:22:59', '2026-03-18 21:22:59'),
('2207', '4', '995', NULL, '72', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-18 22:23:50', '2026-03-18 22:23:50'),
('2208', '4', '997', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-18 22:53:55', '2026-03-18 22:53:55'),
('2209', '4', '998', NULL, '31', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-18 23:11:45', '2026-03-18 23:11:45'),
('2210', '4', '998', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-18 23:11:46', '2026-03-18 23:11:46'),
('2211', '4', '991', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-18 23:29:08', '2026-03-18 23:29:08'),
('2212', '4', '991', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-18 23:29:08', '2026-03-18 23:29:08'),
('2213', '4', '991', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-18 23:29:08', '2026-03-18 23:29:08'),
('2214', '4', '996', NULL, '72', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 00:55:50', '2026-03-19 00:55:50'),
('2215', '4', '999', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 00:56:32', '2026-03-19 00:56:32'),
('2216', '4', '1000', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 00:58:23', '2026-03-19 00:58:23'),
('2217', '4', '993', NULL, '31', NULL, NULL, '14', '4.00', '56.00', NULL, NULL, NULL, '2026-03-19 01:36:05', '2026-03-19 01:36:05'),
('2218', '4', '992', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 01:36:31', '2026-03-19 01:36:31'),
('2219', '4', '992', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-19 01:36:31', '2026-03-19 01:36:31'),
('2220', '4', '992', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-19 01:36:31', '2026-03-19 01:36:31'),
('2221', '4', '1001', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 20:25:36', '2026-03-19 20:25:36'),
('2222', '4', '1003', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 20:50:42', '2026-03-19 20:50:42'),
('2223', '4', '1004', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 21:23:00', '2026-03-19 21:23:00'),
('2224', '4', '1004', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-19 21:23:00', '2026-03-19 21:23:00'),
('2225', '4', '1004', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 21:23:00', '2026-03-19 21:23:00'),
('2226', '4', '1005', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 21:46:18', '2026-03-19 21:46:18'),
('2227', '4', '1006', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-19 22:20:23', '2026-03-19 22:20:23'),
('2228', '4', '1002', NULL, '57', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2229', '4', '1002', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2230', '4', '1002', NULL, '26', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2231', '4', '1002', NULL, '57', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2232', '4', '1002', NULL, '6', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2233', '4', '1002', NULL, '57', NULL, NULL, '1', '8.00', '8.00', NULL, NULL, NULL, '2026-03-19 22:30:12', '2026-03-19 22:30:12'),
('2234', '4', '1007', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-19 23:24:16', '2026-03-19 23:24:16'),
('2235', '4', '1007', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-19 23:24:16', '2026-03-19 23:24:16'),
('2236', '4', '1007', NULL, '104', NULL, NULL, '5', '1.00', '5.00', NULL, NULL, NULL, '2026-03-19 23:24:16', '2026-03-19 23:24:16'),
('2237', '4', '1007', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-19 23:24:16', '2026-03-19 23:24:16'),
('2238', '4', '1007', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-19 23:24:16', '2026-03-19 23:24:16'),
('2239', '4', '1008', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 23:49:10', '2026-03-19 23:49:10'),
('2240', '4', '1008', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-19 23:49:10', '2026-03-19 23:49:10'),
('2241', '4', '1009', NULL, '31', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-19 23:56:24', '2026-03-19 23:56:24'),
('2242', '4', '1010', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-20 00:22:12', '2026-03-20 00:22:12'),
('2243', '4', '1011', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 18:35:59', '2026-03-20 18:35:59'),
('2244', '4', '1012', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 19:05:46', '2026-03-20 19:05:46'),
('2245', '4', '1012', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-20 19:05:46', '2026-03-20 19:05:46'),
('2246', '4', '1013', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 19:08:38', '2026-03-20 19:08:38'),
('2247', '4', '1013', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-20 19:08:38', '2026-03-20 19:08:38'),
('2248', '4', '1014', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 19:24:54', '2026-03-20 19:24:54'),
('2249', '4', '1014', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 19:24:54', '2026-03-20 19:24:54'),
('2250', '4', '1014', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 19:24:54', '2026-03-20 19:24:54'),
('2251', '4', '1014', NULL, '6', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-20 19:24:54', '2026-03-20 19:24:54'),
('2252', '4', '1014', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-20 19:24:54', '2026-03-20 19:24:54'),
('2253', '4', '1015', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 19:25:20', '2026-03-20 19:25:20'),
('2254', '4', '1015', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 19:25:20', '2026-03-20 19:25:20'),
('2255', '4', '1016', NULL, '104', NULL, '', '4', '1.00', '4.00', NULL, NULL, NULL, '2026-03-20 19:30:21', '2026-03-20 19:30:21'),
('2256', '4', '1017', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 19:30:55', '2026-03-20 19:30:55'),
('2257', '4', '1017', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 19:30:55', '2026-03-20 19:30:55'),
('2258', '4', '1018', NULL, '47', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-20 19:36:15', '2026-03-20 19:36:15'),
('2259', '4', '1018', NULL, '15', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-20 19:36:15', '2026-03-20 19:36:15'),
('2260', '4', '1018', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 19:36:15', '2026-03-20 19:36:15'),
('2261', '4', '1019', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 19:51:07', '2026-03-20 19:51:07'),
('2262', '4', '1019', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-20 19:51:07', '2026-03-20 19:51:07'),
('2263', '4', '1019', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 19:51:07', '2026-03-20 19:51:07'),
('2264', '4', '1020', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-20 20:01:57', '2026-03-20 20:01:57'),
('2265', '4', '1020', NULL, '44', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-03-20 20:01:57', '2026-03-20 20:01:57'),
('2266', '4', '1021', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 20:03:56', '2026-03-20 20:03:56'),
('2267', '4', '1022', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-20 20:05:24', '2026-03-20 20:05:24'),
('2268', '4', '1023', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 20:10:57', '2026-03-20 20:10:57'),
('2269', '4', '1024', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 20:11:50', '2026-03-20 20:11:50'),
('2270', '4', '1024', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-20 20:11:50', '2026-03-20 20:11:50'),
('2271', '4', '1025', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-20 20:16:03', '2026-03-20 20:16:03'),
('2272', '4', '1026', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 20:22:25', '2026-03-20 20:22:25'),
('2273', '4', '1027', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-20 20:33:01', '2026-03-20 20:33:01'),
('2274', '4', '1027', NULL, '6', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 20:33:01', '2026-03-20 20:33:01'),
('2275', '4', '1028', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 20:36:38', '2026-03-20 20:36:38'),
('2276', '4', '1029', NULL, '67', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-20 20:37:16', '2026-03-20 20:37:16'),
('2277', '4', '1029', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 20:37:16', '2026-03-20 20:37:16'),
('2278', '4', '1030', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 20:48:37', '2026-03-20 20:48:37'),
('2279', '4', '1031', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 20:56:36', '2026-03-20 20:56:36'),
('2280', '4', '1032', NULL, '6', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-20 21:14:39', '2026-03-20 21:14:39'),
('2281', '4', '1032', NULL, '28', NULL, '', '1', '17.00', '17.00', NULL, NULL, NULL, '2026-03-20 21:14:39', '2026-03-20 21:14:39'),
('2282', '4', '1032', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-20 21:14:39', '2026-03-20 21:14:39'),
('2283', '4', '1033', NULL, '43', NULL, '', '5', '3.00', '15.00', NULL, NULL, NULL, '2026-03-20 21:17:24', '2026-03-20 21:17:24'),
('2284', '4', '1034', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 21:17:55', '2026-03-20 21:17:55'),
('2285', '4', '1034', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 21:17:55', '2026-03-20 21:17:55'),
('2286', '4', '1035', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 21:20:51', '2026-03-20 21:20:51'),
('2287', '4', '1036', NULL, '10', NULL, '', '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-20 21:40:54', '2026-03-20 21:40:54'),
('2288', '4', '1037', NULL, '47', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 21:42:32', '2026-03-20 21:42:32'),
('2289', '4', '1037', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-20 21:42:32', '2026-03-20 21:42:32'),
('2290', '4', '1038', NULL, '20', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-20 21:55:42', '2026-03-20 21:55:42'),
('2291', '4', '1039', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 21:56:13', '2026-03-20 21:56:13'),
('2292', '4', '1040', NULL, '44', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-20 22:17:37', '2026-03-20 22:17:37'),
('2293', '4', '1041', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 22:40:48', '2026-03-20 22:40:48'),
('2294', '4', '1042', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-20 23:23:12', '2026-03-20 23:23:12'),
('2295', '4', '1043', NULL, '62', NULL, '', '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-20 23:41:43', '2026-03-20 23:41:43'),
('2296', '4', '1043', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-20 23:41:43', '2026-03-20 23:41:43'),
('2297', '4', '1044', NULL, '12', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2026-03-21 00:00:10', '2026-03-21 00:00:10'),
('2298', '4', '1045', NULL, '46', NULL, '', '1', '20.00', '20.00', NULL, NULL, NULL, '2026-03-21 00:10:24', '2026-03-21 00:10:24'),
('2299', '4', '1046', NULL, '62', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-21 18:44:14', '2026-03-21 18:44:14'),
('2300', '4', '1048', NULL, '9', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-21 22:04:23', '2026-03-21 22:04:23'),
('2301', '4', '1048', NULL, '25', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-21 22:04:23', '2026-03-21 22:04:23'),
('2302', '4', '1050', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-21 22:53:00', '2026-03-21 22:53:00'),
('2303', '4', '1051', NULL, '72', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-21 22:56:44', '2026-03-21 22:56:44'),
('2304', '4', '1047', NULL, '30', NULL, NULL, '10', '4.00', '40.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2305', '4', '1047', NULL, '29', NULL, NULL, '1', '19.00', '19.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2306', '4', '1047', NULL, '25', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2307', '4', '1047', NULL, '6', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2308', '4', '1047', NULL, '6', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2309', '4', '1047', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2310', '4', '1047', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2311', '4', '1047', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2312', '4', '1047', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2313', '4', '1047', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:12:23', '2026-03-21 23:12:23'),
('2314', '4', '1052', NULL, '62', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-21 23:14:14', '2026-03-21 23:14:14'),
('2315', '4', '1052', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:14:14', '2026-03-21 23:14:14'),
('2316', '4', '1052', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-21 23:14:14', '2026-03-21 23:14:14'),
('2317', '4', '1056', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:32:25', '2026-03-21 23:32:25'),
('2318', '4', '1056', NULL, '7', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-21 23:32:25', '2026-03-21 23:32:25'),
('2319', '4', '1057', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-21 23:51:36', '2026-03-21 23:51:36'),
('2320', '4', '1057', NULL, '62', NULL, '', '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-21 23:51:36', '2026-03-21 23:51:36'),
('2321', '4', '1049', NULL, '69', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2322', '4', '1049', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2323', '4', '1049', NULL, '64', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2324', '4', '1049', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2325', '4', '1049', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2326', '4', '1049', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-21 23:53:03', '2026-03-21 23:53:03'),
('2327', '4', '1059', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-22 00:07:24', '2026-03-22 00:07:24'),
('2328', '4', '1055', NULL, '16', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-22 00:13:06', '2026-03-22 00:13:06'),
('2329', '4', '1055', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-22 00:13:06', '2026-03-22 00:13:06'),
('2330', '4', '1053', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2331', '4', '1053', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2332', '4', '1053', NULL, '104', NULL, NULL, '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2333', '4', '1053', NULL, '16', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2334', '4', '1053', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2335', '4', '1053', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-22 00:40:08', '2026-03-22 00:40:08'),
('2336', '4', '1061', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-22 00:50:16', '2026-03-22 00:50:16'),
('2337', '4', '1060', NULL, '69', NULL, NULL, '2', '7.00', '14.00', NULL, NULL, NULL, '2026-03-22 00:59:47', '2026-03-22 00:59:47'),
('2338', '4', '1060', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-22 00:59:47', '2026-03-22 00:59:47'),
('2339', '4', '1054', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-22 01:26:47', '2026-03-22 01:26:47'),
('2340', '4', '1054', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-22 01:26:47', '2026-03-22 01:26:47'),
('2341', '4', '1058', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-22 01:27:16', '2026-03-22 01:27:16'),
('2342', '4', '1058', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-22 01:27:16', '2026-03-22 01:27:16'),
('2343', '4', '1058', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-22 01:27:16', '2026-03-22 01:27:16'),
('2344', '4', '1062', NULL, '69', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2026-03-22 01:28:21', '2026-03-22 01:28:21'),
('2345', '4', '1062', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-22 01:28:21', '2026-03-22 01:28:21'),
('2346', '4', '1062', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-22 01:28:21', '2026-03-22 01:28:21'),
('2347', '4', '1064', NULL, '29', NULL, '', '1', '19.00', '19.00', NULL, NULL, NULL, '2026-03-22 22:08:12', '2026-03-22 22:08:12'),
('2348', '4', '1063', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-22 22:13:24', '2026-03-22 22:13:24'),
('2349', '4', '1063', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-22 22:13:24', '2026-03-22 22:13:24'),
('2350', '4', '1063', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-22 22:13:24', '2026-03-22 22:13:24'),
('2351', '4', '1071', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-22 23:06:41', '2026-03-22 23:06:41'),
('2352', '4', '1072', NULL, '107', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-22 23:28:09', '2026-03-22 23:28:09'),
('2353', '4', '1073', NULL, '107', NULL, '', '3', '3.00', '9.00', NULL, NULL, NULL, '2026-03-22 23:40:21', '2026-03-22 23:40:21'),
('2354', '4', '1074', NULL, '107', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-22 23:46:02', '2026-03-22 23:46:02'),
('2355', '4', '1075', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-22 23:46:49', '2026-03-22 23:46:49'),
('2356', '4', '1069', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-22 23:56:33', '2026-03-22 23:56:33'),
('2357', '4', '1070', NULL, '12', NULL, NULL, '2', '6.00', '12.00', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2358', '4', '1070', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2359', '4', '1070', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2360', '4', '1070', NULL, '44', NULL, NULL, '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2361', '4', '1070', NULL, '43', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2362', '4', '1070', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-23 00:19:59', '2026-03-23 00:19:59'),
('2363', '4', '1070', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-23 00:20:00', '2026-03-23 00:20:00'),
('2364', '4', '1076', NULL, '107', NULL, '', '6', '3.00', '18.00', NULL, NULL, NULL, '2026-03-23 00:45:05', '2026-03-23 00:45:05'),
('2365', '4', '1077', NULL, '44', NULL, '', '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-23 01:22:48', '2026-03-23 01:22:48'),
('2366', '4', '1066', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2367', '4', '1066', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2368', '4', '1066', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2369', '4', '1066', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2370', '4', '1066', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2371', '4', '1066', NULL, '44', NULL, NULL, '5', '3.00', '15.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2372', '4', '1066', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2373', '4', '1066', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2374', '4', '1066', NULL, '44', NULL, NULL, '6', '3.00', '18.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2375', '4', '1066', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2376', '4', '1066', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:02:44', '2026-03-23 02:02:44'),
('2377', '4', '1068', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:05:28', '2026-03-23 02:05:28'),
('2378', '4', '1068', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-23 02:05:28', '2026-03-23 02:05:28'),
('2379', '4', '1068', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:05:28', '2026-03-23 02:05:28'),
('2380', '4', '1068', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:05:28', '2026-03-23 02:05:28'),
('2381', '4', '1067', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2382', '4', '1067', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2383', '4', '1067', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2384', '4', '1067', NULL, '107', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2385', '4', '1067', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2386', '4', '1067', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2387', '4', '1067', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-23 02:05:50', '2026-03-23 02:05:50'),
('2388', '4', '1065', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2389', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2390', '4', '1065', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2391', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2392', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2393', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2394', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2395', '4', '1065', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2396', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2397', '4', '1065', NULL, '40', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-23 02:11:24', '2026-03-23 02:11:24'),
('2398', '4', '1079', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2399', '4', '1079', NULL, '12', NULL, NULL, '3', '6.00', '18.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2400', '4', '1079', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2401', '4', '1079', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2402', '4', '1079', NULL, '26', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2403', '4', '1079', NULL, '45', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2404', '4', '1079', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-24 18:24:15', '2026-03-24 18:24:15'),
('2405', '4', '1080', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-24 20:02:48', '2026-03-24 20:02:48'),
('2406', '4', '1080', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-24 20:02:48', '2026-03-24 20:02:48'),
('2407', '4', '1082', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-24 20:06:28', '2026-03-24 20:06:28'),
('2408', '4', '1083', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-24 21:26:48', '2026-03-24 21:26:48'),
('2409', '4', '1083', NULL, '4', NULL, '', '2', '2.50', '5.00', NULL, NULL, NULL, '2026-03-24 21:26:48', '2026-03-24 21:26:48'),
('2410', '4', '1085', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-24 22:33:23', '2026-03-24 22:33:23'),
('2411', '4', '1086', NULL, '44', NULL, '', '7', '3.00', '21.00', NULL, NULL, NULL, '2026-03-24 22:37:49', '2026-03-24 22:37:49'),
('2412', '4', '1087', NULL, '12', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2026-03-24 22:53:19', '2026-03-24 22:53:19'),
('2413', '4', '1088', NULL, '104', NULL, '', '3', '1.00', '3.00', NULL, NULL, NULL, '2026-03-24 22:58:21', '2026-03-24 22:58:21'),
('2414', '4', '1090', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-24 23:18:05', '2026-03-24 23:18:05'),
('2415', '4', '1090', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-24 23:18:05', '2026-03-24 23:18:05'),
('2416', '4', '1091', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-24 23:36:00', '2026-03-24 23:36:00'),
('2417', '4', '1092', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-24 23:39:44', '2026-03-24 23:39:44'),
('2418', '4', '1093', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-24 23:46:31', '2026-03-24 23:46:31'),
('2419', '4', '1084', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 00:03:43', '2026-03-25 00:03:43'),
('2420', '4', '1098', NULL, '12', NULL, '', '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-25 00:20:33', '2026-03-25 00:20:33'),
('2421', '4', '1099', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 00:23:55', '2026-03-25 00:23:55'),
('2422', '4', '1097', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 00:30:43', '2026-03-25 00:30:43'),
('2423', '4', '1097', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 00:30:43', '2026-03-25 00:30:43'),
('2424', '4', '1096', NULL, '32', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2425', '4', '1096', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2426', '4', '1096', NULL, '31', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2427', '4', '1096', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2428', '4', '1096', NULL, '23', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2429', '4', '1096', NULL, '48', NULL, NULL, '2', '3.50', '7.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2430', '4', '1096', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2431', '4', '1096', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2432', '4', '1096', NULL, '44', NULL, NULL, '8', '3.00', '24.00', NULL, NULL, NULL, '2026-03-25 00:39:09', '2026-03-25 00:39:09'),
('2433', '4', '1102', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-25 00:55:02', '2026-03-25 00:55:02'),
('2434', '4', '1101', NULL, '44', NULL, NULL, '7', '3.00', '21.00', NULL, NULL, NULL, '2026-03-25 00:56:59', '2026-03-25 00:56:59'),
('2435', '4', '1103', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 01:04:12', '2026-03-25 01:04:12'),
('2436', '4', '1104', NULL, '10', NULL, '', '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-25 01:11:10', '2026-03-25 01:11:10'),
('2437', '4', '1105', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 01:11:51', '2026-03-25 01:11:51'),
('2438', '4', '1095', NULL, '30', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 01:17:13', '2026-03-25 01:17:13'),
('2439', '4', '1100', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 01:21:45', '2026-03-25 01:21:45'),
('2440', '4', '1100', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-25 01:21:45', '2026-03-25 01:21:45'),
('2441', '4', '1106', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 01:29:49', '2026-03-25 01:29:49'),
('2442', '4', '1094', NULL, '13', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 01:33:00', '2026-03-25 01:33:00'),
('2443', '4', '1107', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 01:34:55', '2026-03-25 01:34:55'),
('2444', '4', '1089', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-25 01:35:43', '2026-03-25 01:35:43'),
('2445', '4', '1108', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 01:42:43', '2026-03-25 01:42:43'),
('2446', '4', '1109', NULL, '104', NULL, '', '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 01:45:55', '2026-03-25 01:45:55'),
('2447', '4', '1110', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 01:55:35', '2026-03-25 01:55:35'),
('2448', '4', '1111', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 02:20:48', '2026-03-25 02:20:48'),
('2449', '4', '1111', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-25 02:20:48', '2026-03-25 02:20:48'),
('2450', '4', '1112', NULL, '4', NULL, '', '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-25 02:22:27', '2026-03-25 02:22:27'),
('2451', '4', '1113', NULL, '11', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2452', '4', '1113', NULL, '13', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2453', '4', '1113', NULL, '15', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2454', '4', '1113', NULL, '17', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2455', '4', '1113', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2456', '4', '1113', NULL, '47', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2026-03-25 19:37:01', '2026-03-25 19:37:01'),
('2457', '4', '1115', NULL, '16', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 19:58:53', '2026-03-25 19:58:53'),
('2458', '4', '1116', NULL, '23', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 20:37:42', '2026-03-25 20:37:42'),
('2459', '4', '1116', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-25 20:37:42', '2026-03-25 20:37:42'),
('2460', '4', '1114', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-25 21:04:46', '2026-03-25 21:04:46'),
('2461', '4', '1114', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 21:04:46', '2026-03-25 21:04:46'),
('2462', '4', '1114', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 21:04:46', '2026-03-25 21:04:46'),
('2463', '4', '1117', NULL, '44', NULL, '', '4', '3.00', '12.00', NULL, NULL, NULL, '2026-03-25 21:35:06', '2026-03-25 21:35:06'),
('2464', '4', '1119', NULL, '9', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 22:28:33', '2026-03-25 22:28:33'),
('2465', '4', '1121', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-25 23:31:51', '2026-03-25 23:31:51'),
('2466', '4', '1122', NULL, '5', NULL, '', '3', '2.00', '6.00', NULL, NULL, NULL, '2026-03-25 23:44:14', '2026-03-25 23:44:14'),
('2467', '4', '1118', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-25 23:45:53', '2026-03-25 23:45:53'),
('2468', '4', '1118', NULL, '5', NULL, NULL, '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-25 23:45:53', '2026-03-25 23:45:53'),
('2469', '4', '1118', NULL, '104', NULL, NULL, '1', '1.00', '1.00', NULL, NULL, NULL, '2026-03-25 23:45:53', '2026-03-25 23:45:53'),
('2470', '4', '1120', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 00:43:30', '2026-03-26 00:43:30'),
('2471', '4', '1126', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 21:27:08', '2026-03-26 21:27:08'),
('2472', '4', '1127', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 21:27:40', '2026-03-26 21:27:40'),
('2473', '4', '1128', NULL, '5', NULL, '', '1', '2.00', '2.00', NULL, NULL, NULL, '2026-03-26 21:28:09', '2026-03-26 21:28:09'),
('2474', '4', '1123', NULL, '30', NULL, NULL, '4', '4.00', '16.00', NULL, NULL, NULL, '2026-03-26 21:45:12', '2026-03-26 21:45:12'),
('2475', '4', '1123', NULL, '5', NULL, NULL, '2', '2.00', '4.00', NULL, NULL, NULL, '2026-03-26 21:45:12', '2026-03-26 21:45:12'),
('2476', '4', '1123', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-26 21:45:12', '2026-03-26 21:45:12'),
('2477', '4', '1124', NULL, '9', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-26 22:03:58', '2026-03-26 22:03:58'),
('2478', '4', '1125', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 23:01:18', '2026-03-26 23:01:18'),
('2479', '4', '1125', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 23:01:18', '2026-03-26 23:01:18'),
('2480', '4', '1132', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-26 23:32:05', '2026-03-26 23:32:05'),
('2481', '4', '1131', NULL, '93', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-26 23:43:06', '2026-03-26 23:43:06'),
('2482', '4', '1131', NULL, '15', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-26 23:43:06', '2026-03-26 23:43:06'),
('2483', '4', '1129', NULL, '10', NULL, NULL, '1', '3.50', '3.50', NULL, NULL, NULL, '2026-03-26 23:55:57', '2026-03-26 23:55:57'),
('2484', '4', '1133', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-27 00:09:26', '2026-03-27 00:09:26'),
('2485', '4', '1134', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-27 00:17:19', '2026-03-27 00:17:19'),
('2486', '4', '1135', NULL, '104', NULL, '', '2', '1.00', '2.00', NULL, NULL, NULL, '2026-03-27 00:18:56', '2026-03-27 00:18:56'),
('2487', '4', '1130', NULL, '93', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-27 00:49:16', '2026-03-27 00:49:16'),
('2488', '4', '1136', NULL, '76', NULL, NULL, '1', '9.00', '9.00', NULL, NULL, NULL, '2026-03-27 01:01:21', '2026-03-27 01:01:21'),
('2489', '4', '1136', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 01:01:21', '2026-03-27 01:01:21'),
('2490', '4', '1137', NULL, '44', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-27 01:03:12', '2026-03-27 01:03:12'),
('2491', '4', '1138', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 01:04:45', '2026-03-27 01:04:45'),
('2492', '4', '1139', NULL, '93', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-27 01:08:24', '2026-03-27 01:08:24'),
('2493', '4', '1142', NULL, '3', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 21:04:24', '2026-03-27 21:04:24'),
('2494', '4', '1142', NULL, '61', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-27 21:04:24', '2026-03-27 21:04:24'),
('2495', '4', '1141', NULL, '62', NULL, NULL, '3', '5.00', '15.00', NULL, NULL, NULL, '2026-03-27 21:59:33', '2026-03-27 21:59:33'),
('2496', '4', '1141', NULL, '2', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-27 21:59:33', '2026-03-27 21:59:33'),
('2497', '4', '1141', NULL, '26', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-27 21:59:33', '2026-03-27 21:59:33'),
('2498', '4', '1141', NULL, '107', NULL, NULL, '2', '3.00', '6.00', NULL, NULL, NULL, '2026-03-27 21:59:33', '2026-03-27 21:59:33'),
('2499', '4', '1143', NULL, '67', NULL, NULL, '4', '5.00', '20.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2500', '4', '1143', NULL, '3', NULL, NULL, '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2501', '4', '1143', NULL, '9', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2502', '4', '1143', NULL, '13', NULL, NULL, '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2503', '4', '1143', NULL, '67', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2504', '4', '1143', NULL, '67', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2505', '4', '1143', NULL, '67', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-27 23:36:48', '2026-03-27 23:36:48'),
('2506', '4', '1140', NULL, '66', NULL, NULL, '1', '7.00', '7.00', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2507', '4', '1140', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2508', '4', '1140', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2509', '4', '1140', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2510', '4', '1140', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2511', '4', '1140', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:37:43', '2026-03-27 23:37:43'),
('2512', '4', '1144', NULL, '107', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-27 23:38:47', '2026-03-27 23:38:47'),
('2513', '4', '1144', NULL, '62', NULL, NULL, '1', '5.00', '5.00', NULL, NULL, NULL, '2026-03-27 23:38:47', '2026-03-27 23:38:47'),
('2514', '4', '1144', NULL, '107', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-27 23:38:47', '2026-03-27 23:38:47'),
('2515', '4', '1144', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:38:47', '2026-03-27 23:38:47'),
('2516', '4', '1144', NULL, '107', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-27 23:38:47', '2026-03-27 23:38:47'),
('2517', '4', '1145', NULL, '107', NULL, NULL, '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-27 23:41:04', '2026-03-27 23:41:04'),
('2518', '4', '1145', NULL, '2', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:41:04', '2026-03-27 23:41:04'),
('2519', '4', '1145', NULL, '3', NULL, NULL, '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-27 23:41:04', '2026-03-27 23:41:04'),
('2520', '4', '1145', NULL, '62', NULL, NULL, '2', '5.00', '10.00', NULL, NULL, NULL, '2026-03-27 23:41:04', '2026-03-27 23:41:04'),
('2521', '4', '1147', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-27 23:55:42', '2026-03-27 23:55:42'),
('2522', '4', '1148', NULL, '12', NULL, '', '2', '6.00', '12.00', NULL, NULL, NULL, '2026-03-28 00:11:42', '2026-03-28 00:11:42'),
('2523', '4', '1149', NULL, '3', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-28 00:13:32', '2026-03-28 00:13:32'),
('2524', '4', '1149', NULL, '62', NULL, '', '3', '5.00', '15.00', NULL, NULL, NULL, '2026-03-28 00:13:32', '2026-03-28 00:13:32'),
('2525', '4', '1146', NULL, '31', NULL, NULL, '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-28 00:19:33', '2026-03-28 00:19:33'),
('2526', '4', '1146', NULL, '2', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-03-28 00:19:33', '2026-03-28 00:19:33'),
('2527', '4', '1146', NULL, '2', NULL, NULL, '3', '1.50', '4.50', NULL, NULL, NULL, '2026-03-28 00:19:33', '2026-03-28 00:19:33'),
('2528', '4', '1146', NULL, '4', NULL, NULL, '1', '2.50', '2.50', NULL, NULL, NULL, '2026-03-28 00:19:33', '2026-03-28 00:19:33'),
('2529', '4', '1150', NULL, '12', NULL, NULL, '1', '6.00', '6.00', NULL, NULL, NULL, '2026-03-28 00:53:41', '2026-03-28 00:53:41'),
('2530', '4', '1151', NULL, '31', NULL, '', '2', '4.00', '8.00', NULL, NULL, NULL, '2026-03-28 01:01:19', '2026-03-28 01:01:19'),
('2531', '4', '1152', NULL, '2', NULL, '', '2', '1.50', '3.00', NULL, NULL, NULL, '2026-03-28 01:28:16', '2026-03-28 01:28:16'),
('2532', '4', '1153', NULL, '13', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-28 01:30:54', '2026-03-28 01:30:54'),
('2533', '4', '1153', NULL, '11', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-28 01:30:54', '2026-03-28 01:30:54'),
('2534', '4', '1154', NULL, '30', NULL, '', '1', '4.00', '4.00', NULL, NULL, NULL, '2026-03-28 01:34:47', '2026-03-28 01:34:47'),
('2535', '4', '1155', NULL, '2', NULL, '', '1', '1.50', '1.50', NULL, NULL, NULL, '2026-03-28 01:39:48', '2026-03-28 01:39:48'),
('2536', '4', '1156', NULL, '107', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-28 01:49:12', '2026-03-28 01:49:12'),
('2537', '4', '1157', NULL, '107', NULL, '', '1', '3.00', '3.00', NULL, NULL, NULL, '2026-03-28 02:03:26', '2026-03-28 02:03:26');


-- Table structure for table `order_number_settings`
DROP TABLE IF EXISTS `order_number_settings`;
CREATE TABLE `order_number_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `enable_feature` tinyint(1) NOT NULL DEFAULT '0',
  `prefix` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ORD',
  `digits` tinyint unsigned NOT NULL DEFAULT '3',
  `separator` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-',
  `include_date` tinyint(1) NOT NULL DEFAULT '0',
  `show_year` tinyint(1) NOT NULL DEFAULT '0',
  `show_month` tinyint(1) NOT NULL DEFAULT '0',
  `show_day` tinyint(1) NOT NULL DEFAULT '0',
  `show_time` tinyint(1) NOT NULL DEFAULT '0',
  `reset_daily` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_number_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_number_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `order_places`
DROP TABLE IF EXISTS `order_places`;
CREATE TABLE `order_places` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_places_branch_id_foreign` (`branch_id`),
  KEY `order_places_printer_id_foreign` (`printer_id`),
  CONSTRAINT `order_places_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_places_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_places`
INSERT INTO `order_places` VALUES
('1', NULL, '1', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', NULL, '2', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '3', '3', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-11-27 01:20:35', '2025-12-28 10:10:17'),
('4', '4', '4', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-11-27 10:17:22', '2025-12-29 20:25:12'),
('5', '5', '5', 'Default POS Terminal', 'vegetarian', '1', '1', '2025-12-01 11:34:16', '2025-12-27 15:56:53');


-- Table structure for table `order_taxes`
DROP TABLE IF EXISTS `order_taxes`;
CREATE TABLE `order_taxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `tax_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `order_taxes_order_id_foreign` (`order_id`),
  KEY `order_taxes_tax_id_foreign` (`tax_id`),
  CONSTRAINT `order_taxes_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_taxes_tax_id_foreign` FOREIGN KEY (`tax_id`) REFERENCES `taxes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_taxes`
INSERT INTO `order_taxes` VALUES
('1', '380', '1'),
('2', '380', '2');


-- Table structure for table `order_types`
DROP TABLE IF EXISTS `order_types`;
CREATE TABLE `order_types` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `order_type_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `enable_token_number` tinyint(1) NOT NULL DEFAULT '0',
  `enable_from_customer_site` tinyint(1) NOT NULL DEFAULT '1',
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_types_branch_id_foreign` (`branch_id`),
  CONSTRAINT `order_types_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `order_types`
INSERT INTO `order_types` VALUES
('1', '1', 'Dine In', 'dine_in', '1', '1', '0', '1', 'dine_in', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'Delivery', 'delivery', '1', '1', '0', '1', 'delivery', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '1', 'Pickup', 'pickup', '1', '1', '0', '1', 'pickup', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '2', 'Dine In', 'dine_in', '1', '1', '0', '1', 'dine_in', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', '2', 'Delivery', 'delivery', '1', '1', '0', '1', 'delivery', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('6', '2', 'Pickup', 'pickup', '1', '1', '0', '1', 'pickup', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('7', '3', 'Dine In', 'dine_in', '1', '1', '0', '1', 'dine_in', '2025-11-27 01:20:35', '2025-12-19 21:15:23'),
('8', '3', 'Delivery', 'delivery', '0', '1', '0', '0', 'delivery', '2025-11-27 01:20:35', '2025-12-19 21:15:23'),
('9', '3', 'Pickup', 'pickup', '0', '1', '0', '0', 'pickup', '2025-11-27 01:20:35', '2025-12-19 21:15:23'),
('10', '4', 'Dine In', 'dine_in', '1', '1', '0', '1', 'dine_in', '2025-11-27 10:17:22', '2025-12-29 20:23:12'),
('11', '4', 'Delivery', 'delivery', '0', '1', '0', '0', 'delivery', '2025-11-27 10:17:22', '2025-12-29 20:23:12'),
('12', '4', 'Pickup', 'pickup', '0', '1', '0', '0', 'pickup', '2025-11-27 10:17:22', '2025-12-29 20:23:12'),
('13', '5', 'Dine In', 'dine_in', '1', '1', '0', '1', 'dine_in', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('14', '5', 'Delivery', 'delivery', '1', '1', '0', '1', 'delivery', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('15', '5', 'Pickup', 'pickup', '1', '1', '0', '1', 'pickup', '2025-12-01 11:34:16', '2025-12-01 11:34:16');


-- Table structure for table `orders`
DROP TABLE IF EXISTS `orders`;
CREATE TABLE `orders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `pos_machine_id` bigint unsigned DEFAULT NULL,
  `order_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `formatted_order_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_time` datetime NOT NULL,
  `table_id` bigint unsigned DEFAULT NULL,
  `customer_id` bigint unsigned DEFAULT NULL,
  `number_of_pax` int DEFAULT NULL,
  `waiter_id` bigint unsigned DEFAULT NULL,
  `added_by` bigint unsigned DEFAULT NULL,
  `cancelled_by` bigint unsigned DEFAULT NULL,
  `status` enum('draft','kot','billed','paid','canceled','payment_due','ready','out_for_delivery','delivered','pending_verification') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'kot',
  `placed_via` enum('pos','shop','kiosk') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_total` decimal(16,2) NOT NULL,
  `tip_amount` decimal(16,2) DEFAULT '0.00',
  `total_tax_amount` decimal(16,2) DEFAULT '0.00',
  `tax_mode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tip_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `total` decimal(16,2) NOT NULL,
  `amount_paid` decimal(16,2) NOT NULL DEFAULT '0.00',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `order_type_id` bigint unsigned DEFAULT NULL,
  `delivery_app_id` bigint unsigned DEFAULT NULL,
  `custom_order_type_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pickup_date` datetime DEFAULT NULL,
  `delivery_executive_id` bigint unsigned DEFAULT NULL,
  `delivery_address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `delivery_time` datetime DEFAULT NULL,
  `estimated_delivery_time` datetime DEFAULT NULL,
  `split_type` enum('even','custom','items') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `discount_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `discount_value` decimal(16,2) DEFAULT NULL,
  `discount_amount` decimal(16,2) DEFAULT NULL,
  `order_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'placed',
  `delivery_fee` decimal(8,2) NOT NULL DEFAULT '0.00',
  `customer_lat` decimal(10,7) DEFAULT NULL,
  `customer_lng` decimal(10,7) DEFAULT NULL,
  `is_within_radius` tinyint(1) NOT NULL DEFAULT '0',
  `delivery_started_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `estimated_eta_min` int DEFAULT NULL,
  `estimated_eta_max` int DEFAULT NULL,
  `cancel_reason_id` bigint unsigned DEFAULT NULL,
  `cancel_reason_text` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reservation_id` bigint unsigned DEFAULT NULL,
  `kiosk_id` bigint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `orders_uuid_unique` (`uuid`),
  KEY `orders_table_id_foreign` (`table_id`),
  KEY `orders_customer_id_foreign` (`customer_id`),
  KEY `orders_delivery_executive_id_foreign` (`delivery_executive_id`),
  KEY `orders_waiter_id_foreign` (`waiter_id`),
  KEY `orders_cancel_reason_id_foreign` (`cancel_reason_id`),
  KEY `idx_branch_date` (`branch_id`,`date_time`),
  KEY `orders_order_type_id_foreign` (`order_type_id`),
  KEY `orders_reservation_id_foreign` (`reservation_id`),
  KEY `orders_delivery_app_id_foreign` (`delivery_app_id`),
  KEY `orders_added_by_foreign` (`added_by`),
  KEY `orders_cancelled_by_foreign` (`cancelled_by`),
  KEY `orders_pos_machine_id_index` (`pos_machine_id`),
  KEY `orders_kiosk_id_foreign` (`kiosk_id`),
  CONSTRAINT `orders_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `orders_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_cancel_reason_id_foreign` FOREIGN KEY (`cancel_reason_id`) REFERENCES `kot_cancel_reasons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_cancelled_by_foreign` FOREIGN KEY (`cancelled_by`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `orders_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `orders_delivery_app_id_foreign` FOREIGN KEY (`delivery_app_id`) REFERENCES `delivery_platforms` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_delivery_executive_id_foreign` FOREIGN KEY (`delivery_executive_id`) REFERENCES `delivery_executives` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_kiosk_id_foreign` FOREIGN KEY (`kiosk_id`) REFERENCES `kiosks` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_order_type_id_foreign` FOREIGN KEY (`order_type_id`) REFERENCES `order_types` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_pos_machine_id_foreign` FOREIGN KEY (`pos_machine_id`) REFERENCES `pos_machines` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_reservation_id_foreign` FOREIGN KEY (`reservation_id`) REFERENCES `reservations` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `orders_waiter_id_foreign` FOREIGN KEY (`waiter_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `orders`
INSERT INTO `orders` VALUES
('1', 'cd47daea-8ea1-4ac3-b1b9-a8e0617d456b', '3', NULL, '1', NULL, '2025-11-30 08:50:45', '1', NULL, '1', '4', '4', '4', 'canceled', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-11-27 05:35:38', '2025-12-03 09:41:17', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cancelled', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL),
('2', '4d1ab999-357a-4f58-be18-7c1d26b31ecc', '3', NULL, '2', NULL, '2025-11-27 20:06:45', NULL, NULL, NULL, NULL, '4', NULL, 'paid', 'shop', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-11-27 10:10:27', '2025-11-27 20:07:07', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('3', 'afa14580-04aa-4ec7-b50f-42519ccb387b', '4', '4', '1', NULL, '2025-11-27 16:09:10', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-11-27 16:09:10', '2025-11-27 16:09:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('4', '56825164-74b2-4ea9-b7bd-99c6767f1a94', '4', '4', '2', NULL, '2025-11-27 16:30:13', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-11-27 16:30:13', '2025-11-27 16:30:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('5', '955a8dba-a50d-44d5-b5e5-178a18e1fe1d', '4', '4', '3', NULL, '2025-12-02 18:23:26', '2', NULL, '16', '6', NULL, NULL, 'paid', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2025-11-27 18:22:00', '2025-12-02 18:23:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('6', '564b21dc-7e69-4c38-9b5d-e697fce84a6d', '4', '4', '4', NULL, '2025-11-27 18:51:10', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-11-27 18:51:10', '2025-11-27 18:51:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('7', '3cb24501-35b8-49f9-a214-ec42f3f11e66', '4', '4', '5', NULL, '2025-11-27 18:53:31', '3', NULL, '1', '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-11-27 18:53:31', '2025-12-02 18:22:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('8', '6cf752f1-3a89-4d68-8878-e3110ee9986c', '3', '1', '3', NULL, '2025-11-27 20:05:40', '10', NULL, '1', '4', '4', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-11-27 20:05:40', '2025-12-03 09:22:03', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'preparing', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('9', '0a9bcdf5-ec7c-4317-8eba-cb4de723e6e7', '3', NULL, '4', NULL, '2025-12-19 21:09:04', NULL, NULL, '1', '4', '4', NULL, 'billed', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '0.00', '2025-11-27 20:25:19', '2025-12-19 21:09:04', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('10', '56fb865a-5f7a-4e47-ba50-8992333593d0', '4', '4', '6', NULL, '2025-11-27 23:50:35', '4', NULL, '1', '6', '6', NULL, 'paid', 'pos', '1120.00', '0.00', '0.00', 'order', NULL, '1120.00', '1120.00', '2025-11-27 23:50:35', '2025-12-02 18:21:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('11', '49f8312b-1eff-45e1-bcfe-14db4debc8cf', '4', '4', '7', NULL, '2025-11-28 20:37:48', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-11-28 20:37:48', '2025-11-28 20:38:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('12', 'ad5ea939-1581-4753-85e7-9fd4f3daab25', '4', '4', '8', NULL, '2025-11-28 23:06:40', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '32.00', '0.00', '0.00', 'order', NULL, '32.00', '32.00', '2025-11-28 23:06:40', '2025-11-28 23:14:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('13', '2efece6c-3b3a-4842-a694-9ac5a2018fbc', '4', '4', '9', NULL, '2025-11-29 00:25:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-11-29 00:25:39', '2025-11-29 00:25:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('14', '25da9ec4-0c6a-4b43-98fe-aa963696bd6c', '4', '4', '10', NULL, '2025-11-29 04:12:33', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '97.00', '0.00', '0.00', 'order', NULL, '97.00', '97.00', '2025-11-29 04:12:33', '2025-11-29 04:12:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('15', '8e86ecfd-725c-470a-948c-c4ab29d7b1cb', '4', '4', '11', NULL, '2025-11-29 22:32:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2025-11-29 22:32:26', '2025-11-29 22:32:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('16', 'bcf4597d-81ac-4839-af6d-7c49285dc369', '4', '4', '12', NULL, '2025-11-29 22:37:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-11-29 22:37:35', '2025-11-29 22:37:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('17', '0b8d7e12-8463-4f5a-a8a0-1f3941e5afe8', '4', '4', '13', NULL, '2025-11-29 22:40:28', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-11-29 22:40:28', '2025-11-29 22:40:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('18', '9afc21bd-f2e8-437e-9fd4-2d8478da6381', '4', '4', '14', NULL, '2025-11-29 22:58:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-11-29 22:58:35', '2025-11-29 22:59:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('19', 'b7827754-a4ba-4c12-9009-732f9e690d57', '4', '4', '15', NULL, '2025-11-29 23:08:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '39.00', '0.00', '0.00', 'order', NULL, '39.00', '39.00', '2025-11-29 23:08:34', '2025-11-29 23:08:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('20', 'dcfa991d-d65d-4fcc-afec-5de5185211a4', '4', '4', '16', NULL, '2025-11-30 00:18:17', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '35.00', '0.00', '0.00', 'order', NULL, '35.00', '35.00', '2025-11-30 00:18:17', '2025-11-30 00:18:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('21', '76c1c218-b27b-4e42-9936-a450e655c2c9', '4', '4', '17', NULL, '2025-11-30 00:31:13', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '60.00', '0.00', '0.00', 'order', NULL, '60.00', '60.00', '2025-11-30 00:31:13', '2025-11-30 00:31:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('22', '516e2a23-e361-403a-b75c-7f652e5d934a', '4', '4', '18', NULL, '2025-11-30 00:47:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-11-30 00:47:00', '2025-11-30 00:47:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('23', '6b5f40d9-5c7d-4944-862b-5da19730e39c', '4', '4', '19', NULL, '2025-11-30 00:47:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-11-30 00:47:57', '2025-11-30 00:48:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('24', '85843dbb-ffa2-43c4-a24d-fc6ea0e63455', '4', '4', '20', NULL, '2025-11-30 01:16:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '35.00', '0.00', '0.00', 'order', NULL, '35.00', '35.00', '2025-11-30 01:16:54', '2025-11-30 01:17:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('25', '3b4e7351-8a9a-490f-a4a7-a8341ac135ad', '4', '4', '21', NULL, '2025-11-30 01:19:06', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '48.00', '0.00', '0.00', 'order', NULL, '48.00', '48.00', '2025-11-30 01:19:06', '2025-11-30 01:19:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('26', 'd7c466ae-692d-48e6-8690-ab5ef7ebaa70', '3', '5', '5', NULL, '2025-12-11 05:55:12', '14', NULL, '1', '4', '4', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-11-30 08:48:31', '2025-12-11 05:55:18', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('27', 'fed02828-0f36-4524-b426-5672903e9211', '4', NULL, '22', NULL, '2025-11-30 21:21:39', NULL, NULL, NULL, NULL, NULL, NULL, 'kot', 'shop', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '0.00', '2025-11-30 21:21:39', '2025-11-30 21:21:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('28', 'a2735240-f64f-4b26-8320-12e85701df5f', '4', '4', '23', NULL, '2025-11-30 21:44:54', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-11-30 21:44:54', '2025-11-30 21:45:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('29', '24bfd0b0-e6ac-4c08-81fd-0a8861f96eb5', '4', '4', '24', NULL, '2025-11-30 22:29:25', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-11-30 22:29:25', '2025-11-30 22:29:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('30', 'a3bec884-0fb3-4993-a6b3-b314e6b46177', '4', '4', '25', NULL, '2025-11-30 22:35:58', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2025-11-30 22:35:58', '2025-11-30 22:36:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('31', '24b33eda-8104-4176-93b0-db045e5ddd23', '4', '4', '26', NULL, '2025-11-30 22:51:50', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-11-30 22:51:50', '2025-11-30 22:52:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('32', '9c26f866-5ef0-49d6-810d-ae537d40a250', '4', '4', '27', NULL, '2025-12-01 00:48:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2025-12-01 00:48:38', '2025-12-01 00:48:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('33', '62f45f7d-06d4-4dc1-b25e-8d1ae16c9710', '4', '4', '28', NULL, '2025-12-01 00:49:09', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-12-01 00:49:09', '2025-12-01 00:49:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('34', 'ec98b07e-ad8a-4bae-9be0-af5b01ea5e09', '4', '4', '29', NULL, '2025-12-01 00:52:58', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '68.00', '0.00', '0.00', 'order', NULL, '68.00', '68.00', '2025-12-01 00:52:58', '2025-12-01 00:53:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('35', '1d2eef2f-5195-4038-9f3a-64895713006e', '4', '4', '30', NULL, '2025-12-01 02:06:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '34.00', '0.00', '0.00', 'order', NULL, '34.00', '34.00', '2025-12-01 02:06:35', '2025-12-01 02:06:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('36', 'f4fef071-e5ac-43bb-a077-7f1a223e775d', '4', '4', '31', NULL, '2025-12-02 18:24:53', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-02 18:24:53', '2025-12-02 18:24:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('37', '081c9d44-afb1-420f-a2e1-7d4a22d86f98', '4', '4', '32', NULL, '2025-12-02 20:52:44', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '41.00', '0.00', '0.00', 'order', NULL, '41.00', '41.00', '2025-12-02 20:52:44', '2025-12-02 20:52:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('38', '42241604-3aee-48fd-9be7-8007d52ad19a', '4', '4', '33', NULL, '2025-12-02 20:53:05', NULL, NULL, NULL, '6', '6', NULL, 'billed', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '0.00', '2025-12-02 20:53:05', '2025-12-02 20:53:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('39', 'ecf11089-21cb-4338-a602-58d7928b64ca', '3', '5', '6', NULL, '2025-12-03 09:18:28', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-03 09:18:28', '2025-12-03 09:20:46', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'preparing', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('40', '043681c1-79bb-4e7d-b924-21d9942db209', '3', '5', '7', NULL, '2025-12-03 09:31:28', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-03 09:31:28', '2025-12-03 09:33:41', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('41', 'e97b7ca1-2e02-40f2-a1e3-944bc7dc0276', '4', '4', '34', NULL, '2025-12-05 20:55:32', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2025-12-05 20:55:33', '2025-12-05 20:56:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('42', 'aa5051dd-329a-4cd5-9510-4b66dda417d9', '4', '4', '35', NULL, '2025-12-05 21:48:18', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '79.00', '0.00', '0.00', 'order', NULL, '79.00', '79.00', '2025-12-05 21:48:18', '2025-12-05 21:48:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('43', 'd500fba1-be99-4712-aef0-3ad5d6436908', '4', '4', '36', NULL, '2025-12-05 22:16:20', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-05 22:16:20', '2025-12-05 22:16:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('44', '1c375c53-191f-4bab-9351-f6a7befe2f6f', '4', '4', '37', NULL, '2025-12-05 22:28:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-05 22:28:54', '2025-12-05 22:29:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('45', '7d11d3ea-5bd4-40ac-a5cc-a645c9aa9c20', '4', '4', '38', NULL, '2025-12-05 22:31:42', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-05 22:31:42', '2025-12-05 22:31:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('46', 'fadb5f3f-fad3-45e2-8990-6ca056ec6050', '4', '4', '39', NULL, '2025-12-05 22:34:55', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-12-05 22:34:55', '2025-12-05 22:35:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('47', '2f77c109-5e75-4f3a-a8ef-b49d7634a317', '4', '4', '40', NULL, '2025-12-05 22:35:27', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-05 22:35:27', '2025-12-05 22:45:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('48', 'ed4109ab-7462-4ccc-8e18-19f92bbac7cf', '4', '4', '41', NULL, '2025-12-05 22:46:04', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-05 22:46:04', '2025-12-05 22:46:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('49', 'd16176f0-d30c-49ff-93db-9cf2ab9e6686', '4', '4', '42', NULL, '2025-12-05 22:54:16', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-05 22:54:16', '2025-12-05 22:54:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('50', '63ab6d7f-7ba8-47fb-b5fc-21d878fa73db', '4', '4', '43', NULL, '2025-12-05 22:55:10', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-05 22:55:10', '2025-12-05 22:55:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('51', 'bdbb0d72-94a8-4868-82f0-04d3a6807dfd', '4', '4', '44', NULL, '2025-12-05 22:59:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2025-12-05 22:59:34', '2025-12-05 22:59:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('52', '874aab9c-7aff-4bcf-bfa0-b48bf0e50f5e', '4', '4', '45', NULL, '2025-12-05 23:11:09', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-05 23:11:09', '2025-12-05 23:11:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('53', '46b0d13a-b8e1-4e6f-9a90-8fe9df9974c2', '4', '4', '46', NULL, '2025-12-05 23:18:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-05 23:18:15', '2025-12-05 23:18:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('54', '185bd6ab-4b35-4330-8579-5f5dce21da9b', '4', '4', '47', NULL, '2025-12-05 23:22:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-05 23:22:15', '2025-12-05 23:22:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('55', 'a45dc7e7-49c2-48b6-af84-fa1dec37f066', '4', '4', '48', NULL, '2025-12-05 23:27:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '64.00', '0.00', '0.00', 'order', NULL, '64.00', '64.00', '2025-12-05 23:27:05', '2025-12-05 23:27:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('56', '0298a14b-d1d2-4d54-b42a-2dcfb718b5b2', '4', '4', '49', NULL, '2025-12-05 23:50:14', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '41.00', '0.00', '0.00', 'order', NULL, '41.00', '41.00', '2025-12-05 23:50:14', '2025-12-06 01:22:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('57', 'c09f674f-e8cb-413d-a35f-3d4d67646aad', '4', '4', '50', NULL, '2025-12-06 01:23:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-06 01:23:07', '2025-12-06 01:23:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('58', '61ae1be3-d236-4b8b-8479-6f9b827d81c0', '4', '4', '51', NULL, '2025-12-06 01:25:42', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-12-06 01:25:42', '2025-12-06 01:26:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('59', '3fa2f608-ac71-42fe-b045-d64e8ec2fc4a', '4', '4', '52', NULL, '2025-12-06 18:24:04', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-06 18:24:04', '2025-12-06 18:24:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('60', '4bb1ac90-55cb-4453-b53c-de46e9934a7a', '4', '4', '53', NULL, '2025-12-06 20:24:29', '5', NULL, NULL, '6', '6', NULL, 'paid', 'pos', '237.00', '0.00', '0.00', 'order', NULL, '237.00', '237.00', '2025-12-06 20:24:29', '2025-12-06 20:25:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('61', 'ad45a627-c02c-4992-882f-c67dc15702a8', '4', '4', '54', NULL, '2025-12-06 20:27:18', '13', NULL, NULL, '6', '6', NULL, 'paid', 'pos', '23.00', '0.00', '0.00', 'order', NULL, '23.00', '23.00', '2025-12-06 20:27:18', '2025-12-06 20:27:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('62', 'a2063edf-dc96-40cc-8813-aff6d035571c', '4', '4', '55', NULL, '2025-12-06 20:54:05', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-06 20:54:05', '2025-12-06 20:54:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('63', '0e175911-c44b-4e64-86ea-64e33b2a8695', '4', '4', '56', NULL, '2025-12-06 21:15:26', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '126.00', '0.00', '0.00', 'order', NULL, '126.00', '126.00', '2025-12-06 21:15:26', '2025-12-06 21:15:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('64', '3cc32b14-40b2-4223-ae75-c4c1d31975c8', '4', '4', '57', NULL, '2025-12-06 21:18:14', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-06 21:18:14', '2025-12-06 21:18:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('65', 'ddca9be2-1791-48bc-b44b-0577bd55cbe7', '4', '4', '58', NULL, '2025-12-06 21:35:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-06 21:35:39', '2025-12-06 21:35:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('66', '0ffaaa47-772d-4f23-8539-06450b396d29', '4', '4', '59', NULL, '2025-12-06 21:42:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '36.00', '0.00', '0.00', 'order', NULL, '36.00', '36.00', '2025-12-06 21:42:49', '2025-12-06 21:42:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('67', 'fb2a0d1b-4c3d-46fa-9f7a-6c400fc09afc', '4', '4', '60', NULL, '2025-12-06 21:43:53', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-06 21:43:53', '2025-12-06 21:44:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('68', 'b638977c-c1b1-46e4-aecc-87a81172132d', '4', '4', '61', NULL, '2025-12-06 21:59:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '22.00', '0.00', '0.00', 'order', NULL, '22.00', '22.00', '2025-12-06 21:59:57', '2025-12-06 22:00:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('69', 'd115e5f0-042b-468b-a366-c355f9ffdd62', '4', '4', '62', NULL, '2025-12-06 22:05:17', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-06 22:05:17', '2025-12-06 22:05:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('70', '30935cc7-9ae0-40f5-98b7-bdf7b9439bdf', '4', '4', '63', NULL, '2025-12-06 22:12:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '50.00', '0.00', '0.00', 'order', NULL, '50.00', '50.00', '2025-12-06 22:12:34', '2025-12-06 22:12:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('71', '3a128633-56f2-41b1-9ee2-93392da6c50b', '4', '4', '64', NULL, '2025-12-06 22:14:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-06 22:14:49', '2025-12-06 22:15:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('72', '8984fad4-9c0b-4055-9520-7ba4ac0059d7', '4', '4', '65', NULL, '2025-12-06 22:17:08', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-06 22:17:08', '2025-12-06 22:17:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('73', '28263b3c-acea-40bd-916a-5b85ed4359d5', '4', '4', '66', NULL, '2025-12-06 22:20:21', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-06 22:20:21', '2025-12-06 22:20:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('74', '7beb1683-8147-4220-8b15-04e313778be0', '4', '4', '67', NULL, '2025-12-06 22:35:43', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-06 22:35:43', '2025-12-06 22:35:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('75', 'bb560047-a042-44ce-a2c1-975ddb0b13e1', '4', '4', '68', NULL, '2025-12-06 22:44:16', '8', NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-12-06 22:44:16', '2025-12-06 23:06:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('76', 'bc909e14-5ccb-4325-abf6-bb236328f81c', '4', '4', '69', NULL, '2025-12-06 23:12:44', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-06 23:12:44', '2025-12-06 23:12:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('77', 'a3c8801e-6a38-4153-a807-3968f548a266', '4', '4', '70', NULL, '2025-12-06 23:15:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-06 23:15:15', '2025-12-06 23:15:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('78', '2316a732-42eb-4633-9a53-5341a6b7464e', '4', '4', '71', NULL, '2025-12-06 23:41:09', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '36.00', '0.00', '0.00', 'order', NULL, '36.00', '36.00', '2025-12-06 23:41:09', '2025-12-06 23:41:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('79', 'cfef512c-732f-47a6-870d-446ad9889ca9', '4', '4', '72', NULL, '2025-12-06 23:46:13', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2025-12-06 23:46:13', '2025-12-06 23:46:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('80', '518fd48b-4334-4fc2-aca1-1c9b46d49ae7', '4', '4', '73', NULL, '2025-12-07 00:18:46', '8', NULL, '1', '6', '6', NULL, 'paid', 'pos', '105.00', '0.00', '0.00', 'order', NULL, '105.00', '105.00', '2025-12-07 00:18:46', '2025-12-07 00:18:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('81', 'c7991c5c-f043-4303-ac2a-cebfabe560d2', '4', '4', '74', NULL, '2025-12-07 01:38:08', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-07 01:38:08', '2025-12-07 01:38:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('82', '425fdc1e-a579-439e-978e-64ec5b7f47c7', '4', '4', '75', NULL, '2025-12-07 03:13:29', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2025-12-07 03:13:29', '2025-12-07 03:13:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('83', '54c5ded9-a0af-4543-a478-9349a231c984', '4', '4', '76', NULL, '2025-12-07 19:24:56', '13', NULL, '1', '6', '6', NULL, 'paid', 'pos', '37.00', '0.00', '0.00', 'order', NULL, '37.00', '37.00', '2025-12-07 19:24:56', '2025-12-07 19:33:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('84', 'a95ab5bc-292c-42b3-8906-384aba563819', '4', '4', '77', NULL, '2025-12-07 22:32:10', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2025-12-07 22:32:10', '2025-12-07 22:32:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('85', 'efb0fd32-4e1a-4e2f-81ad-01e575198ad7', '4', '4', '78', NULL, '2025-12-07 22:32:31', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-07 22:32:31', '2025-12-07 22:32:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('86', 'ef5ec5b3-836f-4e58-931d-b0ecc071f8f6', '4', '4', '79', NULL, '2025-12-08 19:26:25', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '132.00', '0.00', '0.00', 'order', NULL, '132.00', '132.00', '2025-12-08 19:26:25', '2025-12-08 19:26:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('87', '0c3e1f09-b950-4215-8452-ee5dc0de557f', '4', '4', '80', NULL, '2025-12-08 19:43:22', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-08 19:43:22', '2025-12-08 19:43:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('88', '1dceb292-ff44-4c19-9ebd-4c1654fb539e', '4', '4', '81', NULL, '2025-12-08 19:55:43', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-08 19:55:43', '2025-12-08 19:55:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('89', '6ebc8cd9-16d5-4053-8b07-d962dbef6e49', '4', '4', '82', NULL, '2025-12-08 20:10:11', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-08 20:10:11', '2025-12-08 20:10:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('90', '63c82524-e4cd-42c5-b591-a1a30c50cb84', '4', '4', '83', NULL, '2025-12-08 20:23:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-08 20:23:07', '2025-12-08 20:23:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('91', '135cc73e-2f6c-41e4-a70f-9a5dfc2f2628', '4', '4', '84', NULL, '2025-12-08 22:39:29', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '171.00', '0.00', '0.00', 'order', NULL, '171.00', '171.00', '2025-12-08 22:39:29', '2025-12-08 22:39:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('92', 'b6b4e145-f2ee-4c58-947f-7d0ab3e11f50', '4', '4', '85', NULL, '2025-12-08 22:48:48', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2025-12-08 22:48:48', '2025-12-08 22:48:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('93', 'e2a9dd59-4237-4609-a01c-02e0148e0be5', '4', '4', '86', NULL, '2025-12-08 23:49:55', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '43.00', '0.00', '0.00', 'order', NULL, '43.00', '43.00', '2025-12-08 23:49:55', '2025-12-08 23:50:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('94', '4ce7c162-132c-4e2b-9993-27a3188a4047', '3', '7', '8', NULL, '2025-12-11 05:48:29', '1', NULL, '1', '4', '4', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-11 05:46:11', '2025-12-11 05:49:32', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('95', '12ea2074-bdbf-43eb-8643-c300064645f4', '3', '7', '9', NULL, '2025-12-11 05:51:26', '10', NULL, '1', '4', '4', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-12-11 05:50:31', '2025-12-11 05:51:33', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, 'percent', '10.00', '2.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('96', 'b4f6b98d-1e2d-4e8f-9d3e-5e2765bb4011', '4', '4', '87', NULL, '2025-12-11 19:22:40', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-11 19:22:40', '2025-12-11 19:28:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('97', '8f47f99c-4650-4554-a558-833aa55afdb6', '4', '4', '88', NULL, '2025-12-11 19:23:16', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.30', '0.00', 'order', '', '3.30', '3.30', '2025-12-11 19:23:16', '2025-12-11 19:23:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('98', '0698770e-351c-4b89-a932-2c589668b192', '4', '4', '89', NULL, '2025-12-11 19:26:12', '2', NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-11 19:26:12', '2025-12-11 19:27:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('99', '6a0575e3-0ed6-4264-a2d3-f0863a51ad3b', '4', '4', '90', NULL, '2025-12-11 19:28:55', NULL, NULL, '1', '5', '5', NULL, 'billed', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '0.00', '2025-12-11 19:28:55', '2025-12-11 19:28:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('100', 'af9c6789-faee-48e5-8adb-f2d7e0097688', '4', '4', '91', NULL, '2025-12-11 19:30:11', '5', NULL, '1', '5', '5', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2025-12-11 19:30:11', '2025-12-11 19:30:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('101', 'f6c26e65-9589-463b-b9a3-d9d50b910f8a', '4', '4', '92', NULL, '2025-12-11 21:28:12', '12', NULL, '1', '5', '5', NULL, 'billed', 'pos', '75.00', '0.00', '0.00', 'order', NULL, '75.00', '0.00', '2025-12-11 21:28:12', '2025-12-11 21:28:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('102', '80ad5366-e4da-4a10-9737-171618ba1e6a', '4', '4', '93', NULL, '2025-12-11 23:16:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '115.00', '0.00', '0.00', 'order', NULL, '115.00', '115.00', '2025-12-11 23:16:23', '2025-12-11 23:16:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('103', '9918647d-8c09-423e-826b-aba83de6151d', '4', '4', '94', NULL, '2025-12-11 23:17:04', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-11 23:17:04', '2025-12-11 23:17:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('104', 'c4278193-9d18-4380-b4a0-37f1e19f4f18', '4', '4', '95', NULL, '2025-12-11 23:38:48', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-11 23:38:48', '2025-12-11 23:38:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('105', '81f77e30-4c2d-432d-a7fb-515a32d00c26', '4', '4', '96', NULL, '2025-12-12 00:56:31', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-12 00:56:31', '2025-12-12 00:56:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('106', '8c8a6810-1d2f-48af-a471-d8fd4aabccb9', '4', NULL, '97', NULL, '2025-12-12 21:31:07', NULL, NULL, NULL, NULL, '6', NULL, 'paid', 'shop', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-12 21:28:38', '2025-12-12 21:31:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('107', '6f4439e0-3307-4e8c-aa3a-39c3995818c9', '4', '4', '98', NULL, '2025-12-12 21:35:30', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2025-12-12 21:35:30', '2025-12-12 21:38:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('108', '37af4af9-ed80-4b4f-b4c0-7defda26c92a', '4', '4', '99', NULL, '2025-12-12 22:33:32', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-12 22:33:32', '2025-12-12 22:33:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('109', 'b88553c4-8c36-48fe-b3b5-f9fd1487f322', '4', '4', '100', NULL, '2025-12-13 00:03:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '34.00', '0.00', '0.00', 'order', NULL, '34.00', '34.00', '2025-12-13 00:03:57', '2025-12-13 00:04:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('110', '6c245ea3-356b-411c-84b4-d284a3ad2e39', '4', '4', '101', NULL, '2025-12-13 00:54:36', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-13 00:54:36', '2025-12-13 00:54:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('111', '903b93d7-7fb4-4ab2-a79d-7ca6531dedeb', '4', '4', '102', NULL, '2025-12-13 01:24:45', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-13 01:24:45', '2025-12-13 01:27:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('112', 'f8fa368d-dc4d-4819-af36-560dc31afb3f', '4', '4', '103', NULL, '2025-12-13 01:27:43', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-13 01:27:43', '2025-12-13 01:27:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('113', '488667a8-8fa5-4c7d-82b0-18ef66e1bb6b', '4', '4', '104', NULL, '2025-12-13 01:36:53', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-13 01:36:53', '2025-12-13 01:37:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('114', '8739c318-23ba-465f-b1f4-4fc1ca10b2b1', '4', '4', '105', NULL, '2025-12-13 01:41:33', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-13 01:41:33', '2025-12-13 01:41:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('115', '505215fa-396c-4e65-86fa-263e2bc969ce', '4', '4', '106', NULL, '2025-12-13 01:46:32', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-13 01:46:32', '2025-12-13 01:47:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('116', '10b321a0-059e-413c-a26e-234c49c79a44', '4', '4', '107', NULL, '2025-12-13 02:11:42', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '27.00', '0.00', '0.00', 'order', NULL, '27.00', '27.00', '2025-12-13 02:11:42', '2025-12-13 02:11:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('117', '270eecef-5344-4009-ab2a-2f417dee6b71', '4', '4', '108', NULL, '2025-12-13 02:55:50', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '43.00', '0.00', '0.00', 'order', NULL, '43.00', '43.00', '2025-12-13 02:55:50', '2025-12-13 02:56:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('118', '368e1494-0d94-455e-a5e9-ee2d2d1c5072', '4', '4', '109', NULL, '2025-12-13 03:10:26', NULL, NULL, NULL, '6', '6', NULL, 'billed', 'pos', '140.00', '0.00', '0.00', 'order', NULL, '140.00', '0.00', '2025-12-13 03:10:27', '2025-12-13 03:10:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('119', 'ea90f00f-c8ab-4889-b798-772b5320386f', '4', '4', '110', NULL, '2025-12-13 03:10:58', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '144.00', '0.00', '0.00', 'order', NULL, '144.00', '144.00', '2025-12-13 03:10:58', '2025-12-13 03:11:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('120', '6834dd26-59ec-4b46-ac7a-e1c0ced56536', '4', '4', '111', NULL, '2025-12-13 22:06:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-13 22:06:15', '2025-12-13 22:06:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('121', 'f4f6966c-fa13-48fd-bcca-3744e0c01d14', '4', '4', '112', NULL, '2025-12-13 22:13:14', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-13 22:13:14', '2025-12-13 22:13:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('122', '8ea6600d-590d-4b0f-83ca-e4cc725d7110', '4', '4', '113', NULL, '2025-12-13 22:13:41', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2025-12-13 22:13:41', '2025-12-13 22:17:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('123', '08eef64e-65a6-4715-a910-fb70de29d41a', '4', '4', '114', NULL, '2025-12-13 22:17:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-13 22:17:38', '2025-12-13 22:17:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('124', '7f1216a7-da73-4ed4-99ce-d7131dbcee9d', '4', '4', '115', NULL, '2025-12-13 22:26:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '202.00', '0.00', '0.00', 'order', NULL, '202.00', '202.00', '2025-12-13 22:26:57', '2025-12-13 22:31:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('125', '50bef276-0b95-48df-87bd-ffcb14cf15a8', '4', '4', '116', NULL, '2025-12-13 22:41:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2025-12-13 22:41:26', '2025-12-13 22:50:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('126', '2e153713-273f-423d-a3ea-c0015b6d7fea', '4', '4', '117', NULL, '2025-12-13 22:50:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-13 22:50:38', '2025-12-13 22:50:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('127', '1af141f0-0add-4901-b65f-f6d79be5ad51', '4', '4', '118', NULL, '2025-12-13 23:06:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-13 23:06:00', '2025-12-13 23:06:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('128', '3d73f7a4-72ca-426c-bad1-8cb081ac7e8b', '4', '4', '119', NULL, '2025-12-14 01:20:17', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2025-12-14 01:20:17', '2025-12-14 01:20:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('129', '3cad77f7-0e68-49de-8375-f877ae0d5c9e', '4', '4', '120', NULL, '2025-12-14 01:23:12', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-14 01:23:12', '2025-12-14 01:23:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('130', '9d1610f6-d89f-4d9f-b1df-a4e3caf562b7', '4', '4', '121', NULL, '2025-12-14 01:28:04', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '89.00', '0.00', '0.00', 'order', NULL, '89.00', '89.00', '2025-12-14 01:28:04', '2025-12-14 01:28:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('131', '8cf84cd8-38f3-4372-96ae-22d27d067ecb', '4', '4', '122', NULL, '2025-12-14 02:31:19', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-14 02:31:19', '2025-12-14 02:32:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('132', '7d9c5aed-3d79-4cb6-bdd6-d04a193f621e', '4', '4', '123', NULL, '2025-12-14 03:20:08', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-14 03:20:08', '2025-12-14 03:20:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('133', '1b2b6d2c-1213-47f2-aa5c-8b95f7258209', '4', '4', '124', NULL, '2025-12-14 03:22:13', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '90.00', '0.00', '0.00', 'order', NULL, '90.00', '90.00', '2025-12-14 03:22:13', '2025-12-14 03:22:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('134', '90c3e741-5333-481f-92f3-e546ac626b58', '4', '4', '125', NULL, '2025-12-14 23:56:28', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '108.00', '0.00', '0.00', 'order', NULL, '108.00', '108.00', '2025-12-14 23:56:28', '2025-12-15 00:07:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('135', '8c76addc-0530-4a79-a762-545516600f4a', '4', '4', '126', NULL, '2025-12-16 00:12:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '173.00', '0.00', '0.00', 'order', NULL, '173.00', '173.00', '2025-12-16 00:12:47', '2025-12-16 00:12:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('136', '96a4c93c-1208-4994-a87d-14755e900e57', '4', '4', '127', NULL, '2025-12-16 23:47:11', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '70.00', '0.00', '0.00', 'order', NULL, '70.00', '70.00', '2025-12-16 23:47:11', '2025-12-16 23:47:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('137', '4e2e12d7-1f5a-42d7-97db-fa8809f32337', '4', '4', '128', NULL, '2025-12-17 20:22:52', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '64.00', '0.00', '0.00', 'order', NULL, '64.00', '64.00', '2025-12-17 20:22:52', '2025-12-17 20:23:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('138', '9120a79f-c1b5-47fa-815b-dd9bf9f11ac3', '4', '4', '129', NULL, '2025-12-17 22:00:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-12-17 22:00:03', '2025-12-17 22:00:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('139', '1c3813bb-5d26-4dc6-a353-0842eb9cbcd5', '4', '4', '130', NULL, '2025-12-18 22:47:46', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '39.00', '0.00', '0.00', 'order', NULL, '39.00', '39.00', '2025-12-18 22:47:46', '2025-12-18 22:47:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('140', '282a171e-b07d-400b-b93a-8658bac5e7c9', '4', '4', '131', NULL, '2025-12-18 22:48:52', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '284.00', '0.00', '0.00', 'order', NULL, '284.00', '284.00', '2025-12-18 22:48:53', '2025-12-18 22:48:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('141', 'c21ba51f-a5e5-4207-bad6-a78b66970d57', '5', '6', '1', NULL, '2025-12-19 18:31:48', NULL, NULL, '1', '7', '7', NULL, 'paid', 'pos', '23.97', '0.00', '0.00', 'order', NULL, '23.97', '23.97', '2025-12-19 18:31:48', '2025-12-19 18:32:04', '13', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('142', '9c80c490-dbc2-460d-b5fe-aa326aa43400', '3', '9', '10', NULL, '2025-12-19 21:25:56', NULL, NULL, '1', '4', '4', NULL, 'billed', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '0.00', '2025-12-19 21:25:56', '2025-12-19 21:25:56', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('143', '558ce4cf-051d-41ea-bb68-3fbc0593920c', '4', '4', '132', NULL, '2025-12-19 22:55:08', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-19 22:55:08', '2025-12-19 22:55:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('144', 'd6fa796c-d8fe-4b6d-958d-950a81838c56', '4', '4', '133', NULL, '2025-12-19 22:56:37', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '33.00', '0.00', '0.00', 'order', NULL, '33.00', '33.00', '2025-12-19 22:56:37', '2025-12-19 22:56:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('145', 'd523d602-ed06-4f5c-bbe3-5c78c4070924', '4', '4', '134', NULL, '2025-12-20 00:37:16', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '19.00', '6.00', '0.00', 'order', '', '25.00', '25.00', '2025-12-20 00:37:16', '2025-12-20 00:38:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('146', '502d54a2-c38d-4201-9720-ab1ef9a05c9b', '4', '4', '135', NULL, '2025-12-20 01:32:02', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '100.00', '0.00', '0.00', 'order', NULL, '100.00', '100.00', '2025-12-20 01:32:02', '2025-12-20 01:32:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('147', 'a4054dd8-f935-41ee-bb8c-d389fe06b42b', '4', '4', '136', NULL, '2025-12-20 20:53:19', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-20 20:53:19', '2025-12-20 20:53:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('148', '633f70f4-afb8-4cdb-b486-bf04cdea687b', '4', '4', '137', NULL, '2025-12-20 21:02:51', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-20 21:02:51', '2025-12-20 21:03:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('149', '1d278196-f066-4905-926e-157e4afe5c34', '4', '4', '138', NULL, '2025-12-20 21:33:40', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-20 21:33:40', '2025-12-20 21:33:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('150', '29c03b2f-053c-4be9-92d8-6c617d238f45', '4', '4', '139', NULL, '2025-12-20 21:45:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2025-12-20 21:45:54', '2025-12-20 21:46:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('151', '18ca352e-fab6-4b07-985f-d5a86647fa47', '4', '4', '140', NULL, '2025-12-20 21:53:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2025-12-20 21:53:39', '2025-12-20 21:53:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('152', '2b54c342-4e67-4efd-b930-9cd450933479', '4', '4', '141', NULL, '2025-12-20 21:54:03', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-20 21:54:03', '2025-12-20 21:54:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('153', '157ca6ad-62a8-4d28-90ba-02e5a6a59d17', '4', '4', '142', NULL, '2025-12-20 21:56:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-20 21:56:00', '2025-12-20 21:56:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('154', '9d76985e-aae9-4fac-9998-ff23eafd7eb1', '4', '4', '143', NULL, '2025-12-20 22:28:22', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '22.00', '0.00', '0.00', 'order', NULL, '22.00', '22.00', '2025-12-20 22:28:22', '2025-12-20 22:29:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('155', '41a60070-eaed-4368-859a-02a20741044f', '4', '4', '144', NULL, '2025-12-20 22:31:41', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-20 22:31:41', '2025-12-20 22:31:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('156', '246056ff-794c-480e-9acd-1f35155b8015', '4', '4', '145', NULL, '2025-12-20 22:32:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-12-20 22:32:05', '2025-12-20 22:32:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('157', '99ce4670-d0cf-4122-ae4f-59d514ba0c35', '4', '4', '146', NULL, '2025-12-20 22:32:52', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-20 22:32:52', '2025-12-20 22:33:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('158', 'd94639c5-fe9f-4f7f-a6eb-1cf6f4f6c3e4', '4', '4', '147', NULL, '2025-12-20 22:37:06', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2025-12-20 22:37:06', '2025-12-20 22:37:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('159', 'de6debd7-0c67-4548-bc82-59354f800573', '4', '4', '148', NULL, '2025-12-20 22:40:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-20 22:40:01', '2025-12-20 22:40:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('160', 'd4d17a25-f713-4988-8501-15da5dd74968', '4', '4', '149', NULL, '2025-12-20 23:13:43', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-20 23:13:43', '2025-12-20 23:13:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('161', '9160a784-53a6-4abd-81e6-a51b39e5c05a', '4', '4', '150', NULL, '2025-12-20 23:18:11', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-20 23:18:12', '2025-12-20 23:18:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('162', 'c01d5313-d9cf-470b-817a-3fe1e6f48974', '4', '4', '151', NULL, '2025-12-20 23:23:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-20 23:23:35', '2025-12-20 23:23:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('163', 'f1dcd626-c964-4abf-bf14-895ab4e19cbb', '4', '4', '152', NULL, '2025-12-21 01:12:04', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '189.00', '0.00', '0.00', 'order', NULL, '189.00', '189.00', '2025-12-20 23:29:41', '2025-12-21 01:12:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('164', '3976a91a-3adf-46c2-8bde-3c3165b33e41', '4', '4', '152', NULL, '2025-12-20 23:35:36', NULL, NULL, '1', '6', NULL, NULL, 'draft', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2025-12-20 23:35:36', '2025-12-20 23:53:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('165', '99c8db7d-a7c3-4b0a-af38-87f6c55f21dd', '4', '4', '152', NULL, '2025-12-20 23:37:07', '3', NULL, '1', '6', NULL, NULL, 'draft', 'pos', '142.00', '0.00', '0.00', 'order', NULL, '142.00', '0.00', '2025-12-20 23:37:07', '2025-12-20 23:58:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('166', 'be21eaf6-5703-4a6e-9f03-ee418ed32feb', '4', '4', '152', NULL, '2025-12-21 00:00:22', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2025-12-21 00:00:22', '2025-12-21 00:00:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('167', '352742eb-b1a4-4c74-8a8f-9b19fa8a8457', '4', '4', '153', NULL, '2025-12-21 00:06:55', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-21 00:06:55', '2025-12-21 00:07:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('168', '2da6baa5-2f13-4f55-a154-836c63e13aaf', '4', '4', '154', NULL, '2025-12-21 00:07:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-21 00:07:57', '2025-12-21 00:08:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('169', '05cdc363-defb-4144-81c4-1d2248270341', '4', '4', '155', NULL, '2025-12-21 00:26:05', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-21 00:26:05', '2025-12-21 00:26:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('170', '32058ff3-63c6-4601-949a-d541fa281da6', '4', '4', '156', NULL, '2025-12-21 00:31:11', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-21 00:31:11', '2025-12-21 00:31:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('171', 'b2d347f6-7feb-4652-ba27-54db8229ecd0', '4', '4', '157', NULL, '2025-12-21 00:40:50', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-21 00:40:50', '2025-12-21 00:41:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('172', '5926f628-4299-44b7-a52a-b863c66cb601', '4', '4', '158', NULL, '2025-12-21 00:41:47', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-21 00:41:47', '2025-12-21 00:41:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('173', '25be4da5-52fd-4483-a5db-b5ffffba3368', '4', '4', '159', NULL, '2025-12-21 01:15:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '50.00', '0.00', '0.00', 'order', NULL, '50.00', '50.00', '2025-12-21 01:15:38', '2025-12-21 01:15:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('174', 'da8dc417-1544-4752-a1bf-93998da8c773', '4', '4', '160', NULL, '2025-12-21 01:31:00', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '60.00', '0.00', '0.00', 'order', NULL, '60.00', '60.00', '2025-12-21 01:31:00', '2025-12-21 01:31:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('175', '774e99d5-6d19-4026-86a4-235e641e9c4d', '4', '4', '161', NULL, '2025-12-21 02:05:44', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-21 02:05:44', '2025-12-21 02:05:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('176', 'a68903d3-531a-4670-af6c-5c848172bcda', '4', '4', '162', NULL, '2025-12-21 02:18:44', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-21 02:18:44', '2025-12-21 02:21:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('177', '1820bc52-cb88-4bea-9a5d-b75c73e57287', '4', '4', '163', NULL, '2025-12-21 02:42:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-21 02:42:35', '2025-12-21 02:42:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('178', 'e88c3845-53af-4b1e-8ac7-a7649a23e5f4', '4', '4', '164', NULL, '2025-12-21 03:11:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-21 03:11:01', '2025-12-21 03:11:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('179', '4536b650-5d32-47bb-a9b2-33e5e23e5a67', '4', '4', '165', NULL, '2025-12-21 03:34:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '72.00', '0.00', '0.00', 'order', NULL, '72.00', '72.00', '2025-12-21 03:34:26', '2025-12-21 03:34:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('180', '273a9887-89ad-4451-82fa-cf9198feb551', '4', '4', '166', NULL, '2025-12-21 03:43:32', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-21 03:43:32', '2025-12-21 03:52:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('181', '8648182c-ade8-4f87-82c4-a28c5e186c22', '4', '4', '167', NULL, '2025-12-21 03:57:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '315.00', '0.00', '0.00', 'order', NULL, '315.00', '315.00', '2025-12-21 03:57:01', '2025-12-21 04:00:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('182', '8e686088-b71d-4652-959b-4f3c28f68e30', '4', '4', '168', NULL, '2025-12-21 04:00:37', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '32.00', '0.00', '0.00', 'order', NULL, '32.00', '32.00', '2025-12-21 04:00:37', '2025-12-21 04:00:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('183', 'cec53bb1-a9f1-43f5-bd50-f38cc18b2cc2', '4', '4', '169', NULL, '2025-12-21 04:21:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-21 04:21:05', '2025-12-21 04:21:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('184', '0d296750-f38b-434d-9b6d-f18c7e12658b', '4', '4', '170', NULL, '2025-12-21 04:30:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-21 04:30:07', '2025-12-21 04:32:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('185', 'e6620873-35e7-46aa-8d50-afb2fd6d85f7', '4', '4', '171', NULL, '2025-12-21 21:26:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '100.00', '0.00', '0.00', 'order', NULL, '100.00', '100.00', '2025-12-21 21:26:05', '2025-12-21 21:29:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('186', '0836a0e2-bef6-4feb-8b4b-a1ca0fba96ce', '4', '4', '172', NULL, '2025-12-21 21:58:56', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '56.00', '0.00', '0.00', 'order', NULL, '56.00', '56.00', '2025-12-21 21:58:56', '2025-12-21 21:59:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('187', '04066b24-8623-453e-884b-98a1dd474131', '4', '4', '173', NULL, '2025-12-21 22:28:58', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '48.00', '0.00', '0.00', 'order', NULL, '48.00', '48.00', '2025-12-21 22:28:58', '2025-12-21 22:29:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('188', '93a095d3-b2c9-4cb5-84d8-ba0a310ab4ad', '4', '4', '174', NULL, '2025-12-21 23:34:18', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-21 23:34:18', '2025-12-21 23:35:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('189', '83a21a67-80b4-41e3-b88f-dfe7a78b0921', '4', '4', '175', NULL, '2025-12-22 00:01:21', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '74.00', '0.00', '0.00', 'order', NULL, '74.00', '74.00', '2025-12-22 00:01:21', '2025-12-22 00:18:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('190', 'b29672c2-e256-437d-b8fe-67f03385ac4d', '4', '4', '176', NULL, '2025-12-22 00:20:05', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '63.00', '0.00', '0.00', 'order', NULL, '63.00', '63.00', '2025-12-22 00:20:05', '2025-12-22 00:20:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('191', 'af849cfc-cc5c-476b-8fdf-33500d7e5bc6', '4', '4', '177', NULL, '2025-12-22 00:21:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-22 00:21:57', '2025-12-22 00:22:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('192', '510f0824-bf50-4a97-9b36-f722940eeb81', '4', '4', '178', NULL, '2025-12-22 00:25:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-22 00:25:39', '2025-12-22 00:25:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('193', '6d49d10c-5e25-48b4-81d1-bebf94f25171', '4', '4', '179', NULL, '2025-12-22 00:27:16', '2', NULL, NULL, '6', '6', NULL, 'paid', 'pos', '60.00', '0.00', '0.00', 'order', NULL, '60.00', '60.00', '2025-12-22 00:27:16', '2025-12-22 00:40:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('194', '05725530-b116-40b0-9bbc-59eba59ac2f6', '4', '4', '182', NULL, '2025-12-22 00:43:30', '2', NULL, '1', '6', NULL, NULL, 'draft', 'pos', '129.00', '0.00', '0.00', 'order', NULL, '129.00', '0.00', '2025-12-22 00:43:30', '2025-12-22 01:18:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('195', 'd24095c6-f579-4676-80f1-739f5d58479a', '4', '4', '180', NULL, '2025-12-22 00:58:46', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '56.00', '0.00', '0.00', 'order', NULL, '56.00', '56.00', '2025-12-22 00:58:46', '2025-12-22 00:58:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('196', 'f41439bb-4c5f-4714-852f-2ee46032b270', '4', '4', '181', NULL, '2025-12-22 00:59:09', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '45.00', '0.00', '0.00', 'order', NULL, '45.00', '45.00', '2025-12-22 00:59:09', '2025-12-22 00:59:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('197', '92a990c4-4579-4dfb-95a7-0fbc5ab5f6b3', '4', '4', '182', NULL, '2025-12-22 01:24:43', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-22 01:24:43', '2025-12-22 01:28:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('198', '403ee3ac-e9d0-4606-8afb-8b9c4379e9b7', '4', '4', '183', NULL, '2025-12-22 01:45:18', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-22 01:45:18', '2025-12-22 01:45:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('199', '85236088-3452-4925-b4ce-b17bbb260b66', '4', '4', '184', NULL, '2025-12-23 01:08:50', '6', NULL, '1', '5', '5', NULL, 'paid', 'pos', '117.00', '0.00', '0.00', 'order', NULL, '117.00', '117.00', '2025-12-22 21:31:23', '2025-12-23 01:08:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('201', 'bb6ccb37-77a8-439f-a384-c6941198d4f6', '4', '4', '185', NULL, '2025-12-22 23:24:22', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '48.00', '0.00', '0.00', 'order', NULL, '48.00', '48.00', '2025-12-22 22:44:44', '2025-12-22 23:24:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('202', '3cd7cee3-f2d6-45d0-8a60-9c8043155cf1', '4', '4', '186', NULL, '2025-12-23 01:09:26', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2025-12-23 00:12:53', '2025-12-23 01:09:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('203', 'ee2bd84a-b734-4127-b06b-9e6bfa63cdbe', '4', '4', '187', NULL, '2025-12-23 01:37:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-23 01:37:16', '2025-12-23 01:37:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('204', '71c27074-7523-4993-bde9-330fafccd395', '4', '4', '188', NULL, '2025-12-23 21:33:21', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-23 21:33:21', '2025-12-23 21:33:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('205', '31fca61b-a31a-4e32-9057-7d96f3370450', '4', '4', '189', NULL, '2025-12-23 22:29:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-23 22:29:37', '2025-12-23 22:29:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('206', '484660e6-015b-41ea-b8cb-d33c662a3980', '4', '4', '190', NULL, '2025-12-24 00:56:48', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '36.00', '0.00', '0.00', 'order', NULL, '36.00', '36.00', '2025-12-23 22:30:12', '2025-12-24 00:56:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('207', 'ee5daccc-b6d2-4032-9ed2-36d8fd181790', '4', '4', '191', NULL, '2025-12-24 00:25:05', '2', NULL, '1', '5', '5', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2025-12-23 22:30:44', '2025-12-24 00:25:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('208', '97b96e92-4c76-4270-910f-b57eb2714870', '4', '4', '192', NULL, '2025-12-24 02:24:30', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '440.00', '0.00', '0.00', 'order', NULL, '440.00', '440.00', '2025-12-24 00:27:54', '2025-12-24 02:24:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('209', '958c496b-3668-40ec-a76f-135448d8b37c', '4', '4', '193', NULL, '2025-12-24 00:42:25', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-24 00:42:25', '2025-12-24 00:42:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('210', '7216288c-a69f-412c-829d-5b96892e68e1', '4', '4', '194', NULL, '2025-12-24 02:49:55', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '35.00', '0.00', '0.00', 'order', NULL, '35.00', '35.00', '2025-12-24 02:25:23', '2025-12-24 02:50:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('211', '828dae1b-b1b3-4987-8d08-e115fcd83d09', '4', '4', '195', NULL, '2025-12-29 20:50:01', '2', NULL, '1', '6', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-24 20:10:03', '2025-12-29 20:50:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('212', 'b79bc5c3-b10a-486e-ac7b-3ae15a53f8d8', '4', '4', '196', NULL, '2025-12-24 22:59:08', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2025-12-24 22:59:08', '2025-12-24 22:59:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('213', '892b5c9b-42df-4f21-83b7-fbac626c7c16', '4', '4', '197', NULL, '2025-12-24 23:38:31', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-24 23:38:31', '2025-12-24 23:38:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('214', 'be38da16-3d08-48cb-927d-332d5e7a12ac', '4', '4', '198', NULL, '2025-12-24 23:43:31', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-24 23:43:31', '2025-12-24 23:43:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('215', '6906b024-ab69-48c4-9d7b-167e69e30630', '4', '4', '199', NULL, '2025-12-25 20:25:40', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '23.00', '0.00', '0.00', 'order', NULL, '23.00', '23.00', '2025-12-25 20:25:40', '2025-12-25 20:25:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('216', '03ed4607-959c-4d1c-a33a-eedce292d93e', '4', '4', '200', NULL, '2025-12-25 21:35:47', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '38.00', '0.00', '0.00', 'order', NULL, '38.00', '38.00', '2025-12-25 21:35:47', '2025-12-25 21:38:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('217', '287084be-f7eb-4e55-ada7-1a15b574f040', '4', '4', '201', NULL, '2025-12-25 23:48:32', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-25 23:48:32', '2025-12-26 00:06:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('218', '52ad3950-7d65-4762-8961-4984d90d8687', '4', '4', '202', NULL, '2025-12-26 00:18:14', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '45.00', '0.00', '0.00', 'order', NULL, '45.00', '45.00', '2025-12-26 00:18:14', '2025-12-26 00:18:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('219', '4216a979-b8d8-4db2-8ad2-fc2346fa6817', '4', '4', '203', NULL, '2025-12-26 00:50:42', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-26 00:50:42', '2025-12-26 00:51:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('220', 'c95b9077-0044-4016-bb5c-2209f8fa2d0a', '4', '4', '204', NULL, '2025-12-26 00:51:45', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-26 00:51:45', '2025-12-26 00:52:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('221', '022cdafa-e4af-423a-bc4e-8c85905e90b5', '4', '4', '205', NULL, '2025-12-26 00:59:03', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-26 00:59:03', '2025-12-26 00:59:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('222', '9bbb2395-327a-43e1-bce1-b1beda3d8195', '4', '4', '206', NULL, '2025-12-26 21:20:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-26 21:20:54', '2025-12-26 21:21:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('223', '6cdaf0d5-761a-4cdd-a37c-3949fedb30ad', '4', '4', '207', NULL, '2025-12-26 23:06:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-26 23:06:00', '2025-12-26 23:06:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('224', '1877a542-8b35-4acf-a76a-e178ab920eb1', '4', '4', '208', NULL, '2025-12-26 23:08:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-12-26 23:08:49', '2025-12-26 23:09:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('225', '2aea83ba-39e9-496f-8f1d-badb47d4aaff', '4', '4', '209', NULL, '2025-12-26 23:10:47', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '85.00', '0.00', '0.00', 'order', NULL, '85.00', '85.00', '2025-12-26 23:10:47', '2025-12-26 23:10:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('226', 'fac29323-4356-4925-8495-140b9d34b07a', '4', '4', '210', NULL, '2025-12-26 23:30:22', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2025-12-26 23:30:22', '2025-12-26 23:30:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('227', 'b7cb96f0-7605-4f70-bb4e-04609918d169', '4', '4', '211', NULL, '2025-12-27 00:00:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2025-12-27 00:00:01', '2025-12-27 00:00:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('228', 'd2906b91-dc13-4562-a0c4-a4cb9d4b81c6', '4', '4', '212', NULL, '2025-12-27 00:06:19', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2025-12-27 00:06:19', '2025-12-27 00:06:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('229', '3a7269b2-80e7-4c13-8d44-7f48b5a0adfe', '4', '4', '213', NULL, '2025-12-27 00:28:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '40.00', '0.00', '0.00', 'order', NULL, '40.00', '40.00', '2025-12-27 00:28:34', '2025-12-27 00:28:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('230', 'a219cdcb-a79a-4fc1-83b4-3b04f3b04f46', '4', '4', '214', NULL, '2025-12-27 00:51:33', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2025-12-27 00:51:33', '2025-12-27 00:51:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('231', 'af4538a4-1226-4fbd-a621-56874fc0ae06', '4', '4', '215', NULL, '2025-12-27 00:54:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-27 00:54:35', '2025-12-27 00:55:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('232', 'aab1965a-c523-484e-884a-5f70938124c8', '4', '4', '216', NULL, '2025-12-27 00:59:52', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-27 00:59:52', '2025-12-27 01:00:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('233', 'f4767ad3-63de-46b0-9c7f-fe07d0519a1f', '4', '4', '217', NULL, '2025-12-27 01:18:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-27 01:18:07', '2025-12-27 01:18:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('234', '0fd2a833-9b07-4a79-8bc4-5deca7d37cc7', '4', '4', '218', NULL, '2025-12-27 01:20:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '39.00', '0.00', '0.00', 'order', NULL, '39.00', '39.00', '2025-12-27 01:20:01', '2025-12-27 01:20:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('235', '5f70315e-8cb3-4586-a8f6-9df5e539b96b', '4', '4', '219', NULL, '2025-12-27 01:33:37', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-27 01:33:37', '2025-12-27 01:33:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('236', '3ef933a2-1b2f-46bf-8a69-8371d2ce9136', '4', '4', '220', NULL, '2025-12-27 01:44:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2025-12-27 01:44:00', '2025-12-27 01:44:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('237', 'fc947fd0-f6e6-4556-9305-ea0b372e510d', '4', '4', '221', NULL, '2025-12-27 01:45:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-27 01:45:15', '2025-12-27 01:45:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('238', 'd8370399-73f7-4cd9-9d06-c377456400da', '4', '4', '222', NULL, '2025-12-27 02:11:16', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '42.00', '2025-12-27 02:11:16', '2025-12-27 02:17:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('239', 'da3d9a5f-7c97-476d-a48a-2c18583fef92', '5', '6', '2', NULL, '2025-12-27 15:54:18', NULL, NULL, '1', '7', '7', NULL, 'paid', 'pos', '6.49', '0.00', '0.00', 'order', NULL, '6.49', '6.49', '2025-12-27 15:54:18', '2025-12-27 15:54:27', '13', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('240', 'de743bca-b036-49fe-b064-c63fc77b5beb', '3', '5', '11', NULL, '2025-12-27 16:25:41', NULL, NULL, '1', '4', '4', NULL, 'billed', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '0.00', '2025-12-27 16:25:41', '2025-12-27 16:25:41', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('241', 'fc688f93-4bdd-47a0-91a0-b822499861a6', '4', '4', '223', NULL, '2025-12-27 20:01:56', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2025-12-27 20:01:56', '2025-12-27 20:02:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('242', 'adc80a76-6b6d-453f-970f-968039d9d5a0', '4', '4', '224', NULL, '2025-12-27 20:09:52', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2025-12-27 20:09:52', '2025-12-27 20:10:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('243', 'ad64164a-f888-42e7-8da2-3d75b8bc7dff', '4', '4', '225', NULL, '2025-12-27 20:34:32', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2025-12-27 20:34:32', '2025-12-27 20:34:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('244', 'c59d7c69-c5c5-4e55-a14a-14e909cbc90a', '4', '4', '226', NULL, '2025-12-27 21:04:46', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-27 21:04:46', '2025-12-27 21:05:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('245', '87bf57a7-4045-4547-8cfd-ad7702c3881e', '4', '4', '227', NULL, '2025-12-27 21:13:40', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '42.00', '0.00', '0.00', 'order', NULL, '42.00', '42.00', '2025-12-27 21:13:40', '2025-12-27 21:13:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('246', 'f406ffdb-797d-4e36-80d9-b6c73028f1a4', '4', '4', '228', NULL, '2025-12-27 21:24:11', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '65.00', '0.00', '0.00', 'order', NULL, '65.00', '65.00', '2025-12-27 21:24:11', '2025-12-27 21:24:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('247', '64aa53ce-3bbd-493f-9eda-20f5d6d1c867', '4', '4', '229', NULL, '2025-12-27 21:24:42', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-27 21:24:42', '2025-12-27 21:24:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('248', '915a4eb4-25b0-4f8c-9215-f3aeda82dab2', '4', '4', '230', NULL, '2025-12-27 21:47:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-27 21:47:26', '2025-12-27 21:55:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('249', '91be49b5-94ab-4e87-b6eb-b7d2ce172d10', '3', '5', '12', NULL, '2025-12-27 21:48:30', NULL, NULL, '1', '4', NULL, NULL, 'kot', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '0.00', '2025-12-27 21:48:30', '2025-12-27 21:48:30', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('250', 'd355e43e-dcd3-4ab5-acdf-6ab22b3700ab', '3', '5', '13', NULL, '2025-12-27 21:50:33', NULL, NULL, '0', '4', '4', NULL, 'paid', 'pos', '50.00', '0.00', '0.00', 'order', NULL, '50.00', '50.00', '2025-12-27 21:49:01', '2025-12-28 09:39:15', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('251', 'd3dbe323-adb0-4159-8b72-bd0110b92a7b', '3', '5', '14', NULL, '2025-12-27 21:49:49', '1', NULL, '1', '4', NULL, NULL, 'kot', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '0.00', '2025-12-27 21:49:49', '2025-12-27 21:50:03', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('252', '7895de1b-a0e2-46f6-a0b4-1ade129c8dda', '4', '4', '231', NULL, '2025-12-27 21:56:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-27 21:56:00', '2025-12-27 21:56:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('253', '95bd2b3d-703e-4afa-b6f1-f0c8b545dc8a', '4', '4', '232', NULL, '2025-12-27 22:08:58', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2025-12-27 22:08:58', '2025-12-27 22:09:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('254', 'c0993027-fd97-4742-b553-8b8a6266341f', '4', '4', '233', NULL, '2025-12-27 22:32:15', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-27 22:32:15', '2025-12-27 22:39:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('255', '018f64ba-126b-4c1a-8258-b5a18f3f1e06', '4', '4', '234', NULL, '2025-12-27 23:08:51', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-27 23:08:51', '2025-12-27 23:09:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('256', '11862b1d-be08-4512-8e54-2f0443e52177', '4', '4', '235', NULL, '2025-12-27 23:23:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2025-12-27 23:23:49', '2025-12-27 23:24:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('257', '0f1091b9-ff59-407a-8726-6a27341f0638', '4', '4', '236', NULL, '2025-12-27 23:30:00', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2025-12-27 23:30:00', '2025-12-27 23:30:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('258', '4047c1cd-f52f-497b-9579-931666e6bd4e', '4', '4', '237', NULL, '2025-12-27 23:31:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-27 23:31:07', '2025-12-27 23:31:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('259', 'f1620369-2f96-43a1-be0f-65a8b91015dd', '4', '4', '238', NULL, '2025-12-28 00:07:19', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-28 00:07:19', '2025-12-28 00:07:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('260', 'b93302d4-606c-4325-84f6-63234115f364', '4', '4', '239', NULL, '2025-12-28 00:42:51', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-28 00:42:51', '2025-12-28 00:43:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('261', '664093f0-adf9-41a4-8a87-55d20e25faf8', '4', '4', '240', NULL, '2025-12-28 00:52:40', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2025-12-28 00:52:40', '2025-12-28 00:52:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('262', 'a9d39935-9e78-4b5d-9a62-199bff4b48cc', '4', '4', '241', NULL, '2025-12-28 01:23:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-28 01:23:55', '2025-12-28 01:31:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('263', 'ca669cbd-b632-4578-966f-2124d11f55c1', '4', '4', '242', NULL, '2025-12-28 01:32:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '49.00', '0.00', '0.00', 'order', NULL, '49.00', '49.00', '2025-12-28 01:32:39', '2025-12-28 01:33:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('264', '86b29d50-3b73-4300-a295-0abc08a18855', '3', '5', '15', NULL, '2025-12-28 09:42:00', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-28 09:41:33', '2025-12-28 09:42:20', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('265', 'ca13c0db-b6f0-46e9-bd0f-ead6b1005108', '3', '5', '16', NULL, '2025-12-28 09:43:02', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-28 09:43:02', '2025-12-28 09:43:34', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('266', 'f91957df-7545-491c-98c3-182c3bea1688', '3', '5', '17', NULL, '2025-12-28 09:47:25', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-28 09:46:12', '2025-12-28 09:47:30', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('267', 'd0ae6851-ab3a-4067-9aa1-3c5dffc84197', '3', NULL, '18', NULL, '2025-12-28 09:52:49', NULL, NULL, '1', '4', NULL, NULL, 'kot', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '0.00', '2025-12-28 09:52:49', '2025-12-28 09:52:49', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('268', '08c1182d-362b-43ea-bbc3-b44e54bfee34', '3', NULL, '19', NULL, '2025-12-28 09:54:35', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2025-12-28 09:54:35', '2025-12-28 09:54:40', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('269', 'cfe5e1dc-15b8-43a1-a703-7a69a2a7651b', '3', NULL, '20', NULL, '2025-12-28 09:57:57', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-28 09:57:57', '2025-12-28 09:58:02', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('270', 'abeae965-8da4-4f37-b9d0-0bd124bc866f', '3', '10', '21', NULL, '2025-12-28 10:02:01', NULL, NULL, '1', '4', '4', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2025-12-28 10:02:01', '2025-12-28 10:02:08', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('271', 'e9d14c61-fe3a-487c-a4a9-99cc38a09f31', '4', '4', '243', NULL, '2025-12-28 21:43:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '62.00', '0.00', '0.00', 'order', NULL, '62.00', '62.00', '2025-12-28 20:24:12', '2025-12-28 21:43:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('272', '980a1877-0dd3-45b0-bc56-902fd4cf6cd1', '4', '4', '244', NULL, '2025-12-28 23:22:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '95.00', '0.00', '0.00', 'order', NULL, '95.00', '95.00', '2025-12-28 20:59:31', '2025-12-28 23:22:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('273', '2a51ec72-35e7-4a37-b1b2-7be9268bb472', '4', '4', '245', NULL, '2025-12-28 23:23:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '22.00', '0.00', '0.00', 'order', NULL, '22.00', '22.00', '2025-12-28 22:02:24', '2025-12-28 23:23:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('274', '71c11797-dd80-41e1-bfc3-07de191b6e43', '4', '4', '246', NULL, '2025-12-29 00:04:18', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '37.00', '0.00', '0.00', 'order', NULL, '37.00', '37.00', '2025-12-28 22:03:42', '2025-12-29 00:04:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('275', '939c09ed-30a7-4ef4-b2a3-93a83d37e555', '4', '4', '247', NULL, '2025-12-28 22:47:52', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2025-12-28 22:34:25', '2025-12-28 22:47:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('276', '884da519-cc68-489b-93bd-4b219de8b85b', '4', '4', '248', NULL, '2025-12-28 23:49:05', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '43.00', '0.00', '0.00', 'order', NULL, '43.00', '43.00', '2025-12-28 23:22:56', '2025-12-28 23:49:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('277', 'f31da924-c285-45f5-a13e-0565d76dcf08', '4', '4', '249', NULL, '2025-12-29 01:10:53', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2025-12-28 23:36:40', '2025-12-29 01:11:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('278', '937bc9cc-9be0-4ec0-bc32-624910621722', '4', '4', '250', NULL, '2025-12-28 23:49:35', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2025-12-28 23:49:35', '2025-12-28 23:49:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('279', '08fb4b88-fc5a-4b32-972b-86a8b5ab7fe5', '4', '4', '251', NULL, '2025-12-29 00:07:23', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '109.00', '0.00', '0.00', 'order', NULL, '109.00', '109.00', '2025-12-29 00:07:23', '2025-12-29 00:07:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('280', '57875ce7-b783-4909-97f5-70eb0f09f183', '4', '4', '252', NULL, '2025-12-29 20:45:05', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-29 20:26:14', '2025-12-29 20:45:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('281', 'f5976938-70d1-466e-b220-a06a4cebe827', '4', '4', '253', NULL, '2025-12-29 20:28:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-29 20:27:46', '2025-12-29 20:28:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('282', '2cdb870d-3380-4258-8c30-e40169a3a03a', '4', '4', '254', NULL, '2025-12-29 20:29:55', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2025-12-29 20:29:29', '2025-12-29 20:46:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('283', '5abd532f-f9c1-4ed8-9223-f8c315b4fe96', '4', '4', '255', NULL, '2025-12-29 20:36:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2025-12-29 20:36:20', '2025-12-29 20:36:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('284', 'a8f29731-b19d-45b7-ab14-e7e632d214f5', '4', '4', '256', NULL, '2025-12-30 20:11:27', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '85.00', '0.00', '0.00', 'order', NULL, '85.00', '85.00', '2025-12-30 20:11:27', '2025-12-30 20:11:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('285', 'ec646639-f846-42be-8543-a24d45adc9a8', '4', '4', '257', NULL, '2025-12-31 02:08:59', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2025-12-30 20:13:42', '2025-12-31 02:09:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('286', 'ef03d025-780e-4c7d-93d5-a12e9b1a8819', '4', '4', '258', NULL, '2025-12-30 21:40:01', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2025-12-30 21:40:01', '2025-12-30 21:40:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('287', '27600963-a0fa-4f7d-ad55-c339301e80d4', '4', '4', '259', NULL, '2025-12-31 01:00:35', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '68.00', '0.00', '0.00', 'order', NULL, '68.00', '68.00', '2025-12-30 22:20:19', '2025-12-31 01:01:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('288', '556c09b2-a0a3-4d65-9c83-cbc284c203cf', '4', '4', '260', NULL, '2025-12-30 23:43:00', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '56.00', '0.00', '0.00', 'order', NULL, '56.00', '56.00', '2025-12-30 22:58:09', '2025-12-30 23:43:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('289', 'b06adce0-d9f2-4840-b253-4f199e3830c3', '4', '4', '261', NULL, '2025-12-30 23:48:43', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2025-12-30 23:18:07', '2025-12-30 23:48:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('290', 'eadb0700-4bac-46b7-bda7-6d83edfeace7', '4', '4', '262', NULL, '2025-12-31 22:21:33', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2025-12-31 21:45:50', '2025-12-31 22:21:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('291', 'fcc822cf-9846-4271-a5e6-1b323f2c476f', '4', '4', '263', NULL, '2025-12-31 23:43:37', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '0.00', '2025-12-31 23:43:37', '2025-12-31 23:43:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('292', '93906915-5038-4279-a9be-39dc4b1f78ff', '4', '4', '264', NULL, '2026-01-01 00:06:14', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '20.50', '0.00', '0.00', 'order', NULL, '20.50', '0.00', '2026-01-01 00:06:14', '2026-01-01 00:06:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('293', 'b7241f89-a6d5-4ec8-8faf-adfb3676787b', '4', '4', '265', NULL, '2026-01-01 01:22:29', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '0.00', '2026-01-01 01:22:29', '2026-01-01 01:22:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('294', '6a657327-e282-458a-b531-37ef641296d6', '4', '4', '266', NULL, '2026-01-01 22:21:18', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '61.00', '0.00', '0.00', 'order', NULL, '61.00', '61.00', '2026-01-01 22:21:18', '2026-01-02 00:18:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('295', 'e8546cc9-e924-41c6-b434-93109cf063d3', '4', '4', '267', NULL, '2026-01-02 00:20:22', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-01-02 00:20:22', '2026-01-02 00:20:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('296', 'bb00279d-3c6f-4ff8-9e91-7693584d3569', '4', '4', '268', NULL, '2026-01-02 19:31:29', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-02 19:31:29', '2026-01-02 19:31:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('297', '25e4543a-df6a-4aa3-939a-bc9f1603b08c', '4', '4', '269', NULL, '2026-01-02 20:21:28', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-02 20:21:28', '2026-01-02 20:21:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('298', '7d28fa1a-85f2-4f47-b2e5-0a93a6453a0d', '4', '4', '270', NULL, '2026-01-02 21:01:44', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-02 21:01:44', '2026-01-02 21:01:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('299', 'cec1cf3d-1816-4530-ba74-f54316790442', '4', '4', '271', NULL, '2026-01-02 21:14:33', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-01-02 21:14:33', '2026-01-02 21:14:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('300', 'd41dd014-0ea1-409d-87c7-ce06a3a62d69', '4', '4', '272', NULL, '2026-01-02 21:37:48', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-02 21:37:48', '2026-01-02 21:42:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('301', 'c9e59cbb-23ab-4eff-84d0-9e88fdf32d3a', '4', '4', '273', NULL, '2026-01-02 22:01:31', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-02 22:01:31', '2026-01-02 22:02:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('302', '09030391-4e3a-4e4a-8c96-4a18a6a411f6', '4', '4', '274', NULL, '2026-01-02 22:27:29', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-02 22:27:29', '2026-01-02 22:27:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('303', '72201ef0-135e-441a-ac25-ac3e48dee5e7', '4', '4', '275', NULL, '2026-01-02 23:01:24', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-01-02 23:01:24', '2026-01-02 23:38:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('304', '2e8cfcbd-4cda-43ec-ae04-401e4f38f03a', '4', '4', '276', NULL, '2026-01-02 23:40:46', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '31.00', '0.00', '0.00', 'order', NULL, '31.00', '31.00', '2026-01-02 23:40:46', '2026-01-02 23:40:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('305', '4c1af56d-e840-4a48-a33f-b2f5694d3e8b', '4', '4', '277', NULL, '2026-01-02 23:50:21', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '90.00', '0.00', '0.00', 'order', NULL, '90.00', '90.00', '2026-01-02 23:50:21', '2026-01-02 23:55:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('306', 'ed55bde9-b578-4bf7-9a4f-af648abc8d88', '4', '4', '278', NULL, '2026-01-02 23:56:00', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-01-02 23:56:00', '2026-01-02 23:56:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('307', '72870a20-93af-4360-9823-ff844b4ab6e4', '4', '4', '279', NULL, '2026-01-02 23:59:51', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-01-02 23:59:51', '2026-01-03 00:27:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('308', '7f082e85-5517-4af9-ad64-70febaf4b64d', '4', '4', '280', NULL, '2026-01-03 00:27:41', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-01-03 00:27:41', '2026-01-03 00:27:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('309', '05446980-b61b-4b0a-b450-dc10f16ce76e', '4', '4', '281', NULL, '2026-01-03 00:43:40', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-03 00:43:40', '2026-01-03 00:53:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('310', '3e016cef-5d88-4c26-ac19-df54b14c3e17', '4', '4', '282', NULL, '2026-01-03 00:59:12', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-01-03 00:59:12', '2026-01-03 00:59:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('311', '29a9d1b6-f23f-4796-acf8-9bb32c836329', '4', '4', '283', NULL, '2026-01-03 01:05:28', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-01-03 01:05:28', '2026-01-03 01:05:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('312', 'd72239ef-6737-48b7-a9d3-90f2b313f53f', '4', '4', '284', NULL, '2026-01-03 23:47:41', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2026-01-03 23:47:41', '2026-01-03 23:47:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('313', 'e56a69f4-2b59-41b3-95d0-fb12d2f9215b', '4', '4', '285', NULL, '2026-01-03 23:48:16', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '27.00', '0.00', '0.00', 'order', NULL, '27.00', '27.00', '2026-01-03 23:48:16', '2026-01-03 23:48:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('314', '363c37ca-e636-49ab-be02-44755691d137', '4', '4', '286', NULL, '2026-01-03 23:48:44', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-03 23:48:44', '2026-01-03 23:48:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('315', '1574562c-a1e2-42bc-8da6-da476946322e', '4', '4', '287', NULL, '2026-01-04 00:01:44', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-01-04 00:01:44', '2026-01-04 00:02:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('316', '786910ed-8863-43ec-81af-9b79d1de8b21', '4', '4', '288', NULL, '2026-01-04 00:44:52', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-01-04 00:44:52', '2026-01-04 00:45:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('317', '38b0f6a1-4be1-4d4d-ada4-7a922ba9ae3e', '4', '4', '289', NULL, '2026-01-04 00:50:35', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-04 00:50:35', '2026-01-04 00:50:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('318', 'f7407d06-5f3c-4800-99e9-f6b9cd0b8fdd', '4', '4', '290', NULL, '2026-01-04 00:59:50', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-01-04 00:59:50', '2026-01-04 01:00:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('319', 'f2e7e555-a7ec-4a4e-b142-19b5386a99b4', '4', '4', '291', NULL, '2026-01-04 23:29:28', NULL, NULL, NULL, '9', '9', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-01-04 23:29:28', '2026-01-04 23:29:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('320', '335146c5-86bd-4e6c-9c80-36d9600596c9', '4', '4', '292', NULL, '2026-01-04 23:31:45', NULL, NULL, NULL, '9', NULL, NULL, 'kot', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '0.00', '2026-01-04 23:31:45', '2026-01-04 23:32:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('321', '2748595e-f120-442d-85d8-f13efebc18af', '4', '4', '293', NULL, '2026-01-07 21:53:51', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-01-07 21:53:51', '2026-01-07 21:54:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('322', '21cff6a8-d07a-4bd4-a1d8-620f9a4f478e', '4', '4', '294', NULL, '2026-01-07 21:54:11', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-01-07 21:54:11', '2026-01-07 21:54:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('323', '481b3879-e55c-4c01-8d2f-af0f88de4704', '4', '4', '295', NULL, '2026-01-07 22:03:09', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '11.50', '0.00', '0.00', 'order', NULL, '11.50', '11.50', '2026-01-07 22:03:09', '2026-01-07 22:03:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('324', 'fd2c5b88-39a6-4a83-8388-20daf35f51d0', '4', '4', '296', NULL, '2026-01-07 22:10:11', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '22.50', '0.00', '0.00', 'order', NULL, '22.50', '22.50', '2026-01-07 22:10:11', '2026-01-07 22:23:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('325', '3efc5804-b2a8-4e3a-b050-56e5158a956d', '4', '4', '297', NULL, '2026-01-07 22:23:35', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-01-07 22:23:35', '2026-01-07 22:23:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('326', '71bb0a8e-6c05-493d-98e4-e4d34f681219', '4', '4', '298', NULL, '2026-01-07 22:34:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-07 22:34:34', '2026-01-07 22:41:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('327', 'f575c1c8-0dd0-420d-9731-38d0f5be847b', '4', '4', '299', NULL, '2026-01-07 22:43:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-07 22:43:05', '2026-01-07 22:43:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('328', 'c406c24d-f1e1-4061-85cd-e29da4f51a6c', '4', '4', '300', NULL, '2026-01-07 22:47:18', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-01-07 22:47:18', '2026-01-07 22:56:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('329', 'f4c3a45e-d895-44d2-bcb2-8fe78b6f2787', '4', '4', '301', NULL, '2026-01-07 23:34:12', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-01-07 23:34:12', '2026-01-07 23:34:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('330', 'ec898309-3a12-461c-b497-d4541cc3c90c', '4', '4', '302', NULL, '2026-01-07 23:38:28', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-01-07 23:38:28', '2026-01-07 23:38:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('331', '38e2bd4e-26a5-48a6-9d2f-3119837f4040', '4', '4', '303', NULL, '2026-01-08 00:12:56', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-01-08 00:12:56', '2026-01-08 00:13:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('332', 'dd10ad65-9732-415a-8904-07611f53bc80', '4', '4', '304', NULL, '2026-01-08 00:55:51', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-01-08 00:55:51', '2026-01-08 00:57:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('333', '93b8cf1d-4a86-4110-84fd-f2aa26639a01', '4', '4', '305', NULL, '2026-01-08 01:33:28', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '64.00', '0.00', '0.00', 'order', NULL, '64.00', '64.00', '2026-01-08 01:33:28', '2026-01-08 01:35:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('334', 'b2def9ec-138f-4f3a-b796-2fac35a2b0b0', '4', '4', '306', NULL, '2026-01-09 23:46:57', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '356.00', '0.00', '0.00', 'order', NULL, '356.00', '356.00', '2026-01-09 23:46:57', '2026-01-09 23:47:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('335', '68326d6a-eb43-4c9b-8c3c-0d3c9aea3273', '4', '4', '307', NULL, '2026-01-10 03:03:20', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-01-10 03:03:20', '2026-01-10 03:03:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('336', 'f2fc6e43-5d2c-4288-8263-54eb132d086d', '4', '4', '308', NULL, '2026-01-10 18:46:51', NULL, NULL, NULL, '6', NULL, NULL, 'paid', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-10 18:45:20', '2026-01-10 18:46:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('337', '8435ca02-d902-422f-ab00-37ad2e89f5f3', '4', '4', '309', NULL, '2026-01-10 18:49:11', '2', NULL, '1', '6', '6', NULL, 'paid', 'pos', '385.00', '0.00', '0.00', 'order', NULL, '385.00', '385.00', '2026-01-10 18:49:11', '2026-01-10 18:49:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('338', 'f7ce860a-1f22-4394-9268-a44b832ce0a6', '4', '4', '310', NULL, '2026-01-11 00:15:44', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-01-11 00:15:44', '2026-01-11 00:15:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('339', 'ef1c95d5-4386-46de-a7d7-89fc888afc94', '4', '4', '311', NULL, '2026-01-11 00:16:45', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-11 00:16:45', '2026-01-11 00:30:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('340', 'c2260b09-8e90-4416-bb5f-4a35a6247854', '4', '4', '312', NULL, '2026-01-11 00:30:30', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-01-11 00:30:30', '2026-01-11 00:30:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('341', '371aa798-66c1-45e3-91ca-9ddcd014e815', '4', '4', '313', NULL, '2026-01-11 00:33:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-11 00:33:26', '2026-01-11 00:33:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('342', 'b06a8a75-c082-488f-b127-ccb2287fd56b', '4', '4', '314', NULL, '2026-01-11 00:55:09', NULL, NULL, NULL, '6', NULL, NULL, 'paid', 'pos', '407.00', '0.00', '0.00', 'order', NULL, '407.00', '407.00', '2026-01-11 00:55:09', '2026-01-11 00:55:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('343', '5122d7ad-8974-4dee-862a-8d87b21d79df', '4', '4', '315', NULL, '2026-01-11 01:05:25', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '94.00', '0.00', '0.00', 'order', NULL, '94.00', '94.00', '2026-01-11 01:05:25', '2026-01-11 01:05:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('344', '1dcbe55a-5ba2-4115-88ac-dba5fe0a4e79', '4', '4', '316', NULL, '2026-01-11 01:06:07', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-01-11 01:06:07', '2026-01-11 01:06:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('345', '7e3be6c3-01ae-42ed-8303-e6b7fd857ba7', '4', '4', '317', NULL, '2026-01-11 01:52:56', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-01-11 01:52:56', '2026-01-11 01:53:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('346', '55e6ec99-f4f9-497f-a327-cbb9920a8fac', '4', '4', '318', NULL, '2026-01-13 19:19:19', '2', NULL, '1', '9', NULL, NULL, 'paid', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-13 19:17:38', '2026-01-13 19:19:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('347', '85c5cdc1-5818-4794-9bdb-aa837ead1a49', '4', '4', '319', NULL, '2026-01-13 19:20:03', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-01-13 19:20:03', '2026-01-13 19:20:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('348', '036bb676-1444-48e8-985b-9aab3a96c9e5', '4', '4', '320', NULL, '2026-01-13 19:21:22', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '0.00', '2026-01-13 19:21:22', '2026-01-13 19:21:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('349', '70941f1a-8e2e-46b4-a1f4-1cdd6a3ad8d6', '4', '4', '321', NULL, '2026-01-13 19:36:46', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-13 19:23:04', '2026-01-13 19:36:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('350', '102e4900-5178-4001-87f7-e7445b8c8032', '4', '4', '322', NULL, '2026-01-13 19:36:09', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-13 19:32:38', '2026-01-13 19:36:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('351', '7eeb79a3-9ecd-460a-af8a-e3ec15df4734', '4', '4', '323', NULL, '2026-01-13 20:46:18', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '0.00', '2026-01-13 20:46:18', '2026-01-13 20:46:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('352', '40fc065b-e094-44f5-9f99-0f568c238ce8', '4', '4', '324', NULL, '2026-01-13 20:55:30', NULL, NULL, '1', '9', NULL, NULL, 'kot', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '0.00', '2026-01-13 20:55:30', '2026-01-13 20:55:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('353', 'e6c510fd-d139-4599-8727-5b14f667bb0b', '4', '12', '325', NULL, '2026-01-14 15:21:02', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-14 15:20:25', '2026-01-14 15:21:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('354', '8df8b39a-83ea-40ae-9fb4-b0122baed4e1', '3', '7', '22', NULL, '2026-01-14 15:25:59', NULL, NULL, '1', '4', NULL, NULL, 'kot', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '0.00', '2026-01-14 15:25:44', '2026-01-14 15:26:00', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('355', '3c767b5d-8f3e-4a33-80a5-1e2bc97afd4d', '4', '12', '326', NULL, '2026-01-14 15:27:47', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-14 15:26:37', '2026-01-14 15:27:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('356', '90221611-69a7-418b-b0fe-e2b45001cfb0', '4', '12', '327', NULL, '2026-01-14 15:31:48', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-14 15:31:23', '2026-01-14 15:31:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('357', '5798f095-b495-4823-9d45-b886a7d89e9d', '4', '4', '328', NULL, '2026-01-14 21:49:57', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-01-14 21:49:57', '2026-01-14 21:50:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('358', 'cbb44039-1595-4b5e-a55a-1e9393eb5092', '4', '4', '329', NULL, '2026-01-15 10:56:29', NULL, NULL, NULL, '9', NULL, NULL, 'paid', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-15 10:54:59', '2026-01-15 10:56:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('359', 'c3d1b23c-56eb-41e4-9ab9-9aa5d68fea49', '3', '7', '23', NULL, '2026-01-15 11:03:38', NULL, NULL, '1', '4', '4', NULL, 'billed', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '0.00', '2026-01-15 11:03:38', '2026-01-15 11:03:39', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('360', 'd54af6e8-59fd-4ddf-b1ca-b9932e69e8c9', '3', '7', '24', NULL, '2026-01-15 11:04:09', NULL, NULL, NULL, '4', NULL, NULL, 'kot', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '0.00', '2026-01-15 11:03:50', '2026-01-15 11:04:09', '7', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('361', 'bcc7b93a-933e-4144-b5ec-4f1c7476a595', '4', '12', '330', NULL, '2026-01-15 16:50:02', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-15 16:45:34', '2026-01-15 16:50:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'preparing', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('362', '5775c7ce-192a-445a-bba0-1896ad1c1793', '4', '12', '331', NULL, '2026-01-16 15:49:26', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '0.00', '0.00', '0.00', 'order', NULL, '0.00', '0.00', '2026-01-16 15:48:22', '2026-01-16 15:49:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('363', '0ceb234f-8dfe-4a33-8a4c-224ff1703687', '4', '4', '332', NULL, '2026-01-16 19:14:50', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-01-16 19:14:50', '2026-01-16 19:15:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('364', '854a286d-6c4d-4a55-95db-afdc395a5f77', '4', '4', '333', NULL, '2026-01-16 20:49:07', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-01-16 20:49:07', '2026-01-16 20:49:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('365', '3e72030b-da7b-4617-b18d-bec74809be3a', '4', '4', '334', NULL, '2026-01-16 21:11:28', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-16 21:11:28', '2026-01-16 21:11:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('366', '16039970-f670-4b11-b5ca-f79d287bd9de', '4', '4', '335', NULL, '2026-01-16 21:12:43', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '11.50', '0.00', '0.00', 'order', NULL, '11.50', '11.50', '2026-01-16 21:12:43', '2026-01-16 21:12:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('367', '4a69d450-b6d2-4453-ac21-671445d69c9e', '4', '4', '336', NULL, '2026-01-16 21:13:35', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-01-16 21:13:35', '2026-01-16 21:13:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('368', 'c303ecdd-ba05-4390-b9ff-3667a6211c00', '4', '4', '337', NULL, '2026-01-17 01:39:11', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '120.00', '0.00', '0.00', 'order', NULL, '120.00', '120.00', '2026-01-17 01:39:11', '2026-01-17 01:39:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('369', '00cd6e3b-e465-4a82-b0a6-f105dd5a78a9', '4', '4', '338', NULL, '2026-01-17 20:56:26', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-01-17 20:56:26', '2026-01-17 20:56:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('370', '42015670-4fc5-4861-bd80-823bd4f2609d', '4', '4', '339', NULL, '2026-01-17 21:21:54', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-01-17 21:21:54', '2026-01-17 21:21:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('371', '40d90c40-1e5f-456e-86af-2ccc72d02995', '4', '4', '340', NULL, '2026-01-17 21:47:44', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2026-01-17 21:47:44', '2026-01-17 21:47:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('372', 'd56f9d2e-274e-4d4a-b817-15884706d0a7', '4', '4', '341', NULL, '2026-01-17 21:58:06', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2026-01-17 21:58:06', '2026-01-17 21:58:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('373', '559705e8-f74d-4231-9fa0-bb968460b148', '4', '4', '342', NULL, '2026-01-18 00:49:47', NULL, NULL, '1', '9', '9', NULL, 'paid', 'pos', '33.50', '0.00', '0.00', 'order', NULL, '33.50', '33.50', '2026-01-18 00:49:47', '2026-01-18 00:49:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('374', '10a7d2bc-797d-47e3-a245-f90ab073174a', '4', '13', '343', NULL, '2026-01-19 18:54:48', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-01-19 06:41:39', '2026-01-19 18:54:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('375', 'b8c1f7d1-285f-40fa-b0e0-27c6304b52e7', '1', '14', '1', NULL, '2026-01-19 07:07:55', NULL, NULL, '1', '2', NULL, NULL, 'kot', 'pos', '299.00', '0.00', '0.00', 'order', NULL, '313.95', '0.00', '2026-01-19 07:07:55', '2026-01-19 07:07:55', '1', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('376', '7c940298-79aa-4221-b0af-362c03bcb7a9', '4', '13', '344', NULL, '2026-01-19 18:55:44', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-01-19 08:26:38', '2026-01-19 18:56:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('377', '9db1f016-a393-4398-b478-5a70389d4b24', '4', '13', '345', NULL, '2026-01-19 18:56:51', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-01-19 08:34:28', '2026-01-19 18:56:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('379', '95f9b0da-c300-468c-af64-bdfcfaf86cc5', '1', '14', '2', NULL, '2026-01-19 08:39:44', NULL, NULL, '1', '2', NULL, NULL, 'kot', 'pos', '179.00', '0.00', '0.00', 'order', NULL, '187.95', '0.00', '2026-01-19 08:39:44', '2026-01-19 08:39:44', '1', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('380', '85ac298f-614a-4faf-bc15-efdfa8180731', '1', '14', '3', NULL, '2026-01-19 08:40:06', NULL, NULL, '1', '2', '2', NULL, 'billed', 'pos', '348.00', '0.00', '17.40', 'order', NULL, '365.40', '0.00', '2026-01-19 08:40:06', '2026-01-19 08:40:06', '1', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('383', '8574107b-957e-4b6b-90aa-6ba3b6d4391f', '4', '12', '346', NULL, '2026-01-19 18:57:16', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-01-19 08:45:57', '2026-01-19 18:57:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('384', '028a9442-3fca-48be-a8a0-3b08d838173c', '4', '4', '347', NULL, '2026-01-19 18:59:04', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-19 18:58:40', '2026-01-19 18:59:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('385', 'c6de3631-398b-4ab7-9c1b-eeeb98b383d7', '4', '4', '348', NULL, '2026-01-19 19:01:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-01-19 19:01:48', '2026-01-19 19:02:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('386', 'dfed3b29-da31-4533-8841-a9c4f4c70a4e', '4', '4', '349', NULL, '2026-01-19 19:05:18', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-01-19 19:03:09', '2026-01-19 19:05:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('387', '831d30c5-b40d-45d0-ba58-78671694d963', '4', '4', '350', NULL, '2026-01-19 19:20:01', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-01-19 19:14:42', '2026-01-19 19:20:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('389', '923d422e-b37e-4566-997e-33f6233e10ac', '4', '4', '351', NULL, '2026-01-19 21:37:38', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-19 21:37:38', '2026-01-19 21:37:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('390', 'f56a9233-8e53-4ec1-9877-d52f40862606', '4', '4', '352', NULL, '2026-01-19 21:48:03', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-01-19 21:48:03', '2026-01-19 21:48:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('391', '0845ab57-b6bd-4813-bec1-8952bc6e3c36', '4', '4', '353', NULL, '2026-01-19 23:39:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-01-19 21:49:03', '2026-01-19 23:39:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('392', '5e32966e-64c6-4ddf-917a-07328c610e46', '4', '4', '354', NULL, '2026-01-19 21:49:45', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-01-19 21:49:45', '2026-01-19 21:49:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('393', '1c918ef6-3e6f-4a81-9609-1e22ea0f2edd', '4', '4', '355', NULL, '2026-01-20 01:27:09', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '42.50', '0.00', '0.00', 'order', NULL, '42.50', '42.50', '2026-01-19 21:51:01', '2026-01-20 01:27:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('394', 'd53f7b92-064b-4885-99d2-43aa016cfe09', '4', '4', '356', NULL, '2026-01-19 22:08:49', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-01-19 22:08:49', '2026-01-19 22:08:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('395', '5da3c06b-3bef-4e1d-be77-f184ab8ff2e5', '4', '4', '357', NULL, '2026-01-19 22:17:47', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-19 22:17:47', '2026-01-19 22:17:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('396', '3a2c3111-ae88-45f4-9711-f1fffdfcc018', '4', '4', '358', NULL, '2026-01-19 22:50:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-19 22:50:17', '2026-01-19 22:50:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('397', 'ee8cc0cd-0e2e-40a0-bbaf-b9edd83dfc4b', '4', '4', '359', NULL, '2026-01-19 23:32:54', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-19 23:32:54', '2026-01-19 23:32:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('398', 'dce2db67-5714-47b5-90ff-d76d361a871f', '4', '4', '360', NULL, '2026-01-19 23:46:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-19 23:46:48', '2026-01-19 23:46:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('399', '6b5f7df4-932e-4ac4-a342-7b7945e3b9ca', '4', '4', '361', NULL, '2026-01-20 00:04:59', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-20 00:04:59', '2026-01-20 00:05:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('400', '731ec7b8-572b-4f12-8091-3c4ecbb81791', '4', '4', '362', NULL, '2026-01-20 00:07:14', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-01-20 00:07:14', '2026-01-20 00:07:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('401', 'a4221d9a-ef55-457e-a4d3-6d1261ec7785', '4', '4', '363', NULL, '2026-01-20 00:41:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-20 00:41:10', '2026-01-20 00:41:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('402', '0ece0390-66ab-4bb9-bd47-91febf827dde', '4', '4', '364', NULL, '2026-01-20 01:28:12', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-20 01:28:12', '2026-01-20 01:28:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('403', 'adb5a45f-f04d-4b6b-9a7a-834c541413e3', '4', '4', '365', NULL, '2026-01-23 19:39:43', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-01-23 19:39:43', '2026-01-23 19:39:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('404', 'f4d26a01-f255-457d-a078-866a5ec6d8c3', '4', '4', '366', NULL, '2026-01-23 21:59:44', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '149.50', '0.00', '0.00', 'order', NULL, '149.50', '149.50', '2026-01-23 19:41:59', '2026-01-23 21:59:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('405', '1d82f9c7-d1df-4a97-8b9c-c1d178ea60e3', '4', '4', '367', NULL, '2026-01-23 22:26:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '163.50', '0.00', '0.00', 'order', NULL, '163.50', '163.50', '2026-01-23 20:09:20', '2026-01-23 22:27:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('406', 'add7683e-6d68-4c59-a64f-71060379a679', '4', '4', '368', NULL, '2026-01-23 23:32:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2026-01-23 20:42:03', '2026-01-23 23:32:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('407', '0c5a42ea-8740-4e57-98ac-70b81bb81842', '4', '4', '369', NULL, '2026-01-23 21:04:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-01-23 21:04:12', '2026-01-23 21:04:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('408', '2ad11f4c-ef03-4335-9317-dfd5ade78c74', '4', '4', '370', NULL, '2026-01-23 21:52:27', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-01-23 21:52:27', '2026-01-23 21:52:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('409', '243efe3b-7ece-4011-a040-8676f2dd6ac8', '4', '4', '371', NULL, '2026-01-24 01:02:03', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-01-23 21:53:18', '2026-01-24 01:02:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('410', '10bfbd34-4d03-4e2e-a01d-33940be7783d', '4', '4', '372', NULL, '2026-01-23 22:35:15', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-01-23 22:34:39', '2026-01-23 22:35:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('411', '4ece5c99-3012-44eb-afe1-1490b09b3a20', '4', '4', '373', NULL, '2026-01-24 01:01:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-01-23 22:38:56', '2026-01-24 01:01:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('412', '1312244c-a014-45d4-a099-d2bf20a2d6db', '4', '4', '374', NULL, '2026-01-24 00:16:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-23 23:33:25', '2026-01-24 00:16:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('413', 'b2e9c483-05e3-4721-9d8c-4d3d57a5003f', '4', '4', '375', NULL, '2026-01-25 02:16:54', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '49.50', '0.00', '0.00', 'order', NULL, '49.50', '49.50', '2026-01-25 02:16:54', '2026-01-25 02:17:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('414', '317e727d-2d8d-4acc-8429-c47a14f49c7d', '4', '4', '376', NULL, '2026-01-25 02:17:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '240.00', '0.00', '0.00', 'order', NULL, '240.00', '240.00', '2026-01-25 02:17:36', '2026-01-25 02:17:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('415', '34d58eb1-5d45-4bb9-9827-5e7bf452d082', '4', '4', '377', NULL, '2026-01-27 20:00:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '26.50', '0.00', '0.00', 'order', NULL, '26.50', '26.50', '2026-01-25 18:42:11', '2026-01-27 20:00:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('416', '4b50670e-5e12-44bd-9537-f18f69ee5176', '4', '4', '378', NULL, '2026-01-27 20:01:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-01-27 20:01:19', '2026-01-27 20:01:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('417', 'f901c873-9393-4e18-95e8-248ab2cf44f3', '4', '4', '379', NULL, '2026-01-27 22:43:14', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-01-27 22:43:14', '2026-01-27 22:43:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('418', '4ace355a-8ba8-4e21-bb0d-fdc4fe2caf66', '4', '4', '380', NULL, '2026-01-27 22:48:33', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-01-27 22:48:33', '2026-01-27 22:48:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('419', '88df2e3a-6b32-4b03-8de0-7caa9f9e0434', '4', '4', '381', NULL, '2026-01-28 00:37:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-01-27 23:31:07', '2026-01-28 00:37:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('420', 'e1845c7b-4d1c-4fd9-81a5-d27c172375df', '4', '4', '382', NULL, '2026-01-28 21:42:37', '2', NULL, '1', '11', '11', NULL, 'paid', 'pos', '78.50', '0.00', '0.00', 'order', NULL, '78.50', '78.50', '2026-01-28 21:38:53', '2026-01-28 21:44:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('421', '917db39b-b360-4e75-bd29-c4f77a30e323', '4', '4', '383', NULL, '2026-01-28 23:35:20', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '26.50', '0.00', '0.00', 'order', NULL, '26.50', '26.50', '2026-01-28 22:51:20', '2026-01-28 23:35:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('422', '7f05d431-06f0-4f6b-83dc-a89e52d1e0c3', '4', '4', '384', NULL, '2026-01-30 21:28:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '117.00', '0.00', '0.00', 'order', NULL, '117.00', '117.00', '2026-01-30 19:15:12', '2026-01-30 21:28:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('423', '9f4ba22b-d0ef-47c5-abb7-58e78a7f9782', '4', '4', '385', NULL, '2026-01-31 01:47:27', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '179.00', '0.00', '0.00', 'order', NULL, '179.00', '179.00', '2026-01-30 19:15:42', '2026-01-31 01:47:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('424', '28caffc8-f2cd-4c26-9e80-fc9d824299b7', '4', '4', '386', NULL, '2026-01-30 21:33:46', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-01-30 19:16:15', '2026-01-30 21:33:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('425', '15c68616-2bd7-4a74-b2ee-76c5372a221e', '4', '4', '387', NULL, '2026-01-30 20:01:42', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-01-30 20:01:42', '2026-01-30 20:01:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('426', 'f7a6b908-dbaf-4292-b06d-cf0891e4565a', '4', '4', '388', NULL, '2026-01-30 22:18:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '100.50', '0.00', '0.00', 'order', NULL, '100.50', '100.50', '2026-01-30 20:34:52', '2026-01-30 22:18:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('427', 'd4c719eb-5f4f-4228-9b9f-a4c3e32d05d7', '4', '4', '389', NULL, '2026-01-31 02:00:58', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '60.00', '0.00', '0.00', 'order', NULL, '60.00', '60.00', '2026-01-30 22:47:26', '2026-01-31 02:01:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('428', 'c9c02fe5-1ce7-49e3-830c-7edeae62c4b4', '4', '4', '390', NULL, '2026-01-31 01:07:44', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-01-31 01:07:44', '2026-01-31 01:07:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('429', 'fdc7def6-ec46-48a5-8897-bad1a92523af', '4', '4', '391', NULL, '2026-01-31 02:03:11', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '47.50', '0.00', '0.00', 'order', NULL, '47.50', '47.50', '2026-01-31 02:03:11', '2026-01-31 02:03:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('430', '02901344-08a6-4c03-80b7-53a006e079e8', '4', '4', '392', NULL, '2026-01-31 22:49:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '34.50', '0.00', '0.00', 'order', NULL, '34.50', '34.50', '2026-01-31 19:43:18', '2026-01-31 22:49:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('431', 'f0885e88-72ae-49a9-9606-ded492ded198', '4', '4', '393', NULL, '2026-01-31 22:50:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-01-31 19:44:15', '2026-01-31 22:50:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('432', '118717a5-5130-4f85-8b1f-c6930d86f762', '4', '4', '394', NULL, '2026-01-31 22:50:49', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-01-31 19:44:48', '2026-01-31 22:51:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('433', 'f246d8c3-e235-4736-940a-c994e44689dd', '4', '4', '395', NULL, '2026-01-31 23:22:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '50.00', '0.00', '0.00', 'order', NULL, '50.00', '50.00', '2026-01-31 19:45:48', '2026-01-31 23:22:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('434', 'df7e587b-c107-4386-be77-7ebfdf11b192', '4', '4', '396', NULL, '2026-02-01 01:40:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '313.50', '0.00', '0.00', 'order', NULL, '313.50', '313.50', '2026-01-31 20:15:04', '2026-02-01 01:40:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('435', 'bfe4cbb9-9cfe-4728-9cde-b196218a50bc', '4', '4', '397', NULL, '2026-01-31 20:30:00', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-01-31 20:27:54', '2026-01-31 20:30:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('436', '22faeb9d-1314-4cba-9324-03e98cf1915c', '4', '4', '398', NULL, '2026-01-31 20:37:45', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-01-31 20:37:45', '2026-01-31 20:37:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('437', '7454b251-bc04-4f38-aa58-60ea70f48b82', '4', '4', '399', NULL, '2026-01-31 23:27:08', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '37.00', '0.00', '0.00', 'order', NULL, '37.00', '37.00', '2026-01-31 20:49:13', '2026-01-31 23:27:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('438', '1c865bb9-0a8b-43a3-b010-0abe79ddce64', '4', '4', '400', NULL, '2026-01-31 23:26:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '36.50', '0.00', '0.00', 'order', NULL, '36.50', '36.50', '2026-01-31 20:49:48', '2026-01-31 23:26:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('439', '2669e041-6cb5-43e3-b43e-26e5b6e77b3d', '4', '4', '401', NULL, '2026-01-31 21:12:31', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-01-31 21:12:31', '2026-01-31 21:12:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('440', 'bb5e735d-9a10-41b3-a8ed-d4062d4ae75d', '4', '4', '402', NULL, '2026-01-31 21:13:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-01-31 21:13:36', '2026-01-31 21:13:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('441', '15b591b2-409e-4565-bd9b-2c3b48618fd5', '4', '4', '403', NULL, '2026-01-31 21:27:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-01-31 21:27:16', '2026-01-31 21:27:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('442', '2038e5cc-496e-40a4-bc0b-e54e574d61ab', '4', '4', '404', NULL, '2026-01-31 21:27:57', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-01-31 21:27:57', '2026-01-31 21:28:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('443', '8e59b419-183b-4d47-91a8-850aaccbac17', '4', '4', '405', NULL, '2026-01-31 22:02:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-01-31 22:02:32', '2026-01-31 22:02:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('444', 'b8e061eb-151b-449f-b14c-60f8214fae44', '4', '4', '406', NULL, '2026-01-31 22:08:07', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-01-31 22:08:07', '2026-01-31 22:08:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('445', '0056d2ca-e774-4278-8134-61f87095b2b7', '4', '4', '407', NULL, '2026-02-01 01:31:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-02-01 01:31:48', '2026-02-01 01:34:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('446', 'd7f450e1-eccd-4a30-8c62-557b43aa1b48', '4', '4', '408', NULL, '2026-02-01 18:21:10', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-01 18:20:34', '2026-02-01 18:21:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('449', 'd9b7f805-3bcd-4941-8d9a-b4a5de864bae', '4', '4', '409', NULL, '2026-02-01 19:19:33', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-01 19:19:33', '2026-02-01 19:23:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('450', '0e8c064a-7f10-46e1-ade6-8e537b409cb4', '4', '4', '410', NULL, '2026-02-01 20:37:27', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-01 20:37:27', '2026-02-01 20:37:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('452', 'acbfd3b6-9d2d-42e2-8cee-0559c597633e', '4', '4', '411', NULL, '2026-02-01 20:39:45', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-01 20:39:45', '2026-02-01 20:39:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('454', '48c4ad91-d6ef-45f3-a5db-d5b144ec9f73', '4', '4', '413', NULL, '2026-02-01 21:22:49', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-02-01 21:22:49', '2026-02-01 21:23:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('455', '386f3d28-aadf-4098-aa0e-e34e8e44af98', '4', '4', '414', NULL, '2026-02-01 21:25:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-01 21:25:17', '2026-02-01 21:25:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('457', '8fe31b5c-2aad-4895-b828-e4ba5d8f256a', '4', '4', '416', NULL, '2026-02-02 00:38:43', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-01 21:32:29', '2026-02-02 00:38:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('458', '273bc6ac-e0a7-4a1e-b0dd-e84328a15894', '4', '4', '417', NULL, '2026-02-01 23:25:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-02-01 21:37:13', '2026-02-01 23:25:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('459', '1049e34f-7525-4b2f-9715-e10b9e38e190', '4', '4', '418', NULL, '2026-02-01 23:13:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-02-01 21:59:52', '2026-02-01 23:13:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('460', '40b7c067-1745-44ea-b588-da289af43708', '4', '4', '419', NULL, '2026-02-01 22:50:45', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-02-01 22:03:46', '2026-02-01 22:50:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('461', '9780223a-6a18-48f1-868b-5bef35a33dbd', '4', '4', '420', NULL, '2026-02-01 22:16:30', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-01 22:16:30', '2026-02-01 22:16:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('462', '829a3787-3bc8-4c6f-afbd-90e21d7b9904', '4', '4', '421', NULL, '2026-02-01 22:35:06', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-01 22:35:06', '2026-02-01 22:35:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('463', '3c59077d-b531-4e8f-8e0e-80aa4ef93c79', '4', '4', '422', NULL, '2026-02-01 22:40:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-01 22:40:39', '2026-02-01 22:40:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('464', '39dc0f8a-163d-4b9e-9466-bbab787ef4fc', '4', '4', '423', NULL, '2026-02-02 01:50:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '72.50', '0.00', '0.00', 'order', NULL, '72.50', '72.50', '2026-02-01 23:43:50', '2026-02-02 01:50:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('465', 'c406ea4b-66ea-4190-baae-396ec003c6d8', '4', '4', '424', NULL, '2026-02-02 00:25:35', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '27.00', '0.00', '0.00', 'order', NULL, '27.00', '27.00', '2026-02-01 23:47:00', '2026-02-02 00:25:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('466', 'f4064ab4-f3df-485e-9299-2c573bb1b7b2', '4', '4', '425', NULL, '2026-02-02 00:06:02', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-02 00:06:02', '2026-02-02 00:07:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('467', '2270ac4e-fd88-441c-a90c-e3abfa630922', '4', '4', '426', NULL, '2026-02-02 02:12:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '23.00', '0.00', '0.00', 'order', NULL, '23.00', '23.00', '2026-02-02 00:28:25', '2026-02-02 02:13:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('468', '6fc7a5e9-a280-4e56-b0c5-e9d3ff8788a7', '4', '4', '427', NULL, '2026-02-02 00:33:49', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-02 00:33:49', '2026-02-02 00:34:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('469', '5c727ca5-bfc2-4cb9-a2de-7aca4a85c903', '4', '4', '428', NULL, '2026-02-02 01:56:26', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-02 01:56:26', '2026-02-02 01:56:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('470', 'c3b9054f-064c-46b3-877f-5fa98022670e', '4', '4', '429', NULL, '2026-02-02 02:23:54', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-02 02:23:54', '2026-02-02 02:24:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('471', '3b624bca-ad66-45dc-94ff-87b4dec72311', '4', '4', '430', NULL, '2026-02-02 02:25:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-02 02:25:32', '2026-02-02 02:25:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('472', 'b0348240-5ec3-4180-ae77-a3852f4c8d22', '4', '4', '431', NULL, '2026-02-02 23:25:28', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-02 23:25:28', '2026-02-02 23:25:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('473', '7f23157f-fc89-4708-b94f-6152e639433b', '4', '4', '432', NULL, '2026-02-03 00:31:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-03 00:31:20', '2026-02-03 00:31:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('474', 'e53bd692-c5e1-4a9d-860f-e3a47000fd54', '4', '4', '433', NULL, '2026-02-03 18:41:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '25.50', '0.00', '0.00', 'order', NULL, '25.50', '25.50', '2026-02-03 18:41:57', '2026-02-03 18:42:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('475', '4e6600ca-bc8b-4b49-bd54-432468c9c251', '4', '4', '434', NULL, '2026-02-03 18:45:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-03 18:43:57', '2026-02-03 18:45:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('476', 'c4839ade-a4f8-451a-badb-877154716be0', '4', '4', '435', NULL, '2026-02-03 22:55:40', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-02-03 22:17:12', '2026-02-03 22:55:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('477', '29ea6d02-c705-466b-b6d1-11803d0b4d7c', '4', '4', '436', NULL, '2026-02-04 21:05:58', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '23.50', '0.00', '0.00', 'order', NULL, '23.50', '23.50', '2026-02-04 19:23:37', '2026-02-04 21:06:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('478', '6e4c79c3-0714-4679-8923-fb969e896c4c', '4', '4', '437', NULL, '2026-02-04 21:11:40', NULL, NULL, '1', '5', '5', NULL, 'billed', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '0.00', '2026-02-04 21:03:28', '2026-02-04 21:11:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('479', '4a3ad085-0898-4155-bdc9-f4d6e7a59bf1', '4', '4', '438', NULL, '2026-02-04 21:28:13', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-04 21:27:55', '2026-02-04 21:28:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('480', '96670308-3d2e-4db2-bc80-6229e11096f6', '4', '4', '439', NULL, '2026-02-04 22:34:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-02-04 21:44:54', '2026-02-04 22:34:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('481', '481fb440-8b3f-48ef-ae5c-a7992963b3c3', '4', '4', '440', NULL, '2026-02-04 21:57:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-04 21:57:30', '2026-02-04 21:58:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('482', '110e9cce-1550-4c6a-b323-9be8c2a67d56', '4', '4', '441', NULL, '2026-02-04 22:33:11', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-04 22:32:52', '2026-02-04 22:33:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('483', 'ef63275e-d23f-4d12-9598-d3dbd3757143', '4', '4', '442', NULL, '2026-02-04 22:38:26', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-04 22:38:02', '2026-02-04 22:38:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('484', 'b41a0b00-4283-4713-9578-fb0251fbb71f', '4', '4', '443', NULL, '2026-02-04 23:24:42', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-02-04 23:00:17', '2026-02-04 23:24:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('485', '9eb566c0-9d5b-41c8-99ea-0b2563988015', '4', '4', '444', NULL, '2026-02-05 00:22:11', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '22.00', '0.00', '0.00', 'order', NULL, '22.00', '22.00', '2026-02-04 23:23:05', '2026-02-05 00:22:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('486', 'c51b33ae-5007-446d-acbb-6dafcc34ed59', '4', '4', '445', NULL, '2026-02-05 00:28:46', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '17.50', '0.00', '0.00', 'order', NULL, '17.50', '17.50', '2026-02-04 23:35:12', '2026-02-05 00:31:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('487', 'd4770d04-6be7-423f-afb1-acd076c039fa', '4', '4', '446', NULL, '2026-02-05 00:04:38', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-05 00:04:10', '2026-02-05 00:04:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('488', 'a593f0a2-57ab-41aa-8960-4be18a8699f9', '4', '4', '447', NULL, '2026-02-05 00:57:27', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-05 00:05:50', '2026-02-05 00:59:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('489', 'ddb09af7-5566-466d-8313-4a2875e0efc9', '4', '4', '448', NULL, '2026-02-05 02:48:54', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-02-05 01:05:12', '2026-02-05 02:51:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, 'items', NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('490', '1f4b213f-fae7-4831-ac3b-a723f39a69f0', '4', '4', '449', NULL, '2026-02-05 02:40:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-02-05 01:09:23', '2026-02-05 02:40:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('491', '48f4be26-5ca8-441c-9027-c3b1f6393ee5', '4', '4', '450', NULL, '2026-02-05 01:23:46', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-05 01:22:07', '2026-02-05 01:24:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('492', '93e237ea-7f9c-454c-bc29-5d56b14c7e2a', '4', '4', '451', NULL, '2026-02-05 02:33:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-05 01:26:53', '2026-02-05 02:33:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('493', '7bbbad02-a02e-4da2-8326-2d159011e376', '4', '4', '452', NULL, '2026-02-05 02:39:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-05 02:17:28', '2026-02-05 02:39:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('494', '519ce639-6fcf-43e6-8391-c6ae6badad01', '4', '4', '453', NULL, '2026-02-06 22:28:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '53.00', '0.00', '0.00', 'order', NULL, '53.00', '53.00', '2026-02-06 20:06:34', '2026-02-06 22:29:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('495', 'e85c44d0-cd0a-4d57-b538-ed617827daf5', '4', '4', '454', NULL, '2026-02-06 22:34:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-02-06 21:19:00', '2026-02-06 22:36:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('496', '7b9b4a84-abd3-4cbc-badb-66b96808882e', '4', '4', '455', NULL, '2026-02-06 22:13:54', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.50', '0.00', '0.00', 'order', NULL, '7.50', '7.50', '2026-02-06 22:13:30', '2026-02-06 22:14:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('497', '1e51bb96-2dd6-4203-9fd8-c3ac54de46ce', '4', '4', '456', NULL, '2026-02-06 22:32:38', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-06 22:32:25', '2026-02-06 22:32:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('498', '3c5739f0-d899-4734-a03e-d70bcdd51037', '4', '4', '457', NULL, '2026-02-07 00:36:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2026-02-06 22:43:48', '2026-02-07 00:37:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('499', 'd9a94551-e1e5-4f94-a937-04dba972e604', '4', '4', '458', NULL, '2026-02-07 03:44:21', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-06 23:00:19', '2026-02-07 03:44:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('500', 'ee049937-ecff-4cca-8c74-59fa97569427', '4', '4', '459', NULL, '2026-02-07 00:11:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-02-07 00:11:24', '2026-02-07 00:12:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('501', '9ad5adb4-e0ec-43cb-a83b-6774313fecde', '4', '4', '460', NULL, '2026-02-07 03:24:05', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '39.00', '0.00', '0.00', 'order', NULL, '39.00', '39.00', '2026-02-07 01:11:16', '2026-02-07 03:24:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('502', 'd3e6601f-86ee-4b7a-8e93-e455536e0467', '4', '4', '461', NULL, '2026-02-07 01:27:04', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-07 01:26:23', '2026-02-07 01:27:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('503', 'a7a4ec8c-4c8e-437f-a034-ccb891cf5583', '4', '4', '462', NULL, '2026-02-07 03:18:24', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-07 01:58:39', '2026-02-07 03:18:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('504', '27737580-a050-414f-b819-0b5b43ddccc4', '4', '4', '463', NULL, '2026-02-07 02:06:42', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-07 02:06:25', '2026-02-07 02:07:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('505', '8b230bb4-a73b-4430-9a72-d122a645e656', '4', '4', '464', NULL, '2026-02-10 00:11:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '93.00', '0.00', '0.00', 'order', NULL, '93.00', '93.00', '2026-02-07 18:35:55', '2026-02-10 00:11:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('506', 'e08c25db-6eed-4007-9582-172fa370bfe8', '4', '4', '465', NULL, '2026-02-07 19:52:26', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-07 19:51:45', '2026-02-07 19:52:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('507', '3aeacbba-e4a1-428b-a28a-01e5029b2807', '4', '4', '466', NULL, '2026-02-07 20:12:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-02-07 20:11:51', '2026-02-07 20:12:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('508', '7f71c0b3-664e-4f54-8bd5-58f5a77f80df', '4', '4', '467', NULL, '2026-02-07 21:03:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-02-07 21:02:27', '2026-02-07 21:03:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('509', '47258083-4772-4d04-b493-7a354245bd3d', '4', '4', '468', NULL, '2026-02-10 00:12:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-02-07 21:10:25', '2026-02-10 00:12:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('510', '76520cb7-6288-4997-95c2-2839acf0a4c6', '4', '4', '469', NULL, '2026-02-09 19:40:33', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-02-09 19:39:56', '2026-02-09 19:40:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('511', '5167bc43-08ae-490a-9de7-90c28523aa7f', '4', '4', '470', NULL, '2026-02-09 19:42:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-02-09 19:42:16', '2026-02-09 19:42:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('512', 'f9c55f63-6775-4191-98ea-f550deb2d713', '4', '4', '471', NULL, '2026-02-09 19:43:13', NULL, NULL, NULL, '5', NULL, NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-09 19:42:53', '2026-02-09 19:43:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('513', 'e5b185ea-9e96-4c15-b8dd-97d0f05d385b', '4', '4', '472', NULL, '2026-02-10 00:12:36', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '71.50', '0.00', '0.00', 'order', NULL, '71.50', '71.50', '2026-02-09 20:52:00', '2026-02-10 00:12:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('514', 'a9b9c4d6-c2be-40b0-b82b-5d313974a260', '4', '4', '473', NULL, '2026-02-09 21:11:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-09 21:11:39', '2026-02-09 21:11:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('515', '7146d4de-939f-47d9-a7cc-773d875862d5', '4', '4', '474', NULL, '2026-02-10 00:16:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-09 21:52:34', '2026-02-10 00:16:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('516', 'ed10faac-76a2-49e9-af9b-903c86a1e77c', '4', '4', '475', NULL, '2026-02-09 22:06:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-09 22:06:57', '2026-02-09 22:07:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('517', '8ead5e65-726a-46f2-bbbe-794c1439c2ec', '4', '4', '476', NULL, '2026-02-09 22:54:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-09 22:54:51', '2026-02-09 22:55:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('518', '3d45b5d8-8f97-4083-a05e-a8ad169e45ad', '4', '4', '477', NULL, '2026-02-10 01:59:14', NULL, NULL, NULL, '5', NULL, NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-10 00:20:51', '2026-02-10 01:59:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('519', '3e52c53e-9ff0-48df-8764-e3b432766c47', '4', '4', '478', NULL, '2026-02-10 00:21:33', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '0.00', '2026-02-10 00:21:33', '2026-02-10 00:21:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('520', '6a39c845-867f-4c36-bded-b0541aa77f4c', '4', '4', '479', NULL, '2026-02-10 02:12:38', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-10 02:01:12', '2026-02-10 02:12:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('521', 'a7045540-5c04-474a-9664-b8e413bbcf33', '4', '4', '480', NULL, '2026-02-10 04:15:21', NULL, NULL, '1', '5', NULL, NULL, 'paid', 'pos', '49.50', '0.00', '0.00', 'order', NULL, '49.50', '49.50', '2026-02-10 02:05:28', '2026-02-10 04:16:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('522', '71de6ac7-50bb-49de-8508-0934e0abd5cd', '4', '4', '481', NULL, '2026-02-10 02:19:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-10 02:19:20', '2026-02-10 02:19:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('523', '06f3b8e1-6dc7-4f53-acfa-ac92acb1df0d', '4', '4', '482', NULL, '2026-02-10 03:51:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-02-10 03:33:33', '2026-02-10 03:51:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('524', '16fee76b-dcc4-4535-937d-c91eef14a593', '4', '4', '483', NULL, '2026-02-11 00:25:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-10 19:20:43', '2026-02-11 00:25:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('525', '7168f49d-9b59-400f-8cf0-2ff223dd230b', '4', '4', '484', NULL, '2026-02-10 21:53:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-10 21:52:32', '2026-02-10 21:54:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('527', '324af9ad-cac4-40f0-971e-bb401bc2de18', '4', '4', '485', NULL, '2026-02-11 18:46:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2026-02-11 18:46:48', '2026-02-11 18:46:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('528', '6262cb2b-cda6-465e-89c8-d50cc07225a0', '4', '4', '486', NULL, '2026-02-11 20:20:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-11 19:09:14', '2026-02-11 20:20:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('529', '33a30d11-fb7b-4a62-b7e4-7d8261646cc1', '4', '4', '487', NULL, '2026-02-11 21:14:04', NULL, NULL, '1', '5', '5', NULL, 'billed', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '0.00', '2026-02-11 20:56:59', '2026-02-11 21:14:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('530', 'b25ef531-55ee-468f-93ee-958e82b43f56', '4', '4', '488', NULL, '2026-02-11 21:28:01', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '53.50', '0.00', '0.00', 'order', NULL, '53.50', '53.50', '2026-02-11 21:18:29', '2026-02-11 21:28:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('531', '0b2a9646-41b3-41c3-931f-66b79426b368', '4', '4', '489', NULL, '2026-02-11 21:58:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '32.00', '0.00', '0.00', 'order', NULL, '32.00', '32.00', '2026-02-11 21:23:37', '2026-02-11 21:58:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('532', 'bb24d737-09fe-49f1-9148-26688f85ca68', '4', '4', '490', NULL, '2026-02-11 22:58:27', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-11 22:58:15', '2026-02-11 22:59:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('533', '7a6317fc-3aea-4e71-9224-3090b1cfa9bb', '4', '4', '491', NULL, '2026-02-12 01:54:19', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-12 00:07:42', '2026-02-12 01:54:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('534', '0dd09320-d9df-4466-b699-953144380ebe', '4', '4', '492', NULL, '2026-02-12 21:23:34', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-12 21:23:13', '2026-02-12 21:23:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('535', '91286543-f311-4f30-97dc-7ce9e5a693bb', '4', '4', '493', NULL, '2026-02-12 21:58:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-12 21:58:18', '2026-02-12 21:58:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('536', 'c3617475-0da8-40ee-b1ce-c413b5d4dc3c', '4', '4', '494', NULL, '2026-02-12 22:54:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-02-12 22:04:44', '2026-02-12 22:56:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('537', '5a33eeaa-2f37-45ff-8c5f-5fae40aeb619', '4', '4', '495', NULL, '2026-02-12 22:52:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-12 22:05:02', '2026-02-12 22:53:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('538', 'f16506e0-6cb5-4cdb-87ca-137572bf83eb', '4', '4', '496', NULL, '2026-02-12 22:40:35', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '38.00', '0.00', '0.00', 'order', NULL, '38.00', '38.00', '2026-02-12 22:40:18', '2026-02-12 22:40:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('539', '7b5037fd-14bb-423c-9de1-c8196bce06e6', '4', '4', '497', NULL, '2026-02-12 22:53:36', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-12 22:51:47', '2026-02-12 22:54:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('540', 'd70dfb2d-5ab8-4d02-8849-87f875381083', '4', '4', '498', NULL, '2026-02-12 23:22:59', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-12 23:22:00', '2026-02-12 23:23:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('541', 'a9891133-2925-48ca-a3a1-7b35d24a18b3', '4', '4', '499', NULL, '2026-02-12 23:48:24', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.50', '0.00', '0.00', 'order', NULL, '7.50', '7.50', '2026-02-12 23:47:44', '2026-02-12 23:48:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('542', '144f9e9f-ecdd-493e-baa3-4be0bedd3a7c', '4', '4', '500', NULL, '2026-02-12 23:54:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-02-12 23:54:14', '2026-02-12 23:55:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('543', '96127564-b8f1-4061-8a2a-02cd071edeab', '4', '4', '501', NULL, '2026-02-13 01:56:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '14.50', '0.00', '0.00', 'order', NULL, '14.50', '14.50', '2026-02-12 23:59:07', '2026-02-13 01:58:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('544', '8aa9005f-cbd2-42a6-9ca6-f3070d7deb09', '4', '4', '502', NULL, '2026-02-13 03:18:04', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '50.00', '0.00', '0.00', 'order', NULL, '50.00', '50.00', '2026-02-13 00:01:03', '2026-02-13 03:21:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('545', '39834f54-7d38-4119-bf95-c3a3d96d4be9', '4', '4', '503', NULL, '2026-02-13 00:32:59', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-13 00:14:25', '2026-02-13 00:33:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('546', '9bdb82ca-0191-4d62-a537-5c2bf06506bd', '4', '4', '504', NULL, '2026-02-13 00:32:15', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-13 00:31:43', '2026-02-13 00:32:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('547', '45ca38de-0820-466c-bef0-edd49d59ec36', '4', '4', '505', NULL, '2026-02-13 00:39:00', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-13 00:38:05', '2026-02-13 00:40:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('548', 'a675c026-aacd-4fd3-a9c4-9476a66500a5', '4', '4', '506', NULL, '2026-02-13 02:24:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '28.00', '0.00', '0.00', 'order', NULL, '28.00', '28.00', '2026-02-13 01:11:25', '2026-02-13 02:25:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('549', '22660d97-fe82-4502-9b1f-8272a4b24592', '4', '4', '507', NULL, '2026-02-13 02:39:14', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-13 01:58:56', '2026-02-13 02:39:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('550', '4ab56bab-1013-477a-b0f6-6e5e4c7c6b6c', '4', '4', '508', NULL, '2026-02-13 02:57:34', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-13 02:57:09', '2026-02-13 02:57:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('551', 'a4326a85-f97b-4859-80aa-5702c012efb9', '4', '4', '509', NULL, '2026-02-13 03:15:26', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '25.50', '0.00', '0.00', 'order', NULL, '25.50', '25.50', '2026-02-13 03:02:42', '2026-02-13 03:15:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('552', 'ca61de5e-8be2-4c62-af49-0b4aadd890b7', '4', '4', '510', NULL, '2026-02-13 03:44:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-13 03:43:42', '2026-02-13 03:44:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('553', 'ad30e938-76ca-48f6-8257-82e34d5d34d4', '4', NULL, '511', NULL, '2026-02-13 18:56:01', NULL, NULL, NULL, NULL, '5', NULL, 'paid', 'shop', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-13 18:45:33', '2026-02-13 18:56:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('554', '434904da-f046-4121-b97d-512341803692', '4', '4', '512', NULL, '2026-02-13 19:10:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-13 19:10:03', '2026-02-13 19:10:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('555', '93cc8a0c-dd8f-41c9-95f5-f55dc4bb442e', '4', '4', '513', NULL, '2026-02-13 19:32:56', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '36.00', '0.00', '0.00', 'order', NULL, '36.00', '36.00', '2026-02-13 19:32:56', '2026-02-13 19:33:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('556', '0b522af1-a22f-4d41-9514-caa082f3fa28', '4', '4', '514', NULL, '2026-02-13 19:39:44', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-13 19:39:44', '2026-02-13 19:41:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('557', '6607a04d-7374-427f-bf27-319e2ef4def0', '4', '4', '515', NULL, '2026-02-13 19:42:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-02-13 19:42:20', '2026-02-13 19:45:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('558', 'e87bdfdb-0e77-4e33-a9cd-7c618faaac8b', '4', '4', '516', NULL, '2026-02-13 19:47:31', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-02-13 19:47:31', '2026-02-13 19:47:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'placed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('559', 'faafcbb0-767a-4862-bd39-37a0bdfe5617', '4', '4', '517', NULL, '2026-02-13 20:05:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-13 20:05:37', '2026-02-13 20:05:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('560', '208a3ae5-e908-4b9c-b8c2-146e0c7d2d9c', '4', '4', '518', NULL, '2026-02-13 20:14:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-13 20:13:02', '2026-02-13 20:14:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('561', 'b11e711a-b921-46cf-8147-95bc068f44e4', '4', '4', '519', NULL, '2026-02-13 22:46:06', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '89.50', '0.00', '0.00', 'order', NULL, '89.50', '89.50', '2026-02-13 20:21:06', '2026-02-13 22:46:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('562', '23d0c9cc-04fc-480c-b59e-6a425ded169a', '4', '4', '520', NULL, '2026-02-13 20:39:05', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-13 20:39:05', '2026-02-13 20:42:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('563', 'bc3485f0-5cdd-4430-bc07-5081db053c0e', '4', '4', '521', NULL, '2026-02-13 20:50:33', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-13 20:50:33', '2026-02-13 20:50:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('564', 'a7327dfd-1e02-4761-974a-8e0f46122d0b', '4', '4', '522', NULL, '2026-02-13 20:51:16', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-02-13 20:51:16', '2026-02-13 20:51:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('565', 'd4cb872c-39dd-4b99-8649-aea6916e7855', '4', '4', '523', NULL, '2026-02-13 20:51:40', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-13 20:51:40', '2026-02-13 20:51:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('566', '751dd495-9787-4911-84e5-78106749fe80', '4', '4', '524', NULL, '2026-02-13 20:52:45', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-02-13 20:52:45', '2026-02-13 20:52:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('567', 'be1821cc-ee63-49aa-97c8-1398f4c80402', '4', '4', '525', NULL, '2026-02-13 22:59:28', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '57.50', '0.00', '0.00', 'order', NULL, '57.50', '57.50', '2026-02-13 20:53:21', '2026-02-13 22:59:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('568', '1f46618a-ebf3-4a80-bf59-2c6c5e95d5c0', '4', '4', '526', NULL, '2026-02-13 20:56:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-02-13 20:56:48', '2026-02-13 20:56:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('569', '8391e031-f85b-48c4-bcbb-9015339811d1', '4', '4', '527', NULL, '2026-02-13 21:00:39', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-02-13 21:00:39', '2026-02-13 21:00:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('570', 'e959d4bf-ae25-487e-9eaa-e8d6e13e6ad8', '4', '4', '528', NULL, '2026-02-13 21:19:21', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-13 21:15:55', '2026-02-13 21:19:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('571', 'b2694bb7-0f76-4514-9ef0-7ba454351ebf', '4', '4', '529', NULL, '2026-02-13 21:17:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-13 21:17:36', '2026-02-13 21:17:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('572', '975f7fad-d582-466b-9ef3-7e9c25723b12', '4', '4', '530', NULL, '2026-02-14 00:10:52', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '66.50', '0.00', '0.00', 'order', NULL, '66.50', '66.50', '2026-02-13 21:25:05', '2026-02-14 00:11:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('573', '87ffb6cf-1c84-4863-b43e-07f44ce1293b', '4', '4', '531', NULL, '2026-02-13 22:02:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-13 22:02:12', '2026-02-13 22:02:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('574', '065d71ab-c58d-4822-90cf-09b9dc701dc5', '4', '4', '532', NULL, '2026-02-13 22:07:59', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-13 22:07:59', '2026-02-13 22:08:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('575', '8ed3608d-1f13-4cc8-a81d-02cfc771ff50', '4', '4', '533', NULL, '2026-02-13 22:11:45', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-13 22:11:45', '2026-02-13 22:11:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('576', '795833c3-b02b-4701-b55e-7ece32a15a34', '4', '4', '534', NULL, '2026-02-13 22:22:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '20.50', '0.00', '0.00', 'order', NULL, '20.50', '20.50', '2026-02-13 22:22:23', '2026-02-13 22:22:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('577', 'c464df14-789e-4a92-9ab2-c2a3e95e04cb', '4', '4', '535', NULL, '2026-02-13 22:28:20', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-13 22:28:20', '2026-02-13 22:28:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('578', '257ea0ea-3d10-4fd6-9074-c6427fc00d3a', '4', '4', '536', NULL, '2026-02-13 22:35:03', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-13 22:35:03', '2026-02-13 22:36:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('579', '555d7e37-0770-47c1-bf61-8a6f94c3a64b', '4', '4', '537', NULL, '2026-02-13 22:36:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-13 22:36:55', '2026-02-13 22:37:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('580', '050ae12d-c8b0-445d-bfcd-4b8761f43e89', '4', '4', '538', NULL, '2026-02-13 22:48:13', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-13 22:48:13', '2026-02-13 22:50:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('581', 'bada6ddc-eb47-41ce-b845-79d0de79930c', '4', '4', '539', NULL, '2026-02-13 22:56:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-13 22:56:32', '2026-02-13 22:56:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('582', '6b6e944d-517c-4c48-a3c5-15b342f66a0c', '4', '4', '540', NULL, '2026-02-13 23:14:28', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-13 23:14:28', '2026-02-13 23:14:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('583', '2656bfdc-a09b-47b9-94e7-68a4b6545e35', '4', '4', '541', NULL, '2026-02-13 23:23:25', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-13 23:23:25', '2026-02-13 23:23:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('584', '042bf3e4-876f-40c9-a33e-2da4abb181ae', '4', '4', '542', NULL, '2026-02-13 23:33:19', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-02-13 23:33:19', '2026-02-13 23:33:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('585', '347ac987-dbc8-461d-99f6-4887ea884df8', '4', '4', '543', NULL, '2026-02-13 23:53:26', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-13 23:53:26', '2026-02-13 23:53:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('586', 'f0e27c19-2b59-4343-9a0c-eaeb2435d925', '4', '4', '544', NULL, '2026-02-13 23:54:14', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-13 23:54:14', '2026-02-13 23:54:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('587', 'e87bc9cb-86a5-4fd1-91f6-85287f9e6885', '4', '4', '545', NULL, '2026-02-13 23:56:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-13 23:56:32', '2026-02-13 23:56:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('588', '479d7421-c5b6-4de0-a626-23c07622fdb6', '4', '4', '546', NULL, '2026-02-14 00:06:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-14 00:06:51', '2026-02-14 00:07:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('589', 'e434c7f7-ed66-4a14-b729-7f519bce741b', '4', '4', '547', NULL, '2026-02-14 00:13:04', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-14 00:13:04', '2026-02-14 00:13:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('590', 'd2a89667-e335-4c9f-b5d9-100a6fedeee2', '4', '4', '548', NULL, '2026-02-14 00:52:37', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 00:52:37', '2026-02-14 00:52:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('591', 'ed201f05-2a32-4a88-970e-e8edfad5e857', '4', '4', '549', NULL, '2026-02-14 01:01:12', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-14 01:01:12', '2026-02-14 01:08:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('592', 'c0eb9d58-4233-4f0e-8880-397eff33e6da', '4', '4', '550', NULL, '2026-02-14 02:13:11', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-14 02:13:11', '2026-02-14 02:13:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('593', 'df326326-84fd-44c6-8a3e-24a1d2fda3fa', '4', '4', '551', NULL, '2026-02-14 02:23:02', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-14 02:23:02', '2026-02-14 02:23:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('594', '34ed64cc-ad31-4872-a1c1-3c2896e0691c', '4', '4', '552', NULL, '2026-02-14 03:11:11', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-02-14 03:11:11', '2026-02-14 03:11:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('595', '4e25f917-286c-471a-ae1a-bab381b6991b', '4', '4', '553', NULL, '2026-02-14 18:52:52', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-14 18:52:52', '2026-02-14 18:52:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('596', '86bc9457-d52f-4d67-bd76-5e365f907523', '4', '4', '554', NULL, '2026-02-14 19:45:15', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-14 19:45:15', '2026-02-14 19:45:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('597', '85fc06a7-32e1-45b0-9771-8e31beb45ad8', '4', '4', NULL, NULL, '2026-02-14 19:55:54', NULL, NULL, '1', '5', NULL, NULL, 'draft', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '0.00', '2026-02-14 19:55:54', '2026-02-14 19:55:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('598', '2f17fc16-a28c-410c-aab0-fdce3775b8e4', '4', '4', '555', NULL, '2026-02-14 19:56:45', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 19:56:45', '2026-02-14 19:57:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('599', 'd53c9da9-fe11-4963-a540-68388fa59151', '4', '4', '556', NULL, '2026-02-14 19:58:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-14 19:58:32', '2026-02-14 19:58:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('600', '97ff5a71-ffb8-4fa8-be26-7b5e821bbc8d', '4', '4', NULL, NULL, '2026-02-14 20:59:15', NULL, NULL, NULL, '5', NULL, NULL, 'draft', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '0.00', '2026-02-14 20:59:15', '2026-02-14 20:59:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('601', '6d500662-2b9c-4d45-a858-3590b063bdbd', '4', '4', '557', NULL, '2026-02-14 21:05:00', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 21:05:00', '2026-02-14 21:05:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('602', '67988c0c-c423-4a04-95d3-624efe0021ef', '4', '4', '558', NULL, '2026-02-14 21:25:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-14 21:25:07', '2026-02-14 21:26:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('603', 'b1cd2b4f-de55-4165-96b5-534e364bd258', '4', '4', NULL, NULL, '2026-02-14 22:01:56', NULL, NULL, NULL, '5', NULL, NULL, 'draft', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '0.00', '2026-02-14 22:01:56', '2026-02-14 22:01:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('604', '2387d617-9446-42ce-a760-725994ed65f6', '4', '4', '559', NULL, '2026-02-14 22:03:02', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 22:03:02', '2026-02-14 22:03:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('605', '999715e5-75d8-4883-bcfe-02c4ee617758', '4', '4', '560', NULL, '2026-02-14 22:20:44', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-14 22:20:44', '2026-02-14 22:20:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('606', '79a31301-c6ea-4598-b409-6f8ff7878032', '4', '4', '561', NULL, '2026-02-14 22:40:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-14 22:40:32', '2026-02-14 22:40:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('607', 'bc208022-3fc8-41d3-a763-c002aaec06c0', '4', '4', '562', NULL, '2026-02-14 22:59:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 22:59:24', '2026-02-14 22:59:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('608', 'bad1445a-add1-4648-9954-b6141db35ec0', '4', '4', '563', NULL, '2026-02-14 23:01:04', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 23:01:04', '2026-02-14 23:01:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('609', 'd32eea74-cdff-4ca1-a4ec-ed51d3e7643d', '4', '4', '564', NULL, '2026-02-14 23:04:16', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-14 23:04:16', '2026-02-14 23:04:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('611', '0dec650b-6bcf-4cdc-ab73-7ae01c29aacf', '4', '4', '565', NULL, '2026-02-15 02:06:39', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '39.00', '0.00', '0.00', 'order', NULL, '39.00', '39.00', '2026-02-14 23:17:54', '2026-02-15 02:06:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('612', '9de1ceeb-d9aa-46f3-bc84-8cabc46ce151', '4', '4', '566', NULL, '2026-02-14 23:18:28', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-14 23:18:28', '2026-02-14 23:18:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('613', '4aa77253-e996-453b-b32c-4dc4e67b2f10', '4', '4', '567', NULL, '2026-02-14 23:26:52', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-02-14 23:26:52', '2026-02-14 23:26:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('614', '6bfe9488-9008-4399-9604-89e25c69e734', '4', '4', '568', NULL, '2026-02-14 23:31:38', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-14 23:31:38', '2026-02-14 23:31:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('615', 'f8056857-7aec-4793-b74b-1882557a72cf', '4', '4', '569', NULL, '2026-02-14 23:36:12', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-14 23:32:55', '2026-02-14 23:36:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('616', '9031f370-0eb2-45ae-b069-001dc0019ae8', '4', '4', '570', NULL, '2026-02-14 23:33:51', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-14 23:33:51', '2026-02-14 23:33:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('617', 'b2b841b7-329c-475d-a0ff-e2e5f70df882', '4', '4', '571', NULL, '2026-02-15 02:15:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '209.00', '0.00', '0.00', 'order', NULL, '209.00', '209.00', '2026-02-14 23:34:15', '2026-02-15 02:15:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('618', 'eeebb0fb-735a-4ae9-8549-fd8fe368a8b6', '4', '4', '572', NULL, '2026-02-15 00:01:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-15 00:01:16', '2026-02-15 00:01:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('619', '24171eda-fe3f-4e6f-8b56-6cacd549da14', '4', '4', '573', NULL, '2026-02-15 00:04:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-15 00:04:19', '2026-02-15 00:04:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('620', '8bce37fc-d053-4fb8-9611-d6875bf31957', '4', '4', '574', NULL, '2026-02-15 00:10:01', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-15 00:10:01', '2026-02-15 00:10:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('621', '0665ea2a-212c-4ae8-9aa2-6cace3b5efac', '4', '4', '575', NULL, '2026-02-15 00:14:37', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-15 00:14:37', '2026-02-15 00:14:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('622', '8ec4e37f-8113-4c39-841a-282cc33eeb07', '4', '4', '576', NULL, '2026-02-15 00:20:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-15 00:20:10', '2026-02-15 00:20:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('623', 'cbee10d5-08ae-42a0-8792-9fdbdec7976d', '4', '4', '577', NULL, '2026-02-15 00:21:39', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-02-15 00:21:39', '2026-02-15 00:21:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('624', '1c108599-c851-454a-aacd-f4d5f9acf1f2', '4', '4', '578', NULL, '2026-02-15 01:00:34', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-15 01:00:34', '2026-02-15 01:00:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('625', '1dc50aea-f36e-4d96-ac7e-d54acdaebe45', '4', '4', '579', NULL, '2026-02-15 01:01:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-15 01:01:57', '2026-02-15 01:02:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('626', '9fb2acb2-20da-4924-94df-953d1ee94a76', '4', '4', '580', NULL, '2026-02-15 01:04:14', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-15 01:04:14', '2026-02-15 01:04:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('627', '56fbb0d8-331d-4510-9abe-b429e38aa7aa', '4', '4', '581', NULL, '2026-02-15 01:13:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-15 01:13:10', '2026-02-15 01:13:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('628', '385b6d7e-87ca-4900-9e63-ea5a9ea991fb', '4', '4', '582', NULL, '2026-02-15 01:13:25', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-15 01:13:25', '2026-02-15 01:13:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('629', '1b1a8ede-a41a-4552-a313-96d328074ae0', '4', '4', '583', NULL, '2026-02-15 01:28:24', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-15 01:28:24', '2026-02-15 01:28:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('630', 'd4609d75-f493-4922-a29c-3d48125212e9', '4', '4', '584', NULL, '2026-02-15 01:50:58', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-15 01:50:58', '2026-02-15 01:51:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('631', 'c923fd29-71e7-4ddf-86e2-3bbf47fd17cc', '4', '4', '585', NULL, '2026-02-15 03:05:56', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-15 02:29:50', '2026-02-15 03:06:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('632', '64736d33-1a95-48af-99d6-0c6790c053bc', '4', '4', '586', NULL, '2026-02-15 03:06:26', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-15 02:38:19', '2026-02-15 03:06:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('633', 'f9de4c1d-e2d8-43fb-ad6e-e1da5c6b9e4e', '4', '4', '587', NULL, '2026-02-15 04:05:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-15 03:03:06', '2026-02-15 04:05:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('634', '11b4674a-b62d-4004-9bca-80f3ec5f7160', '4', '4', '588', NULL, '2026-02-16 00:14:40', NULL, NULL, '1', '12', NULL, NULL, 'kot', 'pos', '32.00', '0.00', '0.00', 'order', NULL, '32.00', '0.00', '2026-02-15 19:15:04', '2026-02-16 00:14:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('635', '290edb63-9799-46dd-a05f-1ec08202abd6', '4', '4', '589', NULL, '2026-02-15 21:12:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-02-15 20:09:05', '2026-02-15 21:12:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('636', '3d265141-a493-4fc7-8dcf-bbc9641a4c67', '4', '4', '590', NULL, '2026-02-15 21:31:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-15 21:31:24', '2026-02-15 21:31:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('637', 'e07789f7-b969-4133-910b-7b11e7920508', '4', '4', '591', NULL, '2026-02-15 21:41:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-15 21:41:02', '2026-02-15 21:41:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('638', 'a27522ad-5ed3-43c7-9ec0-dcd2941737be', '4', '4', '592', NULL, '2026-02-15 21:52:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-15 21:52:57', '2026-02-15 21:53:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('639', 'f83abeb6-d340-4099-8b53-525e9798fc05', '4', '4', '593', NULL, '2026-02-15 22:03:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-15 22:03:41', '2026-02-15 22:04:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('640', 'a6db6cb7-f35b-4fd5-a01c-6aa0329d3988', '4', '4', '594', NULL, '2026-02-15 22:13:22', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-15 22:13:22', '2026-02-15 22:13:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('641', 'e1110db6-216d-478f-9d30-6a92a04156b7', '4', '4', '595', NULL, '2026-02-15 22:24:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-15 22:24:54', '2026-02-15 22:25:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('642', '57aad2e0-dc46-4242-916f-7cd9f8edf6d5', '4', '4', '596', NULL, '2026-02-15 22:26:11', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-15 22:26:11', '2026-02-15 22:26:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('643', '0e36f0e3-8264-41b3-a3af-7f3cf08ba85b', '4', '4', '597', NULL, '2026-02-15 22:29:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-15 22:29:41', '2026-02-15 22:30:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('644', 'b8b74c08-0027-4eb8-b342-42d4ffd6952f', '4', '4', '598', NULL, '2026-02-15 22:43:25', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-15 22:43:25', '2026-02-15 22:43:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('645', 'd6a3963c-969b-48e4-8f11-30b400c66566', '4', '4', '599', NULL, '2026-02-15 22:57:20', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-15 22:57:20', '2026-02-15 22:57:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('646', '3702ff7c-dc41-41e7-804f-f55f48dc1677', '4', '4', '600', NULL, '2026-02-15 23:00:46', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-15 23:00:46', '2026-02-15 23:00:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('647', 'ec9990ea-a3be-4adb-84ef-05b6c5a23da4', '4', '4', '601', NULL, '2026-02-15 23:21:33', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-15 23:21:33', '2026-02-15 23:22:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('648', '485ee835-11cf-49fa-94ed-ba047e8e8e12', '4', '4', '602', NULL, '2026-02-15 23:37:15', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-15 23:37:15', '2026-02-15 23:37:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('649', '2aeee9ea-4c64-4572-a602-c23d5f3785a3', '4', '4', '603', NULL, '2026-02-16 00:06:14', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-16 00:06:14', '2026-02-16 00:49:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('650', '0d12cbb0-1907-49ac-8e3a-dadfe47b8602', '4', '4', '604', NULL, '2026-02-16 00:29:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-16 00:29:16', '2026-02-16 00:29:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('651', '2075d05f-2242-4aaf-9600-3549bf5bf9d8', '4', '4', '605', NULL, '2026-02-16 00:50:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-16 00:50:41', '2026-02-16 00:50:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('652', 'a3b3dd7a-2bf1-4edb-aed5-e7b13234e981', '4', '4', '606', NULL, '2026-02-16 19:35:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-16 19:35:41', '2026-02-16 19:36:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('653', '22d3f800-492d-466f-a3f7-aab58da55681', '4', '4', '607', NULL, '2026-02-16 20:29:47', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-16 20:29:47', '2026-02-16 20:30:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('654', '111eaf21-8423-4689-81b2-67e7f6f9305d', '4', '4', '608', NULL, '2026-02-16 20:53:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-02-16 20:53:00', '2026-02-16 20:54:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('655', '3670574e-8293-4686-8c6a-e57866f6d74c', '4', '4', '609', NULL, '2026-02-16 21:32:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-16 21:32:24', '2026-02-16 21:33:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('656', '3bee4097-f30a-4ca2-bf7c-d1285a7cc546', '4', '4', '610', NULL, '2026-02-16 21:51:24', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-16 21:51:24', '2026-02-16 21:51:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('657', '8e4d9386-260a-4369-98ee-aca741c916b8', '4', '4', '611', NULL, '2026-02-16 21:57:48', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-16 21:57:48', '2026-02-16 21:58:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('658', '50e9a984-348f-478d-9c7f-5eafb56943ad', '4', '4', '612', NULL, '2026-02-16 22:01:57', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-02-16 22:01:57', '2026-02-16 22:02:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('659', '13350b37-a06d-4949-8b10-3c92a5424f0d', '4', '4', '613', NULL, '2026-02-16 22:14:20', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-16 22:14:20', '2026-02-16 22:14:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('660', '89b7ee62-0a13-46b6-8df3-31d7a55c093d', '4', '4', '614', NULL, '2026-02-16 22:23:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-16 22:23:00', '2026-02-16 22:23:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('661', '96229c5a-188a-4750-a3bd-9af71925e80d', '4', '4', '615', NULL, '2026-02-16 23:02:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-02-16 22:28:50', '2026-02-16 23:03:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('662', 'f5bf58c6-f420-4d47-8c64-df129762b3e8', '4', '4', '616', NULL, '2026-02-16 22:37:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-16 22:37:00', '2026-02-16 22:37:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('663', '9541e4bf-6e81-4fe7-900c-58a642078cf0', '4', '4', '617', NULL, '2026-02-16 23:11:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-16 23:11:48', '2026-02-16 23:12:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('664', 'b983c77b-5090-45d7-ad75-6b27431268d9', '4', '4', '618', NULL, '2026-02-17 01:15:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-16 23:57:03', '2026-02-17 01:15:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('665', '8aa68639-5c0c-4936-80ae-ca5621baa2cb', '4', '4', '619', NULL, '2026-02-17 00:12:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-17 00:12:59', '2026-02-17 00:13:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('666', '745211b8-def7-474d-adbf-ad238f44f2a7', '4', '4', '620', NULL, '2026-02-17 00:50:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 00:50:48', '2026-02-17 00:51:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('667', 'e80fba02-6e3d-4c5f-92f9-0a1178edae98', '4', '4', '621', NULL, '2026-02-17 01:01:09', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-17 01:01:09', '2026-02-17 01:01:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('668', 'ad55d989-4646-4809-9f42-bb8f925e866e', '4', '4', '622', NULL, '2026-02-17 01:05:30', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-17 01:05:30', '2026-02-17 01:05:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('669', '918c9a9e-ca08-4aef-986c-f5c38151d593', '4', '4', '623', NULL, '2026-02-17 01:59:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-02-17 01:19:40', '2026-02-17 02:00:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('670', 'f6b640a5-aee6-46da-a4cd-ad7a8638bc61', '4', '4', '624', NULL, '2026-02-17 02:19:28', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 02:19:28', '2026-02-17 02:19:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('671', 'c72c94a9-5d0e-43d9-9f78-bffd15e0d550', '4', '4', '625', NULL, '2026-02-17 02:24:12', NULL, NULL, '1', '12', '12', NULL, 'billed', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '0.00', '2026-02-17 02:24:12', '2026-02-17 02:24:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('672', 'f7435548-d727-4e3c-8af1-5a94a1ca4a10', '4', '4', '626', NULL, '2026-02-17 02:24:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-17 02:24:12', '2026-02-17 02:24:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('673', 'fbf0822c-5ece-460e-b7b2-ca17613454c8', '4', '4', '627', NULL, '2026-02-17 02:50:19', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-17 02:50:19', '2026-02-17 02:50:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('674', '2390e922-73ed-4ee8-93fe-4f3f1034bee3', '4', '4', '628', NULL, '2026-02-17 02:53:50', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-17 02:53:50', '2026-02-17 02:54:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('675', 'fc625112-17a1-4959-9380-5264844887d6', '4', '4', '629', NULL, '2026-02-17 23:55:40', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-17 19:17:35', '2026-02-17 23:55:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('676', '0eff9457-c0be-4340-bfea-1c49300e9147', '4', '4', '630', NULL, '2026-02-17 20:10:03', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 20:10:03', '2026-02-17 20:10:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('677', '0e9c8473-28ec-4ffa-9252-100cdb68806d', '4', '4', '631', NULL, '2026-02-17 20:15:40', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-17 20:15:40', '2026-02-17 20:17:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('678', '88c6935a-9f51-4d46-a0e6-f2de315be288', '4', '4', '632', NULL, '2026-02-18 01:03:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '49.00', '0.00', '0.00', 'order', NULL, '49.00', '49.00', '2026-02-17 20:45:50', '2026-02-18 01:12:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('679', '94b4f448-efcf-4ddd-b10b-f3defd4d928f', '4', '4', '633', NULL, '2026-02-17 20:47:32', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-17 20:47:32', '2026-02-17 20:47:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('680', 'ab9d06c1-4acc-4154-8254-60d8231ce1eb', '4', '4', '634', NULL, '2026-02-17 22:24:10', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-17 22:12:36', '2026-02-17 22:24:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('681', 'd7d5d5fc-da82-436c-bc28-ab50261c5b40', '4', '4', '635', NULL, '2026-02-17 23:12:33', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-17 22:37:56', '2026-02-17 23:13:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('682', '77e2f767-22c2-4108-a712-8e306b56fa02', '4', '4', '636', NULL, '2026-02-17 23:52:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 23:52:54', '2026-02-17 23:53:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('683', '7cee8fae-a957-40fb-9d03-52ab67cf0206', '4', '4', '637', NULL, '2026-02-17 23:54:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 23:54:06', '2026-02-17 23:54:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('684', '5b52077c-493e-458a-9e28-c4c591bfc594', '4', '4', '638', NULL, '2026-02-17 23:56:21', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-17 23:56:21', '2026-02-17 23:56:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('685', '01bc0b96-ac7d-4be8-a913-ce7dd061d017', '4', '4', '639', NULL, '2026-02-18 00:34:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-18 00:00:10', '2026-02-18 00:36:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('686', 'b5ef556d-5517-44f6-83f8-f076d0638e5f', '4', '4', '640', NULL, '2026-02-18 00:05:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-18 00:05:42', '2026-02-18 00:05:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('687', '6186c933-1ebb-4ce8-9c9d-59252241780a', '4', '4', '641', NULL, '2026-02-18 00:14:10', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-18 00:14:10', '2026-02-18 00:14:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('688', '13cbb5a9-ca55-4757-b86c-1f4a43fde073', '4', '4', '642', NULL, '2026-02-18 00:16:33', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-18 00:16:33', '2026-02-18 00:16:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('689', '8ede70ae-d413-43fc-910e-3dd21615dbde', '4', '4', '643', NULL, '2026-02-18 01:37:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-02-18 00:57:15', '2026-02-18 01:38:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('690', 'c629bf27-8bab-4ead-bc00-6610a43e73d6', '4', '4', '644', NULL, '2026-02-18 01:07:15', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '1.00', '0.00', 'order', '', '5.00', '5.00', '2026-02-18 01:07:16', '2026-02-18 01:08:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('691', 'e4666eae-f4c8-4e5e-ac37-54addcc00aae', '4', '4', '645', NULL, '2026-02-18 02:20:35', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-18 01:45:43', '2026-02-18 02:21:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('692', 'f62fdb54-4b47-47cc-b948-05f6912efefd', '4', '4', '646', NULL, '2026-02-18 01:58:26', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-18 01:58:27', '2026-02-18 01:58:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('693', '5d521a1a-9d70-4121-b84b-27fce1327555', '4', '4', '647', NULL, '2026-02-18 02:15:27', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-18 02:15:27', '2026-02-18 02:19:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('694', 'a62ce7d9-b833-45ca-a22f-8c46253cfa8b', '4', '4', '648', NULL, '2026-02-18 19:57:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-18 19:57:47', '2026-02-18 19:57:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('695', 'd80e35ef-1649-40a2-aa41-a273aed4ca49', '4', '4', '649', NULL, '2026-02-18 22:05:23', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-18 22:05:23', '2026-02-18 22:05:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('696', '9904a17e-b2ab-4140-a62c-02f51ab230a9', '4', '4', '650', NULL, '2026-02-18 22:48:55', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-18 22:48:55', '2026-02-18 22:49:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('697', 'db929e4d-df2a-4249-9ab8-ee6e7b89ba70', '4', '4', '651', NULL, '2026-02-19 20:09:11', NULL, NULL, NULL, '5', NULL, NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-02-19 01:17:43', '2026-02-19 20:09:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('698', 'a0cbdae3-6b52-40d5-82c5-79a22d6d0ea2', '4', '4', '652', NULL, '2026-02-19 01:18:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-19 01:18:03', '2026-02-19 01:18:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('699', '4e93cd8b-0f5c-46c4-83d4-80fb338a401d', '4', '4', '653', NULL, '2026-02-19 21:51:13', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-02-19 21:51:13', '2026-02-19 21:51:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('700', 'd3a7c4ff-29b5-4367-bdac-043e38769204', '4', '4', '654', NULL, '2026-02-19 21:56:45', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-19 21:56:45', '2026-02-19 21:56:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('701', 'b81a8a81-3799-4c68-b214-2197a6612590', '4', '4', '655', NULL, '2026-02-20 00:44:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '36.50', '0.00', '0.00', 'order', NULL, '36.50', '36.50', '2026-02-19 22:57:02', '2026-02-20 00:44:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('702', 'd67a2126-f5ee-4600-9452-09b71a25ffd9', '4', '4', '656', NULL, '2026-02-20 18:56:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-20 18:56:08', '2026-02-20 18:56:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('703', '08f3e5a4-d9b1-4e82-968f-ea7072c29068', '4', '4', '657', NULL, '2026-02-20 22:30:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '46.00', '0.00', '0.00', 'order', NULL, '46.00', '46.00', '2026-02-20 18:59:17', '2026-02-20 22:31:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('704', 'aad69936-05cf-44ff-bdb2-2c55bb31911d', '4', '4', '658', NULL, '2026-02-20 19:03:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-20 18:59:57', '2026-02-20 19:04:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('705', '8013025e-8c71-44b3-a9dc-548dc9b66473', '4', '4', '659', NULL, '2026-02-20 19:12:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-20 19:12:41', '2026-02-20 19:13:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('706', 'e43d8a76-f287-405c-b6b3-c637a89f6096', '4', '4', '660', NULL, '2026-02-20 19:17:32', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-20 19:17:33', '2026-02-20 19:17:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('707', '7dc690da-3298-452d-bf8d-3e0c233419bb', '4', '4', '661', NULL, '2026-02-20 19:30:52', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-20 19:30:52', '2026-02-20 19:30:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('708', 'ba26e98d-6ddd-4141-831c-7962ba48e117', '4', '4', '662', NULL, '2026-02-20 19:42:40', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-20 19:42:40', '2026-02-20 19:42:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('709', 'ef1db1bb-c264-4d6b-b19e-0db872edc091', '4', '4', '663', NULL, '2026-02-20 20:59:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-20 20:59:54', '2026-02-20 20:59:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('710', 'f1e44b17-1cef-4e30-a912-5eb285d8fbf5', '4', '4', '664', NULL, '2026-02-20 21:02:13', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-20 21:01:35', '2026-02-20 21:02:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('711', 'be066a3d-ed78-428a-9fb4-93229a5adbdf', '4', '4', '665', NULL, '2026-02-20 21:15:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-20 21:15:48', '2026-02-20 21:15:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('712', '9e4c34aa-b451-4f09-9223-3df485a0d8ca', '4', '4', '666', NULL, '2026-02-20 21:22:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-20 21:22:54', '2026-02-20 21:22:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('713', '4143b28f-0e3a-4cf9-92ef-822e4d081ad8', '4', '4', '667', NULL, '2026-02-20 21:36:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-20 21:36:02', '2026-02-20 21:36:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('714', 'd9dea64b-f583-4afe-b1f9-7231697ceef0', '4', '4', '668', NULL, '2026-02-20 21:47:05', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-02-20 21:47:05', '2026-02-20 21:47:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('715', 'eba12248-d3e2-4270-89b4-65a906a871c0', '4', '4', '669', NULL, '2026-02-20 22:21:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-20 22:19:47', '2026-02-20 22:22:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('716', '58847541-728a-40e5-b0a1-6a454d6bf824', '4', '4', '670', NULL, '2026-02-20 23:44:32', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '60.00', '0.00', '0.00', 'order', NULL, '60.00', '60.00', '2026-02-20 22:21:25', '2026-02-20 23:44:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('717', 'd80693d7-4e03-4704-bd83-859417fd0ba5', '4', '4', '671', NULL, '2026-02-20 22:39:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-02-20 22:29:22', '2026-02-20 22:39:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('718', '7cbc5e59-ec6e-4342-9265-a04ee10a8ad7', '4', '4', '672', NULL, '2026-02-20 22:35:38', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-20 22:35:38', '2026-02-20 22:35:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('719', '4c5d2439-3fa8-4b2f-a97d-810778c882c5', '4', '4', '673', NULL, '2026-02-20 22:51:10', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-20 22:48:00', '2026-02-20 22:51:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('720', 'ee1293d7-3bdd-4018-babd-67656f33bcbd', '4', '4', '674', NULL, '2026-02-20 23:45:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-20 23:10:32', '2026-02-20 23:45:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('721', '3da4d521-98ef-44e2-a792-098043884de5', '4', '4', '675', NULL, '2026-02-21 00:16:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-20 23:16:29', '2026-02-21 00:16:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('722', '8fd686b7-f457-4f02-b870-9bd3097357a2', '4', '4', '676', NULL, '2026-02-20 23:23:53', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-20 23:23:53', '2026-02-20 23:24:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('723', 'e23a4260-9fa3-495b-9b92-d42bde6fea1c', '4', '4', '677', NULL, '2026-02-20 23:47:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '42.00', '0.00', '0.00', 'order', NULL, '42.00', '42.00', '2026-02-20 23:47:01', '2026-02-20 23:47:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('724', '04b86923-77ed-4752-88a3-16768ed34e5e', '4', '4', '678', NULL, '2026-02-21 01:33:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '22.50', '0.00', '0.00', 'order', NULL, '22.50', '22.50', '2026-02-20 23:53:24', '2026-02-21 01:34:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('725', 'aefddc67-0cee-4b50-a6c3-d13e0365f3ee', '4', '4', '679', NULL, '2026-02-20 23:55:39', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-20 23:54:56', '2026-02-20 23:55:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('726', '1e61771d-c724-4ec2-ac63-ce3901073a45', '4', '4', '680', NULL, '2026-02-20 23:59:58', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-20 23:59:58', '2026-02-21 00:00:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('727', 'b71c76ea-9d2a-4c63-a750-b3c7f85510de', '4', '4', '681', NULL, '2026-02-21 00:01:01', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-21 00:01:01', '2026-02-21 00:01:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('728', '45ca160c-0183-486d-820e-c08a13357f17', '4', '4', '682', NULL, '2026-02-21 00:09:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-21 00:09:44', '2026-02-21 00:09:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('729', 'bfa4374d-1ee9-4cc4-9813-7c79a9ffee4b', '4', '4', '683', NULL, '2026-02-21 00:14:26', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-21 00:14:26', '2026-02-21 00:14:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('730', '430a2318-de0b-4f9e-bb5f-4bd0b3d30abf', '4', '4', '684', NULL, '2026-02-21 01:14:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-21 01:14:56', '2026-02-21 01:15:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('731', '2f42573c-98f8-4b61-83c6-7d8d63963cc7', '4', '4', '685', NULL, '2026-02-21 01:26:35', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-21 01:26:35', '2026-02-21 01:26:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('732', 'ca356bd6-02bf-41b0-829c-fc75d0c5b8d5', '4', '4', '686', NULL, '2026-02-21 02:14:15', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-21 02:14:15', '2026-02-21 02:14:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('733', 'b6d84785-1605-4819-a80b-7e65da019947', '4', '4', '687', NULL, '2026-02-21 03:29:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-21 03:29:56', '2026-02-21 03:30:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('734', '00a2c832-900a-4cfa-a700-f842485cbecc', '4', '4', '688', NULL, '2026-02-21 03:35:38', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-02-21 03:33:53', '2026-02-21 03:35:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('735', '4e755629-8b54-4a99-a5b4-6991ce5f8bef', '4', '4', '689', NULL, '2026-02-21 18:18:20', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-21 18:12:01', '2026-02-21 18:18:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('736', '22e010bb-9e33-4282-b7a8-30c5103e0255', '4', '4', '690', NULL, '2026-02-22 02:49:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1739.00', '0.00', '0.00', 'order', NULL, '1739.00', '1739.00', '2026-02-21 18:18:04', '2026-02-22 02:49:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('737', '0023cd44-6c52-41d0-bf00-f3cad2fdf64d', '4', '4', '691', NULL, '2026-02-22 00:11:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-22 00:11:08', '2026-02-22 00:11:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('738', 'cf0f06a4-36dc-466c-9ca6-99a0e1a0eb34', '4', '4', '692', NULL, '2026-02-22 00:13:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-22 00:13:12', '2026-02-22 00:13:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('739', 'f86ac6c3-9838-4d1b-a2fd-45ffe792e920', '4', '4', '693', NULL, '2026-02-22 01:21:14', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-02-22 01:21:14', '2026-02-22 01:21:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('740', '19af9256-0f95-47b1-a37d-3f1e7760d287', '4', '4', '694', NULL, '2026-02-22 01:35:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-22 01:35:24', '2026-02-22 01:35:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('741', '4570676d-89c8-4e12-a29c-7536019ebda7', '4', '4', '695', NULL, '2026-02-22 01:57:04', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-22 01:57:04', '2026-02-22 01:57:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('742', 'b2bade8e-c68b-454a-9fe1-776a61964f12', '4', '4', '696', NULL, '2026-02-22 02:31:03', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-22 02:13:02', '2026-02-22 02:31:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('743', 'bf668e8f-8286-4448-b970-9813ea507e33', '4', '4', '697', NULL, '2026-02-22 02:48:36', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-22 02:18:01', '2026-02-22 02:48:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('744', 'cbf7d93e-7fa0-468b-a255-1e85321eccdb', '4', '4', '698', NULL, '2026-02-22 03:04:52', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-22 02:19:40', '2026-02-22 03:04:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('745', '5aaab10b-6901-4759-ab41-8a5f147ac329', '4', '4', '699', NULL, '2026-02-23 20:00:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-02-23 19:27:23', '2026-02-23 20:01:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('746', 'e0f1c4b5-1a0a-4dd1-a0b3-6a5a8b4db751', '4', '4', '700', NULL, '2026-02-23 23:03:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-02-23 21:13:19', '2026-02-23 23:03:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('747', '7a0737b2-b4ec-46bc-a791-0ffa98f2101c', '4', '4', '701', NULL, '2026-02-23 23:04:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-23 23:02:16', '2026-02-23 23:04:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('748', '5a6f7c0c-4dc8-420e-b607-38bf2419f5d8', '4', '4', '702', NULL, '2026-02-23 23:27:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-23 23:27:02', '2026-02-23 23:27:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('749', '61b86d63-7b15-4241-8489-dc1be8b6492f', '4', '4', '703', NULL, '2026-02-23 23:32:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-23 23:31:20', '2026-02-23 23:32:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('750', 'bdc2560c-5b50-410e-8a29-aef69c3d9ad3', '4', '4', '704', NULL, '2026-02-24 00:05:30', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '33.00', '0.00', '0.00', 'order', NULL, '33.00', '33.00', '2026-02-23 23:57:20', '2026-02-24 00:05:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('751', 'bf5a1831-9a2b-44bd-894f-6fd4401ffb42', '4', '4', '705', NULL, '2026-02-24 02:01:09', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-24 00:14:07', '2026-02-24 02:01:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('752', '58868def-2066-475b-9146-22bf9e8c5af1', '4', '4', '706', NULL, '2026-02-24 00:33:49', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-24 00:33:29', '2026-02-24 00:34:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('753', '99f40c72-8683-4ba6-ade6-e40ddbb00efd', '4', '4', '707', NULL, '2026-02-24 01:50:50', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-24 00:43:33', '2026-02-24 01:50:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('754', '01183f14-c27b-4c88-baff-1954a53cd900', '4', '4', '708', NULL, '2026-02-24 00:46:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-24 00:46:28', '2026-02-24 00:47:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('755', 'a77e6a2f-2dd8-414a-bec1-e258a50ae26c', '4', '4', '709', NULL, '2026-02-24 01:40:03', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-24 01:26:27', '2026-02-24 01:40:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('756', '2d064e17-2d87-428d-9bdc-c4de5233d0a5', '4', '4', '710', NULL, '2026-02-24 01:49:26', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-24 01:49:27', '2026-02-24 01:50:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('757', '96751296-0831-42cc-9114-ba7519890790', '4', '4', '711', NULL, '2026-02-24 02:12:47', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-24 01:56:11', '2026-02-24 02:12:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('758', '7660108c-a011-47e8-9ada-9f0e08830c02', '4', '4', '712', NULL, '2026-02-24 02:00:15', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-24 02:00:15', '2026-02-24 02:00:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('759', 'd17a3710-7960-4abd-8a10-c8b12c483077', '4', '4', '713', NULL, '2026-02-24 02:06:36', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-24 02:06:36', '2026-02-24 02:06:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('760', 'a367ec51-896d-41fb-95be-f9405ce7435b', '4', '4', '714', NULL, '2026-02-24 02:52:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-02-24 02:19:57', '2026-02-24 02:52:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('761', '9c7cef0f-26e3-4626-8605-2eedab014027', '4', '4', '715', NULL, '2026-02-24 02:30:25', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-02-24 02:30:25', '2026-02-24 02:30:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('762', '67cb1363-9535-46bc-aa55-81f02f9f6bb7', '4', '4', '716', NULL, '2026-02-24 02:44:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-24 02:44:12', '2026-02-24 02:44:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('763', 'e14e1f6b-0b93-42a7-ad04-8eec1ab9d096', '4', '4', '717', NULL, '2026-02-24 03:21:27', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-24 03:21:27', '2026-02-24 03:21:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('764', '323b4afd-7bc9-43b7-8347-18164ed8385e', '4', '4', '718', NULL, '2026-02-24 21:42:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-24 18:44:33', '2026-02-24 21:43:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('765', '8403d508-45aa-476f-80aa-b90763d08b05', '4', '4', '719', NULL, '2026-02-24 18:48:31', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2026-02-24 18:48:09', '2026-02-24 18:48:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('766', '409e777e-ca77-4ba5-b40c-e97c58d7eade', '4', '4', '720', NULL, '2026-02-24 19:26:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '65.00', '0.00', '0.00', 'order', NULL, '65.00', '65.00', '2026-02-24 19:26:05', '2026-02-24 19:26:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('767', '58474983-1320-4d59-8a4e-ddf4a30a1d27', '4', '4', '721', NULL, '2026-02-24 19:43:25', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-24 19:43:25', '2026-02-24 19:43:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('768', '48ccea0f-7098-4943-afbd-a6dc59c8d5eb', '4', '4', '722', NULL, '2026-02-24 20:08:39', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-24 20:08:39', '2026-02-24 20:08:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('769', '1ad75e65-2eef-406d-8448-edecb896cb00', '4', '4', '723', NULL, '2026-02-24 20:13:32', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-24 20:13:32', '2026-02-24 20:14:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('770', '87ed1c86-43a3-46be-b798-022c4ec76fde', '4', '4', '724', NULL, '2026-02-24 21:48:36', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '23.00', '0.00', '0.00', 'order', NULL, '23.00', '23.00', '2026-02-24 21:39:09', '2026-02-24 21:48:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('771', 'e7128ae7-0540-468d-9103-9d8d870226f8', '4', '4', '725', NULL, '2026-02-24 21:44:36', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-24 21:44:36', '2026-02-24 21:44:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('772', '2caeaffe-9c09-4b75-bc4f-ceb8d10d3350', '4', '4', '726', NULL, '2026-02-24 23:51:38', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '38.00', '0.00', '0.00', 'order', NULL, '38.00', '38.00', '2026-02-24 23:26:58', '2026-02-24 23:53:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('773', 'b3399e1b-e73a-46f7-9d5b-3783fc987592', '4', '4', '727', NULL, '2026-02-25 01:11:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-25 00:06:28', '2026-02-25 01:11:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('774', '994aa0b2-7c6f-478d-8bb3-491c7cc42986', '4', '4', '728', NULL, '2026-02-25 00:47:45', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-02-25 00:47:45', '2026-02-25 00:50:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('775', '03a8c561-e288-47e5-9a4a-641fe78086bc', '4', '4', '729', NULL, '2026-02-25 01:06:14', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-25 00:50:52', '2026-02-25 01:06:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('776', '306c1ab7-633d-4085-a0a6-f0b7723627a7', '4', '4', '730', NULL, '2026-02-25 00:57:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-25 00:57:01', '2026-02-25 00:57:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('777', 'fad6a2f3-f3b2-4b3d-8ee8-5cc090d6f066', '4', '4', '731', NULL, '2026-02-25 01:32:41', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-25 01:32:41', '2026-02-25 01:32:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('778', '4b205273-9714-4a83-a885-d344110598f6', '4', '4', '732', NULL, '2026-02-25 23:18:19', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-02-25 23:18:19', '2026-02-25 23:18:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('779', 'b2aafc3e-b7ce-44c6-a1ae-5f8f7d3ae3c8', '4', '4', '733', NULL, '2026-02-25 23:19:33', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-25 23:19:33', '2026-02-25 23:19:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('780', 'de0bf169-764c-463f-9d73-77bcb4022c76', '4', '4', '734', NULL, '2026-02-25 23:19:54', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-25 23:19:54', '2026-02-25 23:19:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('781', 'bf2bad36-8cc6-467e-85c6-c4da4c6522d6', '4', '4', '735', NULL, '2026-02-26 00:13:27', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-02-26 00:13:27', '2026-02-26 00:13:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('782', '2b97af82-b7f1-401c-bd4b-02effd4d4890', '4', '4', '736', NULL, '2026-02-26 00:25:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-26 00:25:03', '2026-02-26 00:25:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('783', '8099e760-8f8a-4b3f-a303-bc0f35c8ac80', '4', '4', '737', NULL, '2026-02-26 00:51:59', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-02-26 00:51:59', '2026-02-26 00:52:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('784', 'fc8de28b-b239-4f99-be04-914661b57836', '4', '4', '738', NULL, '2026-02-26 01:06:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-26 01:06:01', '2026-02-26 01:06:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('785', '022e0910-86c3-4fa0-8881-b216b6e7e26a', '4', '4', '739', NULL, '2026-02-26 01:31:59', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-02-26 01:31:59', '2026-02-26 01:32:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('786', '91bc2dc7-1f83-4b70-81ef-68a3eeb3bc6a', '4', '4', '740', NULL, '2026-02-26 01:48:53', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-02-26 01:48:53', '2026-02-26 01:48:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('787', '887693e4-a62b-4a0c-9f92-dd9d00ceb070', '4', '4', '741', NULL, '2026-02-27 01:56:55', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '70.00', '0.00', '0.00', 'order', NULL, '70.00', '70.00', '2026-02-26 20:57:56', '2026-02-27 01:57:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('788', '3827005b-c9a2-481e-ab70-9589f2f66ee1', '4', '4', '742', NULL, '2026-02-27 22:13:13', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '73.50', '0.00', '0.00', 'order', NULL, '73.50', '73.50', '2026-02-27 18:26:30', '2026-02-27 22:13:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('789', '2d937cbe-fa6d-4602-9008-7c5df161b3a8', '4', '4', '743', NULL, '2026-02-27 20:18:24', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '32.50', '0.00', '0.00', 'order', NULL, '32.50', '32.50', '2026-02-27 18:36:38', '2026-02-27 20:18:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('790', '57e078b0-d262-4094-8216-0c836a4b0266', '4', '4', '744', NULL, '2026-02-27 19:39:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-27 19:39:10', '2026-02-27 19:39:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('791', '5d9cecb0-6348-49fb-bd7e-c1628fe350b4', '4', '4', '745', NULL, '2026-02-27 20:36:44', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-02-27 20:36:44', '2026-02-27 20:36:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('792', 'e08f58c5-d4c8-4d77-9e46-5b8bb58591dc', '4', '4', '746', NULL, '2026-02-27 20:39:12', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-27 20:39:12', '2026-02-27 20:39:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('793', 'a826e511-7522-4b1d-b188-a356053623b6', '4', '4', '747', NULL, '2026-02-27 21:07:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-27 21:07:36', '2026-02-27 21:07:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('794', '30aba274-decd-4cdc-a68f-54a4454e220b', '4', '4', '748', NULL, '2026-02-27 22:42:40', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-02-27 21:19:42', '2026-02-27 22:42:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('795', '09662807-6cce-48b9-be88-b972761f5de3', '4', '4', '749', NULL, '2026-02-27 21:20:28', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-27 21:20:28', '2026-02-27 21:20:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('796', '5a7ec10c-c059-4ffc-a6fc-5fa73ae80594', '4', '4', '750', NULL, '2026-02-27 21:20:51', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-27 21:20:51', '2026-02-27 21:20:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('797', '2ec9440d-34b2-4885-8c1d-029032e44384', '4', '4', '751', NULL, '2026-02-27 22:44:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '52.00', '0.00', '0.00', 'order', NULL, '52.00', '52.00', '2026-02-27 21:25:06', '2026-02-27 22:44:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('798', '34d2104d-9000-4c7e-abcf-7d04f1f14eb1', '4', '4', '752', NULL, '2026-02-27 21:31:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-02-27 21:31:19', '2026-02-27 21:31:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('799', '79e23733-e6d4-4d6a-8197-285fbda06009', '4', '4', '753', NULL, '2026-02-27 22:26:27', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-27 22:26:27', '2026-02-27 22:26:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('800', '4e2e7cd6-7ff8-41ce-9d04-ca95d5a2f46c', '4', '4', '754', NULL, '2026-02-28 02:12:41', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '254.50', '0.00', '0.00', 'order', NULL, '254.50', '254.50', '2026-02-27 22:36:09', '2026-02-28 02:12:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('801', 'e70b6050-8229-4e27-bec7-184ac2fad879', '4', '4', '755', NULL, '2026-02-27 22:46:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-27 22:46:20', '2026-02-27 22:46:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('802', '16d8775a-75f2-4a56-8b40-f1433acbfc44', '4', '4', '756', NULL, '2026-02-27 22:49:49', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.50', '0.00', '0.00', 'order', NULL, '4.50', '4.50', '2026-02-27 22:49:49', '2026-02-27 22:49:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('803', 'eb305650-1f8e-4524-9668-6162a28bfac6', '4', '4', '757', NULL, '2026-02-27 23:43:44', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-02-27 23:43:44', '2026-02-27 23:43:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('804', 'b0b122b4-b690-4bae-a4ae-306bc7ffe55a', '4', '4', '758', NULL, '2026-02-28 01:04:43', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-02-28 01:04:43', '2026-02-28 01:04:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('805', '452b5fdc-55cf-437e-9856-72705847f149', '4', '4', '759', NULL, '2026-02-28 01:05:09', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 01:05:09', '2026-02-28 01:05:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('806', '60163d65-4bb2-49a8-ba66-a8cc2745c51d', '4', '4', '760', NULL, '2026-02-28 01:17:21', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 01:17:21', '2026-02-28 01:17:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('807', '30294cca-51d8-42c4-b0b3-f142cffc4a84', '4', '4', '761', NULL, '2026-02-28 01:20:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 01:20:42', '2026-02-28 01:20:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('808', '92229a23-400d-47cd-a1e7-851cc6a546b3', '4', '4', '762', NULL, '2026-02-28 01:33:57', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-02-28 01:33:57', '2026-02-28 01:34:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('809', 'd563d272-3f56-47ef-a8f6-57cd155bde3c', '4', '4', '763', NULL, '2026-02-28 02:01:14', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-28 02:01:14', '2026-02-28 02:01:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('810', 'c4a6c994-dc38-48f8-9284-2d4fbf503b7d', '4', '4', '764', NULL, '2026-02-28 02:35:13', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-02-28 02:35:13', '2026-02-28 02:35:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('811', '1a8c6ae5-f2c1-474c-893b-dc93ea1c4b98', '4', '4', '765', NULL, '2026-02-28 02:51:02', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '33.50', '0.00', '0.00', 'order', NULL, '33.50', '33.50', '2026-02-28 02:51:02', '2026-02-28 02:51:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('812', '681c2dea-9377-4087-b994-a4076a5b6e22', '4', '4', '766', NULL, '2026-02-28 21:31:53', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-02-28 19:14:26', '2026-02-28 21:31:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('813', '99dbd342-9a5c-47fa-875c-0966a0c1c338', '4', '4', '767', NULL, '2026-02-28 19:57:30', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 19:40:52', '2026-02-28 19:57:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('814', '817a81be-4ab0-4a21-b045-4482a654508c', '4', '4', '768', NULL, '2026-02-28 20:11:39', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 20:11:39', '2026-02-28 20:11:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('815', '8e2091c2-0597-4b91-b92b-648931d4382d', '4', '4', '769', NULL, '2026-02-28 20:15:39', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-02-28 20:15:39', '2026-02-28 20:15:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('816', '93ce96a8-f8ea-437f-8c15-849f102e5d33', '4', '4', '770', NULL, '2026-02-28 20:18:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-28 20:18:01', '2026-02-28 20:18:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('817', '5fd599db-e185-4f17-8cbd-3b68cfbaa16e', '4', '4', '771', NULL, '2026-03-01 04:07:41', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-02-28 20:21:34', '2026-03-01 04:07:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('818', '9ca14d9f-001a-4786-8eef-3e2f8ab2b1d2', '4', '4', '772', NULL, '2026-02-28 23:02:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-02-28 20:38:11', '2026-02-28 23:02:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('819', '5831604a-670c-49d6-a6c1-db8672cb595f', '4', '4', '773', NULL, '2026-02-28 20:56:51', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-28 20:56:51', '2026-02-28 20:56:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('820', '7bdb5594-f1ae-450f-a3e0-d4034739c478', '4', '4', '774', NULL, '2026-02-28 21:52:05', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-28 20:58:14', '2026-02-28 21:52:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('821', '4afe1a5c-221b-4e3f-8185-9db353054389', '4', '4', '775', NULL, '2026-02-28 21:07:05', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 21:07:05', '2026-02-28 21:07:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('822', '10042e4f-0cfc-492f-96fa-c61c1ed63b7d', '4', '4', '776', NULL, '2026-02-28 21:39:25', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '46.50', '0.00', '0.00', 'order', NULL, '46.50', '46.50', '2026-02-28 21:39:25', '2026-02-28 21:39:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('823', '0f147e37-4b92-4ed2-81b9-1ef1a5fde789', '4', '4', '777', NULL, '2026-02-28 21:55:05', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-02-28 21:55:05', '2026-02-28 21:55:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('824', 'bb187b8f-0f30-4f8e-9df1-ec55d6085504', '4', '4', '778', NULL, '2026-02-28 22:01:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-02-28 22:01:01', '2026-02-28 22:01:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('825', '69024b86-fe83-413d-9b9c-bfe58a205ae5', '4', '4', '779', NULL, '2026-02-28 22:25:40', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-02-28 22:25:40', '2026-02-28 22:25:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('826', '51535da4-85c7-4e00-9c5b-46564c16d61e', '4', '4', '780', NULL, '2026-02-28 22:59:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-02-28 22:59:17', '2026-02-28 22:59:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('827', '39614785-409e-4249-b385-3596f888d9cd', '4', '4', '781', NULL, '2026-02-28 23:30:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-02-28 23:30:24', '2026-02-28 23:30:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('828', 'f755bf69-0908-4d91-a2e9-4493d601260c', '4', '4', '782', NULL, '2026-02-28 23:31:47', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 23:31:47', '2026-02-28 23:31:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('829', '3d952e4d-04f3-409d-9117-88afb66bf0ce', '4', '4', '783', NULL, '2026-02-28 23:36:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-02-28 23:36:01', '2026-02-28 23:36:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('830', '72b39ca1-9eca-4aa7-9f70-0626ce14dcbe', '4', '4', '784', NULL, '2026-02-28 23:37:31', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-02-28 23:37:31', '2026-02-28 23:37:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('831', '81a2948d-9f21-4bf4-82ab-58c43e16c478', '4', '4', '785', NULL, '2026-03-01 00:43:49', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.50', '0.00', '0.00', 'order', NULL, '7.50', '7.50', '2026-02-28 23:46:17', '2026-03-01 00:43:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('832', 'e9b2124b-98ce-493f-bdbd-5266003cdab5', '4', '4', '786', NULL, '2026-03-01 00:13:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-03-01 00:13:32', '2026-03-01 00:13:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('833', '0b31f0bf-64fd-4b0c-8231-6fe3856b79c6', '4', '4', '787', NULL, '2026-03-01 00:24:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '26.50', '0.00', '0.00', 'order', NULL, '26.50', '26.50', '2026-03-01 00:24:24', '2026-03-01 00:24:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('834', 'e82a2963-b975-4472-a118-618a94601362', '4', '4', '788', NULL, '2026-03-01 00:25:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-01 00:25:19', '2026-03-01 00:25:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('835', '31b95448-58ee-47db-8289-e80d44fef9f6', '4', '4', '789', NULL, '2026-03-01 01:04:15', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-01 00:38:16', '2026-03-01 01:04:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('836', '70c15450-747f-427f-958b-95602f5f851e', '4', '4', '790', NULL, '2026-03-01 00:46:40', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-01 00:46:40', '2026-03-01 00:46:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('837', '28d95cf1-ee9f-4d8a-be5a-8ffb16ddd16e', '4', '4', '791', NULL, '2026-03-01 01:46:07', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-01 00:57:20', '2026-03-01 01:46:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('838', '9c59cb5e-d37b-4791-b218-40e5289fd449', '4', '4', '792', NULL, '2026-03-01 01:02:15', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-03-01 01:02:15', '2026-03-01 01:02:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('839', '0947c62a-5f7c-4cbf-a243-9fa263b29c32', '4', '4', '793', NULL, '2026-03-01 01:05:38', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-01 01:05:38', '2026-03-01 01:05:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('840', '42b11411-9283-451f-b0b3-0680f35201af', '4', '4', '794', NULL, '2026-03-01 01:11:22', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '17.50', '0.00', '0.00', 'order', NULL, '17.50', '17.50', '2026-03-01 01:11:22', '2026-03-01 01:11:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('841', 'b11fbdbc-bb6b-4b02-b4d8-9b679cc3cc43', '4', '4', '795', NULL, '2026-03-01 02:11:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-01 02:11:36', '2026-03-01 02:11:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('842', 'ab6339a6-08bb-4b68-92d1-e02370cb9665', '4', '4', '796', NULL, '2026-03-01 02:12:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-01 02:12:19', '2026-03-01 02:12:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('843', '54b4a7d7-75f4-4d53-ab08-5273a508a66e', '4', '4', '797', NULL, '2026-03-01 02:16:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '59.00', '0.00', '0.00', 'order', NULL, '59.00', '59.00', '2026-03-01 02:16:10', '2026-03-01 02:16:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('844', 'a6e7a03f-beec-4f30-ac5f-46c44d7b5bee', '4', '4', '798', NULL, '2026-03-01 02:35:22', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-01 02:35:22', '2026-03-01 02:35:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('845', '8e5dcc10-bfad-4fa2-a288-924d1e4accd4', '4', '4', '799', NULL, '2026-03-01 02:40:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 02:40:10', '2026-03-01 02:40:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('846', '2a05f6af-bffc-4d63-a498-d9970eb925fd', '4', '4', '800', NULL, '2026-03-01 02:41:18', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-01 02:41:18', '2026-03-01 02:41:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('847', 'dd656192-4355-41ef-9930-979653381c12', '4', '4', '801', NULL, '2026-03-01 02:49:13', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-01 02:48:21', '2026-03-01 02:49:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('848', '16d54d62-d8ed-4070-920b-899e728b9a28', '4', '4', '802', NULL, '2026-03-01 02:48:35', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-01 02:48:35', '2026-03-01 02:48:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('849', 'a61e52a0-408f-4e70-9f1b-dee713223323', '4', '4', '803', NULL, '2026-03-01 02:51:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-01 02:51:42', '2026-03-01 02:51:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('850', '5f9115f1-6076-4862-a2ba-e1eeaec452a3', '4', '4', '804', NULL, '2026-03-01 02:53:56', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 02:53:56', '2026-03-01 02:54:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('851', '4495b912-b446-42d1-9afb-9bf2afe44957', '4', '4', '805', NULL, '2026-03-01 02:56:09', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-03-01 02:56:09', '2026-03-01 02:56:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('852', '2cd9134d-e2f1-4d92-9269-3aa8b52a1a87', '4', '4', '806', NULL, '2026-03-01 02:57:13', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-01 02:57:13', '2026-03-01 02:57:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('853', '6cb9dda2-49f0-49ec-a59f-f8f2c613b341', '4', '4', '807', NULL, '2026-03-01 02:57:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-01 02:57:42', '2026-03-01 02:57:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('854', '4a5dd36e-a3cc-44f2-adde-9895979097d0', '4', '4', '808', NULL, '2026-03-01 03:00:06', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 03:00:06', '2026-03-01 03:00:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('855', '1d59478c-1764-43d5-89a2-6b891c88abe9', '4', '4', '809', NULL, '2026-03-01 03:00:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 03:00:24', '2026-03-01 03:00:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('856', 'ec42eafa-2d78-4370-aa06-e629df5b1711', '4', '4', '810', NULL, '2026-03-01 03:06:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 03:06:24', '2026-03-01 03:06:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('857', '974db648-84d1-4c3e-8e27-3c925368a5e6', '4', '4', '811', NULL, '2026-03-01 03:09:08', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-01 03:09:08', '2026-03-01 03:09:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('858', '9e62def9-c31b-405c-817d-859e5423bdee', '4', '4', '812', NULL, '2026-03-01 03:09:33', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 03:09:33', '2026-03-01 03:09:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('859', 'eb13d0da-4470-408a-9a03-4f3a4b93ff72', '4', '4', '813', NULL, '2026-03-01 03:15:09', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-03-01 03:15:09', '2026-03-01 03:15:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('860', 'd1c2e2b0-b0f8-42b3-822d-46f13915aba9', '4', '4', '814', NULL, '2026-03-01 03:20:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-01 03:20:20', '2026-03-01 03:20:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('861', '73cbb449-fbb6-41e3-b75a-b943e9ab2914', '4', '4', '815', NULL, '2026-03-01 03:23:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-01 03:23:36', '2026-03-01 03:23:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('862', '76074dd9-1b1e-46e7-90de-9e8b4463ca33', '4', '4', '816', NULL, '2026-03-01 03:31:49', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-01 03:31:49', '2026-03-01 03:31:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('863', 'd1e3b6f7-417e-4bec-aad4-e07961d27c44', '4', '4', '817', NULL, '2026-03-01 03:39:41', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-01 03:39:41', '2026-03-01 03:39:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('864', 'ca5378d0-077c-422c-9b8a-77ef7f531d45', '4', '4', '818', NULL, '2026-03-01 03:45:38', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-01 03:45:38', '2026-03-01 03:45:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('865', '6cdaa585-d8e9-4d75-bccb-38df2537b1a7', '4', '4', '819', NULL, '2026-03-01 03:47:59', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-01 03:47:59', '2026-03-01 03:48:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('866', '7ca76dbd-ccc8-4c08-a751-1762e4d8647f', '4', '4', '820', NULL, '2026-03-01 03:48:13', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-01 03:48:13', '2026-03-01 03:48:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('867', '1427009a-672e-4a0a-91b2-610d4325553d', '4', '4', '821', NULL, '2026-03-01 03:49:16', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-01 03:49:16', '2026-03-01 03:49:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('868', '8e893896-b7b4-4898-9c69-09aebc914003', '4', '4', '822', NULL, '2026-03-01 03:52:41', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-01 03:52:41', '2026-03-01 03:52:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('869', '02628c38-d68d-491a-9b04-ead2414694dc', '4', '4', '823', NULL, '2026-03-01 03:55:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-01 03:55:32', '2026-03-01 03:55:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('870', 'ee2d96e6-7812-4dd1-a487-35c73ca7ff53', '4', '4', '824', NULL, '2026-03-01 04:06:34', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.50', '0.00', '0.00', 'order', NULL, '12.50', '12.50', '2026-03-01 04:06:34', '2026-03-01 04:06:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('871', '025e82d7-6a75-43af-9590-03ef7bd15965', '4', '4', '825', NULL, '2026-03-01 19:01:14', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-01 19:01:14', '2026-03-01 19:01:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('872', 'a92043fa-112b-4114-a024-ecc45bb19da1', '4', '4', '826', NULL, '2026-03-01 19:49:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-01 19:49:38', '2026-03-01 19:49:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('873', 'dcd59d17-b4e5-41e8-be14-19be26a893ff', '4', '4', '827', NULL, '2026-03-01 19:51:09', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-03-01 19:51:09', '2026-03-01 19:51:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('874', 'd0f2dce5-6767-4057-87b1-92eabc1be221', '4', '4', '828', NULL, '2026-03-01 20:25:53', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-01 20:25:53', '2026-03-01 20:26:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('875', '904d3477-fe9d-46dd-b0c7-97b400005a36', '4', '4', '829', NULL, '2026-03-01 22:28:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-01 22:28:40', '2026-03-01 22:29:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('876', '08dd070b-6cb7-4427-b6e0-1da989b74821', '4', '4', '830', NULL, '2026-03-01 22:30:05', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2026-03-01 22:30:05', '2026-03-01 22:30:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('877', '16b700f8-27ef-4725-848e-fff1339b65f8', '4', '4', '831', NULL, '2026-03-01 22:56:45', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-01 22:56:45', '2026-03-01 23:44:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('878', '77760a52-a94e-4664-8c67-9271167c75ff', '4', '4', '832', NULL, '2026-03-01 23:46:04', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-03-01 23:46:04', '2026-03-01 23:46:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('879', 'e0ecc7eb-31de-4ddb-b99c-834071443ef1', '4', '4', '833', NULL, '2026-03-02 00:55:54', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-02 00:55:54', '2026-03-02 00:56:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('880', '49a0950f-ad1e-4759-89e6-99fc0b01b7c8', '4', '4', '834', NULL, '2026-03-02 23:10:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '129.50', '0.00', '0.00', 'order', NULL, '129.50', '129.50', '2026-03-02 19:05:29', '2026-03-02 23:11:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('881', 'bf692d12-5c99-470e-a3e2-08022d2ce506', '4', '4', '835', NULL, '2026-03-02 19:05:52', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-03-02 19:05:52', '2026-03-02 19:05:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('882', 'd95a9c7c-5cb9-4847-8b89-c40ec2541bb1', '4', '4', '836', NULL, '2026-03-02 22:54:13', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-03-02 19:08:27', '2026-03-02 22:54:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('883', '77f11dfd-a6c6-4c0c-b1d8-ab5ea70b9ed2', '4', '4', '837', NULL, '2026-03-02 20:02:46', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-02 20:02:46', '2026-03-02 20:02:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('884', '4cfc2cae-bc41-4591-ae9b-95c9d0b6fcf9', '4', '4', '838', NULL, '2026-03-02 20:26:11', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-02 20:26:11', '2026-03-02 20:26:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('885', 'a25b6a03-e8ec-4cec-98bd-868fccf21967', '4', '4', '839', NULL, '2026-03-02 23:15:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-03-02 21:21:03', '2026-03-02 23:15:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('886', '0f40296b-a34a-4ca2-a87e-f7fc1cb5350c', '4', '4', '840', NULL, '2026-03-02 21:58:45', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-02 21:58:45', '2026-03-02 21:58:50', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('887', '1d832b0b-4779-48d8-ab1f-4a76182e715b', '4', '4', '841', NULL, '2026-03-02 23:19:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-02 22:29:29', '2026-03-02 23:19:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('888', 'b527c57f-66aa-4cc3-947e-45c111706eab', '4', '4', '842', NULL, '2026-03-02 22:38:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2026-03-02 22:38:44', '2026-03-02 22:38:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('889', 'f94dadcf-5388-4960-8bad-edd63f77d06f', '4', '4', '843', NULL, '2026-03-02 23:18:49', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-02 23:18:49', '2026-03-02 23:18:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('890', '2a35724d-3eff-4346-8784-7f4b300bccdb', '4', '4', '844', NULL, '2026-03-03 00:59:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.50', '0.00', '0.00', 'order', NULL, '15.50', '15.50', '2026-03-02 23:21:36', '2026-03-03 00:59:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('891', 'bdbc2d83-c287-431b-a9ec-b360bd0355a5', '4', '4', '845', NULL, '2026-03-03 00:55:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-03-02 23:26:21', '2026-03-03 00:55:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('892', '9435b406-0513-4e24-a8f5-9f16161e7eb2', '4', '4', '846', NULL, '2026-03-02 23:52:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-02 23:33:16', '2026-03-02 23:53:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('893', '7fc1c620-7b61-4964-bd4b-2abb2af8a7f3', '4', '4', '847', NULL, '2026-03-03 21:02:27', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '33.50', '0.00', '0.00', 'order', NULL, '33.50', '33.50', '2026-03-03 20:06:59', '2026-03-03 21:02:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('894', '18aeb5e2-48e3-459a-ac42-15314e5ac834', '4', '4', '848', NULL, '2026-03-03 20:12:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-03 20:12:23', '2026-03-03 20:12:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('895', '8bab7013-a84c-40f9-9bc0-ce346815bffa', '4', '4', '849', NULL, '2026-03-03 22:19:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-03 22:19:25', '2026-03-03 22:20:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('896', '4e660e86-b1d0-4e8c-90ce-0b7e973226c3', '4', '4', '850', NULL, '2026-03-03 22:20:47', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-03-03 22:20:47', '2026-03-03 22:20:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('897', '5925903e-4863-46d7-b61e-8db1184cd5d1', '4', '4', '851', NULL, '2026-03-03 22:21:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-03 22:21:42', '2026-03-03 22:22:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('898', 'e73aec11-2228-4caf-bd77-6e4ef3abcd2a', '4', '4', '852', NULL, '2026-03-04 00:54:50', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-04 00:09:55', '2026-03-04 00:54:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('899', 'd1d6c766-c560-47e4-86a1-db2337acbb10', '4', '4', '853', NULL, '2026-03-04 19:42:51', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-04 18:29:03', '2026-03-04 19:44:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('900', 'c5f70a92-eaa2-4852-9ab9-eddd5b62ef35', '4', '4', '854', NULL, '2026-03-04 20:59:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.50', '0.00', '0.00', 'order', NULL, '15.50', '15.50', '2026-03-04 20:17:31', '2026-03-04 21:00:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('901', '66a21b11-7a5e-443e-9064-376911a03ddf', '4', '4', '855', NULL, '2026-03-04 21:30:54', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-03-04 20:35:22', '2026-03-04 21:30:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('902', '61bec65e-0a54-4f66-8d28-7e9f44aebfae', '4', '4', '856', NULL, '2026-03-04 23:11:11', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-04 22:22:51', '2026-03-04 23:11:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('903', 'effc09be-7aad-46ee-8691-c0686589bae6', '4', '4', '857', NULL, '2026-03-05 19:10:41', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-05 19:10:41', '2026-03-05 20:45:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('904', 'c094f6cb-5be3-46ab-9e6c-06b559d0c101', '4', '4', '858', NULL, '2026-03-05 21:12:11', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '121.50', '0.00', '0.00', 'order', NULL, '121.50', '121.50', '2026-03-05 20:41:54', '2026-03-05 21:13:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('905', 'ca8070ae-4d2b-4697-84c2-ff1bd88bcaed', '4', '4', '859', NULL, '2026-03-05 20:44:46', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-05 20:44:46', '2026-03-05 20:44:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('906', '87f051f3-36ef-492d-97d3-3dd86ff19130', '4', '4', '860', NULL, '2026-03-05 21:16:10', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '30.00', '0.00', '0.00', 'order', NULL, '30.00', '30.00', '2026-03-05 21:16:10', '2026-03-05 21:16:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('907', 'b3d75422-3ea2-48f2-ae16-b49490e49e45', '4', '4', '861', NULL, '2026-03-06 00:17:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '125.00', '0.00', '0.00', 'order', NULL, '125.00', '125.00', '2026-03-05 21:17:59', '2026-03-06 00:17:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('908', '92abbcf4-930f-423e-a26f-20bd84f5ce72', '4', '4', '862', NULL, '2026-03-05 22:59:17', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '92.50', '0.00', '0.00', 'order', NULL, '92.50', '92.50', '2026-03-05 21:25:22', '2026-03-05 22:59:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('909', '67c144a4-0539-43bb-8aa4-45e8a2c3591e', '4', '4', '863', NULL, '2026-03-05 21:34:07', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-05 21:34:07', '2026-03-05 21:34:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('910', 'c0c1921d-ec64-4432-ba37-decfac490e99', '4', '4', '864', NULL, '2026-03-06 21:08:44', NULL, NULL, '1', '5', '12', NULL, 'paid', 'pos', '52.50', '0.00', '0.00', 'order', NULL, '52.50', '52.50', '2026-03-06 08:39:34', '2026-03-06 21:08:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('911', '297edaa5-56d4-40a6-b400-0f9334ce9b5f', '4', '4', '865', NULL, '2026-03-06 23:17:04', NULL, NULL, NULL, '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-06 21:10:05', '2026-03-06 23:17:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('912', '538b4e58-9ffd-4e91-82bd-e7d12e001188', '4', '4', '866', NULL, '2026-03-06 22:52:18', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '108.50', '0.00', '0.00', 'order', NULL, '108.50', '108.50', '2026-03-06 21:30:53', '2026-03-06 22:52:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('913', '78022b8c-3500-4f51-85c1-3539485c832e', '4', '4', '867', NULL, '2026-03-06 23:39:15', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-06 22:10:18', '2026-03-06 23:39:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('914', '2f593f9c-0a4b-449f-a90b-cc1fab069bee', '4', '4', '868', NULL, '2026-03-06 22:43:19', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-06 22:43:19', '2026-03-06 23:23:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('915', '97243b22-a727-4a58-870b-3158193c6b49', '4', '4', '869', NULL, '2026-03-06 23:30:18', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-06 23:28:04', '2026-03-06 23:30:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('916', '88c98f74-453c-4aba-a6f5-47519a6c583e', '4', '4', '870', NULL, '2026-03-07 00:56:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-07 00:12:01', '2026-03-07 00:57:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('917', '8e328753-1bd7-4eb4-bc7c-21141f243968', '4', '4', '871', NULL, '2026-03-07 02:19:36', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-07 01:09:17', '2026-03-07 02:19:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('918', '6e83851a-87ea-45d9-baa7-c6e3217bef28', '4', '4', '872', NULL, '2026-03-07 01:46:53', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-03-07 01:46:53', '2026-03-07 01:46:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('919', 'ff233eea-580e-4293-ac75-d2eb67e22efc', '4', '4', '873', NULL, '2026-03-07 02:11:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-07 02:11:06', '2026-03-07 02:11:11', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('920', '660014ef-becf-49c6-a880-274def14d237', '4', '4', '874', NULL, '2026-03-07 05:01:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-03-07 02:25:15', '2026-03-07 05:02:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('921', '4a69b3ea-bcef-4d2c-aa24-c7b61dfd87d8', '4', '4', '875', NULL, '2026-03-07 02:47:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-07 02:47:55', '2026-03-07 02:48:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('922', 'c38f4015-559c-4296-b07a-06c9d8012ee3', '4', '4', '876', NULL, '2026-03-07 02:54:31', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-07 02:54:31', '2026-03-07 02:56:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('923', '84d51931-512c-4cc9-adee-de503415db85', '4', '4', '877', NULL, '2026-03-07 03:00:22', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-07 03:00:22', '2026-03-07 03:00:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('924', '399ec13e-c76e-48c0-add7-61be2bea304a', '4', '4', '878', NULL, '2026-03-07 03:54:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-07 03:52:49', '2026-03-07 03:54:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('925', 'f3408c44-83f6-450f-b961-abc23e52f61b', '4', '4', '879', NULL, '2026-03-07 04:10:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-03-07 04:10:57', '2026-03-07 04:11:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('926', '55e0486b-3ba7-469f-ac84-08238e5ff0cb', '4', '4', '880', NULL, '2026-03-07 04:17:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-03-07 04:17:16', '2026-03-07 04:17:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('927', 'fea214e9-ad15-49d6-a8ff-5decebc05052', '4', '4', '881', NULL, '2026-03-07 04:42:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-07 04:42:48', '2026-03-07 04:42:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('928', 'e7fab353-3487-47a4-9c5c-79bf47f13b65', '4', '4', '882', NULL, '2026-03-07 22:27:07', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.50', '0.00', '0.00', 'order', NULL, '18.50', '18.50', '2026-03-07 20:22:26', '2026-03-07 22:27:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('929', '316d94f6-8a81-4ceb-8fb8-d72318a1513d', '4', '4', '883', NULL, '2026-03-08 01:14:25', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-07 20:22:40', '2026-03-08 01:14:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('930', 'df5eb44a-4762-4e4a-899f-a43cf6c2e739', '4', '4', '884', NULL, '2026-03-08 01:20:51', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2026-03-07 20:54:37', '2026-03-08 01:20:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('931', 'e08f10f1-689a-4f39-9399-14ab77d73bc1', '4', '4', '885', NULL, '2026-03-07 21:20:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-03-07 21:20:06', '2026-03-07 21:20:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('932', 'a5fee656-54dc-4436-9562-b36ad4760f4e', '4', '4', '886', NULL, '2026-03-07 21:25:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-07 21:25:42', '2026-03-07 21:25:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('933', 'f14aeb49-98ad-45a8-9f00-6171892158df', '4', '4', '887', NULL, '2026-03-07 21:45:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '17.00', '0.00', '0.00', 'order', NULL, '17.00', '17.00', '2026-03-07 21:45:56', '2026-03-07 21:46:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('934', 'debe52cd-a275-4b7a-b89c-5681b81efe9c', '4', '4', '888', NULL, '2026-03-07 22:20:53', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-07 22:20:53', '2026-03-07 22:20:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('935', 'b9a77957-6cf6-4357-8348-05fc23b1f6fc', '4', '4', '889', NULL, '2026-03-07 22:29:28', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '24.00', '0.00', '0.00', 'order', NULL, '24.00', '24.00', '2026-03-07 22:29:28', '2026-03-07 22:29:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('936', 'd274e234-30e1-40d5-a5cd-ae084e8c9866', '4', '4', '890', NULL, '2026-03-07 22:58:21', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-03-07 22:58:21', '2026-03-07 22:58:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('937', 'e2c35fe7-a4be-4625-a6e6-a573631c9ed4', '4', '4', '891', NULL, '2026-03-08 01:20:34', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '21.50', '0.00', '0.00', 'order', NULL, '21.50', '21.50', '2026-03-07 23:17:12', '2026-03-08 01:20:39', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('938', '147c8505-3970-4c02-8026-e09498217105', '4', '4', '892', NULL, '2026-03-07 23:26:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-07 23:26:16', '2026-03-07 23:26:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('939', '5226851f-4c9e-450a-b939-34a2e5bd440d', '4', '4', '893', NULL, '2026-03-08 01:23:37', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-08 01:23:37', '2026-03-08 01:23:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('940', '7013158c-f1e4-4e60-a2cb-9887c2f4d7c7', '4', '4', '894', NULL, '2026-03-08 19:55:38', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '7.50', '0.00', '0.00', 'order', NULL, '7.50', '7.50', '2026-03-08 19:55:38', '2026-03-08 19:55:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('941', 'b05e8598-ebc2-4db4-81b9-b649ddbf9bae', '4', '4', '895', NULL, '2026-03-08 19:56:08', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-08 19:56:08', '2026-03-08 19:56:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('942', '40c662fd-4e4f-4d98-bb0f-263da20f327a', '4', '4', '896', NULL, '2026-03-08 21:17:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-08 20:59:31', '2026-03-08 21:17:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('943', '8ba18d07-bdba-4298-86ce-01e9a096c42e', '4', '4', '897', NULL, '2026-03-08 22:22:53', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-08 22:22:53', '2026-03-08 22:22:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('944', 'd6dc8ba4-27a1-4e07-ae95-fbd36bbb684d', '4', '4', '898', NULL, '2026-03-08 22:53:40', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-08 22:53:40', '2026-03-08 22:53:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('945', '0b8a8b5c-4621-41e5-8e28-ff1f5bb8a5f8', '4', '4', '899', NULL, '2026-03-09 01:08:33', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '27.00', '0.00', '0.00', 'order', NULL, '27.00', '27.00', '2026-03-08 22:53:53', '2026-03-09 01:08:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('946', '56effe76-3195-4131-94f3-9d935ec618b9', '4', '4', '900', NULL, '2026-03-09 00:14:14', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-08 23:42:22', '2026-03-09 00:14:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('947', '4aeba9e3-caa9-414f-b343-e82912e5a3e9', '4', '4', '901', NULL, '2026-03-08 23:53:37', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-08 23:53:37', '2026-03-08 23:53:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('948', '7c63fc19-b548-4833-86b3-b200f66e0c27', '4', '4', '902', NULL, '2026-03-09 01:14:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '43.50', '0.00', '0.00', 'order', NULL, '43.50', '43.50', '2026-03-09 00:13:40', '2026-03-09 01:14:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('949', 'f6dd73bc-c21c-4d39-8d8a-a7b1394499ed', '4', '4', '903', NULL, '2026-03-09 00:34:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-09 00:34:24', '2026-03-09 00:34:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('950', '806b4136-9f5f-4c3c-a654-0ce78dcf8db3', '4', '4', '904', NULL, '2026-03-09 01:28:22', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-09 01:17:09', '2026-03-09 01:28:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('951', 'b9c3a779-151f-415b-adf0-bdb4638588b0', '4', '4', '905', NULL, '2026-03-09 01:42:33', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-09 01:42:33', '2026-03-09 01:42:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('952', 'b5fefae0-7d11-4737-90b6-28017116ec4e', '4', '4', '906', NULL, '2026-03-09 02:21:57', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-09 02:21:57', '2026-03-09 02:22:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('953', 'bd3cec90-f25c-4100-bdf5-cf84ba3be85f', '4', '4', '907', NULL, '2026-03-09 23:20:25', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-03-09 23:20:25', '2026-03-09 23:20:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('954', '0c5c2662-2dd0-4645-8f86-da686d15813d', '4', '4', '908', NULL, '2026-03-10 22:24:14', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-03-10 22:04:31', '2026-03-10 22:24:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('955', '4a1edc03-a2c6-4eb1-8c33-14ad79e87495', '4', '4', '909', NULL, '2026-03-10 22:07:51', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '25.00', '0.00', '0.00', 'order', NULL, '25.00', '25.00', '2026-03-10 22:07:51', '2026-03-10 22:07:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('956', 'aee98dee-3e2c-49e7-a54a-3db3728f5041', '4', '4', '910', NULL, '2026-03-10 22:09:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-03-10 22:09:01', '2026-03-10 22:09:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('957', '4ea7e5ae-9199-4da0-93fd-2b8f32b5ac85', '4', '4', '911', NULL, '2026-03-10 22:45:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-10 22:45:20', '2026-03-10 22:45:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('958', '1c9fc525-d582-4532-92b6-acc2eff63142', '4', '4', '912', NULL, '2026-03-11 21:24:09', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-03-11 21:24:09', '2026-03-11 21:24:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('959', '913aae69-205a-4ad3-93b2-538f0583600a', '4', '4', '913', NULL, '2026-03-11 22:41:18', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-11 22:41:18', '2026-03-11 22:41:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('960', '034d5a02-69e2-418b-8713-cdfaad0e2d1f', '4', '4', '914', NULL, '2026-03-13 20:34:11', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-13 20:34:11', '2026-03-13 20:34:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('961', '3900502f-3235-48d9-a4fc-46686f9c0e1d', '4', '4', '915', NULL, '2026-03-13 21:39:41', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-13 21:39:41', '2026-03-13 21:39:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('962', 'a1b9dbed-e809-4153-b5ae-b2fda1d3c0f8', '4', '4', '916', NULL, '2026-03-13 23:05:26', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2026-03-13 23:05:26', '2026-03-13 23:05:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('963', '178a6ec5-2aea-4175-ba49-7a80ce27bfbd', '4', '4', '917', NULL, '2026-03-13 23:14:39', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-13 23:14:39', '2026-03-13 23:14:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('964', '67df729b-485c-47d6-915f-ac730e593e0c', '4', '4', '918', NULL, '2026-03-13 23:39:29', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '28.00', '0.00', '0.00', 'order', NULL, '28.00', '28.00', '2026-03-13 23:39:29', '2026-03-13 23:39:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('965', '2c164aff-b91d-4aa5-9a54-675987c90e0b', '4', '4', '919', NULL, '2026-03-13 23:52:28', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '30.50', '0.00', '0.00', 'order', NULL, '30.50', '30.50', '2026-03-13 23:52:28', '2026-03-13 23:52:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('966', 'b64edb4b-c94d-4a93-b0eb-cda798ff4d16', '4', '4', '920', NULL, '2026-03-13 23:54:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-13 23:54:49', '2026-03-13 23:55:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('967', '26c9dac1-bcbb-48af-be3d-20bce485c993', '4', '4', '921', NULL, '2026-03-14 00:07:48', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-14 00:07:48', '2026-03-14 00:10:22', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('968', '9076e65d-fc73-4c44-aaea-f29c8d9b0e98', '4', '4', '922', NULL, '2026-03-14 00:10:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '14.00', '0.00', '0.00', 'order', NULL, '14.00', '14.00', '2026-03-14 00:10:34', '2026-03-14 00:13:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('969', '3241f513-8411-4ce0-9574-25acfa6ab03e', '4', '4', '923', NULL, '2026-03-14 01:02:01', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '53.00', '0.00', '0.00', 'order', NULL, '53.00', '53.00', '2026-03-14 01:02:01', '2026-03-14 01:02:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('970', '1656e87d-47c8-4b5e-bfcb-b4ac0b0f4d91', '4', '4', '924', NULL, '2026-03-14 01:02:50', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-14 01:02:50', '2026-03-14 01:03:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('971', '7e9a3964-4b0f-4e02-8f0d-968ee6571c73', '4', '4', '925', NULL, '2026-03-14 02:06:32', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '37.50', '0.00', '0.00', 'order', NULL, '37.50', '37.50', '2026-03-14 02:06:32', '2026-03-14 02:06:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('972', '575f0b58-8ab8-44ff-824a-d64e1f1d8b3d', '4', '4', '926', NULL, '2026-03-14 18:46:38', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-03-14 18:46:38', '2026-03-14 18:47:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('973', '6be2df4f-df71-400e-8ac4-98d615fd9910', '4', '4', '927', NULL, '2026-03-14 19:46:49', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-14 19:46:49', '2026-03-14 19:47:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('974', '8c047495-b2ec-4bde-8228-be53d9f730d4', '4', '4', '928', NULL, '2026-03-14 19:58:24', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-14 19:58:24', '2026-03-14 19:58:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('975', '94b8846a-6956-4688-a689-feee61d51be4', '4', '4', '929', NULL, '2026-03-14 20:01:11', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-14 20:01:11', '2026-03-14 20:01:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('976', '67f93101-b8c2-4080-af92-17875a8ffaa1', '4', '4', '930', NULL, '2026-03-14 21:17:34', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-14 21:17:34', '2026-03-14 21:17:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('977', '1d60fb1c-8d66-463a-bf8f-0b953aecb301', '4', '4', '931', NULL, '2026-03-14 21:46:52', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-14 21:46:52', '2026-03-14 21:47:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('978', 'd9b3b1f0-60dd-4f34-92db-7560783940a4', '4', '4', '932', NULL, '2026-03-14 21:52:13', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-14 21:52:13', '2026-03-14 22:11:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('979', 'ad4815bd-312e-48f5-93c9-28e8c28af0a7', '4', '4', '933', NULL, '2026-03-14 22:12:06', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-14 22:12:06', '2026-03-14 22:12:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('980', 'ac04da1b-5b94-445c-a5cc-6665d4af5e77', '4', '4', '934', NULL, '2026-03-14 22:13:08', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-03-14 22:13:08', '2026-03-14 22:13:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('981', 'a22d9061-d13b-4e11-b5a6-50606b109e83', '4', '4', '935', NULL, '2026-03-14 22:13:38', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-14 22:13:38', '2026-03-14 22:13:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('982', 'd111574e-6f07-4e38-88e6-0cd040312f7d', '4', '4', '936', NULL, '2026-03-14 22:37:56', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-14 22:37:56', '2026-03-14 22:38:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('983', '0f6ea388-7230-44e7-bcad-2ea2a660648a', '4', '4', '937', NULL, '2026-03-14 23:04:49', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-14 23:04:49', '2026-03-14 23:05:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('984', '4781063d-9356-4f00-a6e3-8e4e6da39119', '4', '4', '938', NULL, '2026-03-14 23:06:33', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '41.00', '0.00', '0.00', 'order', NULL, '41.00', '41.00', '2026-03-14 23:06:33', '2026-03-14 23:06:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('985', '94445947-906a-4a11-b58f-3f8437376f0b', '4', '4', '939', NULL, '2026-03-15 02:35:56', NULL, NULL, NULL, '6', '6', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-15 02:35:56', '2026-03-15 02:36:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('986', '8c90f6ed-518f-4d61-8ef6-f0eb1866727e', '4', '4', '940', NULL, '2026-03-15 23:53:20', NULL, NULL, '1', '6', '6', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-15 23:53:20', '2026-03-15 23:58:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('987', '58447af1-b6bc-4b1b-9e4e-d486b5d6f23e', '4', '4', '941', NULL, '2026-03-18 00:45:09', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '51.00', '0.00', '0.00', 'order', NULL, '51.00', '51.00', '2026-03-17 23:19:43', '2026-03-18 00:45:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('988', 'e78d2f07-7ba9-4a42-8b45-23f5d97e9ba6', '4', '4', '942', NULL, '2026-03-18 18:54:37', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-18 18:54:37', '2026-03-18 18:55:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('989', 'f203c765-29d0-4b5b-9dbf-b3988556df95', '4', '4', '943', NULL, '2026-03-18 21:22:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '77.00', '0.00', '0.00', 'order', NULL, '77.00', '77.00', '2026-03-18 19:01:14', '2026-03-18 21:23:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('990', '78439633-8835-4154-8c26-c490a075cff8', '4', '4', '944', NULL, '2026-03-18 19:05:04', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-18 19:05:04', '2026-03-18 19:05:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('991', '58381c39-2b03-4f96-a1d6-fb89a61fbc75', '4', '4', '945', NULL, '2026-03-18 23:29:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-18 19:52:35', '2026-03-18 23:29:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('992', '7373a443-ce71-4896-993d-4082203fbfd8', '4', '4', '946', NULL, '2026-03-19 01:36:31', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-18 20:15:28', '2026-03-19 01:36:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('993', 'edd3eee9-2044-40e0-a526-7b0586e0721e', '4', '4', '947', NULL, '2026-03-19 01:36:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '56.00', '0.00', '0.00', 'order', NULL, '56.00', '56.00', '2026-03-18 20:38:03', '2026-03-19 01:36:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('994', '06477f14-cf6f-4023-b834-b75b9091ae64', '4', '4', '948', NULL, '2026-03-18 20:59:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-18 20:58:41', '2026-03-18 20:59:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('995', 'dcfa537d-75d2-4a4d-9c62-30e2b1127e65', '4', '4', '949', NULL, '2026-03-18 22:23:50', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-18 22:23:50', '2026-03-18 22:23:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('996', 'dbbc4212-65e3-4523-aea0-ddf15001e485', '4', '4', '950', NULL, '2026-03-19 00:55:50', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-18 22:25:39', '2026-03-19 00:55:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('997', '5474c61f-3667-4f67-a281-f5d5dadbcd69', '4', '4', '951', NULL, '2026-03-18 22:53:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-18 22:53:55', '2026-03-18 22:53:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('998', 'a261b6c6-6b2f-470c-8eb6-553bf1b5beaa', '4', '4', '952', NULL, '2026-03-18 23:11:45', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2026-03-18 23:11:15', '2026-03-18 23:11:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('999', '871e270d-f625-4808-8975-63abc6fec45c', '4', '4', '953', NULL, '2026-03-19 00:56:32', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-19 00:56:32', '2026-03-19 00:56:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1000', '79a0af10-148d-4105-958f-6fae8ae9acd5', '4', '4', '954', NULL, '2026-03-19 00:58:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-19 00:58:23', '2026-03-19 00:58:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1001', '8b36a32c-b690-4f77-8139-06f7c24109a0', '4', '4', '955', NULL, '2026-03-19 20:25:36', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-19 20:25:36', '2026-03-19 20:25:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1002', '292ba87c-e22c-4659-9b9b-b0fb5e619042', '4', '4', '956', NULL, '2026-03-19 22:30:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '37.00', '0.00', '0.00', 'order', NULL, '37.00', '37.00', '2026-03-19 20:31:00', '2026-03-19 22:30:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1003', 'a8b9169d-4b3e-4c4d-9337-7647bc3a146e', '4', '4', '957', NULL, '2026-03-19 20:50:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-19 20:50:42', '2026-03-19 20:50:47', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1004', '05b8d452-ac30-4c35-be26-f78f2706caef', '4', '4', '958', NULL, '2026-03-19 21:23:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-03-19 21:23:00', '2026-03-19 21:23:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1005', 'd0e68018-82a8-4f2f-b5a3-6879b8472df6', '4', '4', '959', NULL, '2026-03-19 21:46:18', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-19 21:46:18', '2026-03-19 21:46:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1006', 'c80c06d4-e7f9-40d4-b34a-261519506186', '4', '4', '960', NULL, '2026-03-19 22:20:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-19 22:20:23', '2026-03-19 22:21:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1007', 'cd7ed25f-00ba-48e4-85af-d047be8112f3', '4', '4', '961', NULL, '2026-03-19 23:24:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '25.50', '0.00', '0.00', 'order', NULL, '25.50', '25.50', '2026-03-19 22:27:04', '2026-03-19 23:24:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1008', 'c37b4079-3cbb-4d2c-bb8e-327106e4aa59', '4', '4', '962', NULL, '2026-03-19 23:49:10', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-19 23:41:01', '2026-03-19 23:49:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1009', '1f01f68d-862d-43d4-98da-a17e5203a2e1', '4', '4', '963', NULL, '2026-03-19 23:56:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-19 23:56:24', '2026-03-19 23:56:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1010', '370658de-eaf1-47d8-9531-42fb7767fc9e', '4', '4', '964', NULL, '2026-03-20 00:22:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-20 00:15:48', '2026-03-20 00:22:19', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1011', '9becc55b-b628-41cc-880d-d1aaab5fd194', '4', '4', '965', NULL, '2026-03-20 18:35:59', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 18:35:40', '2026-03-20 18:36:03', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1012', '991431c3-f6e3-4777-bc2e-bfb04260ec69', '4', '4', '966', NULL, '2026-03-20 19:05:46', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-20 19:05:46', '2026-03-20 19:05:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

INSERT INTO `orders` VALUES
('1013', '531438f7-f8ad-4368-9133-d8f4bbdf927f', '4', '4', '967', NULL, '2026-03-20 19:08:38', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-20 19:08:38', '2026-03-20 19:08:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1014', '80c21234-91c1-45e0-b991-d89acba9cbed', '4', '4', '968', NULL, '2026-03-20 19:24:53', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '31.50', '0.00', '0.00', 'order', NULL, '31.50', '31.50', '2026-03-20 19:24:53', '2026-03-20 19:24:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1015', '5ce3eab6-2589-4219-90aa-d92807a97189', '4', '4', '969', NULL, '2026-03-20 19:25:20', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-20 19:25:20', '2026-03-20 19:25:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1016', '05264b64-ccf4-4820-8c14-24a087dbfb77', '4', '4', '970', NULL, '2026-03-20 19:30:21', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-20 19:30:21', '2026-03-20 19:30:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1017', '83ca7480-6c9e-439a-92a6-d7fd03a268a9', '4', '4', '971', NULL, '2026-03-20 19:30:55', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-03-20 19:30:55', '2026-03-20 19:31:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1018', 'f953a789-46ea-4c23-aa35-b9e28ad4e100', '4', '4', '972', NULL, '2026-03-20 19:36:15', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '17.50', '0.00', '0.00', 'order', NULL, '17.50', '17.50', '2026-03-20 19:36:15', '2026-03-20 19:36:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1019', '21daefa0-e663-4cea-99e9-a8ecb88d5a0d', '4', '4', '973', NULL, '2026-03-20 19:51:07', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.50', '0.00', '0.00', 'order', NULL, '16.50', '16.50', '2026-03-20 19:51:07', '2026-03-20 19:51:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1020', 'd69add1b-25db-43a0-805e-744be00d0d62', '4', '4', '974', NULL, '2026-03-20 20:01:57', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-20 20:01:57', '2026-03-20 20:02:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1021', '76c0190a-0f6d-4560-a6e3-0c703b89cdba', '4', '4', '975', NULL, '2026-03-20 20:03:56', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 20:03:56', '2026-03-20 20:04:00', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1022', 'c8ef5767-fd30-4d2c-996c-0006d904ca16', '4', '4', '976', NULL, '2026-03-20 20:05:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-20 20:05:24', '2026-03-20 20:05:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1023', 'e63ce040-2eb7-4962-ad47-b95f6d7820a6', '4', '4', '977', NULL, '2026-03-20 20:10:57', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 20:10:57', '2026-03-20 20:11:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1024', '19923833-d7b0-4304-8e73-517e0056b17a', '4', '4', '978', NULL, '2026-03-20 20:11:50', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-20 20:11:50', '2026-03-20 20:11:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1025', '2dd4d8f6-580a-4689-8efa-fe7a00aebc7b', '4', '4', '979', NULL, '2026-03-20 20:16:03', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-20 20:16:03', '2026-03-20 20:16:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1026', 'fd163eac-b49f-45ce-9fe4-cac422b50d8b', '4', '4', '980', NULL, '2026-03-20 20:22:25', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-03-20 20:22:25', '2026-03-20 20:22:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1027', '12a034ca-2ded-45f7-902a-f9c7c4a758cc', '4', '4', '981', NULL, '2026-03-20 20:33:01', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-20 20:33:01', '2026-03-20 20:33:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1028', '606d61d7-ef7b-48bc-a181-36ca0c9d1ad2', '4', '4', '982', NULL, '2026-03-20 20:36:38', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-20 20:36:38', '2026-03-20 20:36:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1029', '9ba2863a-9400-42f8-a3dd-047a217f3f06', '4', '4', '983', NULL, '2026-03-20 20:37:15', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '11.50', '0.00', '0.00', 'order', NULL, '11.50', '11.50', '2026-03-20 20:37:16', '2026-03-20 20:37:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1030', '92473bb1-05bf-4a34-8794-0f33f3fc1c6a', '4', '4', '984', NULL, '2026-03-20 20:48:37', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-20 20:48:37', '2026-03-20 20:48:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1031', 'b56235d0-9af0-4d43-b881-b3e4a214e69a', '4', '4', '985', NULL, '2026-03-20 20:56:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 20:56:36', '2026-03-20 20:56:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1032', '93bdf073-06f4-4c5b-90f4-bc730e9f35a2', '4', '4', '986', NULL, '2026-03-20 21:14:37', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2026-03-20 21:14:38', '2026-03-20 21:14:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1033', '1fabb823-4708-409e-81c8-89f62d352121', '4', '4', '987', NULL, '2026-03-20 21:17:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '15.00', '0.00', '0.00', 'order', NULL, '15.00', '15.00', '2026-03-20 21:17:24', '2026-03-20 21:17:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1034', '6dc2bfc5-f21c-4ba0-9c95-1b418d324935', '4', '4', '988', NULL, '2026-03-20 21:17:55', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.00', '0.00', '0.00', 'order', NULL, '5.00', '5.00', '2026-03-20 21:17:55', '2026-03-20 21:17:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1035', '0100b210-e281-4c1a-b41c-808cb28a087a', '4', '4', '989', NULL, '2026-03-20 21:20:51', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 21:20:51', '2026-03-20 21:20:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1036', 'a3711a9f-879c-46c0-b650-a34c2f948972', '4', '4', '990', NULL, '2026-03-20 21:40:53', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '7.00', '0.00', '0.00', 'order', NULL, '7.00', '7.00', '2026-03-20 21:40:53', '2026-03-20 21:40:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1037', 'd2e9c943-5442-4fc3-afb0-4df7dec91e3a', '4', '4', '991', NULL, '2026-03-20 21:42:32', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-20 21:42:32', '2026-03-20 21:42:38', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1038', 'b6b9142e-b2e2-427b-b626-095507421a14', '4', '4', '992', NULL, '2026-03-20 21:55:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-20 21:55:42', '2026-03-20 21:55:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1039', '11b21b48-9352-4ecb-94b0-fc2d55d04297', '4', '4', '993', NULL, '2026-03-20 21:56:13', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 21:56:13', '2026-03-20 21:56:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1040', '65fe4b08-a153-452c-b90c-b5ef09434d8e', '4', '4', '994', NULL, '2026-03-20 22:17:36', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-20 22:17:36', '2026-03-20 22:17:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1041', '623aa013-2221-4a4c-889a-538a78cc55b4', '4', '4', '995', NULL, '2026-03-20 22:40:48', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 22:40:48', '2026-03-20 22:40:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1042', '434cd588-9fb9-4115-9a0d-301ef68c16d3', '4', '4', '996', NULL, '2026-03-20 23:23:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-20 23:23:12', '2026-03-20 23:23:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1043', '040ca527-64b1-4284-91c8-43b27193dc29', '4', '4', '997', NULL, '2026-03-20 23:41:43', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.50', '0.00', '0.00', 'order', NULL, '6.50', '6.50', '2026-03-20 23:41:43', '2026-03-20 23:41:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1044', '8b4d1aa3-fab6-4501-9f99-1c96c266133a', '4', '4', '998', NULL, '2026-03-21 00:00:10', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-21 00:00:10', '2026-03-21 00:00:15', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1045', 'bc59aa73-d108-4941-a3ee-5c136f6f932d', '4', '4', '999', NULL, '2026-03-21 00:10:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-21 00:10:24', '2026-03-21 00:10:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1046', '5636f570-619e-47b4-af28-ba1f0d0def55', '4', '4', '1000', NULL, '2026-03-21 18:44:14', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-21 18:44:14', '2026-03-21 18:44:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1047', 'f8233c0d-c5d1-4115-a096-2ceb5b1695c1', '4', '4', '1001', NULL, '2026-03-21 23:12:23', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '106.00', '0.00', '0.00', 'order', NULL, '106.00', '106.00', '2026-03-21 20:06:07', '2026-03-21 23:12:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1048', '567cf42c-4c32-4aa6-9df1-48ea775d0ba3', '4', '4', '1002', NULL, '2026-03-21 22:04:23', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-21 22:04:23', '2026-03-21 22:04:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1049', 'b2ec9769-f13b-4b86-96a6-d80ec55df49c', '4', '4', '1003', NULL, '2026-03-21 23:53:03', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '34.50', '0.00', '0.00', 'order', NULL, '34.50', '34.50', '2026-03-21 22:31:05', '2026-03-21 23:53:08', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1050', '26333357-1572-471c-9b34-2cb9b8c009be', '4', '4', '1004', NULL, '2026-03-21 22:53:00', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-21 22:53:00', '2026-03-21 22:53:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1051', '36f962ec-3892-48de-88aa-acea45d8c083', '4', '4', '1005', NULL, '2026-03-21 22:56:44', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-21 22:56:44', '2026-03-21 22:56:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1052', '83e3394c-035f-47af-9c1d-f23f5c2d06b3', '4', '4', '1006', NULL, '2026-03-21 23:14:14', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-21 23:14:14', '2026-03-21 23:14:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1053', 'c97dc298-2ea6-46ee-b559-a4687458dab8', '4', '4', '1007', NULL, '2026-03-22 00:40:08', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-21 23:19:51', '2026-03-22 00:40:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1054', '6c197577-e694-4fd2-9c6e-e94ebb1a6467', '4', '4', '1008', NULL, '2026-03-22 01:26:47', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-21 23:20:07', '2026-03-22 01:26:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1055', '4d34508e-0d33-48ca-b16c-4ad33d7bb5b9', '4', '4', '1009', NULL, '2026-03-22 00:13:06', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '5.50', '0.00', '0.00', 'order', NULL, '5.50', '5.50', '2026-03-21 23:20:18', '2026-03-22 00:13:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1056', 'a0c7c37e-8e0f-429c-9d31-5e9c0b07fe53', '4', '4', '1010', NULL, '2026-03-21 23:32:25', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-21 23:32:25', '2026-03-21 23:32:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1057', 'df5c6bc8-c0ad-46ae-9c31-e9149b4aa3e7', '4', '4', '1011', NULL, '2026-03-21 23:51:36', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-21 23:51:36', '2026-03-21 23:51:41', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1058', 'cd48dc86-7e92-4a5c-b2b9-0c9f6064d476', '4', '4', '1012', NULL, '2026-03-22 01:27:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-22 00:00:55', '2026-03-22 01:27:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1059', 'c8b6b481-de2e-49ab-a7c8-fcb5f4667ecc', '4', '4', '1013', NULL, '2026-03-22 00:07:24', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-22 00:07:24', '2026-03-22 00:07:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1060', '5857385d-aa0c-43a8-a067-83716fff14bc', '4', '4', '1014', NULL, '2026-03-22 00:59:47', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-22 00:17:31', '2026-03-22 00:59:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1061', '818d2769-4035-4bd9-b751-535bc7363adb', '4', '4', '1015', NULL, '2026-03-22 00:50:16', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-22 00:50:16', '2026-03-22 00:50:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1062', '28fa789c-147b-44f0-982c-693f5676114b', '4', '4', '1016', NULL, '2026-03-22 01:28:21', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-22 01:04:01', '2026-03-22 01:28:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1063', '722f11b5-ba1b-4193-a5ad-4c5122a07d80', '4', '4', '1017', NULL, '2026-03-22 22:13:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '10.00', '0.00', '0.00', 'order', NULL, '10.00', '10.00', '2026-03-22 20:04:05', '2026-03-22 22:14:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1064', '9707eafa-d52a-47f7-92f8-359eb04b29ad', '4', '4', '1018', NULL, '2026-03-22 22:08:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '19.00', '0.00', '0.00', 'order', NULL, '19.00', '19.00', '2026-03-22 22:08:12', '2026-03-22 22:08:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1065', '65be6b3a-0449-4302-86f0-d90f6470958c', '4', '4', '1019', NULL, '2026-03-23 02:11:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '34.00', '0.00', '0.00', 'order', NULL, '34.00', '34.00', '2026-03-22 22:09:54', '2026-03-23 02:11:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1066', 'd74bf8d9-d40f-48d2-8186-5883ae9e612d', '4', '4', '1020', NULL, '2026-03-23 02:02:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '64.00', '0.00', '0.00', 'order', NULL, '64.00', '64.00', '2026-03-22 22:10:15', '2026-03-23 02:02:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1067', 'b818e8cc-f124-42e4-a64f-53070199931d', '4', '4', '1021', NULL, '2026-03-23 02:05:50', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '21.50', '0.00', '0.00', 'order', NULL, '21.50', '21.50', '2026-03-22 22:12:49', '2026-03-23 02:06:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1068', 'ecdd6224-a1f1-4649-aca7-db21446197ae', '4', '4', '1022', NULL, '2026-03-23 02:05:28', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.50', '0.00', '0.00', 'order', NULL, '13.50', '13.50', '2026-03-22 22:23:33', '2026-03-23 02:05:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1069', '93108f25-2707-4bb5-8d32-b6e9b49e2419', '4', '4', '1023', NULL, '2026-03-22 23:56:33', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-22 22:40:05', '2026-03-22 23:56:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1070', '0c7f73d0-9a61-43a2-9e2d-25a99f30dd34', '4', '4', '1024', NULL, '2026-03-23 00:19:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '39.50', '0.00', '0.00', 'order', NULL, '39.50', '39.50', '2026-03-22 23:03:57', '2026-03-23 00:20:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1071', '6e7211f0-98d7-44b6-9d79-8823de1ea4e3', '4', '4', '1025', NULL, '2026-03-22 23:06:40', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-22 23:06:40', '2026-03-22 23:06:45', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1072', '128204e2-a9fd-4cfc-ae7e-4bb6dfbba551', '4', '4', '1026', NULL, '2026-03-22 23:28:09', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-22 23:28:09', '2026-03-22 23:28:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1073', '3ff52901-ba78-468c-8867-0352ba2101cf', '4', '4', '1027', NULL, '2026-03-22 23:40:21', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.00', '0.00', '0.00', 'order', NULL, '9.00', '9.00', '2026-03-22 23:40:21', '2026-03-22 23:40:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1074', 'b8527e06-8403-41a6-9b0e-7f269eb1e7a1', '4', '4', '1028', NULL, '2026-03-22 23:46:02', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-22 23:46:02', '2026-03-22 23:46:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1075', 'a7aeb3de-f492-4fec-9668-38c2af3fc7cb', '4', '4', '1029', NULL, '2026-03-22 23:46:49', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-22 23:46:49', '2026-03-22 23:46:55', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1076', 'fcfce3a7-9814-4c84-ad6b-41948e9b12e4', '4', '4', '1030', NULL, '2026-03-23 00:45:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-23 00:45:05', '2026-03-23 00:45:09', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1077', 'e12d23a9-21f4-4454-bcc2-8ab1074f550f', '4', '4', '1031', NULL, '2026-03-23 01:22:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-23 01:22:48', '2026-03-23 01:22:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1078', 'd31cec06-f1a9-44e2-aa1e-9f11a1da9f1b', '4', '4', '1032', NULL, '2026-03-23 20:02:37', NULL, NULL, '1', '5', NULL, NULL, 'kot', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '0.00', '2026-03-23 20:02:37', '2026-03-23 20:02:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1079', '871db509-2d68-43df-8123-1f73b0c03f27', '4', '15', '1033', NULL, '2026-03-24 18:24:15', NULL, NULL, '1', '5', '12', NULL, 'paid', 'pos', '48.50', '0.00', '0.00', 'order', NULL, '48.50', '48.50', '2026-03-23 23:54:17', '2026-03-24 18:24:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1080', '543fc9a9-00c5-4aea-a635-75ec89f784ec', '4', '4', '1034', NULL, '2026-03-24 20:02:48', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '23.50', '0.00', '0.00', 'order', NULL, '23.50', '23.50', '2026-03-24 18:33:17', '2026-03-24 20:05:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1081', 'acd2ec6c-27d1-4f13-a5b0-b7277943ed74', '4', '4', '1035', NULL, '2026-03-24 21:34:51', NULL, NULL, '1', '12', NULL, NULL, 'kot', 'pos', '31.00', '0.00', '0.00', 'order', NULL, '31.00', '0.00', '2026-03-24 19:17:40', '2026-03-24 21:34:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1082', '3013da64-2440-4252-ad99-129d47522c17', '4', '4', '1036', NULL, '2026-03-24 20:06:27', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '5.00', '2026-03-24 20:06:27', '2026-03-24 20:06:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1083', '325ad86e-c5e9-484a-9538-874eac499ade', '4', '4', '1037', NULL, '2026-03-24 21:26:48', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '13.00', '0.00', '0.00', 'order', NULL, '13.00', '13.00', '2026-03-24 21:26:48', '2026-03-24 21:26:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1084', '2bd71a06-7ff8-4303-b90b-14da9b8f0196', '4', '4', '1038', NULL, '2026-03-25 00:03:43', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '24.50', '0.00', '0.00', 'order', NULL, '24.50', '24.50', '2026-03-24 22:21:50', '2026-03-25 00:03:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1085', '5fd38edd-de15-4e3b-8e69-fd51dc7c781a', '4', '4', '1039', NULL, '2026-03-24 22:33:23', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-24 22:33:23', '2026-03-24 22:33:28', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1086', '85b54cf7-b02d-420a-8ecc-a1ad45db82ec', '4', '4', '1040', NULL, '2026-03-24 22:37:49', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-24 22:37:49', '2026-03-24 22:37:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1087', '9c201bc6-60d6-499d-b0f5-d10319cdd13e', '4', '4', '1041', NULL, '2026-03-24 22:53:19', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-24 22:53:19', '2026-03-24 22:54:04', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1088', '4446ce68-8877-4656-b0a4-3a0864354326', '4', '4', '1042', NULL, '2026-03-24 22:58:21', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-24 22:58:21', '2026-03-24 22:58:25', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1089', '26ed5560-cba7-4233-b1a8-df74b365fb31', '4', '4', '1043', NULL, '2026-03-25 01:35:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-24 23:16:08', '2026-03-25 01:35:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1090', 'c812fa69-8b4f-44d5-9a2a-1f8d37e2a4b5', '4', '4', '1044', NULL, '2026-03-24 23:18:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-24 23:16:36', '2026-03-24 23:24:42', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1091', '7cf2410b-d7a5-46c5-9f14-b0682f2cf086', '4', '4', '1045', NULL, '2026-03-24 23:36:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-24 23:36:00', '2026-03-24 23:36:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1092', 'cd0e5478-603d-4ef9-b896-7f472618107f', '4', '4', '1046', NULL, '2026-03-24 23:39:44', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-24 23:39:44', '2026-03-24 23:39:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1093', '69d7a27e-b676-4a72-b32d-4683564cbada', '4', '4', '1047', NULL, '2026-03-24 23:46:31', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-24 23:46:31', '2026-03-24 23:46:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1094', '89173fec-a845-494b-a040-d881dc80a360', '4', '4', '1048', NULL, '2026-03-25 01:33:00', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-24 23:59:20', '2026-03-25 01:33:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1095', '6fca2d88-884e-4380-8d11-f5e24f37ca66', '4', '4', '1049', NULL, '2026-03-25 01:17:13', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '20.00', '0.00', '0.00', 'order', NULL, '20.00', '20.00', '2026-03-25 00:10:21', '2026-03-25 01:17:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1096', '3261eef5-806b-4429-ad1d-ebfddaf84236', '4', '4', '1050', NULL, '2026-03-25 00:39:09', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '63.50', '0.00', '0.00', 'order', NULL, '63.50', '63.50', '2026-03-25 00:14:29', '2026-03-25 00:41:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1097', '66b54256-8315-49f1-b66f-afcc5c637343', '4', '4', '1051', NULL, '2026-03-25 00:30:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '11.00', '0.00', '0.00', 'order', NULL, '11.00', '11.00', '2026-03-25 00:16:00', '2026-03-25 00:30:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1098', '5b3e4a8a-ed05-4bf3-95a2-e798252740a0', '4', '4', '1052', NULL, '2026-03-25 00:20:33', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-25 00:20:33', '2026-03-25 00:20:40', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1099', '8f452aa4-081c-41d0-a845-c9e2fca2079e', '4', '4', '1053', NULL, '2026-03-25 00:23:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-25 00:23:55', '2026-03-25 00:24:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1100', '03ee4d36-ef69-4b84-b785-fa6dcdb63f8a', '4', '4', '1054', NULL, '2026-03-25 01:21:45', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-25 00:52:00', '2026-03-25 01:23:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1101', '44346c20-6e30-43b8-b6f4-aedd6902c897', '4', '4', '1055', NULL, '2026-03-25 00:56:59', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '21.00', '0.00', '0.00', 'order', NULL, '21.00', '21.00', '2026-03-25 00:54:26', '2026-03-25 00:57:05', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1102', 'e6bfa155-0a9a-4071-ac81-cbe40d3fdce6', '4', '4', '1056', NULL, '2026-03-25 00:55:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-25 00:55:01', '2026-03-25 00:55:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1103', 'f1cad2bc-dd77-4a53-9937-65f97c52428b', '4', '4', '1057', NULL, '2026-03-25 01:04:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-25 01:04:12', '2026-03-25 01:04:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1104', 'c0c55069-c3c8-48d1-84d3-e9a439b0fecf', '4', '4', '1058', NULL, '2026-03-25 01:11:10', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-25 01:11:10', '2026-03-25 01:11:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1105', 'd6f6c52e-a6b0-42df-923d-177cbdf12257', '4', '4', '1059', NULL, '2026-03-25 01:11:51', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-25 01:11:51', '2026-03-25 01:11:56', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1106', '894e30df-6bda-470b-80b2-73efabb3a615', '4', '4', '1060', NULL, '2026-03-25 01:29:49', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-25 01:29:49', '2026-03-25 01:29:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1107', '361c1e9e-7f01-4e37-b2a9-4fac9d6efabb', '4', '4', '1061', NULL, '2026-03-25 01:34:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-25 01:34:55', '2026-03-25 01:34:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1108', 'cc6550f1-4a02-4b64-a757-c80d24efaede', '4', '4', '1062', NULL, '2026-03-25 01:42:43', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-25 01:42:43', '2026-03-25 01:42:48', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1109', 'd9acfe9b-16bf-4b2d-b1eb-e07e17d324e7', '4', '4', '1063', NULL, '2026-03-25 01:45:55', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.00', '0.00', '0.00', 'order', NULL, '1.00', '1.00', '2026-03-25 01:45:55', '2026-03-25 01:46:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1110', 'efb5aa3e-98d9-4540-be28-bb909c71a1c7', '4', '4', '1064', NULL, '2026-03-25 01:55:35', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-25 01:55:35', '2026-03-25 01:55:44', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1111', '183f0064-39b3-40a7-8b6e-e9d041228059', '4', '4', '1065', NULL, '2026-03-25 02:20:48', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '8.50', '0.00', '0.00', 'order', NULL, '8.50', '8.50', '2026-03-25 01:57:58', '2026-03-25 02:20:54', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1112', '4a7f015b-96f5-478b-8189-bd9c272d8809', '4', '4', '1066', NULL, '2026-03-25 02:22:26', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-25 02:22:26', '2026-03-25 02:22:31', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1113', '9116934f-c6e5-4aaa-b8dd-6061374c5c67', '4', '4', '1067', NULL, '2026-03-25 19:37:01', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '36.50', '0.00', '0.00', 'order', NULL, '36.50', '36.50', '2026-03-25 18:34:47', '2026-03-25 19:40:07', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1114', '0016746f-eca1-4ba0-bab3-d874b7b4edf9', '4', '4', '1068', NULL, '2026-03-25 21:04:46', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-03-25 18:52:51', '2026-03-25 21:05:17', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1115', 'f2a1f829-a5f8-4151-bfbc-e0008e626ccd', '4', '4', '1069', NULL, '2026-03-25 19:58:53', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-25 19:58:53', '2026-03-25 19:58:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1116', '08c72a04-2af8-4a21-bdd3-86b4afc36139', '4', '4', '1070', NULL, '2026-03-25 20:37:42', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-25 20:37:42', '2026-03-25 20:38:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1117', '811c0fb3-85ef-4d41-8535-d677e4c553ad', '4', '4', '1071', NULL, '2026-03-25 21:35:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-25 21:35:06', '2026-03-25 21:35:10', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1118', '4d0f6a1e-cb9c-4e4e-80db-96b6fca13881', '4', '4', '1072', NULL, '2026-03-25 23:45:53', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-25 22:27:46', '2026-03-25 23:45:58', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1119', 'ca6f1c86-acf1-48a1-a093-833cbdf08b46', '4', '4', '1073', NULL, '2026-03-25 22:28:33', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-25 22:28:33', '2026-03-25 22:29:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1120', 'ea654fe9-0000-41c5-961d-89f62e73354f', '4', '4', '1074', NULL, '2026-03-26 00:43:30', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-25 23:09:52', '2026-03-26 00:43:35', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1121', '9348dc7a-0554-48fa-a66c-ef29b502e38e', '4', '4', '1075', NULL, '2026-03-25 23:31:51', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-25 23:31:51', '2026-03-25 23:31:57', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1122', 'd280d958-c9a6-4282-8486-63a76ee2f0dd', '4', '4', '1076', NULL, '2026-03-25 23:44:14', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-25 23:44:14', '2026-03-25 23:44:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1123', '9286a38c-e63d-48ab-ae32-61b48a3315e6', '4', '4', '1077', NULL, '2026-03-26 21:45:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '26.00', '0.00', '0.00', 'order', NULL, '26.00', '26.00', '2026-03-26 20:22:04', '2026-03-26 21:45:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1124', 'dc7b22d6-183d-49ec-9d81-69805e6c1ab8', '4', '4', '1078', NULL, '2026-03-26 22:03:58', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-26 21:10:22', '2026-03-26 22:04:06', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1125', 'e712932d-d06b-4a75-b2e3-f6ac1c99e494', '4', '4', '1079', NULL, '2026-03-26 23:01:18', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-26 21:25:12', '2026-03-26 23:01:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1126', '6d6f5551-53b1-4b1e-b0c8-ff29c7ffab93', '4', '4', '1080', NULL, '2026-03-26 21:27:08', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-26 21:27:08', '2026-03-26 21:27:14', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1127', '08e070b6-a5d6-48bf-bab2-23538b3d14fb', '4', '4', '1081', NULL, '2026-03-26 21:27:40', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-26 21:27:40', '2026-03-26 21:33:18', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'served', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1128', '8df4061d-9a9e-4d80-b18d-63fc273cae3f', '4', '4', '1082', NULL, '2026-03-26 21:28:09', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-26 21:28:09', '2026-03-26 21:28:13', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1129', 'd1892235-bed0-4355-85b8-088f5e552080', '4', '4', '1083', NULL, '2026-03-26 23:55:57', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '3.50', '0.00', '0.00', 'order', NULL, '3.50', '3.50', '2026-03-26 23:01:55', '2026-03-26 23:56:02', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1130', 'b4853f24-5b3a-4f93-bbab-613d31dd19e6', '4', '4', '1084', NULL, '2026-03-27 00:49:16', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-26 23:02:15', '2026-03-27 00:49:21', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1131', '1547ff32-f65d-40ee-831c-b30976759e22', '4', '4', '1085', NULL, '2026-03-26 23:43:06', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-26 23:18:36', '2026-03-26 23:44:34', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1132', '8773e35c-68f0-4c9a-8c4c-ced4e0769d64', '4', '4', '1086', NULL, '2026-03-26 23:32:05', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-26 23:32:05', '2026-03-26 23:32:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1133', '773f8cf9-20f4-481b-8558-26111ffabae8', '4', '4', '1087', NULL, '2026-03-27 00:09:26', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.50', '0.00', '0.00', 'order', NULL, '2.50', '2.50', '2026-03-27 00:08:49', '2026-03-27 00:09:33', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1134', '49b046c5-b9a7-4607-820b-b6bb290f7929', '4', '4', '1088', NULL, '2026-03-27 00:17:19', NULL, NULL, '1', '12', NULL, NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-27 00:13:30', '2026-03-27 00:17:24', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1135', '81be7304-5c75-4989-b482-ca8b1b0dc56a', '4', '4', '1089', NULL, '2026-03-27 00:18:56', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '2.00', '0.00', '0.00', 'order', NULL, '2.00', '2.00', '2026-03-27 00:18:56', '2026-03-27 00:19:01', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1136', '69adf9ec-ae32-4471-81e8-314df82f1e76', '4', '4', '1090', NULL, '2026-03-27 01:01:21', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '10.50', '0.00', '0.00', 'order', NULL, '10.50', '10.50', '2026-03-27 00:23:46', '2026-03-27 01:01:27', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1137', 'fac1a9b9-06e7-4d76-98a7-e16198ae7440', '4', '4', '1091', NULL, '2026-03-27 01:03:12', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-27 00:39:53', '2026-03-27 01:03:23', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1138', 'aa3195b9-a5a1-451b-92bb-173ce13cf90a', '4', '4', '1092', NULL, '2026-03-27 01:04:45', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-27 01:04:45', '2026-03-27 01:04:51', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1139', '13f6dcdb-41a3-4c6b-81ad-62694176a5d3', '4', '4', '1093', NULL, '2026-03-27 01:08:24', NULL, NULL, '1', '12', '12', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-27 01:08:24', '2026-03-27 01:08:29', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1140', '0cca9034-523f-4bca-be94-6a3da3a296e4', '4', '4', '1094', NULL, '2026-03-27 23:37:43', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '21.50', '0.00', '0.00', 'order', NULL, '21.50', '21.50', '2026-03-27 20:36:38', '2026-03-27 23:37:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1141', '85565c4c-9297-4637-9a2c-cc6c975db7b7', '4', '4', '1095', NULL, '2026-03-27 21:59:33', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '29.00', '0.00', '0.00', 'order', NULL, '29.00', '29.00', '2026-03-27 20:58:21', '2026-03-27 21:59:37', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1142', '655029c5-49b3-443a-8f66-b5a46a3756a1', '4', '4', '1096', NULL, '2026-03-27 21:04:24', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '9.50', '0.00', '0.00', 'order', NULL, '9.50', '9.50', '2026-03-27 21:04:24', '2026-03-27 21:04:32', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1143', '1d64f455-a343-4d7c-9176-eb5c4b5dc392', '4', '4', '1097', NULL, '2026-03-27 23:36:48', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '55.00', '0.00', '0.00', 'order', NULL, '55.00', '55.00', '2026-03-27 21:50:12', '2026-03-27 23:36:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1144', '02d1382c-4862-4dc2-98a1-654e7f3c37e9', '4', '4', '1098', NULL, '2026-03-27 23:38:47', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '15.50', '0.00', '0.00', 'order', NULL, '15.50', '15.50', '2026-03-27 22:00:26', '2026-03-27 23:38:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1145', '9283af43-3adf-4e47-a973-1b15b4723f3f', '4', '4', '1099', NULL, '2026-03-27 23:41:04', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '16.00', '0.00', '0.00', 'order', NULL, '16.00', '16.00', '2026-03-27 22:03:35', '2026-03-27 23:41:12', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1146', '48c8a795-2d6f-4566-ac97-1f5093615b84', '4', '4', '1100', NULL, '2026-03-28 00:19:33', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '19.50', '0.00', '0.00', 'order', NULL, '19.50', '19.50', '2026-03-27 22:36:31', '2026-03-28 00:19:43', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1147', 'f9e9dcf3-eaec-4e96-a5f5-02142a947de7', '4', '4', '1101', NULL, '2026-03-27 23:55:42', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-27 23:55:42', '2026-03-27 23:55:49', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1148', '8f97eb42-4ac3-4176-b7d0-cc41cfc3adb3', '4', '4', '1102', NULL, '2026-03-28 00:11:42', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '12.00', '0.00', '0.00', 'order', NULL, '12.00', '12.00', '2026-03-28 00:11:42', '2026-03-28 00:11:46', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1149', '1a983b2a-4cc0-4e41-b2eb-2128d8a448d3', '4', '4', '1103', NULL, '2026-03-28 00:13:32', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '18.00', '0.00', '0.00', 'order', NULL, '18.00', '18.00', '2026-03-28 00:13:32', '2026-03-28 00:13:36', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1150', 'd4fb4b73-c3dd-4ff0-8909-e6b984b0c839', '4', '4', '1104', NULL, '2026-03-28 00:53:41', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '6.00', '0.00', '0.00', 'order', NULL, '6.00', '6.00', '2026-03-28 00:27:53', '2026-03-28 00:53:53', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1151', '3e65021e-b06a-4159-b005-74e7e41814ed', '4', '4', '1105', NULL, '2026-03-28 01:01:19', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-28 01:01:19', '2026-03-28 01:01:26', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1152', '5422b47a-5022-409d-b5ff-e49a2533cd0f', '4', '4', '1106', NULL, '2026-03-28 01:28:16', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-28 01:28:16', '2026-03-28 01:28:20', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1153', '4b5213a3-e46c-409b-9877-07b6ecc18aaf', '4', '4', '1107', NULL, '2026-03-28 01:30:54', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '8.00', '0.00', '0.00', 'order', NULL, '8.00', '8.00', '2026-03-28 01:30:54', '2026-03-28 01:30:59', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1154', '08cae613-55f9-4938-a4f2-b500355ab80d', '4', '4', '1108', NULL, '2026-03-28 01:34:47', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '4.00', '0.00', '0.00', 'order', NULL, '4.00', '4.00', '2026-03-28 01:34:47', '2026-03-28 01:34:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1155', '7ec9b2a4-0af1-409a-a0c2-7b859c7f122f', '4', '4', '1109', NULL, '2026-03-28 01:39:48', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '1.50', '0.00', '0.00', 'order', NULL, '1.50', '1.50', '2026-03-28 01:39:48', '2026-03-28 01:39:52', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1156', '23350377-84de-4461-ad25-c7217f45986a', '4', '4', '1110', NULL, '2026-03-28 01:49:12', NULL, NULL, '1', '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-28 01:49:12', '2026-03-28 01:49:16', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('1157', '35b6cbd9-1c5e-4168-a8df-be7749bc06fb', '4', '4', '1111', NULL, '2026-03-28 02:03:26', NULL, NULL, NULL, '5', '5', NULL, 'paid', 'pos', '3.00', '0.00', '0.00', 'order', NULL, '3.00', '3.00', '2026-03-28 02:03:26', '2026-03-28 02:03:30', '10', NULL, 'Dine In', 'dine_in', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'confirmed', '0.00', NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `otps`
DROP TABLE IF EXISTS `otps`;
CREATE TABLE `otps` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `identifier` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'login',
  `expires_at` timestamp NOT NULL,
  `used` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `otps_identifier_type_index` (`identifier`,`type`),
  KEY `otps_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `package_modules`
DROP TABLE IF EXISTS `package_modules`;
CREATE TABLE `package_modules` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `package_id` bigint unsigned DEFAULT NULL,
  `module_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `package_modules_package_id_foreign` (`package_id`),
  KEY `package_modules_module_id_foreign` (`module_id`),
  CONSTRAINT `package_modules_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `package_modules_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `package_modules`
INSERT INTO `package_modules` VALUES
('1', '1', '1', NULL, NULL),
('2', '1', '2', NULL, NULL),
('3', '1', '3', NULL, NULL),
('13', '1', '13', NULL, NULL),
('17', '2', '1', NULL, NULL),
('18', '2', '2', NULL, NULL),
('19', '2', '3', NULL, NULL),
('20', '2', '4', NULL, NULL),
('21', '2', '5', NULL, NULL),
('24', '2', '8', NULL, NULL),
('25', '2', '9', NULL, NULL),
('26', '2', '10', NULL, NULL),
('27', '2', '11', NULL, NULL),
('28', '2', '12', NULL, NULL),
('29', '2', '13', NULL, NULL),
('32', '2', '16', NULL, NULL),
('33', '3', '1', NULL, NULL),
('34', '3', '2', NULL, NULL),
('35', '3', '3', NULL, NULL),
('36', '3', '4', NULL, NULL),
('37', '3', '5', NULL, NULL),
('38', '3', '6', NULL, NULL),
('39', '3', '7', NULL, NULL),
('40', '3', '8', NULL, NULL),
('41', '3', '9', NULL, NULL),
('42', '3', '10', NULL, NULL),
('43', '3', '11', NULL, NULL),
('44', '3', '12', NULL, NULL),
('45', '3', '13', NULL, NULL),
('46', '3', '14', NULL, NULL),
('47', '3', '15', NULL, NULL),
('48', '3', '16', NULL, NULL),
('49', '4', '1', NULL, NULL),
('50', '4', '2', NULL, NULL),
('51', '4', '3', NULL, NULL),
('52', '4', '4', NULL, NULL),
('53', '4', '5', NULL, NULL),
('54', '4', '6', NULL, NULL),
('55', '4', '7', NULL, NULL),
('56', '4', '8', NULL, NULL),
('57', '4', '9', NULL, NULL),
('58', '4', '10', NULL, NULL),
('59', '4', '11', NULL, NULL),
('60', '4', '12', NULL, NULL),
('61', '4', '13', NULL, NULL),
('62', '4', '14', NULL, NULL),
('63', '4', '15', NULL, NULL),
('64', '4', '16', NULL, NULL),
('65', '5', '1', NULL, NULL),
('66', '5', '2', NULL, NULL),
('67', '5', '3', NULL, NULL),
('68', '5', '4', NULL, NULL),
('69', '5', '5', NULL, NULL),
('70', '5', '6', NULL, NULL),
('71', '5', '7', NULL, NULL),
('72', '5', '8', NULL, NULL),
('73', '5', '9', NULL, NULL),
('74', '5', '10', NULL, NULL),
('75', '5', '11', NULL, NULL),
('76', '5', '12', NULL, NULL),
('77', '5', '13', NULL, NULL),
('78', '5', '14', NULL, NULL),
('79', '5', '15', NULL, NULL),
('80', '5', '16', NULL, NULL),
('83', '3', '20', NULL, NULL),
('84', '4', '20', NULL, NULL),
('85', '5', '20', NULL, NULL),
('86', '5', '17', NULL, NULL),
('87', '5', '18', NULL, NULL),
('89', '5', '21', NULL, NULL),
('90', '5', '22', NULL, NULL),
('91', '6', '1', NULL, NULL),
('92', '6', '2', NULL, NULL),
('93', '6', '3', NULL, NULL),
('94', '6', '4', NULL, NULL),
('95', '6', '5', NULL, NULL),
('96', '6', '6', NULL, NULL),
('97', '6', '7', NULL, NULL),
('98', '6', '8', NULL, NULL),
('99', '6', '9', NULL, NULL),
('100', '6', '10', NULL, NULL),
('101', '6', '11', NULL, NULL),
('102', '6', '12', NULL, NULL),
('103', '6', '13', NULL, NULL),
('104', '6', '14', NULL, NULL),
('105', '6', '15', NULL, NULL),
('106', '6', '16', NULL, NULL),
('107', '6', '17', NULL, NULL),
('108', '6', '20', NULL, NULL),
('109', '6', '22', NULL, NULL),
('110', '7', '1', NULL, NULL),
('111', '7', '2', NULL, NULL),
('112', '7', '3', NULL, NULL),
('113', '7', '4', NULL, NULL),
('114', '7', '5', NULL, NULL),
('115', '7', '6', NULL, NULL),
('116', '7', '7', NULL, NULL),
('117', '7', '8', NULL, NULL),
('118', '7', '9', NULL, NULL),
('119', '7', '10', NULL, NULL),
('120', '7', '11', NULL, NULL),
('121', '7', '12', NULL, NULL),
('122', '7', '13', NULL, NULL),
('123', '7', '14', NULL, NULL),
('124', '7', '15', NULL, NULL),
('125', '7', '16', NULL, NULL),
('126', '7', '17', NULL, NULL),
('127', '7', '18', NULL, NULL),
('128', '7', '20', NULL, NULL),
('129', '7', '21', NULL, NULL),
('130', '7', '22', NULL, NULL),
('131', '1', '8', NULL, NULL),
('132', '1', '7', NULL, NULL);


-- Table structure for table `packages`
DROP TABLE IF EXISTS `packages`;
CREATE TABLE `packages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `package_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` decimal(16,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `currency_id` bigint unsigned DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `annual_price` decimal(16,2) DEFAULT NULL,
  `monthly_price` decimal(16,2) DEFAULT NULL,
  `monthly_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '1',
  `annual_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '1',
  `stripe_annual_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_monthly_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_annual_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_monthly_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_annual_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_monthly_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_annual_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_monthly_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `xendit_annual_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `xendit_monthly_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paddle_annual_price_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paddle_monthly_price_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paddle_lifetime_price_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_lifetime_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_lifetime_plan_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_cycle` tinyint unsigned DEFAULT NULL,
  `sort_order` int unsigned DEFAULT NULL,
  `is_private` tinyint(1) NOT NULL DEFAULT '0',
  `is_free` tinyint(1) NOT NULL DEFAULT '0',
  `is_recommended` tinyint(1) NOT NULL DEFAULT '0',
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'standard',
  `trial_status` tinyint(1) DEFAULT NULL,
  `trial_days` int DEFAULT NULL,
  `trial_notification_before_days` int DEFAULT NULL,
  `trial_message` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `additional_features` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `branch_limit` int DEFAULT '-1',
  `multipos_limit` int DEFAULT '-1',
  `menu_items_limit` int NOT NULL DEFAULT '-1',
  `order_limit` int NOT NULL DEFAULT '-1',
  `staff_limit` int NOT NULL DEFAULT '-1',
  `sms_count` int NOT NULL DEFAULT '0',
  `carry_forward_sms` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `packages_currency_id_foreign` (`currency_id`),
  CONSTRAINT `packages_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `global_currencies` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `packages`
INSERT INTO `packages` VALUES
('1', 'Default', '0.00', '2025-11-27 00:00:50', '2026-01-19 07:06:51', '1', 'Its a default package and cannot be deleted', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '12', '1', '0', '1', '0', 'default', NULL, NULL, NULL, NULL, '[]', '-1', '-1', '-1', '-1', '-1', '-1', '0'),
('2', 'Basic Package', '0.00', '2025-11-27 00:00:50', '2025-12-03 10:58:43', '4', 'This is a subscription package', '100.00', '10.00', '1', '1', 'price_1SXtrODgHRHlOzDszApO4Ygt', 'price_1SXtntDgHRHlOzDsxLoFWBMf', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '10', '2', '0', '0', '0', 'standard', NULL, NULL, NULL, NULL, '[]', '-1', '-1', '50', '-1', '2', '-1', '0'),
('3', 'Life Time', '199.00', '2025-11-27 00:00:50', '2025-11-27 01:12:00', '1', 'This is a lifetime access package', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '3', '1', '0', '1', 'lifetime', NULL, NULL, NULL, NULL, '[\"Change Branch\",\"Export Report\",\"Table Reservation\",\"Payment Gateway Integration\",\"Theme Setting\",\"Customer Display\"]', '-1', '-1', '-1', '-1', '-1', '0', '0'),
('4', 'Private Package', '0.00', '2025-11-27 00:00:50', '2025-11-27 00:00:50', '1', 'This is a private package', '50.00', '5.00', '1', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '12', '4', '1', '0', '0', 'standard', NULL, NULL, NULL, NULL, NULL, '-1', '-1', '-1', '-1', '-1', '0', '0'),
('5', 'Trial Package', '0.00', '2025-11-27 00:00:50', '2025-12-03 11:01:53', '1', 'This is a trial package', NULL, NULL, '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, '0', '1', '0', 'trial', '1', '15', '5', '15 Days Free Trial', '[\"Change Branch\",\"Export Report\",\"Table Reservation\",\"Payment Gateway Integration\",\"Theme Setting\",\"Customer Display\"]', '-1', '-1', '-1', '-1', '-1', '-1', '0'),
('6', 'Standard Package', '0.00', '2025-12-01 08:48:14', '2025-12-03 11:12:01', '4', 'Standard Subscription Package', '300.00', '30.00', '1', '1', 'prod_TWVnc8Rr4IrTGN', 'prod_TWVmqpmXRVJG46', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '6', '0', '0', '1', 'standard', NULL, NULL, NULL, NULL, '[\"Theme Setting\",\"Customer Display\"]', NULL, '1', '300', '-1', '10', '-1', '0'),
('7', 'Pro Package', '0.00', '2025-12-01 08:50:47', '2025-12-03 11:10:22', '4', 'Pro Subscription Package', '500.00', '50.00', '1', '1', 'prod_TWVpH6kdFpbPPL', 'prod_TWVpYBGtHegZkU', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '7', '0', '0', '0', 'standard', NULL, NULL, NULL, NULL, '[\"Change Branch\",\"Theme Setting\",\"Export Report\",\"Customer Display\",\"Table Reservation\",\"Payment Gateway Integration\"]', '-1', '-1', '-1', '-1', '-1', '-1', '0');


-- Table structure for table `password_reset_tokens`
DROP TABLE IF EXISTS `password_reset_tokens`;
CREATE TABLE `password_reset_tokens` (
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `password_reset_tokens`
INSERT INTO `password_reset_tokens` VALUES
('dimitark65@gmail.com', '$2y$12$AUr5ngNKI86iSkDA035vQODfshgZip9B4/.H97oFc5aP12rRpz8bS', '2026-01-14 21:44:29');


-- Table structure for table `payfast_payments`
DROP TABLE IF EXISTS `payfast_payments`;
CREATE TABLE `payfast_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `payfast_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payfast_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `payfast_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `payment_gateway_credentials`
DROP TABLE IF EXISTS `payment_gateway_credentials`;
CREATE TABLE `payment_gateway_credentials` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `razorpay_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_status` tinyint(1) NOT NULL DEFAULT '0',
  `stripe_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_status` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `is_dine_in_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `is_delivery_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `is_pickup_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `is_cash_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `is_qr_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `is_offline_payment_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `offline_payment_detail` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `qr_code_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_status` tinyint(1) NOT NULL DEFAULT '0',
  `flutterwave_mode` enum('test','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'test',
  `test_flutterwave_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_flutterwave_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_flutterwave_hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_flutterwave_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_flutterwave_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_flutterwave_hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_webhook_secret_hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paypal_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paypal_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paypal_status` tinyint(1) NOT NULL DEFAULT '0',
  `paypal_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `sandbox_paypal_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sandbox_paypal_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_merchant_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_merchant_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_passphrase` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `payfast_status` tinyint(1) NOT NULL DEFAULT '0',
  `test_payfast_merchant_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_payfast_merchant_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_payfast_passphrase` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_merchant_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_status` tinyint(1) NOT NULL DEFAULT '0',
  `paystack_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `test_paystack_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paystack_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paystack_merchant_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_payment_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'https://api.paystack.co',
  `xendit_status` tinyint(1) NOT NULL DEFAULT '0',
  `xendit_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `test_xendit_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_xendit_secret_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_secret_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_xendit_webhook_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_webhook_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `epay_status` tinyint(1) NOT NULL DEFAULT '0',
  `epay_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `epay_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `epay_client_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `epay_terminal_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_epay_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_epay_client_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_epay_terminal_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_gateway_credentials_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `payment_gateway_credentials_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `payment_gateway_credentials`
INSERT INTO `payment_gateway_credentials` VALUES
('1', '1', NULL, NULL, '0', NULL, NULL, '0', '2025-11-27 00:00:51', '2025-11-27 00:00:51', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('2', '1', NULL, NULL, '0', NULL, NULL, '0', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('3', '2', NULL, NULL, '0', NULL, NULL, '0', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('4', '3', NULL, NULL, '0', NULL, NULL, '0', '2025-11-27 10:17:19', '2025-11-27 10:17:19', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL),
('5', '4', NULL, NULL, '0', NULL, NULL, '0', '2025-12-01 11:34:12', '2025-12-01 11:34:12', '0', '0', '0', '0', '0', '0', NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `payments`
DROP TABLE IF EXISTS `payments`;
CREATE TABLE `payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `payment_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'cash',
  `amount` decimal(16,2) NOT NULL,
  `balance` decimal(16,2) DEFAULT '0.00',
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payments_order_id_foreign` (`order_id`),
  KEY `payments_branch_id_foreign` (`branch_id`),
  CONSTRAINT `payments_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1107 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `payments`
INSERT INTO `payments` VALUES
('1', '4', '3', 'cash', '3.00', '2.00', NULL, '2025-11-27 16:09:31', '2025-11-27 16:09:31'),
('2', '4', '4', 'cash', '3.00', '0.00', NULL, '2025-11-27 16:30:20', '2025-11-27 16:30:20'),
('3', '4', '6', 'cash', '3.00', '0.00', NULL, '2025-11-27 18:51:39', '2025-11-27 18:51:39'),
('4', '3', '2', 'cash', '10.00', '0.00', NULL, '2025-11-27 20:07:07', '2025-11-27 20:07:07'),
('5', '4', '11', 'card', '5.00', '0.00', NULL, '2025-11-28 20:38:03', '2025-11-28 20:38:03'),
('6', '4', '12', 'cash', '32.00', '0.00', NULL, '2025-11-28 23:06:53', '2025-11-28 23:06:53'),
('7', '4', '13', 'cash', '18.00', '0.00', NULL, '2025-11-29 00:25:47', '2025-11-29 00:25:47'),
('8', '4', '14', 'card', '97.00', '0.00', NULL, '2025-11-29 04:12:41', '2025-11-29 04:12:41'),
('9', '4', '15', 'cash', '11.00', '0.00', NULL, '2025-11-29 22:32:32', '2025-11-29 22:32:32'),
('10', '4', '16', 'cash', '15.00', '0.00', NULL, '2025-11-29 22:37:39', '2025-11-29 22:37:39'),
('11', '4', '17', 'cash', '16.00', '0.00', NULL, '2025-11-29 22:40:34', '2025-11-29 22:40:34'),
('12', '4', '18', 'cash', '3.00', '0.00', NULL, '2025-11-29 22:59:26', '2025-11-29 22:59:26'),
('13', '4', '19', 'cash', '39.00', '0.00', NULL, '2025-11-29 23:08:40', '2025-11-29 23:08:40'),
('14', '4', '20', 'cash', '35.00', '0.00', NULL, '2025-11-30 00:18:23', '2025-11-30 00:18:23'),
('15', '4', '21', 'card', '60.00', '0.00', NULL, '2025-11-30 00:31:21', '2025-11-30 00:31:21'),
('16', '4', '22', 'cash', '8.00', '0.00', NULL, '2025-11-30 00:47:07', '2025-11-30 00:47:07'),
('17', '4', '23', 'cash', '5.00', '0.00', NULL, '2025-11-30 00:48:03', '2025-11-30 00:48:03'),
('18', '4', '24', 'card', '35.00', '0.00', NULL, '2025-11-30 01:17:00', '2025-11-30 01:17:00'),
('19', '4', '25', 'card', '48.00', '0.00', NULL, '2025-11-30 01:19:12', '2025-11-30 01:19:12'),
('21', '4', '28', 'cash', '12.00', '0.00', NULL, '2025-11-30 21:45:00', '2025-11-30 21:45:00'),
('22', '4', '29', 'cash', '12.00', '0.00', NULL, '2025-11-30 22:29:31', '2025-11-30 22:29:31'),
('23', '4', '30', 'cash', '4.00', '0.00', NULL, '2025-11-30 22:36:08', '2025-11-30 22:36:08'),
('24', '4', '31', 'cash', '6.00', '0.00', NULL, '2025-11-30 22:51:56', '2025-11-30 22:51:56'),
('25', '4', '32', 'card', '21.00', '0.00', NULL, '2025-12-01 00:48:44', '2025-12-01 00:48:44'),
('26', '4', '33', 'cash', '18.00', '0.00', NULL, '2025-12-01 00:49:15', '2025-12-01 00:49:15'),
('27', '4', '34', 'cash', '68.00', '0.00', NULL, '2025-12-01 00:53:07', '2025-12-01 00:53:07'),
('28', '4', '35', 'cash', '34.00', '0.00', NULL, '2025-12-01 02:06:42', '2025-12-01 02:06:42'),
('29', '4', '10', 'cash', '1120.00', '0.00', NULL, '2025-12-02 18:21:47', '2025-12-02 18:21:47'),
('30', '4', '7', 'cash', '3.00', '0.00', NULL, '2025-12-02 18:22:16', '2025-12-02 18:22:16'),
('31', '4', '5', 'cash', '0.00', '0.00', NULL, '2025-12-02 18:23:32', '2025-12-02 18:23:32'),
('32', '4', '36', 'cash', '8.00', '0.00', NULL, '2025-12-02 18:24:57', '2025-12-02 18:24:57'),
('33', '4', '37', 'cash', '41.00', '0.00', NULL, '2025-12-02 20:52:50', '2025-12-02 20:52:50'),
('34', '3', '39', 'cash', '10.00', '0.00', NULL, '2025-12-03 09:19:11', '2025-12-03 09:19:11'),
('35', '3', '8', 'cash', '10.00', '0.00', NULL, '2025-12-03 09:22:03', '2025-12-03 09:22:03'),
('36', '3', '40', 'cash', '20.00', '0.00', NULL, '2025-12-03 09:33:41', '2025-12-03 09:33:41'),
('37', '4', '41', 'cash', '11.00', '0.00', NULL, '2025-12-05 20:56:05', '2025-12-05 20:56:05'),
('38', '4', '42', 'cash', '79.00', '0.00', NULL, '2025-12-05 21:48:25', '2025-12-05 21:48:25'),
('39', '4', '43', 'card', '15.00', '0.00', NULL, '2025-12-05 22:16:26', '2025-12-05 22:16:26'),
('40', '4', '44', 'card', '15.00', '0.00', NULL, '2025-12-05 22:29:00', '2025-12-05 22:29:00'),
('41', '4', '45', 'cash', '7.00', '0.00', NULL, '2025-12-05 22:31:48', '2025-12-05 22:31:48'),
('42', '4', '46', 'cash', '30.00', '0.00', NULL, '2025-12-05 22:35:00', '2025-12-05 22:35:00'),
('43', '4', '47', 'cash', '6.00', '0.00', NULL, '2025-12-05 22:36:03', '2025-12-05 22:36:03'),
('44', '4', '48', 'cash', '8.00', '0.00', NULL, '2025-12-05 22:46:11', '2025-12-05 22:46:11'),
('45', '4', '49', 'card', '15.00', '0.00', NULL, '2025-12-05 22:54:21', '2025-12-05 22:54:26'),
('46', '4', '50', 'cash', '12.00', '0.00', NULL, '2025-12-05 22:55:17', '2025-12-05 22:55:17'),
('47', '4', '51', 'cash', '17.00', '0.00', NULL, '2025-12-05 22:59:39', '2025-12-05 22:59:39'),
('48', '4', '52', 'cash', '7.00', '0.00', NULL, '2025-12-05 23:11:14', '2025-12-05 23:11:14'),
('49', '4', '53', 'cash', '10.00', '0.00', NULL, '2025-12-05 23:18:21', '2025-12-05 23:18:21'),
('50', '4', '54', 'cash', '3.00', '0.00', NULL, '2025-12-05 23:22:21', '2025-12-05 23:22:21'),
('51', '4', '55', 'cash', '64.00', '0.00', NULL, '2025-12-05 23:27:11', '2025-12-05 23:27:11'),
('52', '4', '56', 'cash', '41.00', '0.00', NULL, '2025-12-05 23:50:37', '2025-12-05 23:50:37'),
('53', '4', '57', 'cash', '12.00', '0.00', NULL, '2025-12-06 01:23:18', '2025-12-06 01:23:18'),
('54', '4', '58', 'card', '30.00', '0.00', NULL, '2025-12-06 01:25:49', '2025-12-06 01:25:49'),
('55', '4', '59', 'card', '3.00', '0.00', NULL, '2025-12-06 18:24:10', '2025-12-06 18:24:10'),
('56', '4', '60', 'cash', '237.00', '0.00', NULL, '2025-12-06 20:24:40', '2025-12-06 20:24:40'),
('57', '4', '61', 'cash', '23.00', '0.00', NULL, '2025-12-06 20:27:31', '2025-12-06 20:27:31'),
('58', '4', '62', 'cash', '6.00', '0.00', NULL, '2025-12-06 20:54:10', '2025-12-06 20:54:10'),
('59', '4', '63', 'cash', '126.00', '0.00', NULL, '2025-12-06 21:15:32', '2025-12-06 21:15:32'),
('60', '4', '64', 'cash', '5.00', '0.00', NULL, '2025-12-06 21:18:21', '2025-12-06 21:18:21'),
('61', '4', '65', 'cash', '40.00', '0.00', NULL, '2025-12-06 21:35:44', '2025-12-06 21:35:44'),
('62', '4', '66', 'card', '36.00', '0.00', NULL, '2025-12-06 21:42:57', '2025-12-06 21:42:57'),
('63', '4', '67', 'cash', '7.00', '0.00', NULL, '2025-12-06 21:44:00', '2025-12-06 21:44:00'),
('64', '4', '68', 'card', '22.00', '0.00', NULL, '2025-12-06 22:00:03', '2025-12-06 22:00:03'),
('65', '4', '69', 'cash', '8.00', '0.00', NULL, '2025-12-06 22:05:25', '2025-12-06 22:05:25'),
('66', '4', '70', 'cash', '50.00', '0.00', NULL, '2025-12-06 22:12:45', '2025-12-06 22:12:45'),
('67', '4', '71', 'cash', '6.00', '0.00', NULL, '2025-12-06 22:15:26', '2025-12-06 22:15:26'),
('68', '4', '72', 'card', '8.00', '0.00', NULL, '2025-12-06 22:17:20', '2025-12-06 22:17:20'),
('69', '4', '73', 'cash', '40.00', '0.00', NULL, '2025-12-06 22:20:27', '2025-12-06 22:20:27'),
('70', '4', '74', 'card', '8.00', '0.00', NULL, '2025-12-06 22:35:49', '2025-12-06 22:35:49'),
('71', '4', '75', 'cash', '18.00', '0.00', NULL, '2025-12-06 22:44:30', '2025-12-06 22:44:30'),
('72', '4', '76', 'cash', '20.00', '0.00', NULL, '2025-12-06 23:12:50', '2025-12-06 23:12:50'),
('73', '4', '77', 'cash', '6.00', '0.00', NULL, '2025-12-06 23:15:20', '2025-12-06 23:15:20'),
('74', '4', '78', 'cash', '36.00', '0.00', NULL, '2025-12-06 23:41:22', '2025-12-06 23:41:22'),
('75', '4', '79', 'cash', '4.00', '0.00', NULL, '2025-12-06 23:46:18', '2025-12-06 23:46:18'),
('76', '4', '80', 'cash', '105.00', '0.00', NULL, '2025-12-07 00:18:57', '2025-12-07 00:18:57'),
('77', '4', '81', 'cash', '12.00', '0.00', NULL, '2025-12-07 01:38:14', '2025-12-07 01:38:14'),
('78', '4', '82', 'cash', '4.00', '0.00', NULL, '2025-12-07 03:13:37', '2025-12-07 03:13:37'),
('79', '4', '83', 'cash', '37.00', '0.00', NULL, '2025-12-07 19:33:12', '2025-12-07 19:33:12'),
('80', '4', '84', 'cash', '14.00', '0.00', NULL, '2025-12-07 22:32:17', '2025-12-07 22:32:17'),
('81', '4', '85', 'cash', '10.00', '0.00', NULL, '2025-12-07 22:32:36', '2025-12-07 22:32:36'),
('82', '4', '86', 'cash', '132.00', '0.00', NULL, '2025-12-08 19:26:31', '2025-12-08 19:26:31'),
('83', '4', '87', 'cash', '8.00', '0.00', NULL, '2025-12-08 19:43:28', '2025-12-08 19:43:28'),
('84', '4', '88', 'cash', '20.00', '0.00', NULL, '2025-12-08 19:55:47', '2025-12-08 19:55:47'),
('85', '4', '89', 'cash', '12.00', '0.00', NULL, '2025-12-08 20:10:27', '2025-12-08 20:10:27'),
('86', '4', '90', 'cash', '8.00', '0.00', NULL, '2025-12-08 20:23:11', '2025-12-08 20:23:11'),
('87', '4', '91', 'card', '171.00', '0.00', NULL, '2025-12-08 22:39:36', '2025-12-08 22:39:36'),
('88', '4', '92', 'cash', '4.00', '0.00', NULL, '2025-12-08 22:48:54', '2025-12-08 22:48:54'),
('89', '4', '93', 'cash', '43.00', '0.00', NULL, '2025-12-08 23:50:17', '2025-12-08 23:50:17'),
('90', '3', '94', 'cash', '40.00', '10.00', NULL, '2025-12-11 05:48:47', '2025-12-11 05:48:47'),
('91', '3', '95', 'cash', '18.00', '32.00', NULL, '2025-12-11 05:51:33', '2025-12-11 05:51:33'),
('92', '3', '26', 'card', '30.00', '20.00', NULL, '2025-12-11 05:55:18', '2025-12-11 05:55:24'),
('93', '4', '97', 'card', '3.30', '0.00', NULL, '2025-12-11 19:23:47', '2025-12-11 19:23:47'),
('94', '4', '98', 'cash', '5.00', '0.00', NULL, '2025-12-11 19:27:44', '2025-12-11 19:27:44'),
('95', '4', '96', 'cash', '3.00', '0.00', NULL, '2025-12-11 19:28:08', '2025-12-11 19:28:08'),
('96', '4', '100', 'cash', '13.00', '0.00', NULL, '2025-12-11 19:30:42', '2025-12-11 19:30:42'),
('97', '4', '102', 'cash', '115.00', '0.00', NULL, '2025-12-11 23:16:30', '2025-12-11 23:16:30'),
('98', '4', '103', 'cash', '12.00', '0.00', NULL, '2025-12-11 23:17:08', '2025-12-11 23:17:08'),
('99', '4', '104', 'cash', '12.00', '0.00', NULL, '2025-12-11 23:38:52', '2025-12-11 23:38:52'),
('100', '4', '105', 'cash', '16.00', '0.00', NULL, '2025-12-12 00:56:36', '2025-12-12 00:56:36'),
('101', '4', '106', 'card', '15.00', '0.00', NULL, '2025-12-12 21:31:14', '2025-12-12 21:31:14'),
('102', '4', '107', 'cash', '29.00', '0.00', NULL, '2025-12-12 21:35:41', '2025-12-12 21:35:41'),
('103', '4', '108', 'cash', '20.00', '0.00', NULL, '2025-12-12 22:33:37', '2025-12-12 22:33:37'),
('104', '4', '109', 'cash', '34.00', '0.00', NULL, '2025-12-13 00:04:04', '2025-12-13 00:04:04'),
('105', '4', '110', 'cash', '20.00', '0.00', NULL, '2025-12-13 00:54:41', '2025-12-13 00:54:41'),
('106', '4', '111', 'cash', '16.00', '0.00', NULL, '2025-12-13 01:25:05', '2025-12-13 01:25:05'),
('107', '4', '112', 'cash', '8.00', '0.00', NULL, '2025-12-13 01:27:46', '2025-12-13 01:27:46'),
('108', '4', '113', 'cash', '20.00', '0.00', NULL, '2025-12-13 01:36:58', '2025-12-13 01:36:58'),
('109', '4', '114', 'cash', '20.00', '0.00', NULL, '2025-12-13 01:41:36', '2025-12-13 01:41:36'),
('110', '4', '115', 'cash', '6.00', '0.00', NULL, '2025-12-13 01:47:16', '2025-12-13 01:47:16'),
('111', '4', '116', 'cash', '27.00', '0.00', NULL, '2025-12-13 02:11:46', '2025-12-13 02:11:46'),
('112', '4', '117', 'cash', '43.00', '0.00', NULL, '2025-12-13 02:55:55', '2025-12-13 02:55:55'),
('113', '4', '119', 'card', '144.00', '0.00', NULL, '2025-12-13 03:11:04', '2025-12-13 03:11:04'),
('114', '4', '120', 'cash', '8.00', '0.00', NULL, '2025-12-13 22:06:23', '2025-12-13 22:06:23'),
('115', '4', '121', 'cash', '15.00', '0.00', NULL, '2025-12-13 22:13:19', '2025-12-13 22:13:19'),
('116', '4', '122', 'cash', '19.00', '0.00', NULL, '2025-12-13 22:13:47', '2025-12-13 22:13:47'),
('117', '4', '123', 'cash', '10.00', '0.00', NULL, '2025-12-13 22:17:41', '2025-12-13 22:17:41'),
('118', '4', '124', 'cash', '202.00', '0.00', NULL, '2025-12-13 22:27:10', '2025-12-13 22:27:10'),
('119', '4', '125', 'card', '17.00', '0.00', NULL, '2025-12-13 22:50:24', '2025-12-13 22:50:24'),
('120', '4', '126', 'cash', '8.00', '0.00', NULL, '2025-12-13 22:50:43', '2025-12-13 22:50:43'),
('121', '4', '127', 'cash', '12.00', '0.00', NULL, '2025-12-13 23:06:05', '2025-12-13 23:06:05'),
('122', '4', '128', 'card', '13.00', '0.00', NULL, '2025-12-14 01:20:22', '2025-12-14 01:20:22'),
('123', '4', '129', 'cash', '7.00', '0.00', NULL, '2025-12-14 01:23:18', '2025-12-14 01:23:18'),
('124', '4', '130', 'card', '89.00', '0.00', NULL, '2025-12-14 01:28:09', '2025-12-14 01:28:09'),
('125', '4', '131', 'cash', '12.00', '0.00', NULL, '2025-12-14 02:31:55', '2025-12-14 02:31:55'),
('126', '4', '132', 'cash', '12.00', '0.00', NULL, '2025-12-14 03:20:14', '2025-12-14 03:20:14'),
('127', '4', '133', 'cash', '90.00', '0.00', NULL, '2025-12-14 03:22:20', '2025-12-14 03:22:20'),
('128', '4', '134', 'card', '108.00', '0.00', NULL, '2025-12-14 23:56:33', '2025-12-14 23:56:33'),
('129', '4', '135', 'cash', '173.00', '0.00', NULL, '2025-12-16 00:12:58', '2025-12-16 00:12:58'),
('130', '4', '136', 'cash', '70.00', '0.00', NULL, '2025-12-16 23:47:19', '2025-12-16 23:47:19'),
('131', '4', '137', 'cash', '64.00', '0.00', NULL, '2025-12-17 20:22:56', '2025-12-17 20:22:56'),
('132', '4', '138', 'cash', '30.00', '0.00', NULL, '2025-12-17 22:00:08', '2025-12-17 22:00:08'),
('133', '4', '139', 'cash', '39.00', '0.00', NULL, '2025-12-18 22:47:51', '2025-12-18 22:47:51'),
('134', '4', '140', 'cash', '284.00', '0.00', NULL, '2025-12-18 22:48:57', '2025-12-18 22:48:57'),
('135', '5', '141', 'card', '23.97', '0.00', NULL, '2025-12-19 18:32:04', '2025-12-19 18:32:04'),
('136', '4', '143', 'cash', '10.00', '0.00', NULL, '2025-12-19 22:55:13', '2025-12-19 22:55:13'),
('137', '4', '144', 'card', '33.00', '0.00', NULL, '2025-12-19 22:56:48', '2025-12-19 22:56:48'),
('138', '4', '145', 'card', '25.00', '0.00', NULL, '2025-12-20 00:37:50', '2025-12-20 00:37:50'),
('139', '4', '146', 'cash', '100.00', '0.00', NULL, '2025-12-20 01:32:08', '2025-12-20 01:32:08'),
('140', '4', '147', 'cash', '10.00', '0.00', NULL, '2025-12-20 20:53:25', '2025-12-20 20:53:25'),
('141', '4', '148', 'cash', '7.00', '0.00', NULL, '2025-12-20 21:02:59', '2025-12-20 21:02:59'),
('142', '4', '149', 'cash', '20.00', '0.00', NULL, '2025-12-20 21:33:45', '2025-12-20 21:33:45'),
('143', '4', '150', 'cash', '13.00', '0.00', NULL, '2025-12-20 21:45:58', '2025-12-20 21:45:58'),
('144', '4', '151', 'card', '21.00', '0.00', NULL, '2025-12-20 21:53:43', '2025-12-20 21:53:43'),
('145', '4', '152', 'cash', '10.00', '0.00', NULL, '2025-12-20 21:54:08', '2025-12-20 21:54:08'),
('146', '4', '153', 'cash', '7.00', '0.00', NULL, '2025-12-20 21:56:07', '2025-12-20 21:56:07'),
('147', '4', '154', 'cash', '22.00', '0.00', NULL, '2025-12-20 22:29:08', '2025-12-20 22:29:08'),
('148', '4', '155', 'cash', '15.00', '0.00', NULL, '2025-12-20 22:31:45', '2025-12-20 22:31:45'),
('149', '4', '156', 'card', '30.00', '0.00', NULL, '2025-12-20 22:32:11', '2025-12-20 22:32:11'),
('150', '4', '157', 'cash', '5.00', '0.00', NULL, '2025-12-20 22:33:00', '2025-12-20 22:33:00'),
('151', '4', '158', 'card', '26.00', '0.00', NULL, '2025-12-20 22:37:10', '2025-12-20 22:37:10'),
('152', '4', '159', 'card', '3.00', '0.00', NULL, '2025-12-20 22:40:05', '2025-12-20 22:40:05'),
('153', '4', '160', 'card', '5.00', '0.00', NULL, '2025-12-20 23:13:50', '2025-12-20 23:13:50'),
('154', '4', '161', 'card', '5.00', '0.00', NULL, '2025-12-20 23:18:18', '2025-12-20 23:18:18'),
('155', '4', '162', 'card', '7.00', '0.00', NULL, '2025-12-20 23:23:38', '2025-12-20 23:23:38'),
('156', '4', '166', 'cash', '19.00', '0.00', NULL, '2025-12-21 00:00:27', '2025-12-21 00:00:27'),
('157', '4', '167', 'card', '16.00', '0.00', NULL, '2025-12-21 00:06:59', '2025-12-21 00:06:59'),
('158', '4', '168', 'cash', '5.00', '0.00', NULL, '2025-12-21 00:08:04', '2025-12-21 00:08:04'),
('159', '4', '169', 'cash', '16.00', '0.00', NULL, '2025-12-21 00:26:10', '2025-12-21 00:26:10'),
('160', '4', '170', 'cash', '16.00', '0.00', NULL, '2025-12-21 00:31:18', '2025-12-21 00:31:18'),
('161', '4', '171', 'card', '7.00', '0.00', NULL, '2025-12-21 00:41:16', '2025-12-21 00:41:16'),
('162', '4', '172', 'card', '3.00', '0.00', NULL, '2025-12-21 00:41:53', '2025-12-21 00:41:53'),
('163', '4', '163', 'cash', '189.00', '0.00', NULL, '2025-12-21 01:12:18', '2025-12-21 01:12:18'),
('164', '4', '173', 'card', '50.00', '0.00', NULL, '2025-12-21 01:15:44', '2025-12-21 01:15:44'),
('165', '4', '174', 'cash', '60.00', '0.00', NULL, '2025-12-21 01:31:06', '2025-12-21 01:31:06'),
('166', '4', '175', 'cash', '5.00', '0.00', NULL, '2025-12-21 02:05:49', '2025-12-21 02:05:49'),
('167', '4', '176', 'cash', '5.00', '0.00', NULL, '2025-12-21 02:20:16', '2025-12-21 02:20:16'),
('168', '4', '177', 'cash', '10.00', '0.00', NULL, '2025-12-21 02:42:42', '2025-12-21 02:42:42'),
('169', '4', '178', 'cash', '15.00', '0.00', NULL, '2025-12-21 03:11:06', '2025-12-21 03:11:06'),
('170', '4', '179', 'card', '72.00', '0.00', NULL, '2025-12-21 03:34:32', '2025-12-21 03:34:32'),
('171', '4', '180', 'cash', '10.00', '0.00', NULL, '2025-12-21 03:43:39', '2025-12-21 03:43:39'),
('172', '4', '181', 'card', '315.00', '0.00', NULL, '2025-12-21 03:57:07', '2025-12-21 03:57:07'),
('173', '4', '182', 'cash', '32.00', '0.00', NULL, '2025-12-21 04:00:44', '2025-12-21 04:00:44'),
('174', '4', '183', 'card', '8.00', '0.00', NULL, '2025-12-21 04:21:11', '2025-12-21 04:21:11'),
('175', '4', '184', 'cash', '15.00', '0.00', NULL, '2025-12-21 04:30:13', '2025-12-21 04:30:13'),
('176', '4', '185', 'cash', '100.00', '0.00', NULL, '2025-12-21 21:26:10', '2025-12-21 21:26:10'),
('177', '4', '186', 'cash', '56.00', '0.00', NULL, '2025-12-21 21:59:02', '2025-12-21 21:59:02'),
('178', '4', '187', 'card', '48.00', '0.00', NULL, '2025-12-21 22:29:05', '2025-12-21 22:29:05'),
('179', '4', '188', 'cash', '15.00', '0.00', NULL, '2025-12-21 23:34:23', '2025-12-21 23:34:23'),
('180', '4', '189', 'card', '74.00', '0.00', NULL, '2025-12-22 00:01:35', '2025-12-22 00:01:35'),
('181', '4', '190', 'cash', '63.00', '0.00', NULL, '2025-12-22 00:20:13', '2025-12-22 00:20:13'),
('182', '4', '191', 'card', '20.00', '0.00', NULL, '2025-12-22 00:22:06', '2025-12-22 00:22:06'),
('183', '4', '192', 'card', '40.00', '0.00', NULL, '2025-12-22 00:25:42', '2025-12-22 00:25:42'),
('184', '4', '193', 'cash', '60.00', '0.00', NULL, '2025-12-22 00:27:22', '2025-12-22 00:27:22'),
('185', '4', '195', 'cash', '56.00', '0.00', NULL, '2025-12-22 00:58:53', '2025-12-22 00:58:53'),
('186', '4', '196', 'cash', '45.00', '0.00', NULL, '2025-12-22 00:59:13', '2025-12-22 00:59:13'),
('187', '4', '197', 'card', '6.00', '0.00', NULL, '2025-12-22 01:24:51', '2025-12-22 01:24:51'),
('188', '4', '198', 'card', '15.00', '0.00', NULL, '2025-12-22 01:45:24', '2025-12-22 01:45:24'),
('189', '4', '201', 'card', '48.00', '0.00', NULL, '2025-12-22 23:24:29', '2025-12-22 23:24:29'),
('190', '4', '199', 'cash', '117.00', '0.00', NULL, '2025-12-23 01:08:56', '2025-12-23 01:08:56'),
('191', '4', '202', 'card', '26.00', '0.00', NULL, '2025-12-23 01:09:33', '2025-12-23 01:09:33'),
('192', '4', '203', 'card', '40.00', '0.00', NULL, '2025-12-23 01:37:22', '2025-12-23 01:37:22'),
('193', '4', '204', 'cash', '7.00', '0.00', NULL, '2025-12-23 21:33:27', '2025-12-23 21:33:27'),
('194', '4', '205', 'cash', '15.00', '0.00', NULL, '2025-12-23 22:29:42', '2025-12-23 22:29:42'),
('195', '4', '207', 'cash', '26.00', '0.00', NULL, '2025-12-24 00:25:10', '2025-12-24 00:25:10'),
('196', '4', '209', 'card', '20.00', '0.00', NULL, '2025-12-24 00:42:31', '2025-12-24 00:42:31'),
('197', '4', '206', 'cash', '36.00', '0.00', NULL, '2025-12-24 00:56:53', '2025-12-24 00:56:53'),
('198', '4', '208', 'card', '440.00', '0.00', NULL, '2025-12-24 02:24:37', '2025-12-24 02:24:37'),
('199', '4', '210', 'card', '35.00', '0.00', NULL, '2025-12-24 02:50:01', '2025-12-24 02:50:01'),
('200', '4', '212', 'cash', '14.00', '0.00', NULL, '2025-12-24 22:59:12', '2025-12-24 22:59:12'),
('201', '4', '213', 'cash', '5.00', '0.00', NULL, '2025-12-24 23:38:37', '2025-12-24 23:38:37'),
('202', '4', '214', 'cash', '7.00', '0.00', NULL, '2025-12-24 23:43:35', '2025-12-24 23:43:35'),
('203', '4', '215', 'card', '23.00', '0.00', NULL, '2025-12-25 20:25:48', '2025-12-25 20:25:48'),
('204', '4', '216', 'cash', '38.00', '0.00', NULL, '2025-12-25 21:35:53', '2025-12-25 21:35:53'),
('205', '4', '217', 'cash', '12.00', '0.00', NULL, '2025-12-25 23:48:38', '2025-12-25 23:48:38'),
('206', '4', '218', 'cash', '45.00', '0.00', NULL, '2025-12-26 00:18:22', '2025-12-26 00:18:22'),
('207', '4', '219', 'card', '15.00', '0.00', NULL, '2025-12-26 00:50:49', '2025-12-26 00:50:49'),
('208', '4', '220', 'cash', '5.00', '0.00', NULL, '2025-12-26 00:52:03', '2025-12-26 00:52:03'),
('209', '4', '221', 'cash', '3.00', '0.00', NULL, '2025-12-26 00:59:08', '2025-12-26 00:59:08'),
('210', '4', '222', 'cash', '16.00', '0.00', NULL, '2025-12-26 21:21:10', '2025-12-26 21:21:10'),
('211', '4', '223', 'cash', '7.00', '0.00', NULL, '2025-12-26 23:06:04', '2025-12-26 23:06:04'),
('212', '4', '224', 'cash', '18.00', '0.00', NULL, '2025-12-26 23:09:12', '2025-12-26 23:09:12'),
('213', '4', '225', 'card', '85.00', '0.00', NULL, '2025-12-26 23:10:52', '2025-12-26 23:10:52'),
('214', '4', '226', 'cash', '21.00', '0.00', NULL, '2025-12-26 23:30:27', '2025-12-26 23:30:27'),
('215', '4', '227', 'cash', '16.00', '0.00', NULL, '2025-12-27 00:00:06', '2025-12-27 00:00:06'),
('216', '4', '228', 'cash', '14.00', '0.00', NULL, '2025-12-27 00:06:48', '2025-12-27 00:06:48'),
('217', '4', '229', 'cash', '40.00', '0.00', NULL, '2025-12-27 00:28:39', '2025-12-27 00:28:39'),
('218', '4', '230', 'cash', '24.00', '0.00', NULL, '2025-12-27 00:51:38', '2025-12-27 00:51:38'),
('219', '4', '231', 'cash', '10.00', '0.00', NULL, '2025-12-27 00:54:39', '2025-12-27 00:54:39'),
('220', '4', '232', 'cash', '6.00', '0.00', NULL, '2025-12-27 00:59:57', '2025-12-27 00:59:57'),
('221', '4', '233', 'cash', '10.00', '0.00', NULL, '2025-12-27 01:18:12', '2025-12-27 01:18:12'),
('222', '4', '234', 'cash', '39.00', '0.00', NULL, '2025-12-27 01:20:07', '2025-12-27 01:20:07'),
('223', '4', '235', 'cash', '8.00', '0.00', NULL, '2025-12-27 01:33:42', '2025-12-27 01:33:42'),
('224', '4', '236', 'cash', '9.00', '0.00', NULL, '2025-12-27 01:44:06', '2025-12-27 01:44:06'),
('225', '4', '237', 'cash', '20.00', '0.00', NULL, '2025-12-27 01:45:20', '2025-12-27 01:45:20'),
('226', '4', '238', 'cash', '21.00', '0.00', NULL, '2025-12-27 02:16:51', '2025-12-27 02:16:51'),
('227', '4', '238', 'cash', '21.00', '0.00', NULL, '2025-12-27 02:16:51', '2025-12-27 02:16:51'),
('228', '5', '239', 'cash', '6.49', '0.00', NULL, '2025-12-27 15:54:27', '2025-12-27 15:54:27'),
('229', '4', '241', 'card', '30.00', '0.00', NULL, '2025-12-27 20:02:03', '2025-12-27 20:02:03'),
('230', '4', '242', 'cash', '24.00', '0.00', NULL, '2025-12-27 20:10:00', '2025-12-27 20:10:00'),
('231', '4', '243', 'cash', '19.00', '0.00', NULL, '2025-12-27 20:34:37', '2025-12-27 20:34:37'),
('232', '4', '244', 'card', '5.00', '0.00', NULL, '2025-12-27 21:04:55', '2025-12-27 21:04:55'),
('233', '4', '245', 'card', '42.00', '0.00', NULL, '2025-12-27 21:13:47', '2025-12-27 21:13:47'),
('234', '4', '246', 'cash', '65.00', '0.00', NULL, '2025-12-27 21:24:17', '2025-12-27 21:24:17'),
('235', '4', '247', 'cash', '10.00', '0.00', NULL, '2025-12-27 21:24:47', '2025-12-27 21:24:47'),
('236', '4', '248', 'card', '5.00', '0.00', NULL, '2025-12-27 21:47:34', '2025-12-27 21:47:34'),
('237', '4', '252', 'card', '10.00', '0.00', NULL, '2025-12-27 21:56:05', '2025-12-27 21:56:05'),
('238', '4', '253', 'card', '19.00', '0.00', NULL, '2025-12-27 22:09:03', '2025-12-27 22:09:03'),
('239', '4', '254', 'card', '5.00', '0.00', NULL, '2025-12-27 22:32:20', '2025-12-27 22:32:20'),
('240', '4', '255', 'card', '5.00', '0.00', NULL, '2025-12-27 23:08:57', '2025-12-27 23:08:57'),
('241', '4', '256', 'cash', '15.00', '0.00', NULL, '2025-12-27 23:23:55', '2025-12-27 23:23:55'),
('242', '4', '257', 'cash', '18.00', '0.00', NULL, '2025-12-27 23:30:06', '2025-12-27 23:30:06'),
('243', '4', '258', 'cash', '12.00', '0.00', NULL, '2025-12-27 23:31:13', '2025-12-27 23:31:13'),
('244', '4', '259', 'cash', '6.00', '0.00', NULL, '2025-12-28 00:07:25', '2025-12-28 00:07:25'),
('245', '4', '260', 'cash', '12.00', '0.00', NULL, '2025-12-28 00:42:59', '2025-12-28 00:42:59'),
('246', '4', '261', 'cash', '6.00', '0.00', NULL, '2025-12-28 00:52:47', '2025-12-28 00:52:47'),
('247', '4', '262', 'cash', '20.00', '0.00', NULL, '2025-12-28 01:24:00', '2025-12-28 01:24:00'),
('248', '4', '263', 'cash', '49.00', '0.00', NULL, '2025-12-28 01:32:49', '2025-12-28 01:32:49'),
('249', '3', '250', 'cash', '50.00', '0.00', NULL, '2025-12-28 09:39:15', '2025-12-28 09:39:15'),
('250', '3', '264', 'card', '10.00', '0.00', NULL, '2025-12-28 09:42:20', '2025-12-28 09:42:20'),
('251', '3', '265', 'cash', '20.00', '0.00', NULL, '2025-12-28 09:43:34', '2025-12-28 09:43:34'),
('252', '3', '266', 'cash', '20.00', '0.00', NULL, '2025-12-28 09:47:30', '2025-12-28 09:47:30'),
('253', '3', '268', 'cash', '20.00', '0.00', NULL, '2025-12-28 09:54:40', '2025-12-28 09:54:40'),
('254', '3', '269', 'cash', '10.00', '0.00', NULL, '2025-12-28 09:58:02', '2025-12-28 09:58:02'),
('255', '3', '270', 'cash', '10.00', '0.00', NULL, '2025-12-28 10:02:08', '2025-12-28 10:02:08'),
('256', '4', '271', 'cash', '62.00', '0.00', NULL, '2025-12-28 21:43:41', '2025-12-28 21:43:41'),
('257', '4', '275', 'cash', '21.00', '0.00', NULL, '2025-12-28 22:47:58', '2025-12-28 22:47:58'),
('258', '4', '272', 'cash', '95.00', '0.00', NULL, '2025-12-28 23:22:12', '2025-12-28 23:22:12'),
('259', '4', '273', 'card', '22.00', '0.00', NULL, '2025-12-28 23:23:39', '2025-12-28 23:23:39'),
('260', '4', '276', 'cash', '43.00', '0.00', NULL, '2025-12-28 23:49:11', '2025-12-28 23:49:11'),
('261', '4', '278', 'cash', '25.00', '0.00', NULL, '2025-12-28 23:49:39', '2025-12-28 23:49:39'),
('262', '4', '274', 'card', '37.00', '0.00', NULL, '2025-12-29 00:04:29', '2025-12-29 00:04:29'),
('263', '4', '279', 'card', '109.00', '0.00', NULL, '2025-12-29 00:07:28', '2025-12-29 00:07:28'),
('264', '4', '277', 'cash', '7.00', '0.00', NULL, '2025-12-29 01:11:02', '2025-12-29 01:11:02'),
('265', '4', '281', 'cash', '3.00', '0.00', NULL, '2025-12-29 20:28:43', '2025-12-29 20:28:43'),
('266', '4', '283', 'cash', '5.00', '95.00', NULL, '2025-12-29 20:36:36', '2025-12-29 20:36:36'),
('267', '4', '280', 'cash', '3.00', '0.00', NULL, '2025-12-29 20:45:10', '2025-12-29 20:45:10'),
('268', '4', '282', 'cash', '8.00', '0.00', NULL, '2025-12-29 20:46:33', '2025-12-29 20:46:33'),
('269', '4', '211', 'cash', '12.00', '0.00', NULL, '2025-12-29 20:50:06', '2025-12-29 20:50:06'),
('270', '4', '284', 'cash', '85.00', '0.00', NULL, '2025-12-30 20:11:45', '2025-12-30 20:11:45'),
('271', '4', '286', 'cash', '19.00', '0.00', NULL, '2025-12-30 21:40:09', '2025-12-30 21:40:09'),
('272', '4', '288', 'cash', '56.00', '0.00', NULL, '2025-12-30 23:43:10', '2025-12-30 23:43:10'),
('273', '4', '289', 'cash', '12.00', '0.00', NULL, '2025-12-30 23:48:49', '2025-12-30 23:48:49'),
('274', '4', '287', 'cash', '68.00', '0.00', NULL, '2025-12-31 01:01:11', '2025-12-31 01:01:11'),
('275', '4', '285', 'cash', '3.00', '0.00', NULL, '2025-12-31 02:09:04', '2025-12-31 02:09:04'),
('276', '4', '294', 'cash', '61.00', '0.00', NULL, '2026-01-01 22:21:26', '2026-01-01 22:21:26'),
('277', '4', '295', 'cash', '9.50', '0.00', NULL, '2026-01-02 00:20:27', '2026-01-02 00:20:27'),
('278', '4', '296', 'cash', '3.00', '0.00', NULL, '2026-01-02 19:31:40', '2026-01-02 19:31:40'),
('279', '4', '297', 'cash', '3.50', '0.00', NULL, '2026-01-02 20:21:32', '2026-01-02 20:21:32'),
('280', '4', '298', 'cash', '3.50', '0.00', NULL, '2026-01-02 21:01:49', '2026-01-02 21:01:49'),
('281', '4', '299', 'cash', '18.00', '0.00', NULL, '2026-01-02 21:14:37', '2026-01-02 21:14:37'),
('282', '4', '300', 'cash', '3.50', '0.00', NULL, '2026-01-02 21:37:54', '2026-01-02 21:37:54'),
('283', '4', '301', 'cash', '10.50', '0.00', NULL, '2026-01-02 22:01:35', '2026-01-02 22:01:35'),
('284', '4', '302', 'cash', '9.00', '0.00', NULL, '2026-01-02 22:27:33', '2026-01-02 22:27:33'),
('285', '4', '303', 'cash', '13.00', '0.00', NULL, '2026-01-02 23:01:28', '2026-01-02 23:01:28'),
('286', '4', '304', 'card', '31.00', '0.00', NULL, '2026-01-02 23:40:51', '2026-01-02 23:40:51'),
('287', '4', '305', 'cash', '90.00', '0.00', NULL, '2026-01-02 23:54:55', '2026-01-02 23:54:55'),
('288', '4', '306', 'cash', '4.00', '0.00', NULL, '2026-01-02 23:56:04', '2026-01-02 23:56:04'),
('289', '4', '307', 'cash', '4.00', '0.00', NULL, '2026-01-02 23:59:57', '2026-01-02 23:59:57'),
('290', '4', '308', 'cash', '4.00', '0.00', NULL, '2026-01-03 00:27:46', '2026-01-03 00:27:46'),
('291', '4', '309', 'cash', '3.00', '0.00', NULL, '2026-01-03 00:43:44', '2026-01-03 00:43:44'),
('292', '4', '310', 'cash', '1.50', '0.00', NULL, '2026-01-03 00:59:16', '2026-01-03 00:59:16'),
('293', '4', '311', 'card', '16.00', '0.00', NULL, '2026-01-03 01:05:32', '2026-01-03 01:05:32'),
('294', '4', '312', 'cash', '29.00', '0.00', NULL, '2026-01-03 23:47:48', '2026-01-03 23:47:48'),
('295', '4', '313', 'card', '27.00', '0.00', NULL, '2026-01-03 23:48:22', '2026-01-03 23:48:22'),
('296', '4', '314', 'cash', '9.00', '0.00', NULL, '2026-01-03 23:48:52', '2026-01-03 23:48:52'),
('297', '4', '315', 'cash', '8.00', '0.00', NULL, '2026-01-04 00:01:49', '2026-01-04 00:01:49'),
('298', '4', '316', 'cash', '26.00', '0.00', NULL, '2026-01-04 00:45:01', '2026-01-04 00:45:01'),
('299', '4', '317', 'cash', '9.00', '0.00', NULL, '2026-01-04 00:50:41', '2026-01-04 00:50:41'),
('300', '4', '318', 'cash', '4.00', '0.00', NULL, '2026-01-04 01:00:08', '2026-01-04 01:00:08'),
('301', '4', '319', 'cash', '18.50', '0.00', NULL, '2026-01-04 23:29:34', '2026-01-04 23:29:34'),
('302', '4', '321', 'cash', '4.00', '0.00', NULL, '2026-01-07 21:53:56', '2026-01-07 21:53:56'),
('303', '4', '322', 'card', '7.00', '0.00', NULL, '2026-01-07 21:54:25', '2026-01-07 21:54:25'),
('304', '4', '323', 'cash', '11.50', '0.00', NULL, '2026-01-07 22:03:16', '2026-01-07 22:03:16'),
('305', '4', '324', 'cash', '22.50', '0.00', NULL, '2026-01-07 22:10:16', '2026-01-07 22:10:16'),
('306', '4', '325', 'card', '5.50', '0.00', NULL, '2026-01-07 22:23:40', '2026-01-07 22:23:40'),
('307', '4', '326', 'card', '3.00', '0.00', NULL, '2026-01-07 22:34:38', '2026-01-07 22:34:38'),
('308', '4', '327', 'card', '10.50', '0.00', NULL, '2026-01-07 22:43:09', '2026-01-07 22:43:09'),
('309', '4', '328', 'cash', '5.50', '0.00', NULL, '2026-01-07 22:47:26', '2026-01-07 22:47:26'),
('310', '4', '329', 'cash', '14.00', '0.00', NULL, '2026-01-07 23:34:19', '2026-01-07 23:34:19'),
('311', '4', '330', 'cash', '12.00', '0.00', NULL, '2026-01-07 23:38:37', '2026-01-07 23:38:37'),
('312', '4', '331', 'card', '6.50', '0.00', NULL, '2026-01-08 00:13:02', '2026-01-08 00:13:02'),
('313', '4', '332', 'card', '6.50', '0.00', NULL, '2026-01-08 00:55:56', '2026-01-08 00:55:56'),
('314', '4', '333', 'cash', '64.00', '0.00', NULL, '2026-01-08 01:33:35', '2026-01-08 01:33:35'),
('315', '4', '334', 'cash', '356.00', '0.00', NULL, '2026-01-09 23:47:09', '2026-01-09 23:47:09'),
('316', '4', '335', 'cash', '16.50', '0.00', NULL, '2026-01-10 03:03:32', '2026-01-10 03:03:32'),
('317', '4', '336', 'cash', '0.00', '0.00', NULL, '2026-01-10 18:46:59', '2026-01-10 18:46:59'),
('318', '4', '337', 'cash', '385.00', '0.00', NULL, '2026-01-10 18:49:19', '2026-01-10 18:49:19'),
('319', '4', '338', 'card', '26.00', '0.00', NULL, '2026-01-11 00:15:50', '2026-01-11 00:15:50'),
('320', '4', '339', 'cash', '3.00', '0.00', NULL, '2026-01-11 00:16:52', '2026-01-11 00:16:52'),
('321', '4', '340', 'card', '13.00', '0.00', NULL, '2026-01-11 00:30:36', '2026-01-11 00:30:36'),
('322', '4', '341', 'cash', '10.50', '0.00', NULL, '2026-01-11 00:33:31', '2026-01-11 00:33:31'),
('323', '4', '342', 'cash', '407.00', '0.00', NULL, '2026-01-11 00:55:15', '2026-01-11 00:55:15'),
('324', '4', '343', 'card', '94.00', '0.00', NULL, '2026-01-11 01:05:30', '2026-01-11 01:05:30'),
('325', '4', '344', 'cash', '5.50', '0.00', NULL, '2026-01-11 01:06:12', '2026-01-11 01:06:12'),
('326', '4', '345', 'cash', '11.00', '0.00', NULL, '2026-01-11 01:53:00', '2026-01-11 01:53:00'),
('327', '4', '346', 'cash', '0.00', '0.00', NULL, '2026-01-13 19:19:26', '2026-01-13 19:19:26'),
('328', '4', '347', 'cash', '1.50', '0.00', NULL, '2026-01-13 19:20:30', '2026-01-13 19:20:30'),
('329', '4', '357', 'cash', '13.00', '0.00', NULL, '2026-01-14 21:50:13', '2026-01-14 21:50:13'),
('330', '4', '358', 'cash', '0.00', '0.00', NULL, '2026-01-15 10:56:35', '2026-01-15 10:56:35'),
('331', '4', '363', 'cash', '18.50', '0.00', NULL, '2026-01-16 19:15:02', '2026-01-16 19:15:02'),
('332', '4', '364', 'cash', '13.50', '0.00', NULL, '2026-01-16 20:49:11', '2026-01-16 20:49:11'),
('333', '4', '365', 'cash', '10.50', '0.00', NULL, '2026-01-16 21:11:35', '2026-01-16 21:11:35'),
('334', '4', '366', 'cash', '11.50', '0.00', NULL, '2026-01-16 21:12:47', '2026-01-16 21:12:47'),
('335', '4', '367', 'cash', '7.00', '0.00', NULL, '2026-01-16 21:13:39', '2026-01-16 21:13:39'),
('336', '4', '368', 'cash', '120.00', '0.00', NULL, '2026-01-17 01:39:16', '2026-01-17 01:39:16'),
('337', '4', '369', 'cash', '7.00', '0.00', NULL, '2026-01-17 20:56:31', '2026-01-17 20:56:31'),
('338', '4', '370', 'cash', '8.00', '0.00', NULL, '2026-01-17 21:21:58', '2026-01-17 21:21:58'),
('339', '4', '371', 'cash', '25.00', '0.00', NULL, '2026-01-17 21:47:48', '2026-01-17 21:47:48'),
('340', '4', '372', 'cash', '25.00', '0.00', NULL, '2026-01-17 21:58:10', '2026-01-17 21:58:10'),
('341', '4', '373', 'cash', '33.50', '0.00', NULL, '2026-01-18 00:49:51', '2026-01-18 00:49:51'),
('342', '4', '374', 'cash', '2.00', '0.00', NULL, '2026-01-19 18:54:54', '2026-01-19 18:54:54'),
('343', '4', '376', 'cash', '2.00', '0.00', NULL, '2026-01-19 18:56:21', '2026-01-19 18:56:21'),
('344', '4', '377', 'cash', '2.00', '0.00', NULL, '2026-01-19 18:56:56', '2026-01-19 18:56:56'),
('345', '4', '383', 'cash', '5.00', '0.00', NULL, '2026-01-19 18:57:20', '2026-01-19 18:57:20'),
('346', '4', '384', 'cash', '3.00', '0.00', NULL, '2026-01-19 18:59:22', '2026-01-19 18:59:22'),
('347', '4', '385', 'cash', '1.50', '0.00', NULL, '2026-01-19 19:02:00', '2026-01-19 19:02:00'),
('348', '4', '386', 'cash', '10.00', '0.00', NULL, '2026-01-19 19:05:24', '2026-01-19 19:05:24'),
('349', '4', '387', 'cash', '8.50', '0.00', NULL, '2026-01-19 19:20:06', '2026-01-19 19:20:06'),
('350', '4', '389', 'cash', '9.00', '0.00', NULL, '2026-01-19 21:37:48', '2026-01-19 21:37:48'),
('351', '4', '390', 'cash', '2.50', '0.00', NULL, '2026-01-19 21:48:07', '2026-01-19 21:48:07'),
('352', '4', '392', 'cash', '12.50', '0.00', NULL, '2026-01-19 21:49:49', '2026-01-19 21:49:49'),
('353', '4', '394', 'cash', '2.00', '0.00', NULL, '2026-01-19 22:08:54', '2026-01-19 22:08:54'),
('354', '4', '395', 'cash', '3.00', '0.00', NULL, '2026-01-19 22:17:52', '2026-01-19 22:17:52'),
('355', '4', '396', 'cash', '3.50', '0.00', NULL, '2026-01-19 22:50:21', '2026-01-19 22:50:21'),
('356', '4', '397', 'cash', '3.00', '0.00', NULL, '2026-01-19 23:32:59', '2026-01-19 23:32:59'),
('357', '4', '391', 'cash', '14.00', '0.00', NULL, '2026-01-19 23:39:08', '2026-01-19 23:39:08'),
('358', '4', '398', 'cash', '3.00', '0.00', NULL, '2026-01-19 23:46:53', '2026-01-19 23:46:53'),
('359', '4', '399', 'card', '10.50', '0.00', NULL, '2026-01-20 00:05:07', '2026-01-20 00:05:07'),
('360', '4', '400', 'card', '7.00', '0.00', NULL, '2026-01-20 00:07:18', '2026-01-20 00:07:18'),
('361', '4', '401', 'cash', '10.50', '0.00', NULL, '2026-01-20 00:41:17', '2026-01-20 00:41:17'),
('362', '4', '393', 'card', '42.50', '0.00', NULL, '2026-01-20 01:27:56', '2026-01-20 01:27:56'),
('363', '4', '402', 'cash', '3.50', '0.00', NULL, '2026-01-20 01:28:16', '2026-01-20 01:28:28'),
('364', '4', '403', 'cash', '1.00', '0.00', NULL, '2026-01-23 19:39:47', '2026-01-23 19:39:47'),
('365', '4', '407', 'cash', '14.00', '0.00', NULL, '2026-01-23 21:04:17', '2026-01-23 21:04:17'),
('366', '4', '408', 'cash', '6.00', '0.00', NULL, '2026-01-23 21:52:31', '2026-01-23 21:52:31'),
('367', '4', '404', 'cash', '149.50', '0.00', NULL, '2026-01-23 21:59:49', '2026-01-23 21:59:49'),
('368', '4', '405', 'cash', '163.50', '0.00', NULL, '2026-01-23 22:27:02', '2026-01-23 22:27:02'),
('369', '4', '410', 'cash', '16.00', '0.00', NULL, '2026-01-23 22:35:37', '2026-01-23 22:35:37'),
('370', '4', '406', 'card', '29.00', '0.00', NULL, '2026-01-23 23:32:43', '2026-01-23 23:32:43'),
('371', '4', '412', 'cash', '9.00', '0.00', NULL, '2026-01-24 00:16:44', '2026-01-24 00:16:44'),
('372', '4', '411', 'cash', '6.00', '0.00', NULL, '2026-01-24 01:01:25', '2026-01-24 01:01:25'),
('373', '4', '409', 'cash', '18.00', '0.00', NULL, '2026-01-24 01:02:07', '2026-01-24 01:02:07'),
('374', '4', '413', 'card', '49.50', '0.00', NULL, '2026-01-25 02:17:03', '2026-01-25 02:17:03'),
('375', '4', '414', 'cash', '240.00', '0.00', NULL, '2026-01-25 02:17:42', '2026-01-25 02:17:42'),
('376', '4', '415', 'cash', '26.50', '0.00', NULL, '2026-01-27 20:00:28', '2026-01-27 20:00:28'),
('377', '4', '416', 'cash', '10.50', '0.00', NULL, '2026-01-27 20:01:24', '2026-01-27 20:01:24'),
('378', '4', '417', 'cash', '12.50', '0.00', NULL, '2026-01-27 22:43:19', '2026-01-27 22:43:19'),
('379', '4', '418', 'cash', '14.50', '0.00', NULL, '2026-01-27 22:48:38', '2026-01-27 22:48:38'),
('380', '4', '419', 'cash', '12.50', '0.00', NULL, '2026-01-28 00:37:37', '2026-01-28 00:37:37'),
('381', '4', '420', 'cash', '78.50', '0.00', NULL, '2026-01-28 21:44:23', '2026-01-28 21:44:23'),
('382', '4', '421', 'card', '26.50', '0.00', NULL, '2026-01-28 23:35:30', '2026-01-28 23:35:30'),
('383', '4', '425', 'cash', '12.00', '0.00', NULL, '2026-01-30 20:01:46', '2026-01-30 20:01:46'),
('384', '4', '422', 'cash', '117.00', '0.00', NULL, '2026-01-30 21:28:15', '2026-01-30 21:28:15'),
('385', '4', '424', 'cash', '9.00', '0.00', NULL, '2026-01-30 21:33:51', '2026-01-30 21:33:51'),
('386', '4', '426', 'cash', '100.50', '0.00', NULL, '2026-01-30 22:18:25', '2026-01-30 22:18:25'),
('387', '4', '428', 'cash', '5.00', '0.00', NULL, '2026-01-31 01:07:50', '2026-01-31 01:07:50'),
('388', '4', '423', 'card', '179.00', '0.00', NULL, '2026-01-31 01:47:37', '2026-01-31 01:47:37'),
('389', '4', '427', 'cash', '60.00', '0.00', NULL, '2026-01-31 02:01:03', '2026-01-31 02:01:03'),
('390', '4', '429', 'cash', '47.50', '0.00', NULL, '2026-01-31 02:03:16', '2026-01-31 02:03:16'),
('391', '4', '435', 'cash', '18.00', '0.00', NULL, '2026-01-31 20:30:07', '2026-01-31 20:30:07'),
('392', '4', '436', 'cash', '11.00', '0.00', NULL, '2026-01-31 20:37:55', '2026-01-31 20:37:55'),
('393', '4', '439', 'cash', '4.50', '0.00', NULL, '2026-01-31 21:12:39', '2026-01-31 21:12:39'),
('394', '4', '440', 'cash', '7.00', '0.00', NULL, '2026-01-31 21:13:42', '2026-01-31 21:13:42'),
('395', '4', '441', 'cash', '8.00', '0.00', NULL, '2026-01-31 21:27:23', '2026-01-31 21:27:23'),
('396', '4', '442', 'card', '3.00', '0.00', NULL, '2026-01-31 21:28:03', '2026-01-31 21:28:03'),
('397', '4', '443', 'cash', '6.00', '0.00', NULL, '2026-01-31 22:02:48', '2026-01-31 22:02:48'),
('398', '4', '444', 'cash', '3.50', '0.00', NULL, '2026-01-31 22:08:14', '2026-01-31 22:08:14'),
('399', '4', '430', 'cash', '34.50', '0.00', NULL, '2026-01-31 22:49:56', '2026-01-31 22:49:56'),
('400', '4', '431', 'cash', '14.50', '0.00', NULL, '2026-01-31 22:50:28', '2026-01-31 22:50:28'),
('401', '4', '432', 'cash', '13.50', '0.00', NULL, '2026-01-31 22:51:00', '2026-01-31 22:51:00'),
('402', '4', '433', 'card', '50.00', '0.00', NULL, '2026-01-31 23:22:40', '2026-01-31 23:22:40'),
('403', '4', '438', 'card', '36.50', '0.00', NULL, '2026-01-31 23:26:44', '2026-01-31 23:26:44'),
('404', '4', '437', 'card', '37.00', '0.00', NULL, '2026-01-31 23:27:16', '2026-01-31 23:27:16'),
('405', '4', '445', 'cash', '24.00', '0.00', NULL, '2026-02-01 01:34:50', '2026-02-01 01:34:50'),
('406', '4', '434', 'card', '313.50', '0.00', NULL, '2026-02-01 01:40:30', '2026-02-01 01:40:30'),
('407', '4', '446', 'cash', '18.50', '0.00', NULL, '2026-02-01 18:21:20', '2026-02-01 18:21:20'),
('408', '4', '449', 'cash', '5.50', '0.00', NULL, '2026-02-01 19:23:25', '2026-02-01 19:23:25'),
('409', '4', '450', 'cash', '6.00', '0.00', NULL, '2026-02-01 20:37:37', '2026-02-01 20:37:37'),
('410', '4', '452', 'cash', '3.00', '0.00', NULL, '2026-02-01 20:39:54', '2026-02-01 20:39:54'),
('411', '4', '454', 'cash', '9.50', '0.00', NULL, '2026-02-01 21:23:02', '2026-02-01 21:23:02'),
('412', '4', '455', 'cash', '8.00', '0.00', NULL, '2026-02-01 21:25:24', '2026-02-01 21:25:24'),
('413', '4', '461', 'cash', '10.50', '0.00', NULL, '2026-02-01 22:16:37', '2026-02-01 22:16:37'),
('414', '4', '462', 'card', '10.50', '0.00', NULL, '2026-02-01 22:35:15', '2026-02-01 22:35:15'),
('415', '4', '463', 'cash', '3.50', '0.00', NULL, '2026-02-01 22:40:44', '2026-02-01 22:40:44'),
('416', '4', '460', 'cash', '13.50', '0.00', NULL, '2026-02-01 22:50:50', '2026-02-01 22:50:50'),
('417', '4', '459', 'cash', '14.50', '0.00', NULL, '2026-02-01 23:13:43', '2026-02-01 23:13:43'),
('418', '4', '458', 'card', '19.50', '0.00', NULL, '2026-02-01 23:25:44', '2026-02-01 23:25:44'),
('419', '4', '466', 'card', '21.00', '0.00', NULL, '2026-02-02 00:07:47', '2026-02-02 00:07:47'),
('420', '4', '465', 'card', '27.00', '0.00', NULL, '2026-02-02 00:25:46', '2026-02-02 00:25:46'),
('421', '4', '468', 'card', '18.00', '0.00', NULL, '2026-02-02 00:34:33', '2026-02-02 00:34:33'),
('422', '4', '457', 'cash', '11.00', '0.00', NULL, '2026-02-02 00:38:49', '2026-02-02 00:38:49'),
('423', '4', '464', 'cash', '72.50', '0.00', NULL, '2026-02-02 01:50:48', '2026-02-02 01:50:48'),
('424', '4', '469', 'cash', '10.00', '0.00', NULL, '2026-02-02 01:56:45', '2026-02-02 01:56:45'),
('425', '4', '467', 'cash', '23.00', '0.00', NULL, '2026-02-02 02:13:23', '2026-02-02 02:13:23'),
('426', '4', '470', 'cash', '10.50', '0.00', NULL, '2026-02-02 02:24:02', '2026-02-02 02:24:02'),
('427', '4', '471', 'cash', '1.50', '0.00', NULL, '2026-02-02 02:25:37', '2026-02-02 02:25:37'),
('428', '4', '472', 'cash', '7.00', '0.00', NULL, '2026-02-02 23:25:36', '2026-02-02 23:25:36'),
('429', '4', '473', 'cash', '7.00', '0.00', NULL, '2026-02-03 00:31:26', '2026-02-03 00:31:26'),
('430', '4', '474', 'cash', '25.50', '0.00', NULL, '2026-02-03 18:42:03', '2026-02-03 18:42:03'),
('431', '4', '475', 'card', '11.00', '0.00', NULL, '2026-02-03 18:45:53', '2026-02-03 18:45:53'),
('432', '4', '476', 'cash', '17.00', '0.00', NULL, '2026-02-03 22:55:53', '2026-02-03 22:55:53'),
('433', '4', '477', 'cash', '23.50', '0.00', NULL, '2026-02-04 21:06:06', '2026-02-04 21:06:06'),
('434', '4', '479', 'cash', '7.00', '0.00', NULL, '2026-02-04 21:28:26', '2026-02-04 21:28:26'),
('435', '4', '481', 'cash', '7.00', '0.00', NULL, '2026-02-04 21:58:04', '2026-02-04 21:58:04'),
('436', '4', '482', 'cash', '3.50', '0.00', NULL, '2026-02-04 22:33:28', '2026-02-04 22:33:28'),
('437', '4', '480', 'cash', '9.50', '0.00', NULL, '2026-02-04 22:34:51', '2026-02-04 22:34:51'),
('438', '4', '483', 'cash', '7.00', '0.00', NULL, '2026-02-04 22:38:40', '2026-02-04 22:38:40'),
('439', '4', '484', 'cash', '17.00', '0.00', NULL, '2026-02-04 23:24:49', '2026-02-04 23:24:49'),
('440', '4', '487', 'cash', '3.00', '0.00', NULL, '2026-02-05 00:04:44', '2026-02-05 00:04:44'),
('441', '4', '485', 'cash', '22.00', '0.00', NULL, '2026-02-05 00:22:21', '2026-02-05 00:22:21'),
('442', '4', '486', 'cash', '17.50', '0.00', NULL, '2026-02-05 00:31:29', '2026-02-05 00:31:29'),
('443', '4', '488', 'card', '16.00', '0.00', NULL, '2026-02-05 00:59:12', '2026-02-05 00:59:12'),
('444', '4', '491', 'cash', '7.00', '0.00', NULL, '2026-02-05 01:24:06', '2026-02-05 01:24:06'),
('445', '4', '492', 'cash', '2.50', '0.00', NULL, '2026-02-05 02:33:55', '2026-02-05 02:33:55'),
('446', '4', '493', 'cash', '3.00', '0.00', NULL, '2026-02-05 02:39:21', '2026-02-05 02:39:21'),
('447', '4', '490', 'cash', '16.50', '0.00', NULL, '2026-02-05 02:40:44', '2026-02-05 02:40:44'),
('448', '4', '489', 'card', '4.00', '0.00', NULL, '2026-02-05 02:49:29', '2026-02-05 02:49:29'),
('450', '4', '489', 'cash', '15.50', '0.00', NULL, '2026-02-05 02:51:01', '2026-02-05 02:51:01'),
('451', '4', '496', 'cash', '7.50', '0.00', NULL, '2026-02-06 22:14:05', '2026-02-06 22:14:05'),
('452', '4', '494', 'cash', '53.00', '0.00', NULL, '2026-02-06 22:29:04', '2026-02-06 22:29:04'),
('453', '4', '497', 'cash', '6.50', '0.00', NULL, '2026-02-06 22:32:47', '2026-02-06 22:32:47'),
('454', '4', '495', 'card', '14.00', '0.00', NULL, '2026-02-06 22:36:07', '2026-02-06 22:36:07'),
('455', '4', '500', 'cash', '16.50', '0.00', NULL, '2026-02-07 00:12:12', '2026-02-07 00:12:12'),
('456', '4', '498', 'card', '25.00', '0.00', NULL, '2026-02-07 00:37:13', '2026-02-07 00:37:13'),
('457', '4', '502', 'cash', '6.00', '0.00', NULL, '2026-02-07 01:27:13', '2026-02-07 01:27:13'),
('458', '4', '504', 'cash', '2.50', '0.00', NULL, '2026-02-07 02:07:24', '2026-02-07 02:07:24'),
('459', '4', '503', 'cash', '3.50', '0.00', NULL, '2026-02-07 03:18:33', '2026-02-07 03:18:33'),
('460', '4', '501', 'card', '39.00', '0.00', NULL, '2026-02-07 03:24:29', '2026-02-07 03:24:29'),
('461', '4', '499', 'cash', '6.00', '0.00', NULL, '2026-02-07 03:44:26', '2026-02-07 03:44:26'),
('462', '4', '506', 'cash', '10.50', '0.00', NULL, '2026-02-07 19:52:33', '2026-02-07 19:52:33'),
('463', '4', '507', 'cash', '24.00', '0.00', NULL, '2026-02-07 20:12:12', '2026-02-07 20:12:12'),
('464', '4', '508', 'cash', '14.00', '0.00', NULL, '2026-02-07 21:03:25', '2026-02-07 21:03:25'),
('465', '4', '510', 'cash', '4.50', '0.00', NULL, '2026-02-09 19:40:38', '2026-02-09 19:40:38'),
('466', '4', '511', 'cash', '2.00', '0.00', NULL, '2026-02-09 19:42:20', '2026-02-09 19:42:20'),
('467', '4', '512', 'cash', '3.50', '0.00', NULL, '2026-02-09 19:43:20', '2026-02-09 19:43:20'),
('468', '4', '514', 'cash', '21.00', '0.00', NULL, '2026-02-09 21:11:50', '2026-02-09 21:11:50'),
('469', '4', '516', 'cash', '7.00', '0.00', NULL, '2026-02-09 22:07:02', '2026-02-09 22:07:02'),
('470', '4', '517', 'cash', '18.50', '0.00', NULL, '2026-02-09 22:55:03', '2026-02-09 22:55:03'),
('471', '4', '505', 'cash', '93.00', '0.00', NULL, '2026-02-10 00:11:45', '2026-02-10 00:11:45'),
('472', '4', '509', 'cash', '16.50', '0.00', NULL, '2026-02-10 00:12:16', '2026-02-10 00:12:16'),
('473', '4', '513', 'card', '71.50', '0.00', NULL, '2026-02-10 00:12:43', '2026-02-10 00:12:43'),
('474', '4', '515', 'cash', '21.00', '0.00', NULL, '2026-02-10 00:16:53', '2026-02-10 00:16:53'),
('475', '4', '518', 'cash', '21.00', '0.00', NULL, '2026-02-10 01:59:25', '2026-02-10 01:59:25'),
('476', '4', '520', 'cash', '11.00', '0.00', NULL, '2026-02-10 02:12:57', '2026-02-10 02:12:57'),
('477', '4', '522', 'cash', '4.00', '0.00', NULL, '2026-02-10 02:19:25', '2026-02-10 02:19:25'),
('478', '4', '523', 'cash', '14.50', '0.00', NULL, '2026-02-10 03:51:52', '2026-02-10 03:51:52'),
('479', '4', '521', 'card', '49.50', '0.00', NULL, '2026-02-10 04:16:00', '2026-02-10 04:16:00'),
('480', '4', '525', 'cash', '10.50', '0.00', NULL, '2026-02-10 21:54:04', '2026-02-10 21:54:04'),
('481', '4', '524', 'cash', '5.50', '0.00', NULL, '2026-02-11 00:25:55', '2026-02-11 00:25:55'),
('482', '4', '527', 'cash', '19.00', '0.00', NULL, '2026-02-11 18:46:54', '2026-02-11 18:46:54'),
('483', '4', '528', 'cash', '18.50', '0.00', NULL, '2026-02-11 20:20:30', '2026-02-11 20:20:30'),
('484', '4', '530', 'cash', '53.50', '0.00', NULL, '2026-02-11 21:28:09', '2026-02-11 21:28:09'),
('485', '4', '531', 'cash', '32.00', '0.00', NULL, '2026-02-11 21:58:25', '2026-02-11 21:58:25'),
('486', '4', '532', 'cash', '3.50', '0.00', NULL, '2026-02-11 22:59:02', '2026-02-11 22:59:02'),
('487', '4', '533', 'cash', '3.00', '0.00', NULL, '2026-02-12 01:54:26', '2026-02-12 01:54:26'),
('488', '4', '534', 'cash', '16.00', '0.00', NULL, '2026-02-12 21:23:40', '2026-02-12 21:23:40'),
('489', '4', '535', 'cash', '2.50', '0.00', NULL, '2026-02-12 21:58:58', '2026-02-12 21:58:58'),
('490', '4', '538', 'cash', '38.00', '0.00', NULL, '2026-02-12 22:40:58', '2026-02-12 22:40:58'),
('491', '4', '537', 'cash', '1.50', '0.00', NULL, '2026-02-12 22:53:12', '2026-02-12 22:53:12'),
('492', '4', '539', 'card', '9.00', '0.00', NULL, '2026-02-12 22:54:23', '2026-02-12 22:54:23'),
('493', '4', '536', 'cash', '14.50', '0.00', NULL, '2026-02-12 22:56:38', '2026-02-12 22:56:38'),
('494', '4', '540', 'card', '9.00', '0.00', NULL, '2026-02-12 23:23:10', '2026-02-12 23:23:10'),
('495', '4', '541', 'card', '7.50', '0.00', NULL, '2026-02-12 23:48:43', '2026-02-12 23:48:43'),
('496', '4', '542', 'card', '26.00', '0.00', NULL, '2026-02-12 23:55:11', '2026-02-12 23:55:11'),
('497', '4', '546', 'card', '12.00', '0.00', NULL, '2026-02-13 00:32:23', '2026-02-13 00:32:23'),
('498', '4', '545', 'cash', '18.00', '0.00', NULL, '2026-02-13 00:33:06', '2026-02-13 00:33:06'),
('499', '4', '547', 'cash', '3.00', '0.00', NULL, '2026-02-13 00:40:14', '2026-02-13 00:40:14'),
('500', '4', '543', 'cash', '14.50', '0.00', NULL, '2026-02-13 01:58:24', '2026-02-13 01:58:24'),
('501', '4', '548', 'card', '28.00', '0.00', NULL, '2026-02-13 02:25:52', '2026-02-13 02:25:52'),
('502', '4', '549', 'cash', '15.00', '0.00', NULL, '2026-02-13 02:39:40', '2026-02-13 02:39:40'),
('503', '4', '550', 'cash', '10.50', '0.00', NULL, '2026-02-13 02:57:51', '2026-02-13 02:57:51'),
('504', '4', '551', 'cash', '25.50', '0.00', NULL, '2026-02-13 03:15:36', '2026-02-13 03:15:36'),
('505', '4', '544', 'cash', '50.00', '0.00', NULL, '2026-02-13 03:21:37', '2026-02-13 03:21:37'),
('506', '4', '552', 'cash', '9.00', '0.00', NULL, '2026-02-13 03:44:19', '2026-02-13 03:44:19'),
('507', '4', '553', 'cash', '3.50', '0.00', NULL, '2026-02-13 18:56:06', '2026-02-13 18:56:06'),
('508', '4', '554', 'cash', '3.00', '0.00', NULL, '2026-02-13 19:10:07', '2026-02-13 19:10:07'),
('509', '4', '555', 'cash', '36.00', '0.00', NULL, '2026-02-13 19:33:05', '2026-02-13 19:33:05'),
('510', '4', '556', 'cash', '10.50', '0.00', NULL, '2026-02-13 19:41:30', '2026-02-13 19:41:30'),
('511', '4', '557', 'cash', '9.50', '0.00', NULL, '2026-02-13 19:45:58', '2026-02-13 19:45:58'),
('512', '4', '558', 'cash', '24.00', '0.00', NULL, '2026-02-13 19:47:38', '2026-02-13 19:47:38'),
('513', '4', '559', 'cash', '8.00', '0.00', NULL, '2026-02-13 20:05:48', '2026-02-13 20:05:48'),
('514', '4', '560', 'cash', '8.00', '0.00', NULL, '2026-02-13 20:14:13', '2026-02-13 20:14:13'),
('515', '4', '562', 'cash', '2.50', '0.00', NULL, '2026-02-13 20:42:11', '2026-02-13 20:42:11'),
('516', '4', '563', 'card', '10.00', '0.00', NULL, '2026-02-13 20:50:43', '2026-02-13 20:50:43'),
('517', '4', '564', 'card', '20.00', '0.00', NULL, '2026-02-13 20:51:21', '2026-02-13 20:51:21'),
('518', '4', '565', 'card', '10.00', '0.00', NULL, '2026-02-13 20:51:45', '2026-02-13 20:51:45'),
('519', '4', '566', 'card', '13.00', '0.00', NULL, '2026-02-13 20:52:50', '2026-02-13 20:52:50'),
('520', '4', '568', 'cash', '5.00', '0.00', NULL, '2026-02-13 20:56:56', '2026-02-13 20:56:56'),
('521', '4', '569', 'cash', '3.50', '0.00', NULL, '2026-02-13 21:00:53', '2026-02-13 21:00:53'),
('522', '4', '571', 'cash', '4.00', '0.00', NULL, '2026-02-13 21:17:47', '2026-02-13 21:17:47'),
('523', '4', '570', 'cash', '12.00', '0.00', NULL, '2026-02-13 21:19:31', '2026-02-13 21:19:31'),
('524', '4', '573', 'cash', '10.00', '0.00', NULL, '2026-02-13 22:02:17', '2026-02-13 22:02:17'),
('525', '4', '574', 'cash', '4.00', '0.00', NULL, '2026-02-13 22:08:03', '2026-02-13 22:08:03'),
('526', '4', '575', 'cash', '8.00', '0.00', NULL, '2026-02-13 22:11:50', '2026-02-13 22:11:50'),
('527', '4', '576', 'cash', '20.50', '0.00', NULL, '2026-02-13 22:22:27', '2026-02-13 22:22:27'),
('528', '4', '577', 'cash', '4.00', '0.00', NULL, '2026-02-13 22:28:25', '2026-02-13 22:28:25'),
('529', '4', '578', 'cash', '10.00', '0.00', NULL, '2026-02-13 22:36:39', '2026-02-13 22:36:39'),
('530', '4', '579', 'card', '1.50', '0.00', NULL, '2026-02-13 22:37:03', '2026-02-13 22:37:03'),
('531', '4', '561', 'cash', '89.50', '0.00', NULL, '2026-02-13 22:46:20', '2026-02-13 22:46:20'),
('532', '4', '580', 'cash', '18.50', '0.00', NULL, '2026-02-13 22:50:35', '2026-02-13 22:50:35'),
('533', '4', '581', 'cash', '21.00', '0.00', NULL, '2026-02-13 22:56:36', '2026-02-13 22:56:36'),
('534', '4', '567', 'card', '57.50', '0.00', NULL, '2026-02-13 22:59:37', '2026-02-13 22:59:37'),
('535', '4', '582', 'cash', '4.00', '0.00', NULL, '2026-02-13 23:14:33', '2026-02-13 23:14:33'),
('536', '4', '583', 'cash', '6.00', '0.00', NULL, '2026-02-13 23:23:29', '2026-02-13 23:23:29'),
('537', '4', '584', 'card', '9.50', '0.00', NULL, '2026-02-13 23:33:29', '2026-02-13 23:33:29'),
('538', '4', '585', 'card', '12.00', '0.00', NULL, '2026-02-13 23:53:32', '2026-02-13 23:53:32'),
('539', '4', '586', 'cash', '4.00', '0.00', NULL, '2026-02-13 23:54:20', '2026-02-13 23:54:20'),
('540', '4', '587', 'card', '2.50', '0.00', NULL, '2026-02-13 23:56:39', '2026-02-13 23:56:39'),
('541', '4', '588', 'card', '15.00', '0.00', NULL, '2026-02-14 00:07:01', '2026-02-14 00:07:01'),
('542', '4', '572', 'card', '66.50', '0.00', NULL, '2026-02-14 00:11:00', '2026-02-14 00:11:00'),
('543', '4', '589', 'card', '16.00', '0.00', NULL, '2026-02-14 00:13:21', '2026-02-14 00:13:21'),
('544', '4', '590', 'card', '4.00', '0.00', NULL, '2026-02-14 00:52:42', '2026-02-14 00:52:42'),
('545', '4', '591', 'cash', '10.50', '0.00', NULL, '2026-02-14 01:08:42', '2026-02-14 01:08:42'),
('546', '4', '592', 'card', '12.00', '0.00', NULL, '2026-02-14 02:13:20', '2026-02-14 02:13:20'),
('547', '4', '593', 'card', '12.00', '0.00', NULL, '2026-02-14 02:23:11', '2026-02-14 02:23:11'),
('548', '4', '594', 'cash', '4.50', '0.00', NULL, '2026-02-14 03:11:17', '2026-02-14 03:11:17'),
('549', '4', '595', 'cash', '12.00', '0.00', NULL, '2026-02-14 18:52:56', '2026-02-14 18:52:56'),
('550', '4', '596', 'cash', '6.00', '0.00', NULL, '2026-02-14 19:45:20', '2026-02-14 19:45:20'),
('551', '4', '598', 'cash', '4.00', '0.00', NULL, '2026-02-14 19:57:04', '2026-02-14 19:57:04'),
('552', '4', '599', 'cash', '9.00', '0.00', NULL, '2026-02-14 19:58:37', '2026-02-14 19:58:37'),
('553', '4', '601', 'cash', '4.00', '0.00', NULL, '2026-02-14 21:05:09', '2026-02-14 21:05:09'),
('554', '4', '602', 'cash', '8.00', '0.00', NULL, '2026-02-14 21:26:10', '2026-02-14 21:26:10'),
('555', '4', '604', 'cash', '4.00', '0.00', NULL, '2026-02-14 22:03:31', '2026-02-14 22:03:31'),
('556', '4', '605', 'cash', '8.00', '0.00', NULL, '2026-02-14 22:20:49', '2026-02-14 22:20:49'),
('557', '4', '606', 'cash', '10.50', '0.00', NULL, '2026-02-14 22:40:38', '2026-02-14 22:40:38'),
('558', '4', '607', 'cash', '4.00', '0.00', NULL, '2026-02-14 22:59:33', '2026-02-14 22:59:33'),
('559', '4', '608', 'cash', '4.00', '0.00', NULL, '2026-02-14 23:01:12', '2026-02-14 23:01:12'),
('560', '4', '609', 'cash', '9.00', '0.00', NULL, '2026-02-14 23:04:25', '2026-02-14 23:04:25'),
('561', '4', '612', 'cash', '3.00', '0.00', NULL, '2026-02-14 23:18:34', '2026-02-14 23:18:34'),
('562', '4', '613', 'cash', '26.00', '0.00', NULL, '2026-02-14 23:26:58', '2026-02-14 23:26:58'),
('563', '4', '614', 'cash', '9.00', '0.00', NULL, '2026-02-14 23:31:44', '2026-02-14 23:31:44'),
('564', '4', '616', 'cash', '4.00', '0.00', NULL, '2026-02-14 23:33:59', '2026-02-14 23:33:59'),
('565', '4', '615', 'cash', '12.00', '0.00', NULL, '2026-02-14 23:36:17', '2026-02-14 23:36:17'),
('566', '4', '618', 'cash', '4.00', '0.00', NULL, '2026-02-15 00:01:23', '2026-02-15 00:01:23'),
('567', '4', '619', 'cash', '6.00', '0.00', NULL, '2026-02-15 00:04:24', '2026-02-15 00:04:24'),
('568', '4', '620', 'cash', '15.00', '0.00', NULL, '2026-02-15 00:10:22', '2026-02-15 00:10:22'),
('569', '4', '621', 'cash', '8.00', '0.00', NULL, '2026-02-15 00:14:42', '2026-02-15 00:14:42'),
('570', '4', '622', 'cash', '15.00', '0.00', NULL, '2026-02-15 00:20:15', '2026-02-15 00:20:15'),
('571', '4', '623', 'cash', '4.50', '0.00', NULL, '2026-02-15 00:21:43', '2026-02-15 00:21:43'),
('572', '4', '624', 'cash', '8.00', '0.00', NULL, '2026-02-15 01:00:39', '2026-02-15 01:00:39'),
('573', '4', '625', 'cash', '1.50', '0.00', NULL, '2026-02-15 01:02:02', '2026-02-15 01:02:02'),
('574', '4', '626', 'cash', '9.00', '0.00', NULL, '2026-02-15 01:04:19', '2026-02-15 01:04:19'),
('575', '4', '627', 'cash', '9.00', '0.00', NULL, '2026-02-15 01:13:14', '2026-02-15 01:13:14'),
('576', '4', '628', 'cash', '6.00', '0.00', NULL, '2026-02-15 01:13:33', '2026-02-15 01:13:33'),
('577', '4', '629', 'cash', '6.00', '0.00', NULL, '2026-02-15 01:28:29', '2026-02-15 01:28:29'),
('578', '4', '630', 'cash', '6.50', '0.00', NULL, '2026-02-15 01:51:04', '2026-02-15 01:51:04'),
('579', '4', '611', 'card', '39.00', '0.00', NULL, '2026-02-15 02:06:45', '2026-02-15 02:06:45'),
('580', '4', '617', 'cash', '209.00', '0.00', NULL, '2026-02-15 02:15:15', '2026-02-15 02:15:15'),
('581', '4', '631', 'cash', '4.00', '0.00', NULL, '2026-02-15 03:06:03', '2026-02-15 03:06:03'),
('582', '4', '632', 'cash', '4.00', '0.00', NULL, '2026-02-15 03:06:34', '2026-02-15 03:06:34'),
('583', '4', '633', 'cash', '16.00', '0.00', NULL, '2026-02-15 04:05:12', '2026-02-15 04:05:12'),
('584', '4', '635', 'cash', '5.00', '0.00', NULL, '2026-02-15 21:12:31', '2026-02-15 21:12:31'),
('585', '4', '636', 'card', '4.00', '0.00', NULL, '2026-02-15 21:31:34', '2026-02-15 21:31:34'),
('586', '4', '637', 'card', '15.00', '0.00', NULL, '2026-02-15 21:41:48', '2026-02-15 21:41:48'),
('587', '4', '638', 'cash', '5.50', '0.00', NULL, '2026-02-15 21:53:18', '2026-02-15 21:53:18'),
('588', '4', '639', 'card', '18.00', '0.00', NULL, '2026-02-15 22:04:33', '2026-02-15 22:04:33'),
('589', '4', '640', 'card', '6.00', '0.00', NULL, '2026-02-15 22:13:57', '2026-02-15 22:14:09'),
('590', '4', '641', 'cash', '8.00', '0.00', NULL, '2026-02-15 22:25:00', '2026-02-15 22:25:00'),
('591', '4', '642', 'cash', '1.50', '0.00', NULL, '2026-02-15 22:26:17', '2026-02-15 22:26:17'),
('592', '4', '643', 'card', '15.00', '0.00', NULL, '2026-02-15 22:30:56', '2026-02-15 22:30:56'),
('593', '4', '644', 'card', '18.00', '0.00', NULL, '2026-02-15 22:43:50', '2026-02-15 22:43:50'),
('594', '4', '645', 'card', '6.00', '0.00', NULL, '2026-02-15 22:57:27', '2026-02-15 22:57:27'),
('595', '4', '646', 'cash', '8.00', '0.00', NULL, '2026-02-15 23:00:54', '2026-02-15 23:00:54'),
('596', '4', '647', 'card', '18.00', '0.00', NULL, '2026-02-15 23:22:19', '2026-02-15 23:22:19'),
('597', '4', '648', 'cash', '8.00', '0.00', NULL, '2026-02-15 23:37:23', '2026-02-15 23:37:23'),
('598', '4', '650', 'cash', '16.00', '0.00', NULL, '2026-02-16 00:29:55', '2026-02-16 00:29:55'),
('599', '4', '649', 'card', '6.00', '0.00', NULL, '2026-02-16 00:49:01', '2026-02-16 00:49:01'),
('600', '4', '651', 'card', '6.00', '0.00', NULL, '2026-02-16 00:50:50', '2026-02-16 00:50:50'),
('601', '4', '652', 'card', '3.00', '0.00', NULL, '2026-02-16 19:36:19', '2026-02-16 19:36:19'),
('602', '4', '653', 'card', '4.00', '0.00', NULL, '2026-02-16 20:30:17', '2026-02-16 20:30:17'),
('603', '4', '654', 'card', '9.50', '0.00', NULL, '2026-02-16 20:54:02', '2026-02-16 20:54:02'),
('604', '4', '655', 'card', '3.00', '0.00', NULL, '2026-02-16 21:33:08', '2026-02-16 21:33:08'),
('605', '4', '656', 'card', '4.00', '0.00', NULL, '2026-02-16 21:51:50', '2026-02-16 21:51:50'),
('606', '4', '657', 'card', '10.50', '0.00', NULL, '2026-02-16 21:58:20', '2026-02-16 21:58:20'),
('607', '4', '658', 'card', '5.00', '0.00', NULL, '2026-02-16 22:02:22', '2026-02-16 22:02:22'),
('608', '4', '659', 'cash', '11.00', '0.00', NULL, '2026-02-16 22:14:37', '2026-02-16 22:14:37'),
('609', '4', '660', 'card', '8.00', '0.00', NULL, '2026-02-16 22:23:31', '2026-02-16 22:23:31'),
('610', '4', '662', 'card', '6.50', '0.00', NULL, '2026-02-16 22:37:31', '2026-02-16 22:37:31'),
('611', '4', '661', 'cash', '13.00', '0.00', NULL, '2026-02-16 23:03:56', '2026-02-16 23:03:56'),
('612', '4', '663', 'card', '8.00', '0.00', NULL, '2026-02-16 23:12:08', '2026-02-16 23:12:08'),
('613', '4', '665', 'cash', '1.50', '0.00', NULL, '2026-02-17 00:13:06', '2026-02-17 00:13:06'),
('614', '4', '666', 'cash', '4.00', '0.00', NULL, '2026-02-17 00:51:05', '2026-02-17 00:51:05'),
('615', '4', '667', 'card', '8.00', '0.00', NULL, '2026-02-17 01:01:31', '2026-02-17 01:01:31'),
('616', '4', '668', 'card', '8.00', '0.00', NULL, '2026-02-17 01:05:37', '2026-02-17 01:05:37'),
('617', '4', '664', 'card', '16.00', '0.00', NULL, '2026-02-17 01:15:26', '2026-02-17 01:15:26'),
('618', '4', '669', 'card', '4.50', '0.00', NULL, '2026-02-17 02:00:15', '2026-02-17 02:00:15'),
('619', '4', '670', 'cash', '4.00', '0.00', NULL, '2026-02-17 02:19:34', '2026-02-17 02:19:34'),
('620', '4', '672', 'card', '12.00', '0.00', NULL, '2026-02-17 02:24:40', '2026-02-17 02:24:40'),
('621', '4', '673', 'card', '8.00', '0.00', NULL, '2026-02-17 02:50:41', '2026-02-17 02:50:41'),
('622', '4', '674', 'card', '1.50', '0.00', NULL, '2026-02-17 02:54:48', '2026-02-17 02:54:48'),
('623', '4', '676', 'cash', '4.00', '0.00', NULL, '2026-02-17 20:10:50', '2026-02-17 20:10:50'),
('624', '4', '677', 'card', '15.00', '0.00', NULL, '2026-02-17 20:17:16', '2026-02-17 20:17:16'),
('625', '4', '679', 'cash', '3.00', '0.00', NULL, '2026-02-17 20:47:50', '2026-02-17 20:47:50'),
('626', '4', '680', 'card', '6.00', '0.00', NULL, '2026-02-17 22:24:39', '2026-02-17 22:24:39'),
('627', '4', '681', 'card', '9.00', '0.00', NULL, '2026-02-17 23:13:06', '2026-02-17 23:13:06'),
('628', '4', '682', 'card', '4.00', '0.00', NULL, '2026-02-17 23:53:37', '2026-02-17 23:53:37'),
('629', '4', '683', 'card', '4.00', '0.00', NULL, '2026-02-17 23:54:27', '2026-02-17 23:54:27'),
('630', '4', '675', 'cash', '16.00', '0.00', NULL, '2026-02-17 23:55:46', '2026-02-17 23:55:46'),
('631', '4', '684', 'card', '4.00', '0.00', NULL, '2026-02-17 23:56:39', '2026-02-17 23:56:39'),
('632', '4', '686', 'cash', '8.00', '0.00', NULL, '2026-02-18 00:05:49', '2026-02-18 00:05:49'),
('633', '4', '687', 'card', '12.00', '0.00', NULL, '2026-02-18 00:14:40', '2026-02-18 00:14:40'),
('634', '4', '688', 'cash', '9.00', '0.00', NULL, '2026-02-18 00:16:39', '2026-02-18 00:16:39'),
('635', '4', '685', 'card', '6.00', '0.00', NULL, '2026-02-18 00:36:32', '2026-02-18 00:36:32'),
('636', '4', '690', 'card', '5.00', '0.00', NULL, '2026-02-18 01:08:55', '2026-02-18 01:08:55'),
('637', '4', '678', 'cash', '49.00', '0.00', NULL, '2026-02-18 01:12:29', '2026-02-18 01:12:29'),
('638', '4', '689', 'card', '19.50', '0.00', NULL, '2026-02-18 01:38:22', '2026-02-18 01:38:22'),
('639', '4', '692', 'cash', '3.00', '0.00', NULL, '2026-02-18 01:58:33', '2026-02-18 01:58:33'),
('640', '4', '693', 'card', '9.00', '0.00', NULL, '2026-02-18 02:19:43', '2026-02-18 02:19:43'),
('641', '4', '691', 'card', '8.00', '0.00', NULL, '2026-02-18 02:21:22', '2026-02-18 02:21:22'),
('642', '4', '694', 'cash', '8.00', '0.00', NULL, '2026-02-18 19:57:51', '2026-02-18 19:57:51'),
('643', '4', '695', 'cash', '9.00', '0.00', NULL, '2026-02-18 22:05:28', '2026-02-18 22:05:28'),
('644', '4', '696', 'card', '9.00', '0.00', NULL, '2026-02-18 22:49:05', '2026-02-18 22:49:05'),
('645', '4', '698', 'cash', '8.00', '0.00', NULL, '2026-02-19 01:18:14', '2026-02-19 01:18:14'),
('646', '4', '697', 'cash', '24.00', '0.00', NULL, '2026-02-19 20:09:18', '2026-02-19 20:09:18'),
('647', '4', '699', 'cash', '16.00', '0.00', NULL, '2026-02-19 21:51:18', '2026-02-19 21:51:18'),
('648', '4', '700', 'cash', '12.00', '0.00', NULL, '2026-02-19 21:56:48', '2026-02-19 21:56:48'),
('649', '4', '701', 'cash', '36.50', '0.00', NULL, '2026-02-20 00:44:17', '2026-02-20 00:44:17'),
('650', '4', '702', 'cash', '9.00', '0.00', NULL, '2026-02-20 18:56:28', '2026-02-20 18:56:28'),
('651', '4', '704', 'cash', '4.00', '0.00', NULL, '2026-02-20 19:04:04', '2026-02-20 19:04:04'),
('652', '4', '705', 'cash', '4.00', '0.00', NULL, '2026-02-20 19:13:07', '2026-02-20 19:13:07'),
('653', '4', '706', 'cash', '6.00', '0.00', NULL, '2026-02-20 19:17:37', '2026-02-20 19:17:37'),
('654', '4', '707', 'cash', '9.00', '0.00', NULL, '2026-02-20 19:30:58', '2026-02-20 19:30:58'),
('655', '4', '708', 'cash', '6.00', '0.00', NULL, '2026-02-20 19:42:45', '2026-02-20 19:42:45'),
('656', '4', '709', 'cash', '15.00', '0.00', NULL, '2026-02-20 20:59:59', '2026-02-20 20:59:59'),
('657', '4', '710', 'cash', '8.00', '0.00', NULL, '2026-02-20 21:02:19', '2026-02-20 21:02:19'),
('658', '4', '711', 'cash', '2.50', '0.00', NULL, '2026-02-20 21:15:53', '2026-02-20 21:15:53'),
('659', '4', '712', 'cash', '4.00', '0.00', NULL, '2026-02-20 21:22:58', '2026-02-20 21:22:58'),
('660', '4', '713', 'cash', '8.00', '0.00', NULL, '2026-02-20 21:36:07', '2026-02-20 21:36:07'),
('661', '4', '714', 'cash', '13.00', '0.00', NULL, '2026-02-20 21:47:12', '2026-02-20 21:47:12'),
('662', '4', '715', 'card', '5.50', '0.00', NULL, '2026-02-20 22:22:20', '2026-02-20 22:22:20'),
('663', '4', '703', 'card', '46.00', '0.00', NULL, '2026-02-20 22:31:22', '2026-02-20 22:31:22'),
('664', '4', '718', 'cash', '8.00', '0.00', NULL, '2026-02-20 22:35:45', '2026-02-20 22:35:45'),
('665', '4', '717', 'cash', '8.50', '0.00', NULL, '2026-02-20 22:39:10', '2026-02-20 22:39:10'),
('666', '4', '719', 'card', '4.00', '0.00', NULL, '2026-02-20 22:51:28', '2026-02-20 22:51:28'),
('667', '4', '722', 'cash', '6.00', '0.00', NULL, '2026-02-20 23:24:02', '2026-02-20 23:24:02'),
('668', '4', '716', 'cash', '60.00', '0.00', NULL, '2026-02-20 23:44:38', '2026-02-20 23:44:38'),
('669', '4', '720', 'card', '8.00', '0.00', NULL, '2026-02-20 23:45:48', '2026-02-20 23:45:48'),
('670', '4', '723', 'cash', '42.00', '0.00', NULL, '2026-02-20 23:47:07', '2026-02-20 23:47:07'),
('671', '4', '725', 'cash', '6.00', '0.00', NULL, '2026-02-20 23:55:45', '2026-02-20 23:55:45'),
('672', '4', '726', 'cash', '9.00', '0.00', NULL, '2026-02-21 00:00:06', '2026-02-21 00:00:06'),
('673', '4', '727', 'cash', '3.00', '0.00', NULL, '2026-02-21 00:01:06', '2026-02-21 00:01:06'),
('674', '4', '728', 'cash', '3.00', '0.00', NULL, '2026-02-21 00:09:48', '2026-02-21 00:09:48'),
('675', '4', '729', 'card', '5.50', '0.00', NULL, '2026-02-21 00:14:40', '2026-02-21 00:14:40'),
('676', '4', '721', 'cash', '4.00', '0.00', NULL, '2026-02-21 00:16:49', '2026-02-21 00:16:49'),
('677', '4', '730', 'cash', '4.00', '0.00', NULL, '2026-02-21 01:15:02', '2026-02-21 01:15:02'),
('678', '4', '731', 'cash', '8.00', '0.00', NULL, '2026-02-21 01:26:41', '2026-02-21 01:26:41'),
('679', '4', '724', 'cash', '22.50', '0.00', NULL, '2026-02-21 01:34:29', '2026-02-21 01:34:29'),
('680', '4', '732', 'cash', '6.00', '0.00', NULL, '2026-02-21 02:14:21', '2026-02-21 02:14:21'),
('681', '4', '733', 'cash', '3.00', '0.00', NULL, '2026-02-21 03:30:06', '2026-02-21 03:30:06'),
('682', '4', '734', 'cash', '8.50', '0.00', NULL, '2026-02-21 03:35:50', '2026-02-21 03:35:50'),
('683', '4', '735', 'cash', '4.00', '0.00', NULL, '2026-02-21 18:18:24', '2026-02-21 18:18:24'),
('684', '4', '737', 'cash', '1.50', '0.00', NULL, '2026-02-22 00:11:14', '2026-02-22 00:11:14'),
('685', '4', '738', 'cash', '6.50', '0.00', NULL, '2026-02-22 00:13:19', '2026-02-22 00:13:19'),
('686', '4', '739', 'cash', '8.50', '0.00', NULL, '2026-02-22 01:21:18', '2026-02-22 01:21:18'),
('687', '4', '740', 'cash', '15.00', '0.00', NULL, '2026-02-22 01:35:38', '2026-02-22 01:35:38'),
('688', '4', '741', 'cash', '2.50', '0.00', NULL, '2026-02-22 01:57:10', '2026-02-22 01:57:10'),
('689', '4', '742', 'cash', '6.00', '0.00', NULL, '2026-02-22 02:31:09', '2026-02-22 02:31:09'),
('690', '4', '743', 'cash', '4.00', '0.00', NULL, '2026-02-22 02:48:45', '2026-02-22 02:48:45'),
('691', '4', '736', 'card', '1739.00', '0.00', NULL, '2026-02-22 02:49:25', '2026-02-22 02:49:25'),
('692', '4', '744', 'cash', '11.00', '0.00', NULL, '2026-02-22 03:04:58', '2026-02-22 03:04:58'),
('693', '4', '745', 'cash', '13.00', '0.00', NULL, '2026-02-23 20:01:04', '2026-02-23 20:01:04'),
('694', '4', '746', 'cash', '19.50', '0.00', NULL, '2026-02-23 23:03:07', '2026-02-23 23:03:07'),
('695', '4', '747', 'cash', '4.00', '0.00', NULL, '2026-02-23 23:04:14', '2026-02-23 23:04:14'),
('696', '4', '748', 'cash', '10.50', '0.00', NULL, '2026-02-23 23:27:08', '2026-02-23 23:27:08'),
('697', '4', '749', 'card', '18.50', '0.00', NULL, '2026-02-23 23:32:27', '2026-02-23 23:32:27'),
('698', '4', '750', 'card', '33.00', '0.00', NULL, '2026-02-24 00:05:37', '2026-02-24 00:05:37'),
('699', '4', '752', 'card', '18.50', '0.00', NULL, '2026-02-24 00:34:22', '2026-02-24 00:34:22'),
('700', '4', '754', 'cash', '8.00', '0.00', NULL, '2026-02-24 00:47:04', '2026-02-24 00:47:04'),
('701', '4', '755', 'card', '9.00', '0.00', NULL, '2026-02-24 01:40:21', '2026-02-24 01:40:21'),
('702', '4', '756', 'card', '4.00', '0.00', NULL, '2026-02-24 01:50:16', '2026-02-24 01:50:16'),
('703', '4', '753', 'card', '12.00', '0.00', NULL, '2026-02-24 01:50:57', '2026-02-24 01:50:57'),
('704', '4', '758', 'card', '6.00', '0.00', NULL, '2026-02-24 02:00:54', '2026-02-24 02:00:54'),
('705', '4', '751', 'cash', '2.50', '0.00', NULL, '2026-02-24 02:01:15', '2026-02-24 02:01:15'),
('706', '4', '759', 'cash', '4.00', '0.00', NULL, '2026-02-24 02:06:42', '2026-02-24 02:06:42'),
('707', '4', '757', 'cash', '4.00', '0.00', NULL, '2026-02-24 02:12:51', '2026-02-24 02:12:51'),
('708', '4', '761', 'card', '18.50', '0.00', NULL, '2026-02-24 02:30:57', '2026-02-24 02:30:57'),
('709', '4', '762', 'card', '9.00', '0.00', NULL, '2026-02-24 02:44:48', '2026-02-24 02:44:48'),
('710', '4', '760', 'cash', '13.00', '0.00', NULL, '2026-02-24 02:52:48', '2026-02-24 02:52:48'),
('711', '4', '763', 'cash', '4.00', '0.00', NULL, '2026-02-24 03:21:32', '2026-02-24 03:21:32'),
('712', '4', '765', 'card', '30.00', '0.00', NULL, '2026-02-24 18:48:47', '2026-02-24 18:49:06'),
('713', '4', '766', 'card', '65.00', '0.00', NULL, '2026-02-24 19:26:55', '2026-02-24 19:26:55'),
('714', '4', '767', 'cash', '4.00', '0.00', NULL, '2026-02-24 19:43:31', '2026-02-24 19:43:31'),
('715', '4', '768', 'card', '8.00', '0.00', NULL, '2026-02-24 20:08:47', '2026-02-24 20:08:47'),
('716', '4', '769', 'card', '6.00', '0.00', NULL, '2026-02-24 20:14:21', '2026-02-24 20:14:21'),
('717', '4', '764', 'cash', '15.00', '0.00', NULL, '2026-02-24 21:43:03', '2026-02-24 21:43:03'),
('718', '4', '771', 'cash', '3.00', '0.00', NULL, '2026-02-24 21:44:41', '2026-02-24 21:44:41'),
('719', '4', '770', 'card', '23.00', '0.00', NULL, '2026-02-24 21:48:57', '2026-02-24 21:48:57'),
('720', '4', '772', 'cash', '38.00', '0.00', NULL, '2026-02-24 23:53:10', '2026-02-24 23:53:10'),
('721', '4', '774', 'cash', '8.00', '0.00', NULL, '2026-02-25 00:50:08', '2026-02-25 00:50:08'),
('722', '4', '776', 'cash', '3.00', '0.00', NULL, '2026-02-25 00:57:28', '2026-02-25 00:57:28'),
('723', '4', '775', 'card', '11.00', '0.00', NULL, '2026-02-25 01:06:22', '2026-02-25 01:06:22'),
('724', '4', '773', 'card', '8.00', '0.00', NULL, '2026-02-25 01:11:16', '2026-02-25 01:11:16'),
('725', '4', '777', 'cash', '9.00', '0.00', NULL, '2026-02-25 01:32:49', '2026-02-25 01:32:49'),
('726', '4', '778', 'cash', '20.00', '0.00', NULL, '2026-02-25 23:18:31', '2026-02-25 23:18:31'),
('727', '4', '779', 'cash', '10.00', '0.00', NULL, '2026-02-25 23:19:40', '2026-02-25 23:19:40'),
('728', '4', '780', 'card', '12.00', '0.00', NULL, '2026-02-25 23:19:59', '2026-02-25 23:19:59'),
('729', '4', '781', 'card', '11.00', '0.00', NULL, '2026-02-26 00:13:30', '2026-02-26 00:13:30'),
('730', '4', '782', 'card', '7.00', '0.00', NULL, '2026-02-26 00:25:06', '2026-02-26 00:25:06'),
('731', '4', '783', 'cash', '10.00', '0.00', NULL, '2026-02-26 00:52:05', '2026-02-26 00:52:05'),
('732', '4', '784', 'cash', '21.00', '0.00', NULL, '2026-02-26 01:06:06', '2026-02-26 01:06:06'),
('733', '4', '785', 'cash', '21.00', '0.00', NULL, '2026-02-26 01:32:04', '2026-02-26 01:32:04'),
('734', '4', '786', 'cash', '9.00', '0.00', NULL, '2026-02-26 01:48:57', '2026-02-26 01:48:57'),
('735', '4', '787', 'cash', '70.00', '0.00', NULL, '2026-02-27 01:57:00', '2026-02-27 01:57:00'),
('736', '4', '790', 'cash', '4.00', '0.00', NULL, '2026-02-27 19:39:15', '2026-02-27 19:39:15'),
('737', '4', '789', 'cash', '32.50', '0.00', NULL, '2026-02-27 20:18:29', '2026-02-27 20:18:29'),
('738', '4', '791', 'card', '7.00', '0.00', NULL, '2026-02-27 20:36:52', '2026-02-27 20:36:52'),
('739', '4', '792', 'card', '12.00', '0.00', NULL, '2026-02-27 20:39:16', '2026-02-27 20:39:16'),
('740', '4', '793', 'card', '18.00', '0.00', NULL, '2026-02-27 21:07:41', '2026-02-27 21:07:41'),
('741', '4', '795', 'card', '2.50', '0.00', NULL, '2026-02-27 21:20:35', '2026-02-27 21:20:35'),
('742', '4', '796', 'card', '2.50', '0.00', NULL, '2026-02-27 21:20:56', '2026-02-27 21:20:56'),
('743', '4', '798', 'cash', '15.00', '0.00', NULL, '2026-02-27 21:31:25', '2026-02-27 21:31:25'),
('744', '4', '788', 'cash', '73.50', '0.00', NULL, '2026-02-27 22:13:17', '2026-02-27 22:13:17'),
('745', '4', '799', 'cash', '6.50', '0.00', NULL, '2026-02-27 22:26:32', '2026-02-27 22:26:32'),
('746', '4', '794', 'cash', '19.50', '0.00', NULL, '2026-02-27 22:42:44', '2026-02-27 22:42:44'),
('747', '4', '797', 'card', '52.00', '0.00', NULL, '2026-02-27 22:44:32', '2026-02-27 22:44:32'),
('748', '4', '801', 'cash', '3.00', '0.00', NULL, '2026-02-27 22:46:24', '2026-02-27 22:46:24'),
('749', '4', '802', 'card', '4.50', '0.00', NULL, '2026-02-27 22:49:53', '2026-02-27 22:49:53'),
('750', '4', '803', 'cash', '12.50', '0.00', NULL, '2026-02-27 23:43:49', '2026-02-27 23:43:49'),
('751', '4', '804', 'card', '18.00', '0.00', NULL, '2026-02-28 01:04:49', '2026-02-28 01:04:49'),
('752', '4', '805', 'card', '6.00', '0.00', NULL, '2026-02-28 01:05:14', '2026-02-28 01:05:14'),
('753', '4', '806', 'cash', '6.00', '0.00', NULL, '2026-02-28 01:17:28', '2026-02-28 01:17:28'),
('754', '4', '807', 'cash', '6.00', '0.00', NULL, '2026-02-28 01:20:49', '2026-02-28 01:20:49'),
('755', '4', '808', 'card', '12.50', '0.00', NULL, '2026-02-28 01:34:02', '2026-02-28 01:34:02'),
('756', '4', '809', 'cash', '3.00', '0.00', NULL, '2026-02-28 02:01:20', '2026-02-28 02:01:20'),
('757', '4', '800', 'card', '254.50', '0.00', NULL, '2026-02-28 02:12:49', '2026-02-28 02:12:49'),
('758', '4', '810', 'cash', '3.00', '0.00', NULL, '2026-02-28 02:35:19', '2026-02-28 02:35:19'),
('759', '4', '811', 'cash', '33.50', '0.00', NULL, '2026-02-28 02:51:51', '2026-02-28 02:51:51'),
('760', '4', '813', 'card', '6.00', '0.00', NULL, '2026-02-28 19:57:36', '2026-02-28 19:57:36'),
('761', '4', '814', 'cash', '6.00', '0.00', NULL, '2026-02-28 20:11:46', '2026-02-28 20:11:46'),
('762', '4', '815', 'cash', '2.50', '0.00', NULL, '2026-02-28 20:15:43', '2026-02-28 20:15:43'),
('763', '4', '816', 'cash', '5.50', '0.00', NULL, '2026-02-28 20:18:04', '2026-02-28 20:18:04'),
('764', '4', '819', 'cash', '4.00', '0.00', NULL, '2026-02-28 20:56:55', '2026-02-28 20:56:55'),
('765', '4', '821', 'cash', '6.00', '0.00', NULL, '2026-02-28 21:07:09', '2026-02-28 21:07:09'),
('766', '4', '812', 'cash', '5.00', '0.00', NULL, '2026-02-28 21:31:57', '2026-02-28 21:31:57'),
('767', '4', '822', 'card', '46.50', '0.00', NULL, '2026-02-28 21:39:29', '2026-02-28 21:39:29'),
('768', '4', '820', 'cash', '5.50', '0.00', NULL, '2026-02-28 21:52:12', '2026-02-28 21:52:12'),
('769', '4', '823', 'cash', '6.50', '0.00', NULL, '2026-02-28 21:55:09', '2026-02-28 21:55:09'),
('770', '4', '824', 'cash', '4.00', '0.00', NULL, '2026-02-28 22:01:05', '2026-02-28 22:01:05'),
('771', '4', '825', 'card', '10.50', '0.00', NULL, '2026-02-28 22:25:45', '2026-02-28 22:25:45'),
('772', '4', '826', 'cash', '1.50', '0.00', NULL, '2026-02-28 22:59:22', '2026-02-28 22:59:22'),
('773', '4', '818', 'cash', '13.50', '0.00', NULL, '2026-02-28 23:02:24', '2026-02-28 23:02:24'),
('774', '4', '827', 'cash', '5.50', '0.00', NULL, '2026-02-28 23:30:29', '2026-02-28 23:30:29'),
('775', '4', '828', 'cash', '6.00', '0.00', NULL, '2026-02-28 23:31:51', '2026-02-28 23:31:51'),
('776', '4', '829', 'cash', '1.00', '0.00', NULL, '2026-02-28 23:36:05', '2026-02-28 23:36:05'),
('777', '4', '830', 'cash', '6.00', '0.00', NULL, '2026-02-28 23:37:35', '2026-02-28 23:37:35'),
('778', '4', '832', 'cash', '15.00', '0.00', NULL, '2026-03-01 00:13:36', '2026-03-01 00:13:36'),
('779', '4', '833', 'card', '26.50', '0.00', NULL, '2026-03-01 00:24:29', '2026-03-01 00:24:29'),
('780', '4', '834', 'card', '20.00', '0.00', NULL, '2026-03-01 00:25:23', '2026-03-01 00:25:23'),
('781', '4', '831', 'cash', '7.50', '0.00', NULL, '2026-03-01 00:43:53', '2026-03-01 00:43:53'),
('782', '4', '836', 'cash', '10.00', '0.00', NULL, '2026-03-01 00:46:45', '2026-03-01 00:46:45'),
('783', '4', '838', 'card', '12.50', '0.00', NULL, '2026-03-01 01:02:20', '2026-03-01 01:02:20'),
('784', '4', '835', 'card', '11.00', '0.00', NULL, '2026-03-01 01:04:21', '2026-03-01 01:04:21'),
('785', '4', '839', 'cash', '1.50', '0.00', NULL, '2026-03-01 01:05:43', '2026-03-01 01:05:43'),
('786', '4', '840', 'cash', '17.50', '0.00', NULL, '2026-03-01 01:11:29', '2026-03-01 01:11:29'),
('787', '4', '837', 'cash', '2.00', '0.00', NULL, '2026-03-01 01:46:12', '2026-03-01 01:46:12'),
('788', '4', '841', 'cash', '18.00', '0.00', NULL, '2026-03-01 02:11:46', '2026-03-01 02:11:46'),
('789', '4', '842', 'cash', '3.50', '0.00', NULL, '2026-03-01 02:12:24', '2026-03-01 02:12:24'),
('790', '4', '843', 'card', '59.00', '0.00', NULL, '2026-03-01 02:16:16', '2026-03-01 02:16:16'),
('791', '4', '844', 'cash', '10.00', '0.00', NULL, '2026-03-01 02:35:28', '2026-03-01 02:35:28'),
('792', '4', '845', 'card', '4.00', '0.00', NULL, '2026-03-01 02:40:15', '2026-03-01 02:40:15'),
('793', '4', '846', 'card', '8.00', '0.00', NULL, '2026-03-01 02:41:22', '2026-03-01 02:41:22'),
('794', '4', '848', 'card', '3.50', '0.00', NULL, '2026-03-01 02:48:40', '2026-03-01 02:48:40'),
('795', '4', '847', 'card', '10.50', '0.00', NULL, '2026-03-01 02:49:21', '2026-03-01 02:49:21'),
('796', '4', '849', 'card', '10.00', '0.00', NULL, '2026-03-01 02:51:47', '2026-03-01 02:51:47'),
('797', '4', '850', 'card', '4.00', '0.00', NULL, '2026-03-01 02:54:01', '2026-03-01 02:54:01'),
('798', '4', '851', 'card', '19.50', '0.00', NULL, '2026-03-01 02:56:13', '2026-03-01 02:56:13'),
('799', '4', '852', 'cash', '12.00', '0.00', NULL, '2026-03-01 02:57:19', '2026-03-01 02:57:19'),
('800', '4', '853', 'cash', '7.00', '0.00', NULL, '2026-03-01 02:57:48', '2026-03-01 02:57:48'),
('801', '4', '854', 'card', '4.00', '0.00', NULL, '2026-03-01 03:00:13', '2026-03-01 03:00:13'),
('802', '4', '855', 'cash', '4.00', '0.00', NULL, '2026-03-01 03:00:29', '2026-03-01 03:00:29'),
('803', '4', '856', 'cash', '4.00', '0.00', NULL, '2026-03-01 03:06:29', '2026-03-01 03:06:29'),
('804', '4', '857', 'cash', '2.00', '0.00', NULL, '2026-03-01 03:09:14', '2026-03-01 03:09:14'),
('805', '4', '858', 'card', '4.00', '0.00', NULL, '2026-03-01 03:09:37', '2026-03-01 03:09:37'),
('806', '4', '859', 'card', '13.00', '0.00', NULL, '2026-03-01 03:15:14', '2026-03-01 03:15:14'),
('807', '4', '860', 'card', '7.00', '0.00', NULL, '2026-03-01 03:20:29', '2026-03-01 03:20:29'),
('808', '4', '861', 'cash', '3.50', '0.00', NULL, '2026-03-01 03:23:59', '2026-03-01 03:23:59'),
('809', '4', '862', 'cash', '9.50', '0.00', NULL, '2026-03-01 03:31:54', '2026-03-01 03:31:54'),
('810', '4', '863', 'cash', '10.50', '0.00', NULL, '2026-03-01 03:39:46', '2026-03-01 03:39:46'),
('811', '4', '864', 'card', '4.00', '0.00', NULL, '2026-03-01 03:45:43', '2026-03-01 03:45:43'),
('812', '4', '865', 'card', '7.00', '0.00', NULL, '2026-03-01 03:48:04', '2026-03-01 03:48:04'),
('813', '4', '866', 'cash', '2.00', '0.00', NULL, '2026-03-01 03:48:18', '2026-03-01 03:48:18'),
('814', '4', '867', 'card', '3.00', '0.00', NULL, '2026-03-01 03:49:22', '2026-03-01 03:49:22'),
('815', '4', '868', 'cash', '2.00', '0.00', NULL, '2026-03-01 03:52:47', '2026-03-01 03:52:47'),
('816', '4', '869', 'cash', '6.00', '0.00', NULL, '2026-03-01 03:55:38', '2026-03-01 03:55:38'),
('817', '4', '870', 'card', '12.50', '0.00', NULL, '2026-03-01 04:06:40', '2026-03-01 04:06:40'),
('818', '4', '817', 'card', '12.00', '0.00', NULL, '2026-03-01 04:07:48', '2026-03-01 04:07:48'),
('819', '4', '871', 'cash', '9.00', '0.00', NULL, '2026-03-01 19:01:20', '2026-03-01 19:01:20'),
('820', '4', '872', 'cash', '3.50', '0.00', NULL, '2026-03-01 19:49:44', '2026-03-01 19:49:44'),
('821', '4', '873', 'cash', '6.50', '0.00', NULL, '2026-03-01 19:51:12', '2026-03-01 19:51:12'),
('822', '4', '874', 'cash', '3.00', '0.00', NULL, '2026-03-01 20:25:57', '2026-03-01 20:25:57'),
('823', '4', '875', 'cash', '6.00', '0.00', NULL, '2026-03-01 22:28:44', '2026-03-01 22:28:44'),
('824', '4', '876', 'cash', '29.00', '0.00', NULL, '2026-03-01 22:30:17', '2026-03-01 22:30:17'),
('825', '4', '877', 'cash', '3.50', '0.00', NULL, '2026-03-01 22:56:49', '2026-03-01 22:56:49'),
('826', '4', '878', 'cash', '26.00', '0.00', NULL, '2026-03-01 23:46:09', '2026-03-01 23:46:09'),
('827', '4', '879', 'cash', '4.00', '0.00', NULL, '2026-03-02 00:56:00', '2026-03-02 00:56:00'),
('828', '4', '881', 'cash', '5.00', '0.00', NULL, '2026-03-02 19:05:56', '2026-03-02 19:05:56'),
('829', '4', '883', 'cash', '4.00', '0.00', NULL, '2026-03-02 20:02:51', '2026-03-02 20:02:51'),
('830', '4', '884', 'cash', '2.50', '0.00', NULL, '2026-03-02 20:26:15', '2026-03-02 20:26:15'),
('831', '4', '886', 'cash', '4.00', '0.00', NULL, '2026-03-02 21:58:50', '2026-03-02 21:58:50'),
('832', '4', '888', 'cash', '19.00', '0.00', NULL, '2026-03-02 22:38:48', '2026-03-02 22:38:48'),
('833', '4', '882', 'card', '17.00', '0.00', NULL, '2026-03-02 22:54:32', '2026-03-02 22:54:32'),
('834', '4', '880', 'cash', '105.00', '0.00', NULL, '2026-03-02 23:11:34', '2026-03-02 23:11:34'),
('836', '4', '880', 'card', '24.50', '0.00', NULL, '2026-03-02 23:11:50', '2026-03-02 23:11:50'),
('837', '4', '885', 'cash', '5.00', '0.00', NULL, '2026-03-02 23:15:07', '2026-03-02 23:15:07'),
('838', '4', '889', 'cash', '8.00', '0.00', NULL, '2026-03-02 23:18:54', '2026-03-02 23:18:54'),
('839', '4', '887', 'cash', '9.00', '0.00', NULL, '2026-03-02 23:19:46', '2026-03-02 23:19:46'),
('840', '4', '892', 'cash', '6.00', '0.00', NULL, '2026-03-02 23:53:01', '2026-03-02 23:53:01'),
('841', '4', '891', 'cash', '6.50', '0.00', NULL, '2026-03-03 00:55:59', '2026-03-03 00:55:59'),
('842', '4', '890', 'cash', '15.50', '0.00', NULL, '2026-03-03 00:59:11', '2026-03-03 00:59:11'),
('843', '4', '894', 'cash', '1.00', '0.00', NULL, '2026-03-03 20:12:27', '2026-03-03 20:12:27'),
('844', '4', '893', 'card', '33.50', '0.00', NULL, '2026-03-03 21:02:53', '2026-03-03 21:02:53'),
('845', '4', '895', 'card', '3.00', '0.00', NULL, '2026-03-03 22:20:02', '2026-03-03 22:20:02'),
('846', '4', '896', 'cash', '6.50', '0.00', NULL, '2026-03-03 22:20:53', '2026-03-03 22:20:53'),
('847', '4', '897', 'card', '4.00', '0.00', NULL, '2026-03-03 22:22:04', '2026-03-03 22:22:04'),
('848', '4', '898', 'card', '4.00', '0.00', NULL, '2026-03-04 00:54:57', '2026-03-04 00:54:57'),
('849', '4', '899', 'cash', '21.00', '0.00', NULL, '2026-03-04 19:44:03', '2026-03-04 19:44:03'),
('850', '4', '900', 'cash', '15.50', '0.00', NULL, '2026-03-04 21:00:54', '2026-03-04 21:00:54'),
('851', '4', '901', 'cash', '24.00', '0.00', NULL, '2026-03-04 21:30:58', '2026-03-04 21:30:58'),
('852', '4', '902', 'cash', '2.50', '0.00', NULL, '2026-03-04 23:11:16', '2026-03-04 23:11:16'),
('853', '4', '905', 'cash', '4.00', '0.00', NULL, '2026-03-05 20:44:51', '2026-03-05 20:44:51'),
('854', '4', '903', 'cash', '8.00', '0.00', NULL, '2026-03-05 20:45:19', '2026-03-05 20:45:19'),
('855', '4', '904', 'cash', '121.50', '0.00', NULL, '2026-03-05 21:13:38', '2026-03-05 21:13:38'),
('856', '4', '906', 'cash', '30.00', '0.00', NULL, '2026-03-05 21:16:14', '2026-03-05 21:16:14'),
('857', '4', '909', 'cash', '8.00', '0.00', NULL, '2026-03-05 21:34:11', '2026-03-05 21:34:11'),
('858', '4', '908', 'cash', '92.50', '0.00', NULL, '2026-03-05 22:59:22', '2026-03-05 22:59:22'),
('859', '4', '907', 'cash', '125.00', '0.00', NULL, '2026-03-06 00:17:47', '2026-03-06 00:17:47'),
('860', '4', '910', 'cash', '52.50', '0.00', NULL, '2026-03-06 21:08:57', '2026-03-06 21:08:57'),
('861', '4', '912', 'card', '108.50', '0.00', NULL, '2026-03-06 22:52:25', '2026-03-06 22:52:25'),
('862', '4', '911', 'cash', '6.00', '0.00', NULL, '2026-03-06 23:17:09', '2026-03-06 23:17:09'),
('863', '4', '914', 'cash', '4.00', '0.00', NULL, '2026-03-06 23:23:11', '2026-03-06 23:23:11'),
('864', '4', '915', 'card', '6.00', '0.00', NULL, '2026-03-06 23:30:25', '2026-03-06 23:30:25'),
('865', '4', '913', 'cash', '6.00', '0.00', NULL, '2026-03-06 23:39:21', '2026-03-06 23:39:21'),
('866', '4', '916', 'cash', '12.00', '0.00', NULL, '2026-03-07 00:57:01', '2026-03-07 00:57:01'),
('867', '4', '918', 'cash', '17.00', '0.00', NULL, '2026-03-07 01:46:57', '2026-03-07 01:46:57'),
('868', '4', '919', 'card', '3.00', '0.00', NULL, '2026-03-07 02:11:11', '2026-03-07 02:11:11'),
('869', '4', '917', 'cash', '3.00', '0.00', NULL, '2026-03-07 02:19:42', '2026-03-07 02:19:42'),
('870', '4', '921', 'card', '9.50', '0.00', NULL, '2026-03-07 02:48:23', '2026-03-07 02:48:23'),
('871', '4', '922', 'card', '4.00', '0.00', NULL, '2026-03-07 02:56:52', '2026-03-07 02:56:52'),
('872', '4', '923', 'card', '1.50', '0.00', NULL, '2026-03-07 03:00:38', '2026-03-07 03:00:38'),
('873', '4', '924', 'card', '20.00', '0.00', NULL, '2026-03-07 03:54:07', '2026-03-07 03:54:07'),
('874', '4', '925', 'card', '13.50', '0.00', NULL, '2026-03-07 04:11:19', '2026-03-07 04:11:19'),
('875', '4', '926', 'cash', '15.00', '0.00', NULL, '2026-03-07 04:17:21', '2026-03-07 04:17:21'),
('876', '4', '927', 'cash', '1.50', '0.00', NULL, '2026-03-07 04:42:52', '2026-03-07 04:42:52'),
('877', '4', '920', 'cash', '19.50', '0.00', NULL, '2026-03-07 05:02:03', '2026-03-07 05:02:03'),
('878', '4', '931', 'cash', '17.00', '0.00', NULL, '2026-03-07 21:20:22', '2026-03-07 21:20:22'),
('879', '4', '932', 'card', '9.50', '0.00', NULL, '2026-03-07 21:25:49', '2026-03-07 21:25:49'),
('880', '4', '933', 'card', '17.00', '0.00', NULL, '2026-03-07 21:46:06', '2026-03-07 21:46:06'),
('881', '4', '934', 'cash', '8.00', '0.00', NULL, '2026-03-07 22:20:57', '2026-03-07 22:20:57'),
('882', '4', '928', 'cash', '18.50', '0.00', NULL, '2026-03-07 22:27:14', '2026-03-07 22:27:14'),
('883', '4', '935', 'cash', '24.00', '0.00', NULL, '2026-03-07 22:29:33', '2026-03-07 22:29:33'),
('884', '4', '936', 'cash', '13.00', '0.00', NULL, '2026-03-07 22:58:26', '2026-03-07 22:58:26'),
('885', '4', '938', 'cash', '3.00', '0.00', NULL, '2026-03-07 23:26:20', '2026-03-07 23:26:20'),
('886', '4', '929', 'cash', '21.00', '0.00', NULL, '2026-03-08 01:14:31', '2026-03-08 01:14:31'),
('887', '4', '937', 'cash', '21.50', '0.00', NULL, '2026-03-08 01:20:39', '2026-03-08 01:20:39'),
('888', '4', '930', 'cash', '25.00', '0.00', NULL, '2026-03-08 01:20:55', '2026-03-08 01:20:55'),
('889', '4', '939', 'card', '9.50', '0.00', NULL, '2026-03-08 01:23:44', '2026-03-08 01:23:44'),
('890', '4', '940', 'cash', '7.50', '0.00', NULL, '2026-03-08 19:55:43', '2026-03-08 19:55:43'),
('891', '4', '941', 'cash', '2.00', '0.00', NULL, '2026-03-08 19:56:12', '2026-03-08 19:56:12'),
('892', '4', '942', 'cash', '10.00', '0.00', NULL, '2026-03-08 21:17:41', '2026-03-08 21:17:41'),
('893', '4', '943', 'cash', '3.00', '0.00', NULL, '2026-03-08 22:22:56', '2026-03-08 22:22:56'),
('894', '4', '944', 'cash', '5.50', '0.00', NULL, '2026-03-08 22:53:44', '2026-03-08 22:53:44'),
('895', '4', '947', 'cash', '3.00', '0.00', NULL, '2026-03-08 23:53:41', '2026-03-08 23:53:41'),
('896', '4', '946', 'cash', '6.00', '0.00', NULL, '2026-03-09 00:14:18', '2026-03-09 00:14:18'),
('897', '4', '949', 'cash', '7.00', '0.00', NULL, '2026-03-09 00:34:29', '2026-03-09 00:34:29'),
('898', '4', '945', 'card', '27.00', '0.00', NULL, '2026-03-09 01:08:40', '2026-03-09 01:08:40'),
('899', '4', '948', 'cash', '43.50', '0.00', NULL, '2026-03-09 01:14:53', '2026-03-09 01:14:53'),
('900', '4', '950', 'cash', '5.50', '0.00', NULL, '2026-03-09 01:28:36', '2026-03-09 01:28:36'),
('901', '4', '951', 'cash', '3.00', '0.00', NULL, '2026-03-09 01:42:37', '2026-03-09 01:42:37'),
('902', '4', '952', 'cash', '4.00', '0.00', NULL, '2026-03-09 02:22:02', '2026-03-09 02:22:02'),
('903', '4', '953', 'cash', '8.50', '0.00', NULL, '2026-03-09 23:20:28', '2026-03-09 23:20:28'),
('904', '4', '955', 'card', '25.00', '0.00', NULL, '2026-03-10 22:07:59', '2026-03-10 22:07:59'),
('905', '4', '956', 'cash', '16.00', '0.00', NULL, '2026-03-10 22:09:06', '2026-03-10 22:09:06'),
('906', '4', '954', 'card', '19.50', '0.00', NULL, '2026-03-10 22:24:21', '2026-03-10 22:24:21'),
('907', '4', '957', 'card', '5.50', '0.00', NULL, '2026-03-10 22:45:30', '2026-03-10 22:45:30'),
('908', '4', '958', 'cash', '16.50', '0.00', NULL, '2026-03-11 21:24:16', '2026-03-11 21:24:16'),
('909', '4', '959', 'cash', '10.00', '0.00', NULL, '2026-03-11 22:41:22', '2026-03-11 22:41:22'),
('910', '4', '960', 'cash', '1.50', '0.00', NULL, '2026-03-13 20:34:15', '2026-03-13 20:34:15'),
('911', '4', '961', 'card', '10.00', '0.00', NULL, '2026-03-13 21:39:48', '2026-03-13 21:39:48'),
('912', '4', '962', 'cash', '19.00', '0.00', NULL, '2026-03-13 23:05:32', '2026-03-13 23:05:32'),
('913', '4', '963', 'cash', '10.00', '0.00', NULL, '2026-03-13 23:14:43', '2026-03-13 23:14:43'),
('914', '4', '964', 'card', '28.00', '0.00', NULL, '2026-03-13 23:39:44', '2026-03-13 23:39:53'),
('915', '4', '965', 'card', '30.50', '0.00', NULL, '2026-03-13 23:52:33', '2026-03-13 23:52:33'),
('916', '4', '966', 'cash', '4.00', '0.00', NULL, '2026-03-13 23:54:55', '2026-03-13 23:54:55'),
('917', '4', '967', 'card', '3.00', '0.00', NULL, '2026-03-14 00:07:53', '2026-03-14 00:07:53'),
('918', '4', '968', 'card', '14.00', '0.00', NULL, '2026-03-14 00:10:38', '2026-03-14 00:10:38'),
('919', '4', '969', 'card', '53.00', '0.00', NULL, '2026-03-14 01:02:05', '2026-03-14 01:02:05'),
('920', '4', '970', 'card', '1.50', '0.00', NULL, '2026-03-14 01:02:57', '2026-03-14 01:02:57'),
('921', '4', '971', 'cash', '37.50', '0.00', NULL, '2026-03-14 02:06:37', '2026-03-14 02:06:37'),
('922', '4', '972', 'cash', '5.00', '0.00', NULL, '2026-03-14 18:46:53', '2026-03-14 18:46:53'),
('923', '4', '973', 'cash', '4.00', '0.00', NULL, '2026-03-14 19:46:54', '2026-03-14 19:46:54'),
('924', '4', '974', 'cash', '5.50', '0.00', NULL, '2026-03-14 19:58:28', '2026-03-14 19:58:28'),
('925', '4', '975', 'cash', '9.00', '0.00', NULL, '2026-03-14 20:01:15', '2026-03-14 20:01:15'),
('926', '4', '976', 'cash', '5.50', '0.00', NULL, '2026-03-14 21:17:38', '2026-03-14 21:17:38'),
('927', '4', '977', 'cash', '20.00', '0.00', NULL, '2026-03-14 21:47:00', '2026-03-14 21:47:00'),
('928', '4', '978', 'card', '8.00', '0.00', NULL, '2026-03-14 21:52:18', '2026-03-14 21:52:18'),
('929', '4', '979', 'cash', '20.00', '0.00', NULL, '2026-03-14 22:12:11', '2026-03-14 22:12:11'),
('930', '4', '980', 'cash', '26.00', '0.00', NULL, '2026-03-14 22:13:12', '2026-03-14 22:13:12'),
('931', '4', '981', 'cash', '3.00', '0.00', NULL, '2026-03-14 22:13:42', '2026-03-14 22:13:42'),
('932', '4', '982', 'cash', '20.00', '0.00', NULL, '2026-03-14 22:38:08', '2026-03-14 22:38:08'),
('933', '4', '983', 'cash', '10.00', '0.00', NULL, '2026-03-14 23:05:05', '2026-03-14 23:05:05'),
('934', '4', '984', 'card', '41.00', '0.00', NULL, '2026-03-14 23:06:38', '2026-03-14 23:06:38'),
('935', '4', '985', 'cash', '18.00', '0.00', NULL, '2026-03-15 02:36:02', '2026-03-15 02:36:02'),
('936', '4', '986', 'cash', '9.00', '0.00', NULL, '2026-03-15 23:53:32', '2026-03-15 23:53:32'),
('937', '4', '987', 'cash', '51.00', '0.00', NULL, '2026-03-18 00:45:21', '2026-03-18 00:45:21'),
('938', '4', '988', 'cash', '10.50', '0.00', NULL, '2026-03-18 18:55:10', '2026-03-18 18:55:10'),
('939', '4', '990', 'cash', '2.50', '0.00', NULL, '2026-03-18 19:05:08', '2026-03-18 19:05:08'),
('940', '4', '994', 'cash', '9.00', '0.00', NULL, '2026-03-18 20:59:13', '2026-03-18 20:59:13'),
('941', '4', '989', 'card', '77.00', '0.00', NULL, '2026-03-18 21:23:41', '2026-03-18 21:23:41'),
('942', '4', '995', 'cash', '8.00', '0.00', NULL, '2026-03-18 22:23:56', '2026-03-18 22:23:56'),
('943', '4', '997', 'cash', '1.50', '0.00', NULL, '2026-03-18 22:53:59', '2026-03-18 22:53:59'),
('944', '4', '998', 'cash', '19.00', '0.00', NULL, '2026-03-18 23:11:51', '2026-03-18 23:11:51'),
('945', '4', '991', 'cash', '11.00', '0.00', NULL, '2026-03-18 23:29:14', '2026-03-18 23:29:14'),
('946', '4', '996', 'card', '4.00', '0.00', NULL, '2026-03-19 00:55:56', '2026-03-19 00:55:56'),
('947', '4', '999', 'cash', '4.00', '0.00', NULL, '2026-03-19 00:56:38', '2026-03-19 00:56:38'),
('948', '4', '1000', 'cash', '3.00', '0.00', NULL, '2026-03-19 00:58:28', '2026-03-19 00:58:28'),
('949', '4', '993', 'card', '56.00', '0.00', NULL, '2026-03-19 01:36:15', '2026-03-19 01:36:15'),
('950', '4', '992', 'card', '8.00', '0.00', NULL, '2026-03-19 01:36:42', '2026-03-19 01:36:42'),
('951', '4', '1001', 'cash', '3.00', '0.00', NULL, '2026-03-19 20:25:40', '2026-03-19 20:25:40'),
('952', '4', '1003', 'cash', '3.00', '0.00', NULL, '2026-03-19 20:50:47', '2026-03-19 20:50:47'),
('953', '4', '1004', 'card', '8.50', '0.00', NULL, '2026-03-19 21:23:06', '2026-03-19 21:23:06'),
('954', '4', '1005', 'cash', '4.00', '0.00', NULL, '2026-03-19 21:46:23', '2026-03-19 21:46:23'),
('955', '4', '1006', 'card', '6.00', '0.00', NULL, '2026-03-19 22:21:04', '2026-03-19 22:21:04'),
('956', '4', '1002', 'cash', '37.00', '0.00', NULL, '2026-03-19 22:30:26', '2026-03-19 22:30:26'),
('957', '4', '1007', 'cash', '25.50', '0.00', NULL, '2026-03-19 23:24:21', '2026-03-19 23:24:21'),
('958', '4', '1008', 'cash', '5.50', '0.00', NULL, '2026-03-19 23:49:16', '2026-03-19 23:49:16'),
('959', '4', '1009', 'cash', '4.00', '0.00', NULL, '2026-03-19 23:56:34', '2026-03-19 23:56:34'),
('960', '4', '1010', 'cash', '4.00', '0.00', NULL, '2026-03-20 00:22:19', '2026-03-20 00:22:19'),
('961', '4', '1011', 'cash', '3.50', '0.00', NULL, '2026-03-20 18:36:03', '2026-03-20 18:36:03'),
('962', '4', '1012', 'card', '11.00', '0.00', NULL, '2026-03-20 19:05:52', '2026-03-20 19:05:52'),
('963', '4', '1013', 'card', '11.00', '0.00', NULL, '2026-03-20 19:08:41', '2026-03-20 19:08:41'),
('964', '4', '1014', 'card', '31.50', '0.00', NULL, '2026-03-20 19:24:57', '2026-03-20 19:24:57'),
('965', '4', '1015', 'cash', '9.50', '0.00', NULL, '2026-03-20 19:25:27', '2026-03-20 19:25:27'),
('966', '4', '1016', 'cash', '4.00', '0.00', NULL, '2026-03-20 19:30:25', '2026-03-20 19:30:25'),
('967', '4', '1017', 'cash', '8.50', '0.00', NULL, '2026-03-20 19:31:01', '2026-03-20 19:31:01'),
('968', '4', '1018', 'card', '17.50', '0.00', NULL, '2026-03-20 19:36:20', '2026-03-20 19:36:20'),
('969', '4', '1019', 'card', '16.50', '0.00', NULL, '2026-03-20 19:51:12', '2026-03-20 19:51:12'),
('970', '4', '1020', 'card', '21.00', '0.00', NULL, '2026-03-20 20:02:00', '2026-03-20 20:02:00'),
('971', '4', '1021', 'card', '3.50', '0.00', NULL, '2026-03-20 20:04:00', '2026-03-20 20:04:00'),
('972', '4', '1022', 'cash', '7.00', '0.00', NULL, '2026-03-20 20:05:28', '2026-03-20 20:05:28'),
('973', '4', '1023', 'cash', '3.50', '0.00', NULL, '2026-03-20 20:11:01', '2026-03-20 20:11:01'),
('974', '4', '1024', 'cash', '10.00', '0.00', NULL, '2026-03-20 20:11:58', '2026-03-20 20:11:58'),
('975', '4', '1025', 'cash', '7.00', '0.00', NULL, '2026-03-20 20:16:48', '2026-03-20 20:16:48'),
('976', '4', '1026', 'cash', '5.00', '0.00', NULL, '2026-03-20 20:22:29', '2026-03-20 20:22:29'),
('977', '4', '1027', 'cash', '18.00', '0.00', NULL, '2026-03-20 20:33:06', '2026-03-20 20:33:06'),
('978', '4', '1028', 'cash', '1.50', '0.00', NULL, '2026-03-20 20:36:42', '2026-03-20 20:36:42'),
('979', '4', '1029', 'card', '11.50', '0.00', NULL, '2026-03-20 20:37:20', '2026-03-20 20:37:20'),
('980', '4', '1030', 'cash', '8.00', '0.00', NULL, '2026-03-20 20:48:41', '2026-03-20 20:48:41'),
('981', '4', '1031', 'card', '3.50', '0.00', NULL, '2026-03-20 20:56:40', '2026-03-20 20:56:40'),
('982', '4', '1032', 'cash', '29.00', '0.00', NULL, '2026-03-20 21:14:45', '2026-03-20 21:14:45'),
('983', '4', '1033', 'card', '15.00', '0.00', NULL, '2026-03-20 21:17:29', '2026-03-20 21:17:29'),
('984', '4', '1034', 'card', '5.00', '0.00', NULL, '2026-03-20 21:17:59', '2026-03-20 21:17:59'),
('985', '4', '1035', 'card', '3.50', '0.00', NULL, '2026-03-20 21:20:54', '2026-03-20 21:20:54'),
('986', '4', '1036', 'card', '7.00', '0.00', NULL, '2026-03-20 21:40:57', '2026-03-20 21:40:57'),
('987', '4', '1037', 'cash', '8.00', '0.00', NULL, '2026-03-20 21:42:38', '2026-03-20 21:42:38'),
('988', '4', '1038', 'cash', '4.00', '0.00', NULL, '2026-03-20 21:55:46', '2026-03-20 21:55:46'),
('989', '4', '1039', 'card', '3.50', '0.00', NULL, '2026-03-20 21:56:17', '2026-03-20 21:56:17'),
('990', '4', '1040', 'cash', '3.00', '0.00', NULL, '2026-03-20 22:17:42', '2026-03-20 22:17:42'),
('991', '4', '1041', 'card', '3.50', '0.00', NULL, '2026-03-20 22:40:53', '2026-03-20 22:40:53'),
('992', '4', '1042', 'cash', '3.50', '0.00', NULL, '2026-03-20 23:23:16', '2026-03-20 23:23:16'),
('993', '4', '1043', 'card', '6.50', '0.00', NULL, '2026-03-20 23:41:48', '2026-03-20 23:41:48'),
('994', '4', '1044', 'cash', '12.00', '0.00', NULL, '2026-03-21 00:00:15', '2026-03-21 00:00:15'),
('995', '4', '1045', 'card', '20.00', '0.00', NULL, '2026-03-21 00:10:30', '2026-03-21 00:10:30'),
('996', '4', '1046', 'cash', '10.00', '0.00', NULL, '2026-03-21 18:44:18', '2026-03-21 18:44:18'),
('997', '4', '1048', 'cash', '10.00', '0.00', NULL, '2026-03-21 22:04:31', '2026-03-21 22:04:31'),
('998', '4', '1050', 'cash', '3.00', '0.00', NULL, '2026-03-21 22:53:04', '2026-03-21 22:53:04'),
('999', '4', '1051', 'card', '4.00', '0.00', NULL, '2026-03-21 22:56:49', '2026-03-21 22:56:49'),
('1000', '4', '1047', 'cash', '106.00', '0.00', NULL, '2026-03-21 23:12:28', '2026-03-21 23:12:28'),
('1001', '4', '1052', 'cash', '21.00', '0.00', NULL, '2026-03-21 23:14:17', '2026-03-21 23:14:17'),
('1002', '4', '1056', 'card', '12.00', '0.00', NULL, '2026-03-21 23:32:30', '2026-03-21 23:32:30'),
('1003', '4', '1057', 'cash', '18.00', '0.00', NULL, '2026-03-21 23:51:41', '2026-03-21 23:51:41');

INSERT INTO `payments` VALUES
('1004', '4', '1049', 'card', '34.50', '0.00', NULL, '2026-03-21 23:53:08', '2026-03-21 23:53:08'),
('1005', '4', '1059', 'cash', '1.00', '0.00', NULL, '2026-03-22 00:07:28', '2026-03-22 00:07:28'),
('1006', '4', '1055', 'card', '5.50', '0.00', NULL, '2026-03-22 00:13:12', '2026-03-22 00:13:12'),
('1007', '4', '1053', 'card', '21.00', '0.00', NULL, '2026-03-22 00:40:14', '2026-03-22 00:40:14'),
('1008', '4', '1061', 'cash', '3.50', '0.00', NULL, '2026-03-22 00:50:21', '2026-03-22 00:50:21'),
('1009', '4', '1060', 'card', '20.00', '0.00', NULL, '2026-03-22 00:59:53', '2026-03-22 00:59:53'),
('1010', '4', '1054', 'cash', '10.50', '0.00', NULL, '2026-03-22 01:26:51', '2026-03-22 01:26:51'),
('1011', '4', '1058', 'card', '18.00', '0.00', NULL, '2026-03-22 01:27:21', '2026-03-22 01:27:21'),
('1012', '4', '1062', 'cash', '11.00', '0.00', NULL, '2026-03-22 01:28:30', '2026-03-22 01:28:30'),
('1013', '4', '1064', 'cash', '19.00', '0.00', NULL, '2026-03-22 22:08:16', '2026-03-22 22:08:16'),
('1014', '4', '1063', 'card', '10.00', '0.00', NULL, '2026-03-22 22:14:10', '2026-03-22 22:14:10'),
('1015', '4', '1071', 'cash', '2.50', '0.00', NULL, '2026-03-22 23:06:45', '2026-03-22 23:06:45'),
('1016', '4', '1072', 'cash', '9.00', '0.00', NULL, '2026-03-22 23:28:14', '2026-03-22 23:28:14'),
('1017', '4', '1073', 'cash', '9.00', '0.00', NULL, '2026-03-22 23:40:25', '2026-03-22 23:40:25'),
('1018', '4', '1074', 'cash', '3.00', '0.00', NULL, '2026-03-22 23:46:14', '2026-03-22 23:46:14'),
('1019', '4', '1075', 'card', '2.50', '0.00', NULL, '2026-03-22 23:46:55', '2026-03-22 23:46:55'),
('1020', '4', '1069', 'card', '6.00', '0.00', NULL, '2026-03-22 23:56:40', '2026-03-22 23:56:40'),
('1021', '4', '1070', 'card', '39.50', '0.00', NULL, '2026-03-23 00:20:42', '2026-03-23 00:20:42'),
('1022', '4', '1076', 'cash', '18.00', '0.00', NULL, '2026-03-23 00:45:09', '2026-03-23 00:45:09'),
('1023', '4', '1077', 'cash', '6.00', '0.00', NULL, '2026-03-23 01:22:52', '2026-03-23 01:22:52'),
('1024', '4', '1066', 'cash', '64.00', '0.00', NULL, '2026-03-23 02:02:49', '2026-03-23 02:02:49'),
('1025', '4', '1068', 'cash', '13.50', '0.00', NULL, '2026-03-23 02:05:33', '2026-03-23 02:05:33'),
('1026', '4', '1067', 'cash', '21.50', '0.00', NULL, '2026-03-23 02:06:04', '2026-03-23 02:06:04'),
('1027', '4', '1065', 'cash', '34.00', '0.00', NULL, '2026-03-23 02:11:48', '2026-03-23 02:11:48'),
('1028', '4', '1079', 'cash', '48.50', '0.00', NULL, '2026-03-24 18:24:20', '2026-03-24 18:24:20'),
('1029', '4', '1080', 'cash', '23.50', '0.00', NULL, '2026-03-24 20:05:59', '2026-03-24 20:05:59'),
('1030', '4', '1082', 'cash', '2.50', '0.00', NULL, '2026-03-24 20:06:31', '2026-03-24 20:06:31'),
('1031', '4', '1082', 'cash', '2.50', '0.00', NULL, '2026-03-24 20:06:32', '2026-03-24 20:06:32'),
('1032', '4', '1083', 'cash', '13.00', '0.00', NULL, '2026-03-24 21:26:58', '2026-03-24 21:26:58'),
('1033', '4', '1085', 'cash', '4.00', '0.00', NULL, '2026-03-24 22:33:28', '2026-03-24 22:33:28'),
('1034', '4', '1086', 'cash', '21.00', '0.00', NULL, '2026-03-24 22:37:53', '2026-03-24 22:37:53'),
('1035', '4', '1087', 'card', '12.00', '0.00', NULL, '2026-03-24 22:54:04', '2026-03-24 22:54:04'),
('1036', '4', '1088', 'cash', '3.00', '0.00', NULL, '2026-03-24 22:58:25', '2026-03-24 22:58:25'),
('1037', '4', '1090', 'cash', '10.50', '0.00', NULL, '2026-03-24 23:24:42', '2026-03-24 23:24:42'),
('1038', '4', '1091', 'cash', '3.00', '0.00', NULL, '2026-03-24 23:36:06', '2026-03-24 23:36:06'),
('1039', '4', '1092', 'card', '6.00', '0.00', NULL, '2026-03-24 23:39:49', '2026-03-24 23:39:49'),
('1040', '4', '1093', 'cash', '3.50', '0.00', NULL, '2026-03-24 23:46:40', '2026-03-24 23:46:40'),
('1041', '4', '1084', 'cash', '24.50', '0.00', NULL, '2026-03-25 00:03:48', '2026-03-25 00:03:48'),
('1042', '4', '1098', 'card', '6.00', '0.00', NULL, '2026-03-25 00:20:40', '2026-03-25 00:20:40'),
('1043', '4', '1099', 'card', '3.00', '0.00', NULL, '2026-03-25 00:24:07', '2026-03-25 00:24:07'),
('1044', '4', '1097', 'cash', '11.00', '0.00', NULL, '2026-03-25 00:30:48', '2026-03-25 00:30:48'),
('1045', '4', '1096', 'cash', '63.50', '0.00', NULL, '2026-03-25 00:41:31', '2026-03-25 00:41:31'),
('1046', '4', '1102', 'cash', '2.00', '0.00', NULL, '2026-03-25 00:55:06', '2026-03-25 00:55:06'),
('1047', '4', '1101', 'cash', '21.00', '0.00', NULL, '2026-03-25 00:57:05', '2026-03-25 00:57:05'),
('1048', '4', '1103', 'cash', '1.00', '0.00', NULL, '2026-03-25 01:04:16', '2026-03-25 01:04:16'),
('1049', '4', '1104', 'cash', '3.50', '0.00', NULL, '2026-03-25 01:11:21', '2026-03-25 01:11:21'),
('1050', '4', '1105', 'cash', '1.00', '0.00', NULL, '2026-03-25 01:11:56', '2026-03-25 01:11:56'),
('1051', '4', '1095', 'cash', '20.00', '0.00', NULL, '2026-03-25 01:17:20', '2026-03-25 01:17:20'),
('1052', '4', '1100', 'cash', '9.50', '0.00', NULL, '2026-03-25 01:23:34', '2026-03-25 01:23:34'),
('1053', '4', '1106', 'cash', '1.00', '0.00', NULL, '2026-03-25 01:29:53', '2026-03-25 01:29:53'),
('1054', '4', '1094', 'card', '4.00', '0.00', NULL, '2026-03-25 01:33:06', '2026-03-25 01:33:06'),
('1055', '4', '1107', 'cash', '1.00', '0.00', NULL, '2026-03-25 01:34:59', '2026-03-25 01:34:59'),
('1056', '4', '1089', 'cash', '6.00', '0.00', NULL, '2026-03-25 01:35:48', '2026-03-25 01:35:48'),
('1057', '4', '1108', 'cash', '4.00', '0.00', NULL, '2026-03-25 01:42:48', '2026-03-25 01:42:48'),
('1058', '4', '1109', 'cash', '1.00', '0.00', NULL, '2026-03-25 01:46:01', '2026-03-25 01:46:01'),
('1059', '4', '1110', 'card', '3.00', '0.00', NULL, '2026-03-25 01:55:44', '2026-03-25 01:55:44'),
('1060', '4', '1111', 'cash', '8.50', '0.00', NULL, '2026-03-25 02:20:54', '2026-03-25 02:20:54'),
('1061', '4', '1112', 'cash', '2.50', '0.00', NULL, '2026-03-25 02:22:31', '2026-03-25 02:22:31'),
('1062', '4', '1113', 'cash', '36.50', '0.00', NULL, '2026-03-25 19:40:07', '2026-03-25 19:40:07'),
('1063', '4', '1115', 'cash', '4.00', '0.00', NULL, '2026-03-25 19:58:57', '2026-03-25 19:58:57'),
('1064', '4', '1116', 'card', '9.50', '0.00', NULL, '2026-03-25 20:38:13', '2026-03-25 20:38:13'),
('1065', '4', '1114', 'cash', '16.00', '0.00', NULL, '2026-03-25 21:05:17', '2026-03-25 21:05:17'),
('1066', '4', '1117', 'cash', '12.00', '0.00', NULL, '2026-03-25 21:35:10', '2026-03-25 21:35:10'),
('1067', '4', '1119', 'card', '3.00', '0.00', NULL, '2026-03-25 22:29:20', '2026-03-25 22:29:20'),
('1068', '4', '1121', 'card', '4.00', '0.00', NULL, '2026-03-25 23:31:57', '2026-03-25 23:31:57'),
('1069', '4', '1122', 'cash', '6.00', '0.00', NULL, '2026-03-25 23:44:18', '2026-03-25 23:44:18'),
('1070', '4', '1118', 'card', '6.00', '0.00', NULL, '2026-03-25 23:45:58', '2026-03-25 23:45:58'),
('1071', '4', '1120', 'cash', '4.00', '0.00', NULL, '2026-03-26 00:43:35', '2026-03-26 00:43:35'),
('1072', '4', '1126', 'card', '4.00', '0.00', NULL, '2026-03-26 21:27:14', '2026-03-26 21:27:14'),
('1073', '4', '1127', 'card', '4.00', '0.00', NULL, '2026-03-26 21:27:50', '2026-03-26 21:27:50'),
('1074', '4', '1128', 'cash', '2.00', '0.00', NULL, '2026-03-26 21:28:13', '2026-03-26 21:28:13'),
('1075', '4', '1123', 'cash', '26.00', '0.00', NULL, '2026-03-26 21:45:18', '2026-03-26 21:45:18'),
('1076', '4', '1124', 'card', '6.00', '0.00', NULL, '2026-03-26 22:04:06', '2026-03-26 22:04:06'),
('1077', '4', '1125', 'cash', '8.00', '0.00', NULL, '2026-03-26 23:01:26', '2026-03-26 23:01:26'),
('1078', '4', '1132', 'card', '8.00', '0.00', NULL, '2026-03-26 23:32:29', '2026-03-26 23:32:29'),
('1079', '4', '1131', 'card', '12.00', '0.00', NULL, '2026-03-26 23:44:34', '2026-03-26 23:44:34'),
('1080', '4', '1129', 'cash', '3.50', '0.00', NULL, '2026-03-26 23:56:02', '2026-03-26 23:56:02'),
('1081', '4', '1133', 'card', '2.50', '0.00', NULL, '2026-03-27 00:09:33', '2026-03-27 00:09:33'),
('1082', '4', '1134', 'cash', '10.50', '0.00', NULL, '2026-03-27 00:17:24', '2026-03-27 00:17:24'),
('1083', '4', '1135', 'cash', '2.00', '0.00', NULL, '2026-03-27 00:19:01', '2026-03-27 00:19:01'),
('1084', '4', '1130', 'cash', '4.00', '0.00', NULL, '2026-03-27 00:49:21', '2026-03-27 00:49:21'),
('1085', '4', '1136', 'card', '10.50', '0.00', NULL, '2026-03-27 01:01:27', '2026-03-27 01:01:27'),
('1086', '4', '1137', 'card', '6.00', '0.00', NULL, '2026-03-27 01:03:23', '2026-03-27 01:03:23'),
('1087', '4', '1138', 'card', '1.50', '0.00', NULL, '2026-03-27 01:04:51', '2026-03-27 01:04:51'),
('1088', '4', '1139', 'cash', '4.00', '0.00', NULL, '2026-03-27 01:08:29', '2026-03-27 01:08:29'),
('1089', '4', '1142', 'cash', '9.50', '0.00', NULL, '2026-03-27 21:04:32', '2026-03-27 21:04:32'),
('1090', '4', '1141', 'cash', '29.00', '0.00', NULL, '2026-03-27 21:59:37', '2026-03-27 21:59:37'),
('1091', '4', '1143', 'card', '55.00', '0.00', NULL, '2026-03-27 23:36:53', '2026-03-27 23:36:53'),
('1092', '4', '1140', 'cash', '21.50', '0.00', NULL, '2026-03-27 23:37:49', '2026-03-27 23:37:49'),
('1093', '4', '1144', 'cash', '15.50', '0.00', NULL, '2026-03-27 23:38:52', '2026-03-27 23:38:52'),
('1094', '4', '1145', 'cash', '16.00', '0.00', NULL, '2026-03-27 23:41:12', '2026-03-27 23:41:12'),
('1095', '4', '1147', 'card', '4.00', '0.00', NULL, '2026-03-27 23:55:49', '2026-03-27 23:55:49'),
('1096', '4', '1148', 'cash', '12.00', '0.00', NULL, '2026-03-28 00:11:46', '2026-03-28 00:11:46'),
('1097', '4', '1149', 'card', '18.00', '0.00', NULL, '2026-03-28 00:13:36', '2026-03-28 00:13:36'),
('1098', '4', '1146', 'cash', '19.50', '0.00', NULL, '2026-03-28 00:19:43', '2026-03-28 00:19:43'),
('1099', '4', '1150', 'cash', '6.00', '0.00', NULL, '2026-03-28 00:53:53', '2026-03-28 00:53:53'),
('1100', '4', '1151', 'cash', '8.00', '0.00', NULL, '2026-03-28 01:01:26', '2026-03-28 01:01:26'),
('1101', '4', '1152', 'cash', '3.00', '0.00', NULL, '2026-03-28 01:28:20', '2026-03-28 01:28:20'),
('1102', '4', '1153', 'cash', '8.00', '0.00', NULL, '2026-03-28 01:30:58', '2026-03-28 01:30:58'),
('1103', '4', '1154', 'card', '4.00', '0.00', NULL, '2026-03-28 01:34:52', '2026-03-28 01:34:52'),
('1104', '4', '1155', 'cash', '1.50', '0.00', NULL, '2026-03-28 01:39:52', '2026-03-28 01:39:52'),
('1105', '4', '1156', 'cash', '3.00', '0.00', NULL, '2026-03-28 01:49:16', '2026-03-28 01:49:16'),
('1106', '4', '1157', 'cash', '3.00', '0.00', NULL, '2026-03-28 02:03:30', '2026-03-28 02:03:30');


-- Table structure for table `paypal_payments`
DROP TABLE IF EXISTS `paypal_payments`;
CREATE TABLE `paypal_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `paypal_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `paypal_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `paypal_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `paystack_payments`
DROP TABLE IF EXISTS `paystack_payments`;
CREATE TABLE `paystack_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `paystack_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `payment_status` enum('pending','completed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_date` timestamp NULL DEFAULT NULL,
  `payment_error_response` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `paystack_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `paystack_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `permissions`
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `guard_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `module_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`),
  KEY `permissions_module_id_foreign` (`module_id`),
  CONSTRAINT `permissions_module_id_foreign` FOREIGN KEY (`module_id`) REFERENCES `modules` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `permissions`
INSERT INTO `permissions` VALUES
('1', 'Create Menu', 'web', '1', NULL, NULL),
('2', 'Show Menu', 'web', '1', NULL, NULL),
('3', 'Update Menu', 'web', '1', NULL, NULL),
('4', 'Delete Menu', 'web', '1', NULL, NULL),
('5', 'Create Menu Item', 'web', '2', NULL, NULL),
('6', 'Show Menu Item', 'web', '2', NULL, NULL),
('7', 'Update Menu Item', 'web', '2', NULL, NULL),
('8', 'Delete Menu Item', 'web', '2', NULL, NULL),
('9', 'Create Item Category', 'web', '3', NULL, NULL),
('10', 'Show Item Category', 'web', '3', NULL, NULL),
('11', 'Update Item Category', 'web', '3', NULL, NULL),
('12', 'Delete Item Category', 'web', '3', NULL, NULL),
('13', 'Create Area', 'web', '4', NULL, NULL),
('14', 'Show Area', 'web', '4', NULL, NULL),
('15', 'Update Area', 'web', '4', NULL, NULL),
('16', 'Delete Area', 'web', '4', NULL, NULL),
('17', 'Create Table', 'web', '5', NULL, NULL),
('18', 'Show Table', 'web', '5', NULL, NULL),
('19', 'Update Table', 'web', '5', NULL, NULL),
('20', 'Delete Table', 'web', '5', NULL, NULL),
('21', 'Create Reservation', 'web', '6', NULL, NULL),
('22', 'Show Reservation', 'web', '6', NULL, NULL),
('23', 'Update Reservation', 'web', '6', NULL, NULL),
('24', 'Delete Reservation', 'web', '6', NULL, NULL),
('25', 'Manage KOT', 'web', '7', NULL, NULL),
('26', 'Create Order', 'web', '8', NULL, NULL),
('27', 'Show Order', 'web', '8', NULL, NULL),
('28', 'Update Order', 'web', '8', NULL, NULL),
('29', 'Delete Order', 'web', '8', NULL, NULL),
('30', 'Add Discount on POS', 'web', '8', NULL, NULL),
('31', 'Create Customer', 'web', '9', NULL, NULL),
('32', 'Show Customer', 'web', '9', NULL, NULL),
('33', 'Update Customer', 'web', '9', NULL, NULL),
('34', 'Delete Customer', 'web', '9', NULL, NULL),
('35', 'Create Staff Member', 'web', '10', NULL, NULL),
('36', 'Show Staff Member', 'web', '10', NULL, NULL),
('37', 'Update Staff Member', 'web', '10', NULL, NULL),
('38', 'Delete Staff Member', 'web', '10', NULL, NULL),
('39', 'Create Delivery Executive', 'web', '14', NULL, NULL),
('40', 'Show Delivery Executive', 'web', '14', NULL, NULL),
('41', 'Update Delivery Executive', 'web', '14', NULL, NULL),
('42', 'Delete Delivery Executive', 'web', '14', NULL, NULL),
('43', 'Show Payments', 'web', '11', NULL, NULL),
('44', 'Show Reports', 'web', '12', NULL, NULL),
('45', 'Manage Settings', 'web', '13', NULL, NULL),
('46', 'Manage Waiter Request', 'web', '15', NULL, NULL),
('47', 'Create Expense', 'web', '16', NULL, NULL),
('48', 'Show Expense', 'web', '16', NULL, NULL),
('49', 'Update Expense', 'web', '16', NULL, NULL),
('50', 'Delete Expense', 'web', '16', NULL, NULL),
('51', 'Create Expense Category', 'web', '16', NULL, NULL),
('52', 'Show Expense Category', 'web', '16', NULL, NULL),
('53', 'Update Expense Category', 'web', '16', NULL, NULL),
('54', 'Delete Expense Category', 'web', '16', NULL, NULL),
('55', 'Create Inventory Item', 'web', '17', NULL, NULL),
('56', 'Show Inventory Item', 'web', '17', NULL, NULL),
('57', 'Update Inventory Item', 'web', '17', NULL, NULL),
('58', 'Delete Inventory Item', 'web', '17', NULL, NULL),
('59', 'Create Inventory Movement', 'web', '17', NULL, NULL),
('60', 'Show Inventory Movement', 'web', '17', NULL, NULL),
('61', 'Update Inventory Movement', 'web', '17', NULL, NULL),
('62', 'Delete Inventory Movement', 'web', '17', NULL, NULL),
('63', 'Show Inventory Stock', 'web', '17', NULL, NULL),
('64', 'Create Unit', 'web', '17', NULL, NULL),
('65', 'Show Unit', 'web', '17', NULL, NULL),
('66', 'Update Unit', 'web', '17', NULL, NULL),
('67', 'Delete Unit', 'web', '17', NULL, NULL),
('68', 'Create Recipe', 'web', '17', NULL, NULL),
('69', 'Show Recipe', 'web', '17', NULL, NULL),
('70', 'Update Recipe', 'web', '17', NULL, NULL),
('71', 'Delete Recipe', 'web', '17', NULL, NULL),
('72', 'Create Purchase Order', 'web', '17', NULL, NULL),
('73', 'Show Purchase Order', 'web', '17', NULL, NULL),
('74', 'Update Purchase Order', 'web', '17', NULL, NULL),
('75', 'Delete Purchase Order', 'web', '17', NULL, NULL),
('76', 'Show Inventory Report', 'web', '17', NULL, NULL),
('77', 'Update Inventory Settings', 'web', '17', NULL, NULL),
('78', 'Show Supplier', 'web', '17', NULL, NULL),
('79', 'Create Supplier', 'web', '17', NULL, NULL),
('80', 'Update Supplier', 'web', '17', NULL, NULL),
('81', 'Delete Supplier', 'web', '17', NULL, NULL),
('82', 'Show Kitchen Place', 'web', '18', '2025-11-27 00:59:55', '2025-11-27 00:59:55'),
('83', 'Create Kitchen Place', 'web', '18', '2025-11-27 00:59:55', '2025-11-27 00:59:55'),
('84', 'Update Kitchen Place', 'web', '18', '2025-11-27 00:59:55', '2025-11-27 00:59:55'),
('85', 'Delete Kitchen Place', 'web', '18', '2025-11-27 00:59:55', '2025-11-27 00:59:55'),
('86', 'Update Sms Setting', 'web', '19', '2025-11-27 01:00:55', '2025-11-27 01:00:55'),
('87', 'Manage MultiPOS Machines', 'web', '20', '2025-11-27 01:01:04', '2025-11-27 01:01:04'),
('88', 'Manage Cash Register Settings', 'web', '22', '2025-11-27 01:01:32', '2025-11-27 01:01:33'),
('89', 'View Cash Register Reports', 'web', '22', '2025-11-27 01:01:32', '2025-11-27 01:01:32'),
('90', 'Manage Cash Denominations', 'web', '22', '2025-11-27 01:01:32', '2025-11-27 01:01:33'),
('91', 'Approve Cash Register', 'web', '22', '2025-11-27 01:01:32', '2025-11-27 01:01:32'),
('92', 'Open Cash Register', 'web', '22', '2025-11-27 01:01:33', '2025-11-27 01:01:33'),
('93', 'Create Batch Recipe', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59'),
('94', 'Show Batch Recipe', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59'),
('95', 'Update Batch Recipe', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59'),
('96', 'Delete Batch Recipe', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59'),
('97', 'Produce Batch', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59'),
('98', 'Show Batch Inventory', 'web', '17', '2025-12-27 21:44:59', '2025-12-27 21:44:59');


-- Table structure for table `personal_access_tokens`
DROP TABLE IF EXISTS `personal_access_tokens`;
CREATE TABLE `personal_access_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tokenable_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `pos_machines`
DROP TABLE IF EXISTS `pos_machines`;
CREATE TABLE `pos_machines` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `public_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `device_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('pending','active','declined') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `last_seen_at` timestamp NULL DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `approved_by` bigint unsigned DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `pos_machines_public_id_unique` (`public_id`),
  UNIQUE KEY `pos_machines_token_unique` (`token`),
  KEY `pos_machines_created_by_foreign` (`created_by`),
  KEY `pos_machines_approved_by_foreign` (`approved_by`),
  KEY `pos_machines_branch_id_status_index` (`branch_id`,`status`),
  KEY `pos_machines_status_index` (`status`),
  KEY `pos_machines_device_id_branch_id_index` (`device_id`,`branch_id`),
  CONSTRAINT `pos_machines_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `pos_machines_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `pos_machines_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `pos_machines`
INSERT INTO `pos_machines` VALUES
('1', '3', 'Counetr 1', '01KB1F7XZT4CVN2CKP2NH27SN1', 'rgOgr754shJb1yikaRIOguCJ7BCtJCweUkpEuGJbFiFAjMPsY1bMX6wDY02Z9CA6', 'et0jkokfdEya5PeEuyK3oyookdngswDFfkwLekP6ZtmRoXD5OzAGaQO22z9R4BDD', 'active', '2025-11-28 05:28:02', '4', '4', '2025-11-27 01:36:04', NULL, '2025-11-27 01:35:59', '2025-11-28 05:28:02'),
('3', '4', 'Bar', '01KB2E6H225A5AY0DSB9SVCKRB', 'BqkE47K4Udee87G6TFAJY6RsnmhBWfgBp8hpFnj6TQolH8J0KpHKoJuyCYs8DzPO', 'V0tbKn6PwWXj7qsXLCqsTbujhuT2rvjabfWqN1kHyQrcppIRYqh0wY8pvVVcyfvw', 'active', '2025-12-03 15:03:27', '5', '5', '2025-11-27 10:37:04', NULL, '2025-11-27 10:36:59', '2025-12-03 15:03:27'),
('4', '4', 'POS1', '01KB312Z517BKTXMCD3R09XW8F', 'B1UNY75J6ziiyQKKEdH4k5A5XvuhSAv21OzqmQ18OVOyadVXVteqJxJFij46QpAj', 'evYEyxdqh5bXLycB6L3UtjIdygDYkTRkzXLAJj14vWCac25gAUNfo3AGL3dl6WT5', 'active', '2026-03-28 01:49:03', '6', '5', '2025-11-27 16:08:25', NULL, '2025-11-27 16:07:06', '2026-03-28 01:49:03'),
('5', '3', 'Grafix POS 1764492401', '01KB9Z2PPPJ4W03DXE64BWQCD4', '7FNaiDcpfW9Mf16ccYXKvN4FVTDYgvEudJgnMe2YQdCLjh18JvkH0uIBEE1CqbJL', 'QskWUIdDYdEmlwKTxtwkNgY7xx25egj0ndV5VGQOjE2uBpxsllG6V48weUna53vt', 'active', '2025-12-28 10:04:23', '4', '4', '2025-11-30 08:46:44', NULL, '2025-11-30 08:46:41', '2025-12-28 10:04:23'),
('6', '5', 'Amant Iztok POS 1764589906', '01KBCW2AXF2J09WGK33BV3GWNS', 'MhxT9acfh4LHFbB02khaJUIpPHr86o9lM4mdEGvANLABC9s47dkdmPna1fUh2Mfh', 'uul3E6oiMH7G2y9YXqkCSdV9o6dDMVHpnEFvBFYLlKinxttZu5TYnXPYI2Cqgaki', 'active', '2025-12-27 15:59:55', '7', '7', '2025-12-01 11:53:14', NULL, '2025-12-01 11:51:46', '2025-12-27 15:59:55'),
('7', '3', 'Grafix POS 1765431934', '01KC5Z2ZP9M3GKYSFQN4XGN970', 'g9kVb2t5mnwTpwz0IeYSuBZurVomNOTV0yvE1OmwTVqXXHnDoEfdUmMx9NM2HO6V', 'CRjbfufo2L7CUyqIxvuIX3KMYfklNkY3rVOLnezmE66VEEdNKEu5C32v4JgC28h7', 'active', '2026-01-15 11:04:16', '4', '4', '2025-12-11 05:45:37', NULL, '2025-12-11 05:45:34', '2026-01-15 11:04:16'),
('8', '3', 'Grafix POS 1766169176', '01KCVY5T9DK5F567D33SS8W493', '8wG2OTmjhpTnAmhmxEhsIWWQ8iksdVTRoDezPlLBS6sYQ3WxpODWJTqBImgwA012', 'XxpOGnFNvthTmU11va6xNNYWm9uCOxzJrTLmrS9XhWmyWns2ihZEfD4dGdk9heeO', 'active', '2025-12-19 18:45:45', '4', '4', '2025-12-19 18:32:58', NULL, '2025-12-19 18:32:56', '2025-12-19 18:45:45'),
('9', '3', 'Grafix POS 1766178516', '01KCW72V3TFJZGEKWGZSCQ5S92', '1F3qdiodF8lUJTx8v3GNwTQm9gbghenwdPuHSxXx3TZG1PMt940jZGWk3xhJ9z6P', 'ZKErXB73Rl482omQFlZ9adDbhV65EppHBtBnGrv6E2gcryUOMBqKTnDaFYoeK5Jy', 'active', '2025-12-19 21:25:46', '4', '4', '2025-12-19 21:08:39', NULL, '2025-12-19 21:08:36', '2025-12-19 21:25:46'),
('10', '3', 'Phone', '01KDJ6FSAJP5TMV6MB5JHBZKP7', 'H4Gc5v8IVxEGcBNXpCp88H3zvcNdLzSpR9rWR0fAsiiyIcG2KE6lDecNZ8Vyxnrj', '5MTes4KvQn5d4SZUkoHZVAvuKlKghaPLs0C8vrEafFYKXmsb1eSGqr5uUeSX2bVm', 'active', '2025-12-28 10:01:52', '4', '4', '2025-12-28 10:01:45', NULL, '2025-12-28 10:01:29', '2025-12-28 10:01:52'),
('11', '4', 'AL CAPONE CLUB POS 1767193523', '01KDTF2D0GHSW69Z4RT4XQW817', 'jtisqCp6BkTz0tCtWbpgQKNESXPfjAsoy4cgktsb3ooFj5tqjLOCfMO6TrJs6Iew', 'vOFRFO81aGHnmeJYI769Kc9HLSnbggFDblx06KFZR9rFKal7eBJGlFNuxyIagr8n', 'pending', '2025-12-31 15:05:23', '5', NULL, NULL, NULL, '2025-12-31 15:05:23', '2025-12-31 15:05:23'),
('12', '4', 'AL CAPONE CLUB POS 1768403995', '01KEYHF30724Z7T87MR8WVC44B', 'O57Gjmob1hKlB8kCHEOcxtiXU76rU91Li3K5GOvFgP1T9M1TzZ49OXpgGT5U5Bs3', 'CRjbfufo2L7CUyqIxvuIX3KMYfklNkY3rVOLnezmE66VEEdNKEu5C32v4JgC28h7', 'active', '2026-01-19 08:46:34', '5', '5', '2026-01-14 15:19:57', NULL, '2026-01-14 15:19:55', '2026-01-19 08:46:34'),
('13', '4', 'AL CAPONE CLUB POS 1768804792', '01KFAFPEBBRH1AAYGECHGK5XRM', 'MxKkljvYqn8NSVqnrCzwzglgflhmfpZkHCGoAL0r3NqORmkV1J6174c3JpINN2Wy', 'vcooCtPJHqorKEWkwNhGgyob9Z97KLOZBJqXykxs9ThFPxHdcYvcQyEmbEep70J3', 'active', '2026-01-19 08:45:17', '5', '5', '2026-01-19 06:40:23', NULL, '2026-01-19 06:39:52', '2026-01-19 08:45:17'),
('14', '1', 'Carolyneton POS 1768806432', '01KFAH8G77S47T04VBHWDHK09R', 'WrKKnlFY1y49T4QaaQ0pNsXpuXuo1JpvEQFUz92KgGLzcF0toXJF2LEeXAdCoPJq', 'vcooCtPJHqorKEWkwNhGgyob9Z97KLOZBJqXykxs9ThFPxHdcYvcQyEmbEep70J3', 'active', '2026-01-19 08:40:13', '2', '2', '2026-01-19 07:07:15', NULL, '2026-01-19 07:07:12', '2026-01-19 08:40:13'),
('15', '4', 'iPhone', '01KFPF296W98F344CA70D8NCB1', 'ICA27kKzqW0HAUu9dP8MI7PNNriut7iRXZfqKlyJo2TQweuu3sneiBQSyZAELySK', 'asj0oKtzXutnCWoJgv6oKNLMpmtJDrAWCa8xWEeSLKJe0p3pwplW2nikvr7Op2xL', 'active', '2026-03-27 00:17:02', '5', '5', '2026-01-23 22:19:49', NULL, '2026-01-23 22:19:45', '2026-03-27 00:17:02'),
('16', '3', 'Grafix POS 1773451258', '01KKMYXAKEZX11DMSZ23XY6YB3', '2IOwzW43uvFwFa2Up9GO8LiwGvpP7abbJxGxA5rpPLZ9iLIZynPSiaP829wDMkco', 'S50qjSrHHF7DQawAfE5XsxNE92ObQOq9pNNN5LAUwnVL5G9SzT99Lgl8sRtTfC5g', 'active', '2026-03-14 01:21:01', '4', '4', '2026-03-14 01:21:00', NULL, '2026-03-14 01:20:58', '2026-03-14 01:21:01'),
('17', '3', 'Grafix POS 1773523792', '01KKQ42WRY9KEY50J5E23M7E17', 'y6AvZ1jGCnR4rWCVwLbfTvhfoVKQ2XvXXiyai8Ys9fujsA9ZjZ4mleaYmt5rKrox', 'f8dLYVBnXTeG7id7YwXYCW97MlTBIcIi3IItpkZhKMAwWOkjnpH4NumJc3rSN9Yq', 'active', '2026-03-15 16:32:31', '4', '4', '2026-03-14 21:29:55', NULL, '2026-03-14 21:29:52', '2026-03-15 16:32:31');


-- Table structure for table `predefined_amounts`
DROP TABLE IF EXISTS `predefined_amounts`;
CREATE TABLE `predefined_amounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `predefined_amounts_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `predefined_amounts_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `predefined_amounts`
INSERT INTO `predefined_amounts` VALUES
('1', '1', '50.00', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('2', '1', '100.00', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('3', '1', '500.00', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('4', '1', '1000.00', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('5', '2', '50.00', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('6', '2', '100.00', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('7', '2', '500.00', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('8', '2', '1000.00', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('9', '3', '10.00', '2025-11-27 10:17:19', '2025-12-29 20:31:09'),
('10', '3', '20.00', '2025-11-27 10:17:19', '2025-12-29 20:31:09'),
('11', '3', '50.00', '2025-11-27 10:17:19', '2025-12-29 20:31:09'),
('12', '3', '100.00', '2025-11-27 10:17:19', '2025-12-29 20:31:09'),
('13', '4', '50.00', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('14', '4', '100.00', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('15', '4', '500.00', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('16', '4', '1000.00', '2025-12-01 11:34:12', '2025-12-01 11:34:12');


-- Table structure for table `print_jobs`
DROP TABLE IF EXISTS `print_jobs`;
CREATE TABLE `print_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `printer_id` bigint unsigned DEFAULT NULL,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `status` enum('done','failed','printing','pending') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'pending',
  `error` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `response_printer` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_filename` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `printed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `print_jobs_printer_id_foreign` (`printer_id`),
  KEY `print_jobs_restaurant_id_foreign` (`restaurant_id`),
  KEY `print_jobs_branch_id_foreign` (`branch_id`),
  CONSTRAINT `print_jobs_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `print_jobs_printer_id_foreign` FOREIGN KEY (`printer_id`) REFERENCES `printers` (`id`) ON DELETE CASCADE,
  CONSTRAINT `print_jobs_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `printers`
DROP TABLE IF EXISTS `printers`;
CREATE TABLE `printers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `printing_choice` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `print_type` enum('image','pdf') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'image',
  `kots` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `orders` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `print_format` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invoice_qr_code` int DEFAULT NULL,
  `open_cash_drawer` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `share_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` enum('network','windows','linux','default') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `printer_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `printers_restaurant_id_foreign` (`restaurant_id`),
  KEY `printers_branch_id_foreign` (`branch_id`),
  CONSTRAINT `printers_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `printers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `printers`
INSERT INTO `printers` VALUES
('1', '1', '1', 'Default Printer', 'browserPopupPrint', 'image', '[1]', '[1]', NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', '2', 'Default Printer', 'browserPopupPrint', 'image', '[2]', '[2]', NULL, NULL, NULL, NULL, NULL, '1', '1', NULL, '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '2', '3', 'Default Printer', 'directPrint', 'pdf', '[\"3\"]', '[\"3\"]', 'thermal56mm', NULL, NULL, NULL, NULL, '1', '1', NULL, '2025-11-27 01:20:35', '2025-12-28 10:10:17'),
('4', '3', '4', 'Default Printer', 'directPrint', 'image', '[]', '[4]', 'thermal56mm', NULL, NULL, NULL, NULL, '1', '1', NULL, '2025-11-27 10:17:22', '2025-12-29 20:25:12'),
('5', '4', '5', 'Default Printer', 'directPrint', 'image', '[5]', '[5]', 'thermal56mm', NULL, NULL, NULL, NULL, '1', '1', NULL, '2025-12-01 11:34:16', '2025-12-27 15:56:53');


-- Table structure for table `purchase_order_items`
DROP TABLE IF EXISTS `purchase_order_items`;
CREATE TABLE `purchase_order_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_order_id` bigint unsigned NOT NULL,
  `inventory_item_id` bigint unsigned NOT NULL,
  `quantity` decimal(10,3) DEFAULT NULL,
  `received_quantity` decimal(10,3) DEFAULT '0.000',
  `unit_price` decimal(10,3) DEFAULT NULL,
  `subtotal` decimal(10,3) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_order_items_purchase_order_id_foreign` (`purchase_order_id`),
  KEY `purchase_order_items_inventory_item_id_foreign` (`inventory_item_id`),
  CONSTRAINT `purchase_order_items_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_order_items_purchase_order_id_foreign` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `purchase_order_payments`
DROP TABLE IF EXISTS `purchase_order_payments`;
CREATE TABLE `purchase_order_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_order_id` bigint unsigned NOT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `amount` decimal(12,3) DEFAULT NULL,
  `payment_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paid_at` date DEFAULT NULL,
  `reference` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_order_payments_purchase_order_id_foreign` (`purchase_order_id`),
  KEY `purchase_order_payments_branch_id_foreign` (`branch_id`),
  KEY `purchase_order_payments_created_by_foreign` (`created_by`),
  CONSTRAINT `purchase_order_payments_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_order_payments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `purchase_order_payments_purchase_order_id_foreign` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `purchase_orders`
DROP TABLE IF EXISTS `purchase_orders`;
CREATE TABLE `purchase_orders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `po_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `branch_id` bigint unsigned NOT NULL,
  `supplier_id` bigint unsigned NOT NULL,
  `order_date` date NOT NULL,
  `expected_delivery_date` date DEFAULT NULL,
  `total_amount` decimal(10,3) DEFAULT '0.000',
  `status` enum('draft','sent','received','partially_received','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `purchase_orders_po_number_unique` (`po_number`),
  KEY `purchase_orders_branch_id_foreign` (`branch_id`),
  KEY `purchase_orders_supplier_id_foreign` (`supplier_id`),
  KEY `purchase_orders_created_by_foreign` (`created_by`),
  CONSTRAINT `purchase_orders_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_orders_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `purchase_orders_supplier_id_foreign` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `push_notifications`
DROP TABLE IF EXISTS `push_notifications`;
CREATE TABLE `push_notifications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `user_id` bigint unsigned NOT NULL,
  `endpoint` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `public_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `auth_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `push_notifications_endpoint_unique` (`endpoint`),
  KEY `push_notifications_restaurant_id_foreign` (`restaurant_id`),
  KEY `push_notifications_user_id_foreign` (`user_id`),
  CONSTRAINT `push_notifications_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `push_notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `push_notifications`
INSERT INTO `push_notifications` VALUES
('1', '2', '4', 'https://fcm.googleapis.com/fcm/send/eEJa-cj5LBw:APA91bFuyK82WgbXunInU1sezs8eqczwaNNCkjmpm42K2uOa8TBtvc3SY92hrxZ7DTnVUJvLEAPNeMzzfrg43p0HYYJNmn98-705MF-wvbRLtsKvYuw3Xg3mrSOwsmnYzfnE_XwKD-7p', 'BOHftmw72gvNMRZTiIsIbJZFu3JqEuworgQCNseR7LvY8WgcUtub6UiYsc-Spr7_Tff17qwGUJax6nz97tQIOg0', 'nfeABUIOobBSkoUwC7FXhw', '2025-12-28 09:57:46', '2025-12-28 09:57:46'),
('2', '3', '9', 'https://fcm.googleapis.com/fcm/send/eboTBt0iwBM:APA91bEvjtemzKR65quFmsZsMFgAssf-aV5wBW_fGCBbDmEuM-Q2i9Lkk0mwbJr_jRDxCTT60F_wS3YOf3iy3ZCnls6ALIb6cqKeTHUWv7s6m92srxHzkYpQy_Ucy8inpwznRRd8t8UM', 'BDWAJMxeiZ7zXQlnI3iUw6d0w4pTBoGJz08kqm6TlMwa_IEyYtu90QNmGpkAEQZCvpvb4RTBoPV6OrMSDUPI_DQ', 'cJd2hucrnJbFT2r8eTXd7w', '2025-12-30 20:10:00', '2025-12-30 20:10:00');


-- Table structure for table `pusher_settings`
DROP TABLE IF EXISTS `pusher_settings`;
CREATE TABLE `pusher_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `beamer_status` tinyint(1) NOT NULL DEFAULT '0',
  `instance_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `beam_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `pusher_broadcast` tinyint(1) NOT NULL DEFAULT '0',
  `pusher_app_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pusher_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pusher_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pusher_cluster` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `pusher_settings`
INSERT INTO `pusher_settings` VALUES
('1', '0', NULL, NULL, '2025-11-27 00:00:26', '2025-12-27 21:12:07', '1', '250a6aa8d5e3f73bc233', '250a6aa8d5e3f73bc233&', 'c91003a4b2e5a258c95a0ac98fee1812a66c98e3c945c162356e39025cf4a685&', 'eu'),
('2', '0', NULL, NULL, '2025-11-27 00:00:54', '2025-11-27 00:00:54', '0', NULL, NULL, NULL, NULL);


-- Table structure for table `razorpay_payments`
DROP TABLE IF EXISTS `razorpay_payments`;
CREATE TABLE `razorpay_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_error_response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_order_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_signature` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `razorpay_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `razorpay_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `receipt_settings`
DROP TABLE IF EXISTS `receipt_settings`;
CREATE TABLE `receipt_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `show_customer_name` tinyint(1) NOT NULL DEFAULT '0',
  `show_customer_address` tinyint(1) NOT NULL DEFAULT '0',
  `show_customer_phone` tinyint(1) NOT NULL DEFAULT '0',
  `show_table_number` tinyint(1) NOT NULL DEFAULT '0',
  `payment_qr_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `show_payment_qr_code` tinyint(1) NOT NULL DEFAULT '0',
  `show_waiter` tinyint(1) NOT NULL DEFAULT '0',
  `show_total_guest` tinyint(1) NOT NULL DEFAULT '0',
  `show_restaurant_logo` tinyint(1) NOT NULL DEFAULT '0',
  `show_tax` tinyint(1) NOT NULL DEFAULT '0',
  `show_payment_details` tinyint(1) NOT NULL DEFAULT '1',
  `show_payment_status` tinyint(1) NOT NULL DEFAULT '0',
  `show_order_type` tinyint(1) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `receipt_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `receipt_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `receipt_settings`
INSERT INTO `receipt_settings` VALUES
('1', '1', '0', '0', '0', '0', NULL, '0', '0', '0', '0', '0', '1', '0', '0', '2025-11-27 00:00:51', '2025-11-27 00:00:51'),
('2', '2', '0', '0', '0', '1', NULL, '0', '0', '0', '1', '1', '1', '0', '0', '2025-11-27 01:20:35', '2025-12-28 09:46:00'),
('3', '3', '0', '0', '0', '0', NULL, '0', '0', '0', '1', '0', '1', '0', '0', '2025-11-27 10:17:19', '2025-12-29 20:31:42'),
('4', '4', '0', '0', '0', '0', NULL, '0', '0', '0', '0', '0', '1', '0', '0', '2025-12-01 11:34:12', '2025-12-01 11:34:12');


-- Table structure for table `recipes`
DROP TABLE IF EXISTS `recipes`;
CREATE TABLE `recipes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `menu_item_id` bigint unsigned DEFAULT NULL,
  `menu_item_variation_id` bigint unsigned DEFAULT NULL,
  `modifier_option_id` bigint unsigned DEFAULT NULL,
  `inventory_item_id` bigint unsigned NOT NULL,
  `quantity` decimal(16,3) DEFAULT '0.000',
  `unit_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `recipes_menu_item_id_foreign` (`menu_item_id`),
  KEY `recipes_inventory_item_id_foreign` (`inventory_item_id`),
  KEY `recipes_unit_id_foreign` (`unit_id`),
  KEY `recipes_menu_item_variation_id_foreign` (`menu_item_variation_id`),
  KEY `recipes_modifier_option_id_foreign` (`modifier_option_id`),
  CONSTRAINT `recipes_inventory_item_id_foreign` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_menu_item_id_foreign` FOREIGN KEY (`menu_item_id`) REFERENCES `menu_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_menu_item_variation_id_foreign` FOREIGN KEY (`menu_item_variation_id`) REFERENCES `menu_item_variations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_modifier_option_id_foreign` FOREIGN KEY (`modifier_option_id`) REFERENCES `modifier_options` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `recipes_unit_id_foreign` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `reservation_settings`
DROP TABLE IF EXISTS `reservation_settings`;
CREATE TABLE `reservation_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `day_of_week` enum('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `time_slot_start` time NOT NULL,
  `time_slot_end` time NOT NULL,
  `time_slot_difference` int NOT NULL,
  `slot_type` enum('Breakfast','Lunch','Dinner') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `available` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reservation_settings_branch_id_foreign` (`branch_id`),
  CONSTRAINT `reservation_settings_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `reservation_settings`
INSERT INTO `reservation_settings` VALUES
('1', '1', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('3', '1', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('4', '1', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('5', '1', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('6', '1', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('7', '1', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('8', '1', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('9', '1', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('10', '1', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('11', '1', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('12', '1', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('13', '1', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('14', '1', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('15', '1', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('16', '1', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('17', '1', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('18', '1', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('19', '1', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('20', '1', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('21', '1', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('22', '2', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('23', '2', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('24', '2', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('25', '2', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('26', '2', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('27', '2', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('28', '2', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('29', '2', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('30', '2', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('31', '2', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('32', '2', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('33', '2', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('34', '2', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('35', '2', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('36', '2', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('37', '2', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('38', '2', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('39', '2', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('40', '2', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('41', '2', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('42', '2', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('43', '1', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('44', '1', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('45', '1', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('46', '1', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('47', '1', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('48', '1', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('49', '1', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('50', '1', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('51', '1', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('52', '1', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('53', '1', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('54', '1', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('55', '1', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('56', '1', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('57', '1', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('58', '1', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('59', '1', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('60', '1', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('61', '1', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('62', '1', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('63', '1', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 00:00:55', '2025-11-27 00:00:55'),
('64', '3', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('65', '3', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('66', '3', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('67', '3', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('68', '3', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('69', '3', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('70', '3', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('71', '3', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('72', '3', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('73', '3', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('74', '3', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('75', '3', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('76', '3', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('77', '3', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('78', '3', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('79', '3', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('80', '3', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('81', '3', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('82', '3', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('83', '3', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('84', '3', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('85', '4', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('86', '4', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('87', '4', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('88', '4', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('89', '4', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('90', '4', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('91', '4', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('92', '4', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('93', '4', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('94', '4', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('95', '4', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('96', '4', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('97', '4', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('98', '4', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('99', '4', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('100', '4', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('101', '4', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('102', '4', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('103', '4', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('104', '4', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('105', '4', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-11-27 10:17:22', '2025-11-27 10:17:22'),
('106', '5', 'Monday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('107', '5', 'Monday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('108', '5', 'Monday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('109', '5', 'Tuesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('110', '5', 'Tuesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('111', '5', 'Tuesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('112', '5', 'Wednesday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('113', '5', 'Wednesday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('114', '5', 'Wednesday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('115', '5', 'Thursday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('116', '5', 'Thursday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('117', '5', 'Thursday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('118', '5', 'Friday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('119', '5', 'Friday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('120', '5', 'Friday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('121', '5', 'Saturday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('122', '5', 'Saturday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('123', '5', 'Saturday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('124', '5', 'Sunday', '08:00:00', '11:00:00', '30', 'Breakfast', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('125', '5', 'Sunday', '12:00:00', '17:00:00', '60', 'Lunch', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16'),
('126', '5', 'Sunday', '18:00:00', '22:00:00', '60', 'Dinner', '1', '2025-12-01 11:34:16', '2025-12-01 11:34:16');


-- Table structure for table `reservations`
DROP TABLE IF EXISTS `reservations`;
CREATE TABLE `reservations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `table_id` bigint unsigned DEFAULT NULL,
  `customer_id` bigint unsigned DEFAULT NULL,
  `reservation_date_time` datetime NOT NULL,
  `party_size` int NOT NULL,
  `special_requests` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reservation_status` enum('Pending','Confirmed','Checked_In','Cancelled','No_Show') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Confirmed',
  `reservation_slot_type` enum('Breakfast','Lunch','Dinner') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `slot_time_difference` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reservations_table_id_foreign` (`table_id`),
  KEY `reservations_customer_id_foreign` (`customer_id`),
  KEY `reservations_branch_id_foreign` (`branch_id`),
  CONSTRAINT `reservations_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `reservations_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `reservations_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `restaurant_charges`
DROP TABLE IF EXISTS `restaurant_charges`;
CREATE TABLE `restaurant_charges` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `charge_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `charge_type` enum('percent','fixed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed',
  `charge_value` decimal(16,2) DEFAULT NULL,
  `order_types` json NOT NULL COMMENT 'Supported order types: DineIn, Delivery, PickUp',
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_charges_restaurant_id_foreign` (`restaurant_id`),
  KEY `restaurant_charges_charge_name_index` (`charge_name`),
  CONSTRAINT `restaurant_charges_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `restaurant_payments`
DROP TABLE IF EXISTS `restaurant_payments`;
CREATE TABLE `restaurant_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `status` enum('pending','paid','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_source` enum('official_site','app_sumo') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'official_site',
  `razorpay_order_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `razorpay_signature` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reference_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_date_time` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `stripe_payment_intent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_session_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `package_id` bigint unsigned DEFAULT NULL,
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `flutterwave_payment_ref` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paypal_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_payments_restaurant_id_foreign` (`restaurant_id`),
  KEY `restaurant_payments_package_id_foreign` (`package_id`),
  CONSTRAINT `restaurant_payments_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurant_payments_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `restaurant_payments`
INSERT INTO `restaurant_payments` VALUES
('1', '2', '10.00', 'pending', 'official_site', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 01:40:41', '2025-11-27 01:40:41', NULL, NULL, '2', 'monthly', '4', NULL, NULL, NULL),
('2', '2', '10.00', 'pending', 'official_site', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 01:43:19', '2025-11-27 01:43:21', NULL, 'cs_live_a1Y1476DE6snN8osrXXZ3eqiN4DsnoqfZ347DV34VfetkZLgiT3GbAHYZs', '2', 'monthly', '4', NULL, NULL, NULL),
('3', '2', '10.00', 'pending', 'official_site', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 01:45:59', '2025-11-27 01:46:00', NULL, 'cs_live_a1WIrkLbHtE0b016DrcpYhDnV62Of7bqoThIPIP6GSVzIkZMLZDLGBBfpj', '2', 'monthly', '4', NULL, NULL, NULL),
('4', '2', '10.00', 'pending', 'official_site', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-03 09:46:22', '2025-12-03 09:46:24', NULL, 'cs_live_a1HSnQmBRFQzPTOqK0YVyPFLp3CZCKH1VA9FarpCPRBmGFIxZVGjXcSaMP', '2', 'monthly', '4', NULL, NULL, NULL);


-- Table structure for table `restaurant_taxes`
DROP TABLE IF EXISTS `restaurant_taxes`;
CREATE TABLE `restaurant_taxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `tax_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `restaurant_taxes_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `restaurant_taxes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `restaurant_taxes`
INSERT INTO `restaurant_taxes` VALUES
('1', '2', '25198489', 'Gradix', '2025-12-28 09:46:00', '2025-12-28 09:46:00');


-- Table structure for table `restaurants`
DROP TABLE IF EXISTS `restaurants`;
CREATE TABLE `restaurants` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `sub_domain` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `timezone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme_hex` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme_rgb` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_id` bigint unsigned NOT NULL,
  `hide_new_orders` tinyint(1) NOT NULL DEFAULT '0',
  `hide_new_reservations` tinyint(1) NOT NULL DEFAULT '0',
  `hide_new_waiter_request` tinyint(1) NOT NULL DEFAULT '0',
  `currency_id` bigint unsigned DEFAULT NULL,
  `license_type` enum('free','paid') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'free',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `customer_login_required` tinyint(1) NOT NULL DEFAULT '0',
  `about_us` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `allow_customer_delivery_orders` tinyint(1) NOT NULL DEFAULT '1',
  `allow_customer_pickup_orders` tinyint(1) NOT NULL DEFAULT '1',
  `pickup_days_range` int DEFAULT '7',
  `allow_customer_orders` tinyint(1) NOT NULL DEFAULT '1',
  `allow_dine_in_orders` tinyint(1) NOT NULL DEFAULT '1',
  `show_veg` tinyint(1) NOT NULL DEFAULT '1',
  `show_halal` tinyint(1) NOT NULL DEFAULT '0',
  `package_id` bigint unsigned DEFAULT NULL,
  `package_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('active','inactive','license_expired') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `license_expire_on` datetime DEFAULT NULL,
  `count_sms` int NOT NULL DEFAULT '0',
  `total_sms` int NOT NULL DEFAULT '-1',
  `trial_ends_at` datetime DEFAULT NULL,
  `license_updated_at` datetime DEFAULT NULL,
  `subscription_updated_at` datetime DEFAULT NULL,
  `stripe_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pm_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pm_last_four` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_waiter_request_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `default_table_reservation_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Confirmed',
  `disable_slot_minutes` int NOT NULL DEFAULT '30',
  `approval_status` enum('Pending','Approved','Rejected') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Approved',
  `rejection_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `facebook_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `yelp_link` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `wifi_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `wifi_password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `show_wifi_icon` tinyint(1) NOT NULL DEFAULT '0',
  `table_required` tinyint(1) NOT NULL DEFAULT '0',
  `show_logo_text` tinyint(1) NOT NULL DEFAULT '1',
  `meta_keyword` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `upload_fav_icon_android_chrome_192` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_fav_icon_android_chrome_512` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_fav_icon_apple_touch_icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_favicon_16` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `upload_favicon_32` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `favicon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_waiter_request_enabled_on_desktop` tinyint(1) NOT NULL DEFAULT '1',
  `is_waiter_request_enabled_on_mobile` tinyint(1) NOT NULL DEFAULT '1',
  `is_waiter_request_enabled_open_by_qr` tinyint(1) NOT NULL DEFAULT '0',
  `webmanifest` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enable_tip_shop` tinyint(1) NOT NULL DEFAULT '1',
  `enable_tip_pos` tinyint(1) NOT NULL DEFAULT '1',
  `is_pwa_install_alert_show` tinyint(1) NOT NULL DEFAULT '0',
  `auto_confirm_orders` tinyint(1) NOT NULL DEFAULT '0',
  `restrict_qr_order_by_location` tinyint(1) NOT NULL DEFAULT '0',
  `qr_order_radius_meters` int unsigned DEFAULT NULL,
  `show_order_type_options` tinyint(1) NOT NULL DEFAULT '1',
  `disable_order_type_popup` tinyint(1) NOT NULL DEFAULT '0',
  `default_order_type_id` bigint unsigned DEFAULT NULL,
  `hide_menu_item_image_on_pos` tinyint(1) NOT NULL DEFAULT '0',
  `hide_menu_item_image_on_customer_site` tinyint(1) NOT NULL DEFAULT '0',
  `tax_mode` enum('order','item') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'order',
  `tax_inclusive` tinyint(1) NOT NULL DEFAULT '0',
  `customer_site_language` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enable_admin_reservation` tinyint(1) NOT NULL DEFAULT '1',
  `enable_customer_reservation` tinyint(1) NOT NULL DEFAULT '1',
  `minimum_party_size` int NOT NULL DEFAULT '1',
  `table_lock_timeout_minutes` int NOT NULL DEFAULT '10',
  PRIMARY KEY (`id`),
  KEY `restaurant_settings_country_id_foreign` (`country_id`),
  KEY `restaurant_settings_currency_id_foreign` (`currency_id`),
  KEY `restaurants_package_id_foreign` (`package_id`),
  KEY `restaurants_default_order_type_id_foreign` (`default_order_type_id`),
  CONSTRAINT `restaurant_settings_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurant_settings_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE,
  CONSTRAINT `restaurants_default_order_type_id_foreign` FOREIGN KEY (`default_order_type_id`) REFERENCES `order_types` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `restaurants_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `restaurants`
INSERT INTO `restaurants` VALUES
('1', 'demo.hellopos.online', 'Demo Restaurant', 'demo-restaurant', '2633 Hiram Pike\nHaucktown, FL 42406-2321', '+13166020782', NULL, 'demo.restaurant@example.com', 'America/New_York', '#A78BFA', '167, 139, 250', NULL, '236', '0', '0', '0', '1', 'free', '1', '2025-11-27 00:00:51', '2025-12-27 00:00:05', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '0', '1', 'monthly', 'license_expired', '2026-01-27 00:00:00', '0', '-1', '2025-12-27 00:00:51', '2025-11-27 00:00:51', '2025-11-27 00:00:51', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, 'https://www.facebook.com/', 'https://www.instagram.com/', 'https://www.twitter.com/', NULL, NULL, NULL, '0', '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '0', NULL, '1', '1', '0', '0', '0', NULL, '1', '0', NULL, '0', '0', 'order', '0', 'en', '1', '1', '1', '10'),
('2', 'grafix.hellopos.online', 'Grafix', 'grafix', 'Plovdiv', '7999973384', '359', 'hsidzhimov@googlemail.com', 'Europe/Sofia', '#2563EB', '37, 99, 235', 'e2bcd87c8c2ad09c8c7569a7312161d5.png', '35', '0', '0', '0', '8', 'free', '1', '2025-11-27 01:20:35', '2025-12-11 05:45:00', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '0', '0', '7', '0', '0', '0', '0', '3', 'lifetime', 'active', NULL, '0', '0', NULL, '2025-11-27 00:00:00', '2025-11-27 01:20:35', 'cus_TUu0ODezf802hJ', NULL, NULL, '0', 'Confirmed', '30', 'Approved', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0', '0', '0', '0', '0', NULL, '1', '0', NULL, '0', '0', 'order', '0', 'en', '0', '0', '1', '10'),
('3', 'alcapone.hellopos.online', 'AL CAPONE CLUB', 'al-capone-club', '3 Evlogi Georgiev \nKapana\nPlovdiv', '877022773', '359', 'vip.zakov@gmail.com', 'Europe/Sofia', '#2563EB', '37, 99, 235', 'ad90bcb29c74651348a06547370745eb.png', '35', '0', '0', '0', '11', 'free', '1', '2025-11-27 10:17:19', '2026-01-14 15:30:56', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '0', '7', 'monthly', 'active', '2026-12-01 00:00:00', '0', '0', NULL, '2025-12-03 00:00:00', '2025-11-27 10:17:19', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, 'https://www.facebook.com/AlCaponePlovdiv/', 'https://www.instagram.com/alcaponeplovdiv/', NULL, NULL, NULL, NULL, '0', '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '0', NULL, '1', '1', '0', '0', '0', NULL, '1', '0', NULL, '0', '0', 'order', '0', 'en', '1', '1', '1', '10'),
('4', 'amant1.hellopos.online', 'Amant Wine And Craft Beer', 'amant-wine-and-craft-beer', 'Nikolay Haytov 6, Sofia', '884909605', '359', 'nicolas@abv.bg', 'Europe/Sofia', '#2563EB', '37, 99, 235', NULL, '35', '0', '0', '0', '16', 'free', '1', '2025-12-01 11:34:12', '2025-12-31 00:00:04', '0', '<p class=\"text-lg text-gray-600 mb-6\">\n          Welcome to our restaurant, where great food and good vibes come together! We\'re a local, family-owned spot that loves bringing people together over delicious meals and unforgettable moments. Whether you\'re here for a quick bite, a family dinner, or a celebration, we\'re all about making your time with us special.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          Our menu is packed with dishes made from fresh, quality ingredients because we believe food should taste as\n          good as it makes you feel. From our signature dishes to seasonal specials, there\'s always something to excite\n          your taste buds.\n        </p>\n        <p class=\"text-lg text-gray-600 mb-6\">\n          But we\'re not just about the food—we\'re about community. We love seeing familiar faces and welcoming new ones.\n          Our team is a fun, friendly bunch dedicated to serving you with a smile and making sure every visit feels like\n          coming home.\n        </p>\n        <p class=\"text-lg text-gray-600\">\n          So, come on in, grab a seat, and let us take care of the rest. We can\'t wait to share our love of food with\n          you!\n        </p>\n        <p class=\"text-lg text-gray-800 font-semibold mt-6\">See you soon! 🍽️✨</p>', '1', '1', '7', '1', '1', '1', '0', '1', 'monthly', 'license_expired', '2026-01-31 00:00:00', '0', '-1', '2025-12-31 11:34:12', '2025-12-01 11:34:12', '2025-12-01 11:34:12', NULL, NULL, NULL, '1', 'Confirmed', '30', 'Approved', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', '1', '0', NULL, '1', '1', '0', '0', '0', NULL, '1', '0', NULL, '0', '0', 'order', '0', 'en', '1', '1', '1', '10');


-- Table structure for table `role_has_permissions`
DROP TABLE IF EXISTS `role_has_permissions`;
CREATE TABLE `role_has_permissions` (
  `permission_id` bigint unsigned NOT NULL,
  `role_id` bigint unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`role_id`),
  KEY `role_has_permissions_role_id_foreign` (`role_id`),
  CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `role_has_permissions`
INSERT INTO `role_has_permissions` VALUES
('1', '2'),
('2', '2'),
('3', '2'),
('4', '2'),
('5', '2'),
('6', '2'),
('7', '2'),
('8', '2'),
('9', '2'),
('10', '2'),
('11', '2'),
('12', '2'),
('13', '2'),
('14', '2'),
('15', '2'),
('16', '2'),
('17', '2'),
('18', '2'),
('19', '2'),
('20', '2'),
('21', '2'),
('22', '2'),
('23', '2'),
('24', '2'),
('25', '2'),
('26', '2'),
('27', '2'),
('28', '2'),
('29', '2'),
('30', '2'),
('31', '2'),
('32', '2'),
('33', '2'),
('34', '2'),
('35', '2'),
('36', '2'),
('37', '2'),
('38', '2'),
('39', '2'),
('40', '2'),
('41', '2'),
('42', '2'),
('43', '2'),
('44', '2'),
('45', '2'),
('46', '2'),
('47', '2'),
('48', '2'),
('49', '2'),
('50', '2'),
('51', '2'),
('52', '2'),
('53', '2'),
('54', '2'),
('55', '2'),
('56', '2'),
('57', '2'),
('58', '2'),
('59', '2'),
('60', '2'),
('61', '2'),
('62', '2'),
('63', '2'),
('64', '2'),
('65', '2'),
('66', '2'),
('67', '2'),
('68', '2'),
('69', '2'),
('70', '2'),
('71', '2'),
('72', '2'),
('73', '2'),
('74', '2'),
('75', '2'),
('76', '2'),
('77', '2'),
('78', '2'),
('79', '2'),
('80', '2'),
('81', '2'),
('82', '2'),
('83', '2'),
('84', '2'),
('85', '2'),
('86', '2'),
('87', '2'),
('88', '2'),
('89', '2'),
('90', '2'),
('91', '2'),
('92', '2'),
('93', '2'),
('94', '2'),
('95', '2'),
('96', '2'),
('97', '2'),
('98', '2'),
('1', '3'),
('2', '3'),
('3', '3'),
('4', '3'),
('5', '3'),
('6', '3'),
('7', '3'),
('8', '3'),
('9', '3'),
('10', '3'),
('11', '3'),
('12', '3'),
('13', '3'),
('14', '3'),
('15', '3'),
('16', '3'),
('17', '3'),
('18', '3'),
('19', '3'),
('20', '3'),
('21', '3'),
('22', '3'),
('23', '3'),
('24', '3'),
('25', '3'),
('26', '3'),
('27', '3'),
('28', '3'),
('29', '3'),
('30', '3'),
('31', '3'),
('32', '3'),
('33', '3'),
('34', '3'),
('35', '3'),
('36', '3'),
('37', '3'),
('38', '3'),
('39', '3'),
('40', '3'),
('41', '3'),
('42', '3'),
('43', '3'),
('44', '3'),
('45', '3'),
('46', '3'),
('47', '3'),
('48', '3'),
('49', '3'),
('50', '3'),
('51', '3'),
('52', '3'),
('53', '3'),
('54', '3'),
('55', '3'),
('56', '3'),
('57', '3'),
('58', '3'),
('59', '3'),
('60', '3'),
('61', '3'),
('62', '3'),
('63', '3'),
('64', '3'),
('65', '3'),
('66', '3'),
('67', '3'),
('68', '3'),
('69', '3'),
('70', '3'),
('71', '3'),
('72', '3'),
('73', '3'),
('74', '3'),
('75', '3'),
('76', '3'),
('77', '3'),
('78', '3'),
('79', '3'),
('80', '3'),
('81', '3'),
('82', '3'),
('83', '3'),
('84', '3'),
('85', '3'),
('86', '3'),
('87', '3'),
('88', '3'),
('89', '3'),
('90', '3'),
('91', '3'),
('92', '3'),
('1', '6'),
('2', '6'),
('3', '6'),
('4', '6'),
('5', '6'),
('6', '6'),
('7', '6'),
('8', '6'),
('9', '6'),
('10', '6'),
('11', '6'),
('12', '6'),
('13', '6'),
('14', '6'),
('15', '6'),
('16', '6'),
('17', '6'),
('18', '6'),
('19', '6'),
('20', '6'),
('21', '6'),
('22', '6'),
('23', '6'),
('24', '6'),
('25', '6'),
('26', '6'),
('27', '6'),
('28', '6'),
('29', '6'),
('30', '6'),
('31', '6'),
('32', '6'),
('33', '6'),
('34', '6'),
('35', '6'),
('36', '6'),
('37', '6'),
('38', '6'),
('39', '6'),
('40', '6'),
('41', '6'),
('42', '6'),
('43', '6'),
('44', '6'),
('45', '6'),
('46', '6'),
('47', '6'),
('48', '6'),
('49', '6'),
('50', '6'),
('51', '6'),
('52', '6'),
('53', '6'),
('54', '6'),
('55', '6'),
('56', '6'),
('57', '6'),
('58', '6'),
('59', '6'),
('60', '6'),
('61', '6'),
('62', '6'),
('63', '6'),
('64', '6'),
('65', '6'),
('66', '6'),
('67', '6'),
('68', '6'),
('69', '6'),
('70', '6'),
('71', '6'),
('72', '6'),
('73', '6'),
('74', '6'),
('75', '6'),
('76', '6'),
('77', '6'),
('78', '6'),
('79', '6'),
('80', '6'),
('81', '6'),
('82', '6'),
('83', '6'),
('84', '6'),
('85', '6'),
('86', '6'),
('87', '6'),
('88', '6'),
('89', '6'),
('90', '6'),
('91', '6'),
('92', '6'),
('93', '6'),
('94', '6'),
('95', '6'),
('96', '6'),
('97', '6'),
('98', '6'),
('1', '7'),
('2', '7'),
('3', '7'),
('4', '7'),
('5', '7'),
('6', '7'),
('7', '7'),
('8', '7'),
('9', '7'),
('10', '7'),
('11', '7'),
('12', '7'),
('13', '7'),
('14', '7'),
('15', '7'),
('16', '7'),
('17', '7'),
('18', '7'),
('19', '7'),
('20', '7'),
('21', '7'),
('22', '7'),
('23', '7'),
('24', '7'),
('25', '7'),
('26', '7'),
('27', '7'),
('28', '7'),
('29', '7'),
('30', '7'),
('31', '7'),
('32', '7'),
('33', '7'),
('34', '7'),
('35', '7'),
('36', '7'),
('37', '7'),
('38', '7'),
('39', '7'),
('40', '7'),
('41', '7'),
('42', '7'),
('43', '7'),
('44', '7'),
('45', '7'),
('46', '7'),
('47', '7'),
('48', '7'),
('49', '7'),
('50', '7'),
('51', '7'),
('52', '7'),
('53', '7'),
('54', '7'),
('55', '7'),
('56', '7'),
('57', '7'),
('58', '7'),
('59', '7'),
('60', '7'),
('61', '7'),
('62', '7'),
('63', '7'),
('64', '7'),
('65', '7'),
('66', '7'),
('67', '7'),
('68', '7'),
('69', '7'),
('70', '7'),
('71', '7'),
('72', '7'),
('73', '7'),
('74', '7'),
('75', '7'),
('76', '7'),
('77', '7'),
('78', '7'),
('79', '7'),
('80', '7'),
('81', '7'),
('82', '7'),
('83', '7'),
('84', '7'),
('85', '7'),
('86', '7'),
('87', '7'),
('88', '7'),
('89', '7'),
('90', '7'),
('91', '7'),
('92', '7'),
('1', '10'),
('2', '10'),
('3', '10'),
('4', '10'),
('5', '10'),
('6', '10'),
('7', '10'),
('8', '10'),
('9', '10'),
('10', '10'),
('11', '10'),
('12', '10'),
('13', '10'),
('14', '10'),
('15', '10'),
('16', '10'),
('17', '10'),
('18', '10'),
('19', '10'),
('20', '10'),
('21', '10'),
('22', '10'),
('23', '10'),
('24', '10'),
('25', '10'),
('26', '10'),
('27', '10'),
('28', '10'),
('29', '10'),
('30', '10'),
('31', '10'),
('32', '10'),
('33', '10'),
('34', '10'),
('35', '10'),
('36', '10'),
('37', '10'),
('38', '10'),
('39', '10'),
('40', '10'),
('41', '10'),
('42', '10'),
('43', '10'),
('44', '10'),
('45', '10'),
('46', '10'),
('47', '10'),
('48', '10'),
('49', '10'),
('50', '10'),
('51', '10'),
('52', '10'),
('53', '10'),
('54', '10'),
('55', '10'),
('56', '10'),
('57', '10'),
('58', '10'),
('59', '10'),
('60', '10'),
('61', '10'),
('62', '10'),
('63', '10'),
('64', '10'),
('65', '10'),
('66', '10'),
('67', '10'),
('68', '10'),
('69', '10'),
('70', '10'),
('71', '10'),
('72', '10'),
('73', '10'),
('74', '10'),
('75', '10'),
('76', '10'),
('77', '10'),
('78', '10'),
('79', '10'),
('80', '10'),
('81', '10'),
('82', '10'),
('83', '10'),
('84', '10'),
('85', '10'),
('86', '10'),
('87', '10'),
('88', '10'),
('89', '10'),
('90', '10'),
('91', '10'),
('92', '10'),
('93', '10'),
('94', '10'),
('95', '10'),
('96', '10'),
('97', '10'),
('98', '10'),
('1', '11'),
('2', '11'),
('3', '11'),
('4', '11'),
('5', '11'),
('6', '11'),
('7', '11'),
('8', '11'),
('9', '11'),
('10', '11'),
('11', '11'),
('12', '11'),
('13', '11'),
('14', '11'),
('15', '11'),
('16', '11'),
('17', '11'),
('18', '11'),
('19', '11'),
('20', '11'),
('21', '11'),
('22', '11'),
('23', '11'),
('24', '11'),
('25', '11'),
('26', '11'),
('27', '11'),
('28', '11'),
('29', '11'),
('30', '11'),
('31', '11'),
('32', '11'),
('33', '11'),
('34', '11'),
('35', '11'),
('36', '11'),
('37', '11'),
('38', '11'),
('39', '11'),
('40', '11'),
('41', '11'),
('42', '11'),
('43', '11'),
('44', '11'),
('45', '11'),
('46', '11'),
('47', '11'),
('48', '11'),
('49', '11'),
('50', '11'),
('51', '11'),
('52', '11'),
('53', '11'),
('54', '11'),
('55', '11'),
('56', '11'),
('57', '11'),
('58', '11'),
('59', '11'),
('60', '11'),
('61', '11'),
('62', '11'),
('63', '11'),
('64', '11'),
('65', '11'),
('66', '11'),
('67', '11'),
('68', '11'),
('69', '11'),
('70', '11'),
('71', '11'),
('72', '11'),
('73', '11'),
('74', '11'),
('75', '11'),
('76', '11'),
('77', '11'),
('78', '11'),
('79', '11'),
('80', '11'),
('81', '11'),
('82', '11'),
('83', '11'),
('84', '11'),
('85', '11'),
('86', '11'),
('87', '11'),
('88', '11'),
('89', '11'),
('90', '11'),
('91', '11'),
('92', '11'),
('2', '14'),
('6', '14'),
('10', '14'),
('14', '14'),
('18', '14'),
('25', '14'),
('26', '14'),
('27', '14'),
('28', '14'),
('30', '14'),
('31', '14'),
('32', '14'),
('33', '14'),
('34', '14'),
('43', '14'),
('46', '14'),
('1', '15'),
('2', '15'),
('3', '15'),
('4', '15'),
('5', '15'),
('6', '15'),
('7', '15'),
('8', '15'),
('9', '15'),
('10', '15'),
('11', '15'),
('12', '15'),
('13', '15'),
('14', '15'),
('15', '15'),
('16', '15'),
('17', '15'),
('18', '15'),
('19', '15'),
('20', '15'),
('21', '15'),
('22', '15'),
('23', '15'),
('24', '15'),
('25', '15'),
('26', '15'),
('27', '15'),
('28', '15'),
('29', '15'),
('30', '15'),
('31', '15'),
('32', '15'),
('33', '15'),
('34', '15'),
('35', '15'),
('36', '15'),
('37', '15'),
('38', '15'),
('39', '15'),
('40', '15'),
('41', '15'),
('42', '15'),
('43', '15'),
('44', '15'),
('45', '15'),
('46', '15'),
('47', '15'),
('48', '15'),
('49', '15'),
('50', '15'),
('51', '15'),
('52', '15'),
('53', '15'),
('54', '15'),
('55', '15'),
('56', '15'),
('57', '15'),
('58', '15'),
('59', '15'),
('60', '15'),
('61', '15'),
('62', '15'),
('63', '15'),
('64', '15'),
('65', '15'),
('66', '15'),
('67', '15'),
('68', '15'),
('69', '15'),
('70', '15'),
('71', '15'),
('72', '15'),
('73', '15'),
('74', '15'),
('75', '15'),
('76', '15'),
('77', '15'),
('78', '15'),
('79', '15'),
('80', '15'),
('81', '15'),
('82', '15'),
('83', '15'),
('84', '15'),
('85', '15'),
('86', '15'),
('87', '15'),
('88', '15'),
('89', '15'),
('90', '15'),
('91', '15'),
('92', '15'),
('93', '15'),
('94', '15'),
('95', '15'),
('96', '15'),
('97', '15'),
('98', '15'),
('1', '16'),
('2', '16'),
('3', '16'),
('4', '16'),
('5', '16'),
('6', '16'),
('7', '16'),
('8', '16'),
('9', '16'),
('10', '16'),
('11', '16'),
('12', '16'),
('13', '16'),
('14', '16'),
('15', '16'),
('16', '16'),
('17', '16'),
('18', '16'),
('19', '16'),
('20', '16'),
('21', '16'),
('22', '16'),
('23', '16'),
('24', '16'),
('25', '16'),
('26', '16'),
('27', '16'),
('28', '16'),
('29', '16'),
('30', '16'),
('31', '16'),
('32', '16'),
('33', '16'),
('34', '16'),
('35', '16'),
('36', '16'),
('37', '16'),
('38', '16'),
('39', '16'),
('40', '16'),
('41', '16'),
('42', '16'),
('43', '16'),
('44', '16'),
('45', '16'),
('46', '16'),
('47', '16'),
('48', '16'),
('49', '16'),
('50', '16'),
('51', '16'),
('52', '16'),
('53', '16'),
('54', '16'),
('55', '16'),
('56', '16'),
('57', '16'),
('58', '16'),
('59', '16'),
('60', '16'),
('61', '16'),
('62', '16'),
('63', '16'),
('64', '16'),
('65', '16'),
('66', '16'),
('67', '16'),
('68', '16'),
('69', '16'),
('70', '16'),
('71', '16'),
('72', '16'),
('73', '16'),
('74', '16'),
('75', '16'),
('76', '16'),
('77', '16'),
('78', '16'),
('79', '16'),
('80', '16'),
('81', '16'),
('82', '16'),
('83', '16'),
('84', '16'),
('85', '16'),
('86', '16'),
('87', '16'),
('88', '16'),
('89', '16'),
('90', '16'),
('91', '16'),
('92', '16');


-- Table structure for table `roles`
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `display_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `guard_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_name_guard_name_unique` (`name`,`guard_name`),
  KEY `roles_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `roles_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `roles`
INSERT INTO `roles` VALUES
('1', 'Super Admin', 'Super Admin', 'web', '2025-11-27 00:00:50', '2025-11-27 00:00:50', NULL),
('2', 'Admin_1', 'Admin', 'web', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '1'),
('3', 'Branch Head_1', 'Branch Head', 'web', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '1'),
('4', 'Waiter_1', 'Waiter', 'web', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '1'),
('5', 'Chef_1', 'Chef', 'web', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '1'),
('6', 'Admin_2', 'Admin', 'web', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '2'),
('7', 'Branch Head_2', 'Branch Head', 'web', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '2'),
('8', 'Waiter_2', 'Waiter', 'web', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '2'),
('9', 'Chef_2', 'Chef', 'web', '2025-11-27 01:20:35', '2025-11-27 01:20:35', '2'),
('10', 'Admin_3', 'Admin', 'web', '2025-11-27 10:17:23', '2025-11-27 10:17:23', '3'),
('11', 'Branch Head_3', 'Branch Head', 'web', '2025-11-27 10:17:23', '2025-11-27 10:17:23', '3'),
('12', 'Waiter_3', 'Waiter', 'web', '2025-11-27 10:17:23', '2025-11-27 10:17:23', '3'),
('13', 'Chef_3', 'Chef', 'web', '2025-11-27 10:17:23', '2025-11-27 10:17:23', '3'),
('14', 'Barman_3', 'Barman', 'web', '2025-11-27 15:59:51', '2025-11-27 15:59:51', '3'),
('15', 'Admin_4', 'Admin', 'web', '2025-12-01 11:34:16', '2025-12-01 11:34:16', '4'),
('16', 'Branch Head_4', 'Branch Head', 'web', '2025-12-01 11:34:16', '2025-12-01 11:34:16', '4'),
('17', 'Waiter_4', 'Waiter', 'web', '2025-12-01 11:34:17', '2025-12-01 11:34:17', '4'),
('18', 'Chef_4', 'Chef', 'web', '2025-12-01 11:34:17', '2025-12-01 11:34:17', '4');


-- Table structure for table `sessions`
DROP TABLE IF EXISTS `sessions`;
CREATE TABLE `sessions` (
  `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_activity` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id_index` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sessions`
INSERT INTO `sessions` VALUES
('36JxCuU5cGNKH8H3YChGSNCRO8aDUTtwNCvCt1yS', '9', '87.97.193.133', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'YToyMDp7czo2OiJfdG9rZW4iO3M6NDA6ImRaRUl1RUE3VEpINUJLVWxhdjV2cDNIaENhVjJiVE1ua3dVMFFzNEMiO3M6MjA6ImNoZWNrX21pZ3JhdGVfc3RhdHVzIjtzOjQ6Ikdvb2QiO3M6MTU6ImN1c3RvbWVyX2lzX3J0bCI7YjowO3M6NDoidXNlciI7TzoxNToiQXBwXE1vZGVsc1xVc2VyIjozNjp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJ1c2VycyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjI0OntzOjI6ImlkIjtpOjk7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6OToiYnJhbmNoX2lkIjtpOjQ7czo0OiJuYW1lIjtzOjU6Ik1pdGtvIjtzOjU6ImVtYWlsIjtzOjIwOiJkaW1pdGFyazY1QGdtYWlsLmNvbSI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjk6Ijg3ODU5OTE0NCI7czoxMDoicGhvbmVfY29kZSI7czozOiIzNTkiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRWQlprZzd2RGVSNUsucVF1bzIzbnJlTG5QemU5bDBoRTJJWXlzbEc2NHByVUV5RWNsRUo4YSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMzAgMjA6MDg6MzUiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMzAgMjA6MDk6MTAiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjI0OntzOjI6ImlkIjtpOjk7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6OToiYnJhbmNoX2lkIjtpOjQ7czo0OiJuYW1lIjtzOjU6Ik1pdGtvIjtzOjU6ImVtYWlsIjtzOjIwOiJkaW1pdGFyazY1QGdtYWlsLmNvbSI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjk6Ijg3ODU5OTE0NCI7czoxMDoicGhvbmVfY29kZSI7czozOiIzNTkiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRWQlprZzd2RGVSNUsucVF1bzIzbnJlTG5QemU5bDBoRTJJWXlzbEc2NHByVUV5RWNsRUo4YSI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7TjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMzAgMjA6MDg6MzUiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMzAgMjA6MDk6MTAiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjY6e3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjg6InBhc3N3b3JkIjtzOjY6Imhhc2hlZCI7czoxMzoicmVzdGF1cmFudF9pZCI7czo3OiJpbnRlZ2VyIjtzOjk6ImJyYW5jaF9pZCI7czo3OiJpbnRlZ2VyIjtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7czo3OiJib29sZWFuIjtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InByb2ZpbGVfcGhvdG9fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTozOntzOjU6InJvbGVzIjtPOjM5OiJJbGx1bWluYXRlXERhdGFiYXNlXEVsb3F1ZW50XENvbGxlY3Rpb24iOjI6e3M6ODoiACoAaXRlbXMiO2E6MTp7aTowO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjc6e3M6MjoiaWQiO2k6MTQ7czo0OiJuYW1lIjtzOjg6IkJhcm1hbl8zIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6NjoiQmFybWFuIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxNTo1OTo1MSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxNTo1OTo1MSI7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO31zOjExOiIAKgBvcmlnaW5hbCI7YToxMDp7czoyOiJpZCI7aToxNDtzOjQ6Im5hbWUiO3M6ODoiQmFybWFuXzMiO3M6MTI6ImRpc3BsYXlfbmFtZSI7czo2OiJCYXJtYW4iO3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDE1OjU5OjUxIjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDE1OjU5OjUxIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czoxNDoicGl2b3RfbW9kZWxfaWQiO2k6OTtzOjEzOiJwaXZvdF9yb2xlX2lkIjtpOjE0O3M6MTY6InBpdm90X21vZGVsX3R5cGUiO3M6MTU6IkFwcFxNb2RlbHNcVXNlciI7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MTp7czo1OiJwaXZvdCI7Tzo0OToiSWxsdW1pbmF0ZVxEYXRhYmFzZVxFbG9xdWVudFxSZWxhdGlvbnNcTW9ycGhQaXZvdCI6Mzk6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTU6Im1vZGVsX2hhc19yb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjowO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjM6e3M6MTA6Im1vZGVsX3R5cGUiO3M6MTU6IkFwcFxNb2RlbHNcVXNlciI7czo4OiJtb2RlbF9pZCI7aTo5O3M6Nzoicm9sZV9pZCI7aToxNDt9czoxMToiACoAb3JpZ2luYWwiO2E6Mzp7czoxMDoibW9kZWxfdHlwZSI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjtzOjg6Im1vZGVsX2lkIjtpOjk7czo3OiJyb2xlX2lkIjtpOjE0O31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjowO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MDp7fXM6MTE6InBpdm90UGFyZW50IjtPOjE1OiJBcHBcTW9kZWxzXFVzZXIiOjM2OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjU6InVzZXJzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjA7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MDp7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjA6e31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTo2OntzOjE3OiJlbWFpbF92ZXJpZmllZF9hdCI7czo4OiJkYXRldGltZSI7czo4OiJwYXNzd29yZCI7czo2OiJoYXNoZWQiO3M6MTM6InJlc3RhdXJhbnRfaWQiO3M6NzoiaW50ZWdlciI7czo5OiJicmFuY2hfaWQiO3M6NzoiaW50ZWdlciI7czoyNjoidGVybXNfYW5kX3ByaXZhY3lfYWNjZXB0ZWQiO3M6NzoiYm9vbGVhbiI7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7czo3OiJib29sZWFuIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjE6e2k6MDtzOjE3OiJwcm9maWxlX3Bob3RvX3VybCI7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjQ6e2k6MDtzOjg6InBhc3N3b3JkIjtpOjE7czoxNDoicmVtZW1iZXJfdG9rZW4iO2k6MjtzOjI1OiJ0d29fZmFjdG9yX3JlY292ZXJ5X2NvZGVzIjtpOjM7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YToxMDp7aTowO3M6NDoibmFtZSI7aToxO3M6NToiZW1haWwiO2k6MjtzOjg6InBhc3N3b3JkIjtpOjM7czo5OiJicmFuY2hfaWQiO2k6NDtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjU7czo2OiJsb2NhbGUiO2k6NjtzOjEyOiJwaG9uZV9udW1iZXIiO2k6NztzOjEwOiJwaG9uZV9jb2RlIjtpOjg7czoyNjoidGVybXNfYW5kX3ByaXZhY3lfYWNjZXB0ZWQiO2k6OTtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9czoxOToiACoAYXV0aFBhc3N3b3JkTmFtZSI7czo4OiJwYXNzd29yZCI7czoyMDoiACoAcmVtZW1iZXJUb2tlbk5hbWUiO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtzOjE0OiIAKgBhY2Nlc3NUb2tlbiI7Tjt9czoxMjoicGl2b3RSZWxhdGVkIjtPOjI5OiJTcGF0aWVcUGVybWlzc2lvblxNb2RlbHNcUm9sZSI6MzM6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6NToicm9sZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MDtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YToxOntzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjA6e31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MjoiaWQiO319czoxMzoiACoAZm9yZWlnbktleSI7czo4OiJtb2RlbF9pZCI7czoxMzoiACoAcmVsYXRlZEtleSI7czo3OiJyb2xlX2lkIjtzOjEyOiIAKgBtb3JwaFR5cGUiO3M6MTA6Im1vZGVsX3R5cGUiO3M6MTM6IgAqAG1vcnBoQ2xhc3MiO3M6MTU6IkFwcFxNb2RlbHNcVXNlciI7fX1zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MjoiaWQiO319fXM6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDt9czoxMDoicmVzdGF1cmFudCI7TzoyMToiQXBwXE1vZGVsc1xSZXN0YXVyYW50IjozOTp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoxMToicmVzdGF1cmFudHMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTo4Njp7czoyOiJpZCI7aTozO3M6MTA6InN1Yl9kb21haW4iO3M6MjQ6ImFsY2Fwb25lLmhlbGxvcG9zLm9ubGluZSI7czo0OiJuYW1lIjtzOjE0OiJBTCBDQVBPTkUgQ0xVQiI7czo0OiJoYXNoIjtzOjE0OiJhbC1jYXBvbmUtY2x1YiI7czo3OiJhZGRyZXNzIjtzOjMzOiIzIEV2bG9naSBHZW9yZ2lldiAKS2FwYW5hClBsb3ZkaXYiO3M6MTI6InBob25lX251bWJlciI7aTo4NzcwMjI3NzM7czoxMDoicGhvbmVfY29kZSI7aTozNTk7czo1OiJlbWFpbCI7czoxOToidmlwLnpha292QGdtYWlsLmNvbSI7czo4OiJ0aW1lem9uZSI7czoxMjoiRXVyb3BlL1NvZmlhIjtzOjk6InRoZW1lX2hleCI7czo3OiIjMjU2M0VCIjtzOjk6InRoZW1lX3JnYiI7czoxMToiMzcsIDk5LCAyMzUiO3M6NDoibG9nbyI7czozNjoiYWQ5MGJjYjI5Yzc0NjUxMzQ4YTA2NTQ3MzcwNzQ1ZWIucG5nIjtzOjEwOiJjb3VudHJ5X2lkIjtpOjM1O3M6MTU6ImhpZGVfbmV3X29yZGVycyI7aTowO3M6MjE6ImhpZGVfbmV3X3Jlc2VydmF0aW9ucyI7aTowO3M6MjM6ImhpZGVfbmV3X3dhaXRlcl9yZXF1ZXN0IjtpOjA7czoxMToiY3VycmVuY3lfaWQiO2k6MTE7czoxMjoibGljZW5zZV90eXBlIjtzOjQ6ImZyZWUiO3M6OToiaXNfYWN0aXZlIjtpOjE7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNi0wMS0xNCAxNTozMDo1NiI7czoyMzoiY3VzdG9tZXJfbG9naW5fcmVxdWlyZWQiO2k6MDtzOjg6ImFib3V0X3VzIjtzOjEzMDQ6IjxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBXZWxjb21lIHRvIG91ciByZXN0YXVyYW50LCB3aGVyZSBncmVhdCBmb29kIGFuZCBnb29kIHZpYmVzIGNvbWUgdG9nZXRoZXIhIFdlJ3JlIGEgbG9jYWwsIGZhbWlseS1vd25lZCBzcG90IHRoYXQgbG92ZXMgYnJpbmdpbmcgcGVvcGxlIHRvZ2V0aGVyIG92ZXIgZGVsaWNpb3VzIG1lYWxzIGFuZCB1bmZvcmdldHRhYmxlIG1vbWVudHMuIFdoZXRoZXIgeW91J3JlIGhlcmUgZm9yIGEgcXVpY2sgYml0ZSwgYSBmYW1pbHkgZGlubmVyLCBvciBhIGNlbGVicmF0aW9uLCB3ZSdyZSBhbGwgYWJvdXQgbWFraW5nIHlvdXIgdGltZSB3aXRoIHVzIHNwZWNpYWwuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBPdXIgbWVudSBpcyBwYWNrZWQgd2l0aCBkaXNoZXMgbWFkZSBmcm9tIGZyZXNoLCBxdWFsaXR5IGluZ3JlZGllbnRzIGJlY2F1c2Ugd2UgYmVsaWV2ZSBmb29kIHNob3VsZCB0YXN0ZSBhcwogICAgICAgICAgZ29vZCBhcyBpdCBtYWtlcyB5b3UgZmVlbC4gRnJvbSBvdXIgc2lnbmF0dXJlIGRpc2hlcyB0byBzZWFzb25hbCBzcGVjaWFscywgdGhlcmUncyBhbHdheXMgc29tZXRoaW5nIHRvIGV4Y2l0ZQogICAgICAgICAgeW91ciB0YXN0ZSBidWRzLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgQnV0IHdlJ3JlIG5vdCBqdXN0IGFib3V0IHRoZSBmb29k4oCUd2UncmUgYWJvdXQgY29tbXVuaXR5LiBXZSBsb3ZlIHNlZWluZyBmYW1pbGlhciBmYWNlcyBhbmQgd2VsY29taW5nIG5ldyBvbmVzLgogICAgICAgICAgT3VyIHRlYW0gaXMgYSBmdW4sIGZyaWVuZGx5IGJ1bmNoIGRlZGljYXRlZCB0byBzZXJ2aW5nIHlvdSB3aXRoIGEgc21pbGUgYW5kIG1ha2luZyBzdXJlIGV2ZXJ5IHZpc2l0IGZlZWxzIGxpa2UKICAgICAgICAgIGNvbWluZyBob21lLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIj4KICAgICAgICAgIFNvLCBjb21lIG9uIGluLCBncmFiIGEgc2VhdCwgYW5kIGxldCB1cyB0YWtlIGNhcmUgb2YgdGhlIHJlc3QuIFdlIGNhbid0IHdhaXQgdG8gc2hhcmUgb3VyIGxvdmUgb2YgZm9vZCB3aXRoCiAgICAgICAgICB5b3UhCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS04MDAgZm9udC1zZW1pYm9sZCBtdC02Ij5TZWUgeW91IHNvb24hIPCfjb3vuI/inKg8L3A+IjtzOjMwOiJhbGxvd19jdXN0b21lcl9kZWxpdmVyeV9vcmRlcnMiO2k6MTtzOjI4OiJhbGxvd19jdXN0b21lcl9waWNrdXBfb3JkZXJzIjtpOjE7czoxNzoicGlja3VwX2RheXNfcmFuZ2UiO2k6NztzOjIxOiJhbGxvd19jdXN0b21lcl9vcmRlcnMiO2k6MTtzOjIwOiJhbGxvd19kaW5lX2luX29yZGVycyI7aToxO3M6ODoic2hvd192ZWciO2k6MTtzOjEwOiJzaG93X2hhbGFsIjtpOjA7czoxMDoicGFja2FnZV9pZCI7aTo3O3M6MTI6InBhY2thZ2VfdHlwZSI7czo3OiJtb250aGx5IjtzOjY6InN0YXR1cyI7czo2OiJhY3RpdmUiO3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjE5OiIyMDI2LTEyLTAxIDAwOjAwOjAwIjtzOjk6ImNvdW50X3NtcyI7aTowO3M6OToidG90YWxfc21zIjtpOjA7czoxMzoidHJpYWxfZW5kc19hdCI7TjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMDA6MDA6MDAiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MjU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWQiO2k6MTtzOjMyOiJkZWZhdWx0X3RhYmxlX3Jlc2VydmF0aW9uX3N0YXR1cyI7czo5OiJDb25maXJtZWQiO3M6MjA6ImRpc2FibGVfc2xvdF9taW51dGVzIjtpOjMwO3M6MTU6ImFwcHJvdmFsX3N0YXR1cyI7czo4OiJBcHByb3ZlZCI7czoxNjoicmVqZWN0aW9uX3JlYXNvbiI7TjtzOjEzOiJmYWNlYm9va19saW5rIjtzOjQxOiJodHRwczovL3d3dy5mYWNlYm9vay5jb20vQWxDYXBvbmVQbG92ZGl2LyI7czoxNDoiaW5zdGFncmFtX2xpbmsiO3M6NDI6Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vYWxjYXBvbmVwbG92ZGl2LyI7czoxMjoidHdpdHRlcl9saW5rIjtOO3M6OToieWVscF9saW5rIjtOO3M6OToid2lmaV9uYW1lIjtOO3M6MTM6IndpZmlfcGFzc3dvcmQiO047czoxNDoic2hvd193aWZpX2ljb24iO2k6MDtzOjE0OiJ0YWJsZV9yZXF1aXJlZCI7aTowO3M6MTQ6InNob3dfbG9nb190ZXh0IjtpOjE7czoxMjoibWV0YV9rZXl3b3JkIjtOO3M6MTY6Im1ldGFfZGVzY3JpcHRpb24iO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzE5MiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfNTEyIjtOO3M6MzI6InVwbG9hZF9mYXZfaWNvbl9hcHBsZV90b3VjaF9pY29uIjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzE2IjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzMyIjtOO3M6NzoiZmF2aWNvbiI7TjtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX2Rlc2t0b3AiO2k6MTtzOjM1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX21vYmlsZSI7aToxO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb3Blbl9ieV9xciI7aTowO3M6MTE6IndlYm1hbmlmZXN0IjtOO3M6MTU6ImVuYWJsZV90aXBfc2hvcCI7aToxO3M6MTQ6ImVuYWJsZV90aXBfcG9zIjtpOjE7czoyNToiaXNfcHdhX2luc3RhbGxfYWxlcnRfc2hvdyI7aTowO3M6MTk6ImF1dG9fY29uZmlybV9vcmRlcnMiO2k6MDtzOjI5OiJyZXN0cmljdF9xcl9vcmRlcl9ieV9sb2NhdGlvbiI7aTowO3M6MjI6InFyX29yZGVyX3JhZGl1c19tZXRlcnMiO047czoyMzoic2hvd19vcmRlcl90eXBlX29wdGlvbnMiO2k6MTtzOjI0OiJkaXNhYmxlX29yZGVyX3R5cGVfcG9wdXAiO2k6MDtzOjIxOiJkZWZhdWx0X29yZGVyX3R5cGVfaWQiO047czoyNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fcG9zIjtpOjA7czozNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fY3VzdG9tZXJfc2l0ZSI7aTowO3M6ODoidGF4X21vZGUiO3M6NToib3JkZXIiO3M6MTM6InRheF9pbmNsdXNpdmUiO2k6MDtzOjIyOiJjdXN0b21lcl9zaXRlX2xhbmd1YWdlIjtzOjI6ImVuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO2k6MTtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO2k6MTtzOjE4OiJtaW5pbXVtX3BhcnR5X3NpemUiO2k6MTtzOjI2OiJ0YWJsZV9sb2NrX3RpbWVvdXRfbWludXRlcyI7aToxMDt9czoxMToiACoAb3JpZ2luYWwiO2E6ODY6e3M6MjoiaWQiO2k6MztzOjEwOiJzdWJfZG9tYWluIjtzOjI0OiJhbGNhcG9uZS5oZWxsb3Bvcy5vbmxpbmUiO3M6NDoibmFtZSI7czoxNDoiQUwgQ0FQT05FIENMVUIiO3M6NDoiaGFzaCI7czoxNDoiYWwtY2Fwb25lLWNsdWIiO3M6NzoiYWRkcmVzcyI7czozMzoiMyBFdmxvZ2kgR2VvcmdpZXYgCkthcGFuYQpQbG92ZGl2IjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6OToiODc3MDIyNzczIjtzOjEwOiJwaG9uZV9jb2RlIjtzOjM6IjM1OSI7czo1OiJlbWFpbCI7czoxOToidmlwLnpha292QGdtYWlsLmNvbSI7czo4OiJ0aW1lem9uZSI7czoxMjoiRXVyb3BlL1NvZmlhIjtzOjk6InRoZW1lX2hleCI7czo3OiIjMjU2M0VCIjtzOjk6InRoZW1lX3JnYiI7czoxMToiMzcsIDk5LCAyMzUiO3M6NDoibG9nbyI7czozNjoiYWQ5MGJjYjI5Yzc0NjUxMzQ4YTA2NTQ3MzcwNzQ1ZWIucG5nIjtzOjEwOiJjb3VudHJ5X2lkIjtpOjM1O3M6MTU6ImhpZGVfbmV3X29yZGVycyI7aTowO3M6MjE6ImhpZGVfbmV3X3Jlc2VydmF0aW9ucyI7aTowO3M6MjM6ImhpZGVfbmV3X3dhaXRlcl9yZXF1ZXN0IjtpOjA7czoxMToiY3VycmVuY3lfaWQiO2k6MTE7czoxMjoibGljZW5zZV90eXBlIjtzOjQ6ImZyZWUiO3M6OToiaXNfYWN0aXZlIjtpOjE7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNi0wMS0xNCAxNTozMDo1NiI7czoyMzoiY3VzdG9tZXJfbG9naW5fcmVxdWlyZWQiO2k6MDtzOjg6ImFib3V0X3VzIjtzOjEzMDQ6IjxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBXZWxjb21lIHRvIG91ciByZXN0YXVyYW50LCB3aGVyZSBncmVhdCBmb29kIGFuZCBnb29kIHZpYmVzIGNvbWUgdG9nZXRoZXIhIFdlJ3JlIGEgbG9jYWwsIGZhbWlseS1vd25lZCBzcG90IHRoYXQgbG92ZXMgYnJpbmdpbmcgcGVvcGxlIHRvZ2V0aGVyIG92ZXIgZGVsaWNpb3VzIG1lYWxzIGFuZCB1bmZvcmdldHRhYmxlIG1vbWVudHMuIFdoZXRoZXIgeW91J3JlIGhlcmUgZm9yIGEgcXVpY2sgYml0ZSwgYSBmYW1pbHkgZGlubmVyLCBvciBhIGNlbGVicmF0aW9uLCB3ZSdyZSBhbGwgYWJvdXQgbWFraW5nIHlvdXIgdGltZSB3aXRoIHVzIHNwZWNpYWwuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBPdXIgbWVudSBpcyBwYWNrZWQgd2l0aCBkaXNoZXMgbWFkZSBmcm9tIGZyZXNoLCBxdWFsaXR5IGluZ3JlZGllbnRzIGJlY2F1c2Ugd2UgYmVsaWV2ZSBmb29kIHNob3VsZCB0YXN0ZSBhcwogICAgICAgICAgZ29vZCBhcyBpdCBtYWtlcyB5b3UgZmVlbC4gRnJvbSBvdXIgc2lnbmF0dXJlIGRpc2hlcyB0byBzZWFzb25hbCBzcGVjaWFscywgdGhlcmUncyBhbHdheXMgc29tZXRoaW5nIHRvIGV4Y2l0ZQogICAgICAgICAgeW91ciB0YXN0ZSBidWRzLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgQnV0IHdlJ3JlIG5vdCBqdXN0IGFib3V0IHRoZSBmb29k4oCUd2UncmUgYWJvdXQgY29tbXVuaXR5LiBXZSBsb3ZlIHNlZWluZyBmYW1pbGlhciBmYWNlcyBhbmQgd2VsY29taW5nIG5ldyBvbmVzLgogICAgICAgICAgT3VyIHRlYW0gaXMgYSBmdW4sIGZyaWVuZGx5IGJ1bmNoIGRlZGljYXRlZCB0byBzZXJ2aW5nIHlvdSB3aXRoIGEgc21pbGUgYW5kIG1ha2luZyBzdXJlIGV2ZXJ5IHZpc2l0IGZlZWxzIGxpa2UKICAgICAgICAgIGNvbWluZyBob21lLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIj4KICAgICAgICAgIFNvLCBjb21lIG9uIGluLCBncmFiIGEgc2VhdCwgYW5kIGxldCB1cyB0YWtlIGNhcmUgb2YgdGhlIHJlc3QuIFdlIGNhbid0IHdhaXQgdG8gc2hhcmUgb3VyIGxvdmUgb2YgZm9vZCB3aXRoCiAgICAgICAgICB5b3UhCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS04MDAgZm9udC1zZW1pYm9sZCBtdC02Ij5TZWUgeW91IHNvb24hIPCfjb3vuI/inKg8L3A+IjtzOjMwOiJhbGxvd19jdXN0b21lcl9kZWxpdmVyeV9vcmRlcnMiO2k6MTtzOjI4OiJhbGxvd19jdXN0b21lcl9waWNrdXBfb3JkZXJzIjtpOjE7czoxNzoicGlja3VwX2RheXNfcmFuZ2UiO2k6NztzOjIxOiJhbGxvd19jdXN0b21lcl9vcmRlcnMiO2k6MTtzOjIwOiJhbGxvd19kaW5lX2luX29yZGVycyI7aToxO3M6ODoic2hvd192ZWciO2k6MTtzOjEwOiJzaG93X2hhbGFsIjtpOjA7czoxMDoicGFja2FnZV9pZCI7aTo3O3M6MTI6InBhY2thZ2VfdHlwZSI7czo3OiJtb250aGx5IjtzOjY6InN0YXR1cyI7czo2OiJhY3RpdmUiO3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjE5OiIyMDI2LTEyLTAxIDAwOjAwOjAwIjtzOjk6ImNvdW50X3NtcyI7aTowO3M6OToidG90YWxfc21zIjtpOjA7czoxMzoidHJpYWxfZW5kc19hdCI7TjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMDA6MDA6MDAiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MjU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWQiO2k6MTtzOjMyOiJkZWZhdWx0X3RhYmxlX3Jlc2VydmF0aW9uX3N0YXR1cyI7czo5OiJDb25maXJtZWQiO3M6MjA6ImRpc2FibGVfc2xvdF9taW51dGVzIjtpOjMwO3M6MTU6ImFwcHJvdmFsX3N0YXR1cyI7czo4OiJBcHByb3ZlZCI7czoxNjoicmVqZWN0aW9uX3JlYXNvbiI7TjtzOjEzOiJmYWNlYm9va19saW5rIjtzOjQxOiJodHRwczovL3d3dy5mYWNlYm9vay5jb20vQWxDYXBvbmVQbG92ZGl2LyI7czoxNDoiaW5zdGFncmFtX2xpbmsiO3M6NDI6Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vYWxjYXBvbmVwbG92ZGl2LyI7czoxMjoidHdpdHRlcl9saW5rIjtOO3M6OToieWVscF9saW5rIjtOO3M6OToid2lmaV9uYW1lIjtOO3M6MTM6IndpZmlfcGFzc3dvcmQiO047czoxNDoic2hvd193aWZpX2ljb24iO2k6MDtzOjE0OiJ0YWJsZV9yZXF1aXJlZCI7aTowO3M6MTQ6InNob3dfbG9nb190ZXh0IjtpOjE7czoxMjoibWV0YV9rZXl3b3JkIjtOO3M6MTY6Im1ldGFfZGVzY3JpcHRpb24iO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzE5MiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfNTEyIjtOO3M6MzI6InVwbG9hZF9mYXZfaWNvbl9hcHBsZV90b3VjaF9pY29uIjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzE2IjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzMyIjtOO3M6NzoiZmF2aWNvbiI7TjtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX2Rlc2t0b3AiO2k6MTtzOjM1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX21vYmlsZSI7aToxO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb3Blbl9ieV9xciI7aTowO3M6MTE6IndlYm1hbmlmZXN0IjtOO3M6MTU6ImVuYWJsZV90aXBfc2hvcCI7aToxO3M6MTQ6ImVuYWJsZV90aXBfcG9zIjtpOjE7czoyNToiaXNfcHdhX2luc3RhbGxfYWxlcnRfc2hvdyI7aTowO3M6MTk6ImF1dG9fY29uZmlybV9vcmRlcnMiO2k6MDtzOjI5OiJyZXN0cmljdF9xcl9vcmRlcl9ieV9sb2NhdGlvbiI7aTowO3M6MjI6InFyX29yZGVyX3JhZGl1c19tZXRlcnMiO047czoyMzoic2hvd19vcmRlcl90eXBlX29wdGlvbnMiO2k6MTtzOjI0OiJkaXNhYmxlX29yZGVyX3R5cGVfcG9wdXAiO2k6MDtzOjIxOiJkZWZhdWx0X29yZGVyX3R5cGVfaWQiO047czoyNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fcG9zIjtpOjA7czozNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fY3VzdG9tZXJfc2l0ZSI7aTowO3M6ODoidGF4X21vZGUiO3M6NToib3JkZXIiO3M6MTM6InRheF9pbmNsdXNpdmUiO2k6MDtzOjIyOiJjdXN0b21lcl9zaXRlX2xhbmd1YWdlIjtzOjI6ImVuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO2k6MTtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO2k6MTtzOjE4OiJtaW5pbXVtX3BhcnR5X3NpemUiO2k6MTtzOjI2OiJ0YWJsZV9sb2NrX3RpbWVvdXRfbWludXRlcyI7aToxMDt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MTE6e3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjg6ImRhdGV0aW1lIjtzOjE1OiJ0cmlhbF9leHBpcmVfb24iO3M6ODoiZGF0ZXRpbWUiO3M6MTg6ImxpY2Vuc2VfdXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoyMzoic3Vic2NyaXB0aW9uX3VwZGF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MTA6InVwZGF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MjM6ImN1c3RvbV9kZWxpdmVyeV9vcHRpb25zIjtzOjU6ImFycmF5IjtzOjk6ImlzX2FjdGl2ZSI7czo3OiJib29sZWFuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO3M6NzoiYm9vbGVhbiI7czoyNzoiZW5hYmxlX2N1c3RvbWVyX3Jlc2VydmF0aW9uIjtzOjc6ImJvb2xlYW4iO3M6Mjk6InJlc3RyaWN0X3FyX29yZGVyX2J5X2xvY2F0aW9uIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6ODoibG9nb191cmwiO31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MjoiaWQiO31zOjE3OiJjdXN0b21lcklwQWRkcmVzcyI7TjtzOjI0OiJlc3RpbWF0aW9uQmlsbGluZ0FkZHJlc3MiO2E6MDp7fXM6MTM6ImNvbGxlY3RUYXhJZHMiO2I6MDtzOjg6ImNvdXBvbklkIjtOO3M6MTU6InByb21vdGlvbkNvZGVJZCI7TjtzOjE5OiJhbGxvd1Byb21vdGlvbkNvZGVzIjtiOjA7fXM6MTE6InBlcm1pc3Npb25zIjtPOjM5OiJJbGx1bWluYXRlXERhdGFiYXNlXEVsb3F1ZW50XENvbGxlY3Rpb24iOjI6e3M6ODoiACoAaXRlbXMiO2E6MDp7fXM6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjQ6e2k6MDtzOjg6InBhc3N3b3JkIjtpOjE7czoxNDoicmVtZW1iZXJfdG9rZW4iO2k6MjtzOjI1OiJ0d29fZmFjdG9yX3JlY292ZXJ5X2NvZGVzIjtpOjM7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YToxMDp7aTowO3M6NDoibmFtZSI7aToxO3M6NToiZW1haWwiO2k6MjtzOjg6InBhc3N3b3JkIjtpOjM7czo5OiJicmFuY2hfaWQiO2k6NDtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjU7czo2OiJsb2NhbGUiO2k6NjtzOjEyOiJwaG9uZV9udW1iZXIiO2k6NztzOjEwOiJwaG9uZV9jb2RlIjtpOjg7czoyNjoidGVybXNfYW5kX3ByaXZhY3lfYWNjZXB0ZWQiO2k6OTtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9czoxOToiACoAYXV0aFBhc3N3b3JkTmFtZSI7czo4OiJwYXNzd29yZCI7czoyMDoiACoAcmVtZW1iZXJUb2tlbk5hbWUiO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtzOjE0OiIAKgBhY2Nlc3NUb2tlbiI7Tjt9czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NzQ6Imh0dHBzOi8vYWxjYXBvbmUuaGVsbG9wb3Mub25saW5lL21hbmlmZXN0Lmpzb24/aGFzaD1hbC1jYXBvbmUtY2x1YiZ1cmw9cG9zIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo2NzoiaHR0cHM6Ly9hbGNhcG9uZS5oZWxsb3Bvcy5vbmxpbmUvcG9zL2tvdC8zNTI/c2hvdy1vcmRlci1kZXRhaWw9dHJ1ZSI7fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjk7czoxNjoicm9sZV9wZXJtaXNzaW9ucyI7YToxNjp7aTowO3M6OToiU2hvdyBNZW51IjtpOjE7czoxNDoiU2hvdyBNZW51IEl0ZW0iO2k6MjtzOjE4OiJTaG93IEl0ZW0gQ2F0ZWdvcnkiO2k6MztzOjk6IlNob3cgQXJlYSI7aTo0O3M6MTA6IlNob3cgVGFibGUiO2k6NTtzOjEwOiJNYW5hZ2UgS09UIjtpOjY7czoxMjoiQ3JlYXRlIE9yZGVyIjtpOjc7czoxMDoiU2hvdyBPcmRlciI7aTo4O3M6MTI6IlVwZGF0ZSBPcmRlciI7aTo5O3M6MTk6IkFkZCBEaXNjb3VudCBvbiBQT1MiO2k6MTA7czoxNToiQ3JlYXRlIEN1c3RvbWVyIjtpOjExO3M6MTM6IlNob3cgQ3VzdG9tZXIiO2k6MTI7czoxNToiVXBkYXRlIEN1c3RvbWVyIjtpOjEzO3M6MTU6IkRlbGV0ZSBDdXN0b21lciI7aToxNDtzOjEzOiJTaG93IFBheW1lbnRzIjtpOjE1O3M6MjE6Ik1hbmFnZSBXYWl0ZXIgUmVxdWVzdCI7fXM6MTA6InJlc3RhdXJhbnQiO086MjE6IkFwcFxNb2RlbHNcUmVzdGF1cmFudCI6Mzk6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTE6InJlc3RhdXJhbnRzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6ODY6e3M6MjoiaWQiO2k6MztzOjEwOiJzdWJfZG9tYWluIjtzOjI0OiJhbGNhcG9uZS5oZWxsb3Bvcy5vbmxpbmUiO3M6NDoibmFtZSI7czoxNDoiQUwgQ0FQT05FIENMVUIiO3M6NDoiaGFzaCI7czoxNDoiYWwtY2Fwb25lLWNsdWIiO3M6NzoiYWRkcmVzcyI7czozMzoiMyBFdmxvZ2kgR2VvcmdpZXYgCkthcGFuYQpQbG92ZGl2IjtzOjEyOiJwaG9uZV9udW1iZXIiO2k6ODc3MDIyNzczO3M6MTA6InBob25lX2NvZGUiO2k6MzU5O3M6NToiZW1haWwiO3M6MTk6InZpcC56YWtvdkBnbWFpbC5jb20iO3M6ODoidGltZXpvbmUiO3M6MTI6IkV1cm9wZS9Tb2ZpYSI7czo5OiJ0aGVtZV9oZXgiO3M6NzoiIzI1NjNFQiI7czo5OiJ0aGVtZV9yZ2IiO3M6MTE6IjM3LCA5OSwgMjM1IjtzOjQ6ImxvZ28iO3M6MzY6ImFkOTBiY2IyOWM3NDY1MTM0OGEwNjU0NzM3MDc0NWViLnBuZyI7czoxMDoiY291bnRyeV9pZCI7aTozNTtzOjE1OiJoaWRlX25ld19vcmRlcnMiO2k6MDtzOjIxOiJoaWRlX25ld19yZXNlcnZhdGlvbnMiO2k6MDtzOjIzOiJoaWRlX25ld193YWl0ZXJfcmVxdWVzdCI7aTowO3M6MTE6ImN1cnJlbmN5X2lkIjtpOjExO3M6MTI6ImxpY2Vuc2VfdHlwZSI7czo0OiJmcmVlIjtzOjk6ImlzX2FjdGl2ZSI7aToxO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjYtMDEtMTQgMTU6MzA6NTYiO3M6MjM6ImN1c3RvbWVyX2xvZ2luX3JlcXVpcmVkIjtpOjA7czo4OiJhYm91dF91cyI7czoxMzA0OiI8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgV2VsY29tZSB0byBvdXIgcmVzdGF1cmFudCwgd2hlcmUgZ3JlYXQgZm9vZCBhbmQgZ29vZCB2aWJlcyBjb21lIHRvZ2V0aGVyISBXZSdyZSBhIGxvY2FsLCBmYW1pbHktb3duZWQgc3BvdCB0aGF0IGxvdmVzIGJyaW5naW5nIHBlb3BsZSB0b2dldGhlciBvdmVyIGRlbGljaW91cyBtZWFscyBhbmQgdW5mb3JnZXR0YWJsZSBtb21lbnRzLiBXaGV0aGVyIHlvdSdyZSBoZXJlIGZvciBhIHF1aWNrIGJpdGUsIGEgZmFtaWx5IGRpbm5lciwgb3IgYSBjZWxlYnJhdGlvbiwgd2UncmUgYWxsIGFib3V0IG1ha2luZyB5b3VyIHRpbWUgd2l0aCB1cyBzcGVjaWFsLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgT3VyIG1lbnUgaXMgcGFja2VkIHdpdGggZGlzaGVzIG1hZGUgZnJvbSBmcmVzaCwgcXVhbGl0eSBpbmdyZWRpZW50cyBiZWNhdXNlIHdlIGJlbGlldmUgZm9vZCBzaG91bGQgdGFzdGUgYXMKICAgICAgICAgIGdvb2QgYXMgaXQgbWFrZXMgeW91IGZlZWwuIEZyb20gb3VyIHNpZ25hdHVyZSBkaXNoZXMgdG8gc2Vhc29uYWwgc3BlY2lhbHMsIHRoZXJlJ3MgYWx3YXlzIHNvbWV0aGluZyB0byBleGNpdGUKICAgICAgICAgIHlvdXIgdGFzdGUgYnVkcy4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIEJ1dCB3ZSdyZSBub3QganVzdCBhYm91dCB0aGUgZm9vZOKAlHdlJ3JlIGFib3V0IGNvbW11bml0eS4gV2UgbG92ZSBzZWVpbmcgZmFtaWxpYXIgZmFjZXMgYW5kIHdlbGNvbWluZyBuZXcgb25lcy4KICAgICAgICAgIE91ciB0ZWFtIGlzIGEgZnVuLCBmcmllbmRseSBidW5jaCBkZWRpY2F0ZWQgdG8gc2VydmluZyB5b3Ugd2l0aCBhIHNtaWxlIGFuZCBtYWtpbmcgc3VyZSBldmVyeSB2aXNpdCBmZWVscyBsaWtlCiAgICAgICAgICBjb21pbmcgaG9tZS4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCI+CiAgICAgICAgICBTbywgY29tZSBvbiBpbiwgZ3JhYiBhIHNlYXQsIGFuZCBsZXQgdXMgdGFrZSBjYXJlIG9mIHRoZSByZXN0LiBXZSBjYW4ndCB3YWl0IHRvIHNoYXJlIG91ciBsb3ZlIG9mIGZvb2Qgd2l0aAogICAgICAgICAgeW91IQogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktODAwIGZvbnQtc2VtaWJvbGQgbXQtNiI+U2VlIHlvdSBzb29uISDwn42977iP4pyoPC9wPiI7czozMDoiYWxsb3dfY3VzdG9tZXJfZGVsaXZlcnlfb3JkZXJzIjtpOjE7czoyODoiYWxsb3dfY3VzdG9tZXJfcGlja3VwX29yZGVycyI7aToxO3M6MTc6InBpY2t1cF9kYXlzX3JhbmdlIjtpOjc7czoyMToiYWxsb3dfY3VzdG9tZXJfb3JkZXJzIjtpOjE7czoyMDoiYWxsb3dfZGluZV9pbl9vcmRlcnMiO2k6MTtzOjg6InNob3dfdmVnIjtpOjE7czoxMDoic2hvd19oYWxhbCI7aTowO3M6MTA6InBhY2thZ2VfaWQiO2k6NztzOjEyOiJwYWNrYWdlX3R5cGUiO3M6NzoibW9udGhseSI7czo2OiJzdGF0dXMiO3M6NjoiYWN0aXZlIjtzOjE3OiJsaWNlbnNlX2V4cGlyZV9vbiI7czoxOToiMjAyNi0xMi0wMSAwMDowMDowMCI7czo5OiJjb3VudF9zbXMiO2k6MDtzOjk6InRvdGFsX3NtcyI7aTowO3M6MTM6InRyaWFsX2VuZHNfYXQiO047czoxODoibGljZW5zZV91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEyLTAzIDAwOjAwOjAwIjtzOjIzOiJzdWJzY3JpcHRpb25fdXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czo5OiJzdHJpcGVfaWQiO047czo3OiJwbV90eXBlIjtOO3M6MTI6InBtX2xhc3RfZm91ciI7TjtzOjI1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkIjtpOjE7czozMjoiZGVmYXVsdF90YWJsZV9yZXNlcnZhdGlvbl9zdGF0dXMiO3M6OToiQ29uZmlybWVkIjtzOjIwOiJkaXNhYmxlX3Nsb3RfbWludXRlcyI7aTozMDtzOjE1OiJhcHByb3ZhbF9zdGF0dXMiO3M6ODoiQXBwcm92ZWQiO3M6MTY6InJlamVjdGlvbl9yZWFzb24iO047czoxMzoiZmFjZWJvb2tfbGluayI7czo0MToiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL0FsQ2Fwb25lUGxvdmRpdi8iO3M6MTQ6Imluc3RhZ3JhbV9saW5rIjtzOjQyOiJodHRwczovL3d3dy5pbnN0YWdyYW0uY29tL2FsY2Fwb25lcGxvdmRpdi8iO3M6MTI6InR3aXR0ZXJfbGluayI7TjtzOjk6InllbHBfbGluayI7TjtzOjk6IndpZmlfbmFtZSI7TjtzOjEzOiJ3aWZpX3Bhc3N3b3JkIjtOO3M6MTQ6InNob3dfd2lmaV9pY29uIjtpOjA7czoxNDoidGFibGVfcmVxdWlyZWQiO2k6MDtzOjE0OiJzaG93X2xvZ29fdGV4dCI7aToxO3M6MTI6Im1ldGFfa2V5d29yZCI7TjtzOjE2OiJtZXRhX2Rlc2NyaXB0aW9uIjtOO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV8xOTIiO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzUxMiI7TjtzOjMyOiJ1cGxvYWRfZmF2X2ljb25fYXBwbGVfdG91Y2hfaWNvbiI7TjtzOjE3OiJ1cGxvYWRfZmF2aWNvbl8xNiI7TjtzOjE3OiJ1cGxvYWRfZmF2aWNvbl8zMiI7TjtzOjc6ImZhdmljb24iO047czozNjoiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9kZXNrdG9wIjtpOjE7czozNToiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9tb2JpbGUiO2k6MTtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29wZW5fYnlfcXIiO2k6MDtzOjExOiJ3ZWJtYW5pZmVzdCI7TjtzOjE1OiJlbmFibGVfdGlwX3Nob3AiO2k6MTtzOjE0OiJlbmFibGVfdGlwX3BvcyI7aToxO3M6MjU6ImlzX3B3YV9pbnN0YWxsX2FsZXJ0X3Nob3ciO2k6MDtzOjE5OiJhdXRvX2NvbmZpcm1fb3JkZXJzIjtpOjA7czoyOToicmVzdHJpY3RfcXJfb3JkZXJfYnlfbG9jYXRpb24iO2k6MDtzOjIyOiJxcl9vcmRlcl9yYWRpdXNfbWV0ZXJzIjtOO3M6MjM6InNob3dfb3JkZXJfdHlwZV9vcHRpb25zIjtpOjE7czoyNDoiZGlzYWJsZV9vcmRlcl90eXBlX3BvcHVwIjtpOjA7czoyMToiZGVmYXVsdF9vcmRlcl90eXBlX2lkIjtOO3M6Mjc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX3BvcyI7aTowO3M6Mzc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX2N1c3RvbWVyX3NpdGUiO2k6MDtzOjg6InRheF9tb2RlIjtzOjU6Im9yZGVyIjtzOjEzOiJ0YXhfaW5jbHVzaXZlIjtpOjA7czoyMjoiY3VzdG9tZXJfc2l0ZV9sYW5ndWFnZSI7czoyOiJlbiI7czoyNDoiZW5hYmxlX2FkbWluX3Jlc2VydmF0aW9uIjtpOjE7czoyNzoiZW5hYmxlX2N1c3RvbWVyX3Jlc2VydmF0aW9uIjtpOjE7czoxODoibWluaW11bV9wYXJ0eV9zaXplIjtpOjE7czoyNjoidGFibGVfbG9ja190aW1lb3V0X21pbnV0ZXMiO2k6MTA7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjg2OntzOjI6ImlkIjtpOjM7czoxMDoic3ViX2RvbWFpbiI7czoyNDoiYWxjYXBvbmUuaGVsbG9wb3Mub25saW5lIjtzOjQ6Im5hbWUiO3M6MTQ6IkFMIENBUE9ORSBDTFVCIjtzOjQ6Imhhc2giO3M6MTQ6ImFsLWNhcG9uZS1jbHViIjtzOjc6ImFkZHJlc3MiO3M6MzM6IjMgRXZsb2dpIEdlb3JnaWV2IApLYXBhbmEKUGxvdmRpdiI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjk6Ijg3NzAyMjc3MyI7czoxMDoicGhvbmVfY29kZSI7czozOiIzNTkiO3M6NToiZW1haWwiO3M6MTk6InZpcC56YWtvdkBnbWFpbC5jb20iO3M6ODoidGltZXpvbmUiO3M6MTI6IkV1cm9wZS9Tb2ZpYSI7czo5OiJ0aGVtZV9oZXgiO3M6NzoiIzI1NjNFQiI7czo5OiJ0aGVtZV9yZ2IiO3M6MTE6IjM3LCA5OSwgMjM1IjtzOjQ6ImxvZ28iO3M6MzY6ImFkOTBiY2IyOWM3NDY1MTM0OGEwNjU0NzM3MDc0NWViLnBuZyI7czoxMDoiY291bnRyeV9pZCI7aTozNTtzOjE1OiJoaWRlX25ld19vcmRlcnMiO2k6MDtzOjIxOiJoaWRlX25ld19yZXNlcnZhdGlvbnMiO2k6MDtzOjIzOiJoaWRlX25ld193YWl0ZXJfcmVxdWVzdCI7aTowO3M6MTE6ImN1cnJlbmN5X2lkIjtpOjExO3M6MTI6ImxpY2Vuc2VfdHlwZSI7czo0OiJmcmVlIjtzOjk6ImlzX2FjdGl2ZSI7aToxO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjYtMDEtMTQgMTU6MzA6NTYiO3M6MjM6ImN1c3RvbWVyX2xvZ2luX3JlcXVpcmVkIjtpOjA7czo4OiJhYm91dF91cyI7czoxMzA0OiI8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgV2VsY29tZSB0byBvdXIgcmVzdGF1cmFudCwgd2hlcmUgZ3JlYXQgZm9vZCBhbmQgZ29vZCB2aWJlcyBjb21lIHRvZ2V0aGVyISBXZSdyZSBhIGxvY2FsLCBmYW1pbHktb3duZWQgc3BvdCB0aGF0IGxvdmVzIGJyaW5naW5nIHBlb3BsZSB0b2dldGhlciBvdmVyIGRlbGljaW91cyBtZWFscyBhbmQgdW5mb3JnZXR0YWJsZSBtb21lbnRzLiBXaGV0aGVyIHlvdSdyZSBoZXJlIGZvciBhIHF1aWNrIGJpdGUsIGEgZmFtaWx5IGRpbm5lciwgb3IgYSBjZWxlYnJhdGlvbiwgd2UncmUgYWxsIGFib3V0IG1ha2luZyB5b3VyIHRpbWUgd2l0aCB1cyBzcGVjaWFsLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgT3VyIG1lbnUgaXMgcGFja2VkIHdpdGggZGlzaGVzIG1hZGUgZnJvbSBmcmVzaCwgcXVhbGl0eSBpbmdyZWRpZW50cyBiZWNhdXNlIHdlIGJlbGlldmUgZm9vZCBzaG91bGQgdGFzdGUgYXMKICAgICAgICAgIGdvb2QgYXMgaXQgbWFrZXMgeW91IGZlZWwuIEZyb20gb3VyIHNpZ25hdHVyZSBkaXNoZXMgdG8gc2Vhc29uYWwgc3BlY2lhbHMsIHRoZXJlJ3MgYWx3YXlzIHNvbWV0aGluZyB0byBleGNpdGUKICAgICAgICAgIHlvdXIgdGFzdGUgYnVkcy4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIEJ1dCB3ZSdyZSBub3QganVzdCBhYm91dCB0aGUgZm9vZOKAlHdlJ3JlIGFib3V0IGNvbW11bml0eS4gV2UgbG92ZSBzZWVpbmcgZmFtaWxpYXIgZmFjZXMgYW5kIHdlbGNvbWluZyBuZXcgb25lcy4KICAgICAgICAgIE91ciB0ZWFtIGlzIGEgZnVuLCBmcmllbmRseSBidW5jaCBkZWRpY2F0ZWQgdG8gc2VydmluZyB5b3Ugd2l0aCBhIHNtaWxlIGFuZCBtYWtpbmcgc3VyZSBldmVyeSB2aXNpdCBmZWVscyBsaWtlCiAgICAgICAgICBjb21pbmcgaG9tZS4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCI+CiAgICAgICAgICBTbywgY29tZSBvbiBpbiwgZ3JhYiBhIHNlYXQsIGFuZCBsZXQgdXMgdGFrZSBjYXJlIG9mIHRoZSByZXN0LiBXZSBjYW4ndCB3YWl0IHRvIHNoYXJlIG91ciBsb3ZlIG9mIGZvb2Qgd2l0aAogICAgICAgICAgeW91IQogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktODAwIGZvbnQtc2VtaWJvbGQgbXQtNiI+U2VlIHlvdSBzb29uISDwn42977iP4pyoPC9wPiI7czozMDoiYWxsb3dfY3VzdG9tZXJfZGVsaXZlcnlfb3JkZXJzIjtpOjE7czoyODoiYWxsb3dfY3VzdG9tZXJfcGlja3VwX29yZGVycyI7aToxO3M6MTc6InBpY2t1cF9kYXlzX3JhbmdlIjtpOjc7czoyMToiYWxsb3dfY3VzdG9tZXJfb3JkZXJzIjtpOjE7czoyMDoiYWxsb3dfZGluZV9pbl9vcmRlcnMiO2k6MTtzOjg6InNob3dfdmVnIjtpOjE7czoxMDoic2hvd19oYWxhbCI7aTowO3M6MTA6InBhY2thZ2VfaWQiO2k6NztzOjEyOiJwYWNrYWdlX3R5cGUiO3M6NzoibW9udGhseSI7czo2OiJzdGF0dXMiO3M6NjoiYWN0aXZlIjtzOjE3OiJsaWNlbnNlX2V4cGlyZV9vbiI7czoxOToiMjAyNi0xMi0wMSAwMDowMDowMCI7czo5OiJjb3VudF9zbXMiO2k6MDtzOjk6InRvdGFsX3NtcyI7aTowO3M6MTM6InRyaWFsX2VuZHNfYXQiO047czoxODoibGljZW5zZV91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEyLTAzIDAwOjAwOjAwIjtzOjIzOiJzdWJzY3JpcHRpb25fdXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czo5OiJzdHJpcGVfaWQiO047czo3OiJwbV90eXBlIjtOO3M6MTI6InBtX2xhc3RfZm91ciI7TjtzOjI1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkIjtpOjE7czozMjoiZGVmYXVsdF90YWJsZV9yZXNlcnZhdGlvbl9zdGF0dXMiO3M6OToiQ29uZmlybWVkIjtzOjIwOiJkaXNhYmxlX3Nsb3RfbWludXRlcyI7aTozMDtzOjE1OiJhcHByb3ZhbF9zdGF0dXMiO3M6ODoiQXBwcm92ZWQiO3M6MTY6InJlamVjdGlvbl9yZWFzb24iO047czoxMzoiZmFjZWJvb2tfbGluayI7czo0MToiaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL0FsQ2Fwb25lUGxvdmRpdi8iO3M6MTQ6Imluc3RhZ3JhbV9saW5rIjtzOjQyOiJodHRwczovL3d3dy5pbnN0YWdyYW0uY29tL2FsY2Fwb25lcGxvdmRpdi8iO3M6MTI6InR3aXR0ZXJfbGluayI7TjtzOjk6InllbHBfbGluayI7TjtzOjk6IndpZmlfbmFtZSI7TjtzOjEzOiJ3aWZpX3Bhc3N3b3JkIjtOO3M6MTQ6InNob3dfd2lmaV9pY29uIjtpOjA7czoxNDoidGFibGVfcmVxdWlyZWQiO2k6MDtzOjE0OiJzaG93X2xvZ29fdGV4dCI7aToxO3M6MTI6Im1ldGFfa2V5d29yZCI7TjtzOjE2OiJtZXRhX2Rlc2NyaXB0aW9uIjtOO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV8xOTIiO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzUxMiI7TjtzOjMyOiJ1cGxvYWRfZmF2X2ljb25fYXBwbGVfdG91Y2hfaWNvbiI7TjtzOjE3OiJ1cGxvYWRfZmF2aWNvbl8xNiI7TjtzOjE3OiJ1cGxvYWRfZmF2aWNvbl8zMiI7TjtzOjc6ImZhdmljb24iO047czozNjoiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9kZXNrdG9wIjtpOjE7czozNToiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vbl9tb2JpbGUiO2k6MTtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29wZW5fYnlfcXIiO2k6MDtzOjExOiJ3ZWJtYW5pZmVzdCI7TjtzOjE1OiJlbmFibGVfdGlwX3Nob3AiO2k6MTtzOjE0OiJlbmFibGVfdGlwX3BvcyI7aToxO3M6MjU6ImlzX3B3YV9pbnN0YWxsX2FsZXJ0X3Nob3ciO2k6MDtzOjE5OiJhdXRvX2NvbmZpcm1fb3JkZXJzIjtpOjA7czoyOToicmVzdHJpY3RfcXJfb3JkZXJfYnlfbG9jYXRpb24iO2k6MDtzOjIyOiJxcl9vcmRlcl9yYWRpdXNfbWV0ZXJzIjtOO3M6MjM6InNob3dfb3JkZXJfdHlwZV9vcHRpb25zIjtpOjE7czoyNDoiZGlzYWJsZV9vcmRlcl90eXBlX3BvcHVwIjtpOjA7czoyMToiZGVmYXVsdF9vcmRlcl90eXBlX2lkIjtOO3M6Mjc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX3BvcyI7aTowO3M6Mzc6ImhpZGVfbWVudV9pdGVtX2ltYWdlX29uX2N1c3RvbWVyX3NpdGUiO2k6MDtzOjg6InRheF9tb2RlIjtzOjU6Im9yZGVyIjtzOjEzOiJ0YXhfaW5jbHVzaXZlIjtpOjA7czoyMjoiY3VzdG9tZXJfc2l0ZV9sYW5ndWFnZSI7czoyOiJlbiI7czoyNDoiZW5hYmxlX2FkbWluX3Jlc2VydmF0aW9uIjtpOjE7czoyNzoiZW5hYmxlX2N1c3RvbWVyX3Jlc2VydmF0aW9uIjtpOjE7czoxODoibWluaW11bV9wYXJ0eV9zaXplIjtpOjE7czoyNjoidGFibGVfbG9ja190aW1lb3V0X21pbnV0ZXMiO2k6MTA7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjExOntzOjE3OiJsaWNlbnNlX2V4cGlyZV9vbiI7czo4OiJkYXRldGltZSI7czoxNToidHJpYWxfZXhwaXJlX29uIjtzOjg6ImRhdGV0aW1lIjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjIzOiJjdXN0b21fZGVsaXZlcnlfb3B0aW9ucyI7czo1OiJhcnJheSI7czo5OiJpc19hY3RpdmUiO3M6NzoiYm9vbGVhbiI7czoyNDoiZW5hYmxlX2FkbWluX3Jlc2VydmF0aW9uIjtzOjc6ImJvb2xlYW4iO3M6Mjc6ImVuYWJsZV9jdXN0b21lcl9yZXNlcnZhdGlvbiI7czo3OiJib29sZWFuIjtzOjI5OiJyZXN0cmljdF9xcl9vcmRlcl9ieV9sb2NhdGlvbiI7czo3OiJib29sZWFuIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjE6e2k6MDtzOjg6ImxvZ29fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTo0OntzOjE1OiJwYXltZW50R2F0ZXdheXMiO086MzU6IkFwcFxNb2RlbHNcUGF5bWVudEdhdGV3YXlDcmVkZW50aWFsIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoyNzoicGF5bWVudF9nYXRld2F5X2NyZWRlbnRpYWxzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6NjY6e3M6MjoiaWQiO2k6NDtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czoxMjoicmF6b3JwYXlfa2V5IjtOO3M6MTU6InJhem9ycGF5X3NlY3JldCI7TjtzOjE1OiJyYXpvcnBheV9zdGF0dXMiO2k6MDtzOjEwOiJzdHJpcGVfa2V5IjtOO3M6MTM6InN0cmlwZV9zZWNyZXQiO047czoxMzoic3RyaXBlX3N0YXR1cyI7aTowO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6MjY6ImlzX2RpbmVfaW5fcGF5bWVudF9lbmFibGVkIjtpOjA7czoyNzoiaXNfZGVsaXZlcnlfcGF5bWVudF9lbmFibGVkIjtpOjA7czoyNToiaXNfcGlja3VwX3BheW1lbnRfZW5hYmxlZCI7aTowO3M6MjM6ImlzX2Nhc2hfcGF5bWVudF9lbmFibGVkIjtpOjA7czoyMToiaXNfcXJfcGF5bWVudF9lbmFibGVkIjtpOjA7czoyNjoiaXNfb2ZmbGluZV9wYXltZW50X2VuYWJsZWQiO2k6MDtzOjIyOiJvZmZsaW5lX3BheW1lbnRfZGV0YWlsIjtOO3M6MTM6InFyX2NvZGVfaW1hZ2UiO047czoxODoiZmx1dHRlcndhdmVfc3RhdHVzIjtpOjA7czoxNjoiZmx1dHRlcndhdmVfbW9kZSI7czo0OiJ0ZXN0IjtzOjIwOiJ0ZXN0X2ZsdXR0ZXJ3YXZlX2tleSI7TjtzOjIzOiJ0ZXN0X2ZsdXR0ZXJ3YXZlX3NlY3JldCI7TjtzOjIxOiJ0ZXN0X2ZsdXR0ZXJ3YXZlX2hhc2giO047czoyMDoibGl2ZV9mbHV0dGVyd2F2ZV9rZXkiO047czoyMzoibGl2ZV9mbHV0dGVyd2F2ZV9zZWNyZXQiO047czoyMToibGl2ZV9mbHV0dGVyd2F2ZV9oYXNoIjtOO3M6MzE6ImZsdXR0ZXJ3YXZlX3dlYmhvb2tfc2VjcmV0X2hhc2giO047czoxNjoicGF5cGFsX2NsaWVudF9pZCI7TjtzOjEzOiJwYXlwYWxfc2VjcmV0IjtOO3M6MTM6InBheXBhbF9zdGF0dXMiO2k6MDtzOjExOiJwYXlwYWxfbW9kZSI7czo3OiJzYW5kYm94IjtzOjI0OiJzYW5kYm94X3BheXBhbF9jbGllbnRfaWQiO047czoyMToic2FuZGJveF9wYXlwYWxfc2VjcmV0IjtOO3M6MTk6InBheWZhc3RfbWVyY2hhbnRfaWQiO047czoyMDoicGF5ZmFzdF9tZXJjaGFudF9rZXkiO047czoxODoicGF5ZmFzdF9wYXNzcGhyYXNlIjtOO3M6MTI6InBheWZhc3RfbW9kZSI7czo3OiJzYW5kYm94IjtzOjE0OiJwYXlmYXN0X3N0YXR1cyI7aTowO3M6MjQ6InRlc3RfcGF5ZmFzdF9tZXJjaGFudF9pZCI7TjtzOjI1OiJ0ZXN0X3BheWZhc3RfbWVyY2hhbnRfa2V5IjtOO3M6MjM6InRlc3RfcGF5ZmFzdF9wYXNzcGhyYXNlIjtOO3M6MTI6InBheXN0YWNrX2tleSI7TjtzOjE1OiJwYXlzdGFja19zZWNyZXQiO047czoyMzoicGF5c3RhY2tfbWVyY2hhbnRfZW1haWwiO047czoxNToicGF5c3RhY2tfc3RhdHVzIjtpOjA7czoxMzoicGF5c3RhY2tfbW9kZSI7czo3OiJzYW5kYm94IjtzOjE3OiJ0ZXN0X3BheXN0YWNrX2tleSI7TjtzOjIwOiJ0ZXN0X3BheXN0YWNrX3NlY3JldCI7TjtzOjI4OiJ0ZXN0X3BheXN0YWNrX21lcmNoYW50X2VtYWlsIjtOO3M6MjA6InBheXN0YWNrX3BheW1lbnRfdXJsIjtzOjIzOiJodHRwczovL2FwaS5wYXlzdGFjay5jbyI7czoxMzoieGVuZGl0X3N0YXR1cyI7aTowO3M6MTE6InhlbmRpdF9tb2RlIjtzOjc6InNhbmRib3giO3M6MjI6InRlc3RfeGVuZGl0X3B1YmxpY19rZXkiO047czoyMjoidGVzdF94ZW5kaXRfc2VjcmV0X2tleSI7TjtzOjIyOiJsaXZlX3hlbmRpdF9wdWJsaWNfa2V5IjtOO3M6MjI6ImxpdmVfeGVuZGl0X3NlY3JldF9rZXkiO047czoyNToidGVzdF94ZW5kaXRfd2ViaG9va190b2tlbiI7TjtzOjI1OiJsaXZlX3hlbmRpdF93ZWJob29rX3Rva2VuIjtOO3M6MTE6ImVwYXlfc3RhdHVzIjtpOjA7czo5OiJlcGF5X21vZGUiO3M6Nzoic2FuZGJveCI7czoxNDoiZXBheV9jbGllbnRfaWQiO047czoxODoiZXBheV9jbGllbnRfc2VjcmV0IjtOO3M6MTY6ImVwYXlfdGVybWluYWxfaWQiO047czoxOToidGVzdF9lcGF5X2NsaWVudF9pZCI7TjtzOjIzOiJ0ZXN0X2VwYXlfY2xpZW50X3NlY3JldCI7TjtzOjIxOiJ0ZXN0X2VwYXlfdGVybWluYWxfaWQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjY2OntzOjI6ImlkIjtpOjQ7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6MTI6InJhem9ycGF5X2tleSI7TjtzOjE1OiJyYXpvcnBheV9zZWNyZXQiO047czoxNToicmF6b3JwYXlfc3RhdHVzIjtpOjA7czoxMDoic3RyaXBlX2tleSI7TjtzOjEzOiJzdHJpcGVfc2VjcmV0IjtOO3M6MTM6InN0cmlwZV9zdGF0dXMiO2k6MDtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjI2OiJpc19kaW5lX2luX3BheW1lbnRfZW5hYmxlZCI7aTowO3M6Mjc6ImlzX2RlbGl2ZXJ5X3BheW1lbnRfZW5hYmxlZCI7aTowO3M6MjU6ImlzX3BpY2t1cF9wYXltZW50X2VuYWJsZWQiO2k6MDtzOjIzOiJpc19jYXNoX3BheW1lbnRfZW5hYmxlZCI7aTowO3M6MjE6ImlzX3FyX3BheW1lbnRfZW5hYmxlZCI7aTowO3M6MjY6ImlzX29mZmxpbmVfcGF5bWVudF9lbmFibGVkIjtpOjA7czoyMjoib2ZmbGluZV9wYXltZW50X2RldGFpbCI7TjtzOjEzOiJxcl9jb2RlX2ltYWdlIjtOO3M6MTg6ImZsdXR0ZXJ3YXZlX3N0YXR1cyI7aTowO3M6MTY6ImZsdXR0ZXJ3YXZlX21vZGUiO3M6NDoidGVzdCI7czoyMDoidGVzdF9mbHV0dGVyd2F2ZV9rZXkiO047czoyMzoidGVzdF9mbHV0dGVyd2F2ZV9zZWNyZXQiO047czoyMToidGVzdF9mbHV0dGVyd2F2ZV9oYXNoIjtOO3M6MjA6ImxpdmVfZmx1dHRlcndhdmVfa2V5IjtOO3M6MjM6ImxpdmVfZmx1dHRlcndhdmVfc2VjcmV0IjtOO3M6MjE6ImxpdmVfZmx1dHRlcndhdmVfaGFzaCI7TjtzOjMxOiJmbHV0dGVyd2F2ZV93ZWJob29rX3NlY3JldF9oYXNoIjtOO3M6MTY6InBheXBhbF9jbGllbnRfaWQiO047czoxMzoicGF5cGFsX3NlY3JldCI7TjtzOjEzOiJwYXlwYWxfc3RhdHVzIjtpOjA7czoxMToicGF5cGFsX21vZGUiO3M6Nzoic2FuZGJveCI7czoyNDoic2FuZGJveF9wYXlwYWxfY2xpZW50X2lkIjtOO3M6MjE6InNhbmRib3hfcGF5cGFsX3NlY3JldCI7TjtzOjE5OiJwYXlmYXN0X21lcmNoYW50X2lkIjtOO3M6MjA6InBheWZhc3RfbWVyY2hhbnRfa2V5IjtOO3M6MTg6InBheWZhc3RfcGFzc3BocmFzZSI7TjtzOjEyOiJwYXlmYXN0X21vZGUiO3M6Nzoic2FuZGJveCI7czoxNDoicGF5ZmFzdF9zdGF0dXMiO2k6MDtzOjI0OiJ0ZXN0X3BheWZhc3RfbWVyY2hhbnRfaWQiO047czoyNToidGVzdF9wYXlmYXN0X21lcmNoYW50X2tleSI7TjtzOjIzOiJ0ZXN0X3BheWZhc3RfcGFzc3BocmFzZSI7TjtzOjEyOiJwYXlzdGFja19rZXkiO047czoxNToicGF5c3RhY2tfc2VjcmV0IjtOO3M6MjM6InBheXN0YWNrX21lcmNoYW50X2VtYWlsIjtOO3M6MTU6InBheXN0YWNrX3N0YXR1cyI7aTowO3M6MTM6InBheXN0YWNrX21vZGUiO3M6Nzoic2FuZGJveCI7czoxNzoidGVzdF9wYXlzdGFja19rZXkiO047czoyMDoidGVzdF9wYXlzdGFja19zZWNyZXQiO047czoyODoidGVzdF9wYXlzdGFja19tZXJjaGFudF9lbWFpbCI7TjtzOjIwOiJwYXlzdGFja19wYXltZW50X3VybCI7czoyMzoiaHR0cHM6Ly9hcGkucGF5c3RhY2suY28iO3M6MTM6InhlbmRpdF9zdGF0dXMiO2k6MDtzOjExOiJ4ZW5kaXRfbW9kZSI7czo3OiJzYW5kYm94IjtzOjIyOiJ0ZXN0X3hlbmRpdF9wdWJsaWNfa2V5IjtOO3M6MjI6InRlc3RfeGVuZGl0X3NlY3JldF9rZXkiO047czoyMjoibGl2ZV94ZW5kaXRfcHVibGljX2tleSI7TjtzOjIyOiJsaXZlX3hlbmRpdF9zZWNyZXRfa2V5IjtOO3M6MjU6InRlc3RfeGVuZGl0X3dlYmhvb2tfdG9rZW4iO047czoyNToibGl2ZV94ZW5kaXRfd2ViaG9va190b2tlbiI7TjtzOjExOiJlcGF5X3N0YXR1cyI7aTowO3M6OToiZXBheV9tb2RlIjtzOjc6InNhbmRib3giO3M6MTQ6ImVwYXlfY2xpZW50X2lkIjtOO3M6MTg6ImVwYXlfY2xpZW50X3NlY3JldCI7TjtzOjE2OiJlcGF5X3Rlcm1pbmFsX2lkIjtOO3M6MTk6InRlc3RfZXBheV9jbGllbnRfaWQiO047czoyMzoidGVzdF9lcGF5X2NsaWVudF9zZWNyZXQiO047czoyMToidGVzdF9lcGF5X3Rlcm1pbmFsX2lkIjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTo0OntzOjEwOiJzdHJpcGVfa2V5IjtzOjk6ImVuY3J5cHRlZCI7czoxMjoicmF6b3JwYXlfa2V5IjtzOjk6ImVuY3J5cHRlZCI7czoxMzoic3RyaXBlX3NlY3JldCI7czo5OiJlbmNyeXB0ZWQiO3M6MTU6InJhem9ycGF5X3NlY3JldCI7czo5OiJlbmNyeXB0ZWQiO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InFyX2NvZGVfaW1hZ2VfdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fXM6NzoicGFja2FnZSI7TzoxODoiQXBwXE1vZGVsc1xQYWNrYWdlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo4OiJwYWNrYWdlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjQ0OntzOjI6ImlkIjtpOjc7czoxMjoicGFja2FnZV9uYW1lIjtzOjExOiJQcm8gUGFja2FnZSI7czo1OiJwcmljZSI7czo0OiIwLjAwIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTEyLTAxIDA4OjUwOjQ3IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEyLTAzIDExOjEwOjIyIjtzOjExOiJjdXJyZW5jeV9pZCI7aTo0O3M6MTE6ImRlc2NyaXB0aW9uIjtzOjI0OiJQcm8gU3Vic2NyaXB0aW9uIFBhY2thZ2UiO3M6MTI6ImFubnVhbF9wcmljZSI7czo2OiI1MDAuMDAiO3M6MTM6Im1vbnRobHlfcHJpY2UiO3M6NToiNTAuMDAiO3M6MTQ6Im1vbnRobHlfc3RhdHVzIjtpOjE7czoxMzoiYW5udWFsX3N0YXR1cyI7aToxO3M6MjE6InN0cmlwZV9hbm51YWxfcGxhbl9pZCI7czoxOToicHJvZF9UV1ZwSDZrZEZwYlBQTCI7czoyMjoic3RyaXBlX21vbnRobHlfcGxhbl9pZCI7czoxOToicHJvZF9UV1ZwWUJHdEhlZ1prVSI7czoyMzoicmF6b3JwYXlfYW5udWFsX3BsYW5faWQiO047czoyNDoicmF6b3JwYXlfbW9udGhseV9wbGFuX2lkIjtOO3M6MjY6ImZsdXR0ZXJ3YXZlX2FubnVhbF9wbGFuX2lkIjtOO3M6Mjc6ImZsdXR0ZXJ3YXZlX21vbnRobHlfcGxhbl9pZCI7TjtzOjIzOiJwYXlzdGFja19hbm51YWxfcGxhbl9pZCI7TjtzOjI0OiJwYXlzdGFja19tb250aGx5X3BsYW5faWQiO047czoyMToieGVuZGl0X2FubnVhbF9wbGFuX2lkIjtOO3M6MjI6InhlbmRpdF9tb250aGx5X3BsYW5faWQiO047czoyMjoicGFkZGxlX2FubnVhbF9wcmljZV9pZCI7TjtzOjIzOiJwYWRkbGVfbW9udGhseV9wcmljZV9pZCI7TjtzOjI0OiJwYWRkbGVfbGlmZXRpbWVfcHJpY2VfaWQiO047czoyMzoic3RyaXBlX2xpZmV0aW1lX3BsYW5faWQiO047czoyNToicmF6b3JwYXlfbGlmZXRpbWVfcGxhbl9pZCI7TjtzOjEzOiJiaWxsaW5nX2N5Y2xlIjtOO3M6MTA6InNvcnRfb3JkZXIiO2k6NztzOjEwOiJpc19wcml2YXRlIjtpOjA7czo3OiJpc19mcmVlIjtpOjA7czoxNDoiaXNfcmVjb21tZW5kZWQiO2k6MDtzOjEyOiJwYWNrYWdlX3R5cGUiO3M6ODoic3RhbmRhcmQiO3M6MTI6InRyaWFsX3N0YXR1cyI7TjtzOjEwOiJ0cmlhbF9kYXlzIjtOO3M6MzA6InRyaWFsX25vdGlmaWNhdGlvbl9iZWZvcmVfZGF5cyI7TjtzOjEzOiJ0cmlhbF9tZXNzYWdlIjtOO3M6MTk6ImFkZGl0aW9uYWxfZmVhdHVyZXMiO3M6MTE4OiJbIkNoYW5nZSBCcmFuY2giLCJUaGVtZSBTZXR0aW5nIiwiRXhwb3J0IFJlcG9ydCIsIkN1c3RvbWVyIERpc3BsYXkiLCJUYWJsZSBSZXNlcnZhdGlvbiIsIlBheW1lbnQgR2F0ZXdheSBJbnRlZ3JhdGlvbiJdIjtzOjEyOiJicmFuY2hfbGltaXQiO2k6LTE7czoxNDoibXVsdGlwb3NfbGltaXQiO2k6LTE7czoxNjoibWVudV9pdGVtc19saW1pdCI7aTotMTtzOjExOiJvcmRlcl9saW1pdCI7aTotMTtzOjExOiJzdGFmZl9saW1pdCI7aTotMTtzOjk6InNtc19jb3VudCI7aTotMTtzOjE3OiJjYXJyeV9mb3J3YXJkX3NtcyI7aTowO31zOjExOiIAKgBvcmlnaW5hbCI7YTo0NDp7czoyOiJpZCI7aTo3O3M6MTI6InBhY2thZ2VfbmFtZSI7czoxMToiUHJvIFBhY2thZ2UiO3M6NToicHJpY2UiO3M6NDoiMC4wMCI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMSAwODo1MDo0NyI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMyAxMToxMDoyMiI7czoxMToiY3VycmVuY3lfaWQiO2k6NDtzOjExOiJkZXNjcmlwdGlvbiI7czoyNDoiUHJvIFN1YnNjcmlwdGlvbiBQYWNrYWdlIjtzOjEyOiJhbm51YWxfcHJpY2UiO3M6NjoiNTAwLjAwIjtzOjEzOiJtb250aGx5X3ByaWNlIjtzOjU6IjUwLjAwIjtzOjE0OiJtb250aGx5X3N0YXR1cyI7czoxOiIxIjtzOjEzOiJhbm51YWxfc3RhdHVzIjtzOjE6IjEiO3M6MjE6InN0cmlwZV9hbm51YWxfcGxhbl9pZCI7czoxOToicHJvZF9UV1ZwSDZrZEZwYlBQTCI7czoyMjoic3RyaXBlX21vbnRobHlfcGxhbl9pZCI7czoxOToicHJvZF9UV1ZwWUJHdEhlZ1prVSI7czoyMzoicmF6b3JwYXlfYW5udWFsX3BsYW5faWQiO047czoyNDoicmF6b3JwYXlfbW9udGhseV9wbGFuX2lkIjtOO3M6MjY6ImZsdXR0ZXJ3YXZlX2FubnVhbF9wbGFuX2lkIjtOO3M6Mjc6ImZsdXR0ZXJ3YXZlX21vbnRobHlfcGxhbl9pZCI7TjtzOjIzOiJwYXlzdGFja19hbm51YWxfcGxhbl9pZCI7TjtzOjI0OiJwYXlzdGFja19tb250aGx5X3BsYW5faWQiO047czoyMToieGVuZGl0X2FubnVhbF9wbGFuX2lkIjtOO3M6MjI6InhlbmRpdF9tb250aGx5X3BsYW5faWQiO047czoyMjoicGFkZGxlX2FubnVhbF9wcmljZV9pZCI7TjtzOjIzOiJwYWRkbGVfbW9udGhseV9wcmljZV9pZCI7TjtzOjI0OiJwYWRkbGVfbGlmZXRpbWVfcHJpY2VfaWQiO047czoyMzoic3RyaXBlX2xpZmV0aW1lX3BsYW5faWQiO047czoyNToicmF6b3JwYXlfbGlmZXRpbWVfcGxhbl9pZCI7TjtzOjEzOiJiaWxsaW5nX2N5Y2xlIjtOO3M6MTA6InNvcnRfb3JkZXIiO2k6NztzOjEwOiJpc19wcml2YXRlIjtpOjA7czo3OiJpc19mcmVlIjtpOjA7czoxNDoiaXNfcmVjb21tZW5kZWQiO2k6MDtzOjEyOiJwYWNrYWdlX3R5cGUiO3M6ODoic3RhbmRhcmQiO3M6MTI6InRyaWFsX3N0YXR1cyI7TjtzOjEwOiJ0cmlhbF9kYXlzIjtOO3M6MzA6InRyaWFsX25vdGlmaWNhdGlvbl9iZWZvcmVfZGF5cyI7TjtzOjEzOiJ0cmlhbF9tZXNzYWdlIjtOO3M6MTk6ImFkZGl0aW9uYWxfZmVhdHVyZXMiO3M6MTE4OiJbIkNoYW5nZSBCcmFuY2giLCJUaGVtZSBTZXR0aW5nIiwiRXhwb3J0IFJlcG9ydCIsIkN1c3RvbWVyIERpc3BsYXkiLCJUYWJsZSBSZXNlcnZhdGlvbiIsIlBheW1lbnQgR2F0ZXdheSBJbnRlZ3JhdGlvbiJdIjtzOjEyOiJicmFuY2hfbGltaXQiO2k6LTE7czoxNDoibXVsdGlwb3NfbGltaXQiO2k6LTE7czoxNjoibWVudV9pdGVtc19saW1pdCI7aTotMTtzOjExOiJvcmRlcl9saW1pdCI7aTotMTtzOjExOiJzdGFmZl9saW1pdCI7aTotMTtzOjk6InNtc19jb3VudCI7aTotMTtzOjE3OiJjYXJyeV9mb3J3YXJkX3NtcyI7aTowO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTozOntzOjEyOiJwYWNrYWdlX3R5cGUiO3M6MjE6IkFwcFxFbnVtc1xQYWNrYWdlVHlwZSI7czoxMDoidHJpYWxfZGF5cyI7czo3OiJpbnRlZ2VyIjtzOjMwOiJ0cmlhbF9ub3RpZmljYXRpb25fYmVmb3JlX2RheXMiO3M6NzoiaW50ZWdlciI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fXM6ODoiY3VycmVuY3kiO086MTk6IkFwcFxNb2RlbHNcQ3VycmVuY3kiOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjEwOiJjdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTI6e3M6MjoiaWQiO2k6MTE7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6NToiRXVyb3MiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiRVVSIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO31zOjExOiIAKgBvcmlnaW5hbCI7YToxMjp7czoyOiJpZCI7aToxMTtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigqwiO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9fXM6MTQ6InJlY2VpcHRTZXR0aW5nIjtPOjI1OiJBcHBcTW9kZWxzXFJlY2VpcHRTZXR0aW5nIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoxNjoicmVjZWlwdF9zZXR0aW5ncyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE3OntzOjI6ImlkIjtpOjM7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6MTg6InNob3dfY3VzdG9tZXJfbmFtZSI7aTowO3M6MjE6InNob3dfY3VzdG9tZXJfYWRkcmVzcyI7aTowO3M6MTk6InNob3dfY3VzdG9tZXJfcGhvbmUiO2k6MDtzOjE3OiJzaG93X3RhYmxlX251bWJlciI7aTowO3M6MTU6InBheW1lbnRfcXJfY29kZSI7TjtzOjIwOiJzaG93X3BheW1lbnRfcXJfY29kZSI7aTowO3M6MTE6InNob3dfd2FpdGVyIjtpOjA7czoxNjoic2hvd190b3RhbF9ndWVzdCI7aTowO3M6MjA6InNob3dfcmVzdGF1cmFudF9sb2dvIjtpOjE7czo4OiJzaG93X3RheCI7aTowO3M6MjA6InNob3dfcGF5bWVudF9kZXRhaWxzIjtpOjE7czoxOToic2hvd19wYXltZW50X3N0YXR1cyI7aTowO3M6MTU6InNob3dfb3JkZXJfdHlwZSI7aTowO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMjkgMjA6MzE6NDIiO31zOjExOiIAKgBvcmlnaW5hbCI7YToxNzp7czoyOiJpZCI7aTozO3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6MztzOjE4OiJzaG93X2N1c3RvbWVyX25hbWUiO2k6MDtzOjIxOiJzaG93X2N1c3RvbWVyX2FkZHJlc3MiO2k6MDtzOjE5OiJzaG93X2N1c3RvbWVyX3Bob25lIjtpOjA7czoxNzoic2hvd190YWJsZV9udW1iZXIiO2k6MDtzOjE1OiJwYXltZW50X3FyX2NvZGUiO047czoyMDoic2hvd19wYXltZW50X3FyX2NvZGUiO2k6MDtzOjExOiJzaG93X3dhaXRlciI7aTowO3M6MTY6InNob3dfdG90YWxfZ3Vlc3QiO2k6MDtzOjIwOiJzaG93X3Jlc3RhdXJhbnRfbG9nbyI7aToxO3M6ODoic2hvd190YXgiO2k6MDtzOjIwOiJzaG93X3BheW1lbnRfZGV0YWlscyI7aToxO3M6MTk6InNob3dfcGF5bWVudF9zdGF0dXMiO2k6MDtzOjE1OiJzaG93X29yZGVyX3R5cGUiO2k6MDtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTEyLTI5IDIwOjMxOjQyIjt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MDp7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YToxOntpOjA7czoxOToicGF5bWVudF9xcl9jb2RlX3VybCI7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX19czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9czoxNzoiY3VzdG9tZXJJcEFkZHJlc3MiO047czoyNDoiZXN0aW1hdGlvbkJpbGxpbmdBZGRyZXNzIjthOjA6e31zOjEzOiJjb2xsZWN0VGF4SWRzIjtiOjA7czo4OiJjb3Vwb25JZCI7TjtzOjE1OiJwcm9tb3Rpb25Db2RlSWQiO047czoxOToiYWxsb3dQcm9tb3Rpb25Db2RlcyI7YjowO31zOjY6ImJyYW5jaCI7TzoxNzoiQXBwXE1vZGVsc1xCcmFuY2giOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjg6ImJyYW5jaGVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MjE6e3M6MjoiaWQiO2k6NDtzOjExOiJ1bmlxdWVfaGFzaCI7czoyMDoiNTc4ZWUwYzZhNGY1NTM3MTM0OWQiO3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6MztzOjQ6Im5hbWUiO3M6MTQ6IkFMIENBUE9ORSBDTFVCIjtzOjE4OiJjbG9uZWRfYnJhbmNoX25hbWUiO047czoxNjoiY2xvbmVkX2JyYW5jaF9pZCI7TjtzOjEzOiJpc19tZW51X2Nsb25lIjtpOjA7czoyNDoiaXNfaXRlbV9jYXRlZ29yaWVzX2Nsb25lIjtpOjA7czoxOToiaXNfbWVudV9pdGVtc19jbG9uZSI7aTowO3M6MjM6ImlzX2l0ZW1fbW9kaWZpZXJzX2Nsb25lIjtpOjA7czoyOToiaXNfY2xvbmVfcmVzZXJ2YXRpb25fc2V0dGluZ3MiO2k6MDtzOjI2OiJpc19jbG9uZV9kZWxpdmVyeV9zZXR0aW5ncyI7aTowO3M6MjA6ImlzX2Nsb25lX2tvdF9zZXR0aW5nIjtpOjA7czoyNToiaXNfbW9kaWZpZXJzX2dyb3Vwc19jbG9uZSI7aTowO3M6NzoiYWRkcmVzcyI7czozMzoiMyBFdmxvZ2kgR2VvcmdpZXYgCkthcGFuYQpQbG92ZGl2IjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI2LTAxLTE0IDE1OjMxOjIzIjtzOjM6ImxhdCI7TjtzOjM6ImxuZyI7TjtzOjEyOiJjb3VudF9vcmRlcnMiO2k6MztzOjEyOiJ0b3RhbF9vcmRlcnMiO2k6LTE7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjIxOntzOjI6ImlkIjtpOjQ7czoxMToidW5pcXVlX2hhc2giO3M6MjA6IjU3OGVlMGM2YTRmNTUzNzEzNDlkIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czo0OiJuYW1lIjtzOjE0OiJBTCBDQVBPTkUgQ0xVQiI7czoxODoiY2xvbmVkX2JyYW5jaF9uYW1lIjtOO3M6MTY6ImNsb25lZF9icmFuY2hfaWQiO047czoxMzoiaXNfbWVudV9jbG9uZSI7aTowO3M6MjQ6ImlzX2l0ZW1fY2F0ZWdvcmllc19jbG9uZSI7aTowO3M6MTk6ImlzX21lbnVfaXRlbXNfY2xvbmUiO2k6MDtzOjIzOiJpc19pdGVtX21vZGlmaWVyc19jbG9uZSI7aTowO3M6Mjk6ImlzX2Nsb25lX3Jlc2VydmF0aW9uX3NldHRpbmdzIjtpOjA7czoyNjoiaXNfY2xvbmVfZGVsaXZlcnlfc2V0dGluZ3MiO2k6MDtzOjIwOiJpc19jbG9uZV9rb3Rfc2V0dGluZyI7aTowO3M6MjU6ImlzX21vZGlmaWVyc19ncm91cHNfY2xvbmUiO2k6MDtzOjc6ImFkZHJlc3MiO3M6MzM6IjMgRXZsb2dpIEdlb3JnaWV2IApLYXBhbmEKUGxvdmRpdiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNi0wMS0xNCAxNTozMToyMyI7czozOiJsYXQiO047czozOiJsbmciO047czoxMjoiY291bnRfb3JkZXJzIjtpOjM7czoxMjoidG90YWxfb3JkZXJzIjtpOi0xO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjM6ImxhdCI7czo1OiJmbG9hdCI7czozOiJsbmciO3M6NToiZmxvYXQiO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTo5OntpOjA7czo0OiJuYW1lIjtpOjE7czo3OiJhZGRyZXNzIjtpOjI7czo1OiJwaG9uZSI7aTozO3M6NToiZW1haWwiO2k6NDtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjU7czo5OiJpc19hY3RpdmUiO2k6NjtzOjExOiJ1bmlxdWVfaGFzaCI7aTo3O3M6MzoibGF0IjtpOjg7czozOiJsbmciO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fXM6MTc6InBhc3N3b3JkX2hhc2hfd2ViIjtzOjYwOiIkMnkkMTIkVkJaa2c3dkRlUjVLLnFRdW8yM25yZUxuUHplOWwwaEUySVl5c2xHNjRwclVFeUVjbEVKOGEiO3M6MjU6ImN1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nMTEiO086MTk6IkFwcFxNb2RlbHNcQ3VycmVuY3kiOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjEwOiJjdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTI6e3M6MjoiaWQiO2k6MTE7czoxMzoicmVzdGF1cmFudF9pZCI7aTozO3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6NToiRXVyb3MiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiRVVSIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO31zOjExOiIAKgBvcmlnaW5hbCI7YToxMjp7czoyOiJpZCI7aToxMTtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigqwiO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MTp7czoxMDoicmVzdGF1cmFudCI7TzoyMToiQXBwXE1vZGVsc1xSZXN0YXVyYW50IjozOTp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoxMToicmVzdGF1cmFudHMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTo4Njp7czoyOiJpZCI7aTozO3M6MTA6InN1Yl9kb21haW4iO3M6MjQ6ImFsY2Fwb25lLmhlbGxvcG9zLm9ubGluZSI7czo0OiJuYW1lIjtzOjE0OiJBTCBDQVBPTkUgQ0xVQiI7czo0OiJoYXNoIjtzOjE0OiJhbC1jYXBvbmUtY2x1YiI7czo3OiJhZGRyZXNzIjtzOjMzOiIzIEV2bG9naSBHZW9yZ2lldiAKS2FwYW5hClBsb3ZkaXYiO3M6MTI6InBob25lX251bWJlciI7aTo4NzcwMjI3NzM7czoxMDoicGhvbmVfY29kZSI7aTozNTk7czo1OiJlbWFpbCI7czoxOToidmlwLnpha292QGdtYWlsLmNvbSI7czo4OiJ0aW1lem9uZSI7czoxMjoiRXVyb3BlL1NvZmlhIjtzOjk6InRoZW1lX2hleCI7czo3OiIjMjU2M0VCIjtzOjk6InRoZW1lX3JnYiI7czoxMToiMzcsIDk5LCAyMzUiO3M6NDoibG9nbyI7czozNjoiYWQ5MGJjYjI5Yzc0NjUxMzQ4YTA2NTQ3MzcwNzQ1ZWIucG5nIjtzOjEwOiJjb3VudHJ5X2lkIjtpOjM1O3M6MTU6ImhpZGVfbmV3X29yZGVycyI7aTowO3M6MjE6ImhpZGVfbmV3X3Jlc2VydmF0aW9ucyI7aTowO3M6MjM6ImhpZGVfbmV3X3dhaXRlcl9yZXF1ZXN0IjtpOjA7czoxMToiY3VycmVuY3lfaWQiO2k6MTE7czoxMjoibGljZW5zZV90eXBlIjtzOjQ6ImZyZWUiO3M6OToiaXNfYWN0aXZlIjtpOjE7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNi0wMS0xNCAxNTozMDo1NiI7czoyMzoiY3VzdG9tZXJfbG9naW5fcmVxdWlyZWQiO2k6MDtzOjg6ImFib3V0X3VzIjtzOjEzMDQ6IjxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBXZWxjb21lIHRvIG91ciByZXN0YXVyYW50LCB3aGVyZSBncmVhdCBmb29kIGFuZCBnb29kIHZpYmVzIGNvbWUgdG9nZXRoZXIhIFdlJ3JlIGEgbG9jYWwsIGZhbWlseS1vd25lZCBzcG90IHRoYXQgbG92ZXMgYnJpbmdpbmcgcGVvcGxlIHRvZ2V0aGVyIG92ZXIgZGVsaWNpb3VzIG1lYWxzIGFuZCB1bmZvcmdldHRhYmxlIG1vbWVudHMuIFdoZXRoZXIgeW91J3JlIGhlcmUgZm9yIGEgcXVpY2sgYml0ZSwgYSBmYW1pbHkgZGlubmVyLCBvciBhIGNlbGVicmF0aW9uLCB3ZSdyZSBhbGwgYWJvdXQgbWFraW5nIHlvdXIgdGltZSB3aXRoIHVzIHNwZWNpYWwuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBPdXIgbWVudSBpcyBwYWNrZWQgd2l0aCBkaXNoZXMgbWFkZSBmcm9tIGZyZXNoLCBxdWFsaXR5IGluZ3JlZGllbnRzIGJlY2F1c2Ugd2UgYmVsaWV2ZSBmb29kIHNob3VsZCB0YXN0ZSBhcwogICAgICAgICAgZ29vZCBhcyBpdCBtYWtlcyB5b3UgZmVlbC4gRnJvbSBvdXIgc2lnbmF0dXJlIGRpc2hlcyB0byBzZWFzb25hbCBzcGVjaWFscywgdGhlcmUncyBhbHdheXMgc29tZXRoaW5nIHRvIGV4Y2l0ZQogICAgICAgICAgeW91ciB0YXN0ZSBidWRzLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgQnV0IHdlJ3JlIG5vdCBqdXN0IGFib3V0IHRoZSBmb29k4oCUd2UncmUgYWJvdXQgY29tbXVuaXR5LiBXZSBsb3ZlIHNlZWluZyBmYW1pbGlhciBmYWNlcyBhbmQgd2VsY29taW5nIG5ldyBvbmVzLgogICAgICAgICAgT3VyIHRlYW0gaXMgYSBmdW4sIGZyaWVuZGx5IGJ1bmNoIGRlZGljYXRlZCB0byBzZXJ2aW5nIHlvdSB3aXRoIGEgc21pbGUgYW5kIG1ha2luZyBzdXJlIGV2ZXJ5IHZpc2l0IGZlZWxzIGxpa2UKICAgICAgICAgIGNvbWluZyBob21lLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIj4KICAgICAgICAgIFNvLCBjb21lIG9uIGluLCBncmFiIGEgc2VhdCwgYW5kIGxldCB1cyB0YWtlIGNhcmUgb2YgdGhlIHJlc3QuIFdlIGNhbid0IHdhaXQgdG8gc2hhcmUgb3VyIGxvdmUgb2YgZm9vZCB3aXRoCiAgICAgICAgICB5b3UhCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS04MDAgZm9udC1zZW1pYm9sZCBtdC02Ij5TZWUgeW91IHNvb24hIPCfjb3vuI/inKg8L3A+IjtzOjMwOiJhbGxvd19jdXN0b21lcl9kZWxpdmVyeV9vcmRlcnMiO2k6MTtzOjI4OiJhbGxvd19jdXN0b21lcl9waWNrdXBfb3JkZXJzIjtpOjE7czoxNzoicGlja3VwX2RheXNfcmFuZ2UiO2k6NztzOjIxOiJhbGxvd19jdXN0b21lcl9vcmRlcnMiO2k6MTtzOjIwOiJhbGxvd19kaW5lX2luX29yZGVycyI7aToxO3M6ODoic2hvd192ZWciO2k6MTtzOjEwOiJzaG93X2hhbGFsIjtpOjA7czoxMDoicGFja2FnZV9pZCI7aTo3O3M6MTI6InBhY2thZ2VfdHlwZSI7czo3OiJtb250aGx5IjtzOjY6InN0YXR1cyI7czo2OiJhY3RpdmUiO3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjE5OiIyMDI2LTEyLTAxIDAwOjAwOjAwIjtzOjk6ImNvdW50X3NtcyI7aTowO3M6OToidG90YWxfc21zIjtpOjA7czoxMzoidHJpYWxfZW5kc19hdCI7TjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMDA6MDA6MDAiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MjU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWQiO2k6MTtzOjMyOiJkZWZhdWx0X3RhYmxlX3Jlc2VydmF0aW9uX3N0YXR1cyI7czo5OiJDb25maXJtZWQiO3M6MjA6ImRpc2FibGVfc2xvdF9taW51dGVzIjtpOjMwO3M6MTU6ImFwcHJvdmFsX3N0YXR1cyI7czo4OiJBcHByb3ZlZCI7czoxNjoicmVqZWN0aW9uX3JlYXNvbiI7TjtzOjEzOiJmYWNlYm9va19saW5rIjtzOjQxOiJodHRwczovL3d3dy5mYWNlYm9vay5jb20vQWxDYXBvbmVQbG92ZGl2LyI7czoxNDoiaW5zdGFncmFtX2xpbmsiO3M6NDI6Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vYWxjYXBvbmVwbG92ZGl2LyI7czoxMjoidHdpdHRlcl9saW5rIjtOO3M6OToieWVscF9saW5rIjtOO3M6OToid2lmaV9uYW1lIjtOO3M6MTM6IndpZmlfcGFzc3dvcmQiO047czoxNDoic2hvd193aWZpX2ljb24iO2k6MDtzOjE0OiJ0YWJsZV9yZXF1aXJlZCI7aTowO3M6MTQ6InNob3dfbG9nb190ZXh0IjtpOjE7czoxMjoibWV0YV9rZXl3b3JkIjtOO3M6MTY6Im1ldGFfZGVzY3JpcHRpb24iO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzE5MiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfNTEyIjtOO3M6MzI6InVwbG9hZF9mYXZfaWNvbl9hcHBsZV90b3VjaF9pY29uIjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzE2IjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzMyIjtOO3M6NzoiZmF2aWNvbiI7TjtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX2Rlc2t0b3AiO2k6MTtzOjM1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX21vYmlsZSI7aToxO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb3Blbl9ieV9xciI7aTowO3M6MTE6IndlYm1hbmlmZXN0IjtOO3M6MTU6ImVuYWJsZV90aXBfc2hvcCI7aToxO3M6MTQ6ImVuYWJsZV90aXBfcG9zIjtpOjE7czoyNToiaXNfcHdhX2luc3RhbGxfYWxlcnRfc2hvdyI7aTowO3M6MTk6ImF1dG9fY29uZmlybV9vcmRlcnMiO2k6MDtzOjI5OiJyZXN0cmljdF9xcl9vcmRlcl9ieV9sb2NhdGlvbiI7aTowO3M6MjI6InFyX29yZGVyX3JhZGl1c19tZXRlcnMiO047czoyMzoic2hvd19vcmRlcl90eXBlX29wdGlvbnMiO2k6MTtzOjI0OiJkaXNhYmxlX29yZGVyX3R5cGVfcG9wdXAiO2k6MDtzOjIxOiJkZWZhdWx0X29yZGVyX3R5cGVfaWQiO047czoyNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fcG9zIjtpOjA7czozNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fY3VzdG9tZXJfc2l0ZSI7aTowO3M6ODoidGF4X21vZGUiO3M6NToib3JkZXIiO3M6MTM6InRheF9pbmNsdXNpdmUiO2k6MDtzOjIyOiJjdXN0b21lcl9zaXRlX2xhbmd1YWdlIjtzOjI6ImVuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO2k6MTtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO2k6MTtzOjE4OiJtaW5pbXVtX3BhcnR5X3NpemUiO2k6MTtzOjI2OiJ0YWJsZV9sb2NrX3RpbWVvdXRfbWludXRlcyI7aToxMDt9czoxMToiACoAb3JpZ2luYWwiO2E6ODY6e3M6MjoiaWQiO2k6MztzOjEwOiJzdWJfZG9tYWluIjtzOjI0OiJhbGNhcG9uZS5oZWxsb3Bvcy5vbmxpbmUiO3M6NDoibmFtZSI7czoxNDoiQUwgQ0FQT05FIENMVUIiO3M6NDoiaGFzaCI7czoxNDoiYWwtY2Fwb25lLWNsdWIiO3M6NzoiYWRkcmVzcyI7czozMzoiMyBFdmxvZ2kgR2VvcmdpZXYgCkthcGFuYQpQbG92ZGl2IjtzOjEyOiJwaG9uZV9udW1iZXIiO3M6OToiODc3MDIyNzczIjtzOjEwOiJwaG9uZV9jb2RlIjtzOjM6IjM1OSI7czo1OiJlbWFpbCI7czoxOToidmlwLnpha292QGdtYWlsLmNvbSI7czo4OiJ0aW1lem9uZSI7czoxMjoiRXVyb3BlL1NvZmlhIjtzOjk6InRoZW1lX2hleCI7czo3OiIjMjU2M0VCIjtzOjk6InRoZW1lX3JnYiI7czoxMToiMzcsIDk5LCAyMzUiO3M6NDoibG9nbyI7czozNjoiYWQ5MGJjYjI5Yzc0NjUxMzQ4YTA2NTQ3MzcwNzQ1ZWIucG5nIjtzOjEwOiJjb3VudHJ5X2lkIjtpOjM1O3M6MTU6ImhpZGVfbmV3X29yZGVycyI7aTowO3M6MjE6ImhpZGVfbmV3X3Jlc2VydmF0aW9ucyI7aTowO3M6MjM6ImhpZGVfbmV3X3dhaXRlcl9yZXF1ZXN0IjtpOjA7czoxMToiY3VycmVuY3lfaWQiO2k6MTE7czoxMjoibGljZW5zZV90eXBlIjtzOjQ6ImZyZWUiO3M6OToiaXNfYWN0aXZlIjtpOjE7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAxMDoxNzoxOSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNi0wMS0xNCAxNTozMDo1NiI7czoyMzoiY3VzdG9tZXJfbG9naW5fcmVxdWlyZWQiO2k6MDtzOjg6ImFib3V0X3VzIjtzOjEzMDQ6IjxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBXZWxjb21lIHRvIG91ciByZXN0YXVyYW50LCB3aGVyZSBncmVhdCBmb29kIGFuZCBnb29kIHZpYmVzIGNvbWUgdG9nZXRoZXIhIFdlJ3JlIGEgbG9jYWwsIGZhbWlseS1vd25lZCBzcG90IHRoYXQgbG92ZXMgYnJpbmdpbmcgcGVvcGxlIHRvZ2V0aGVyIG92ZXIgZGVsaWNpb3VzIG1lYWxzIGFuZCB1bmZvcmdldHRhYmxlIG1vbWVudHMuIFdoZXRoZXIgeW91J3JlIGhlcmUgZm9yIGEgcXVpY2sgYml0ZSwgYSBmYW1pbHkgZGlubmVyLCBvciBhIGNlbGVicmF0aW9uLCB3ZSdyZSBhbGwgYWJvdXQgbWFraW5nIHlvdXIgdGltZSB3aXRoIHVzIHNwZWNpYWwuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBPdXIgbWVudSBpcyBwYWNrZWQgd2l0aCBkaXNoZXMgbWFkZSBmcm9tIGZyZXNoLCBxdWFsaXR5IGluZ3JlZGllbnRzIGJlY2F1c2Ugd2UgYmVsaWV2ZSBmb29kIHNob3VsZCB0YXN0ZSBhcwogICAgICAgICAgZ29vZCBhcyBpdCBtYWtlcyB5b3UgZmVlbC4gRnJvbSBvdXIgc2lnbmF0dXJlIGRpc2hlcyB0byBzZWFzb25hbCBzcGVjaWFscywgdGhlcmUncyBhbHdheXMgc29tZXRoaW5nIHRvIGV4Y2l0ZQogICAgICAgICAgeW91ciB0YXN0ZSBidWRzLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIG1iLTYiPgogICAgICAgICAgQnV0IHdlJ3JlIG5vdCBqdXN0IGFib3V0IHRoZSBmb29k4oCUd2UncmUgYWJvdXQgY29tbXVuaXR5LiBXZSBsb3ZlIHNlZWluZyBmYW1pbGlhciBmYWNlcyBhbmQgd2VsY29taW5nIG5ldyBvbmVzLgogICAgICAgICAgT3VyIHRlYW0gaXMgYSBmdW4sIGZyaWVuZGx5IGJ1bmNoIGRlZGljYXRlZCB0byBzZXJ2aW5nIHlvdSB3aXRoIGEgc21pbGUgYW5kIG1ha2luZyBzdXJlIGV2ZXJ5IHZpc2l0IGZlZWxzIGxpa2UKICAgICAgICAgIGNvbWluZyBob21lLgogICAgICAgIDwvcD4KICAgICAgICA8cCBjbGFzcz0idGV4dC1sZyB0ZXh0LWdyYXktNjAwIj4KICAgICAgICAgIFNvLCBjb21lIG9uIGluLCBncmFiIGEgc2VhdCwgYW5kIGxldCB1cyB0YWtlIGNhcmUgb2YgdGhlIHJlc3QuIFdlIGNhbid0IHdhaXQgdG8gc2hhcmUgb3VyIGxvdmUgb2YgZm9vZCB3aXRoCiAgICAgICAgICB5b3UhCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS04MDAgZm9udC1zZW1pYm9sZCBtdC02Ij5TZWUgeW91IHNvb24hIPCfjb3vuI/inKg8L3A+IjtzOjMwOiJhbGxvd19jdXN0b21lcl9kZWxpdmVyeV9vcmRlcnMiO2k6MTtzOjI4OiJhbGxvd19jdXN0b21lcl9waWNrdXBfb3JkZXJzIjtpOjE7czoxNzoicGlja3VwX2RheXNfcmFuZ2UiO2k6NztzOjIxOiJhbGxvd19jdXN0b21lcl9vcmRlcnMiO2k6MTtzOjIwOiJhbGxvd19kaW5lX2luX29yZGVycyI7aToxO3M6ODoic2hvd192ZWciO2k6MTtzOjEwOiJzaG93X2hhbGFsIjtpOjA7czoxMDoicGFja2FnZV9pZCI7aTo3O3M6MTI6InBhY2thZ2VfdHlwZSI7czo3OiJtb250aGx5IjtzOjY6InN0YXR1cyI7czo2OiJhY3RpdmUiO3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjE5OiIyMDI2LTEyLTAxIDAwOjAwOjAwIjtzOjk6ImNvdW50X3NtcyI7aTowO3M6OToidG90YWxfc21zIjtpOjA7czoxMzoidHJpYWxfZW5kc19hdCI7TjtzOjE4OiJsaWNlbnNlX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMDA6MDA6MDAiO3M6MjM6InN1YnNjcmlwdGlvbl91cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MjU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWQiO2k6MTtzOjMyOiJkZWZhdWx0X3RhYmxlX3Jlc2VydmF0aW9uX3N0YXR1cyI7czo5OiJDb25maXJtZWQiO3M6MjA6ImRpc2FibGVfc2xvdF9taW51dGVzIjtpOjMwO3M6MTU6ImFwcHJvdmFsX3N0YXR1cyI7czo4OiJBcHByb3ZlZCI7czoxNjoicmVqZWN0aW9uX3JlYXNvbiI7TjtzOjEzOiJmYWNlYm9va19saW5rIjtzOjQxOiJodHRwczovL3d3dy5mYWNlYm9vay5jb20vQWxDYXBvbmVQbG92ZGl2LyI7czoxNDoiaW5zdGFncmFtX2xpbmsiO3M6NDI6Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vYWxjYXBvbmVwbG92ZGl2LyI7czoxMjoidHdpdHRlcl9saW5rIjtOO3M6OToieWVscF9saW5rIjtOO3M6OToid2lmaV9uYW1lIjtOO3M6MTM6IndpZmlfcGFzc3dvcmQiO047czoxNDoic2hvd193aWZpX2ljb24iO2k6MDtzOjE0OiJ0YWJsZV9yZXF1aXJlZCI7aTowO3M6MTQ6InNob3dfbG9nb190ZXh0IjtpOjE7czoxMjoibWV0YV9rZXl3b3JkIjtOO3M6MTY6Im1ldGFfZGVzY3JpcHRpb24iO047czozNDoidXBsb2FkX2Zhdl9pY29uX2FuZHJvaWRfY2hyb21lXzE5MiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfNTEyIjtOO3M6MzI6InVwbG9hZF9mYXZfaWNvbl9hcHBsZV90b3VjaF9pY29uIjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzE2IjtOO3M6MTc6InVwbG9hZF9mYXZpY29uXzMyIjtOO3M6NzoiZmF2aWNvbiI7TjtzOjM2OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX2Rlc2t0b3AiO2k6MTtzOjM1OiJpc193YWl0ZXJfcmVxdWVzdF9lbmFibGVkX29uX21vYmlsZSI7aToxO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb3Blbl9ieV9xciI7aTowO3M6MTE6IndlYm1hbmlmZXN0IjtOO3M6MTU6ImVuYWJsZV90aXBfc2hvcCI7aToxO3M6MTQ6ImVuYWJsZV90aXBfcG9zIjtpOjE7czoyNToiaXNfcHdhX2luc3RhbGxfYWxlcnRfc2hvdyI7aTowO3M6MTk6ImF1dG9fY29uZmlybV9vcmRlcnMiO2k6MDtzOjI5OiJyZXN0cmljdF9xcl9vcmRlcl9ieV9sb2NhdGlvbiI7aTowO3M6MjI6InFyX29yZGVyX3JhZGl1c19tZXRlcnMiO047czoyMzoic2hvd19vcmRlcl90eXBlX29wdGlvbnMiO2k6MTtzOjI0OiJkaXNhYmxlX29yZGVyX3R5cGVfcG9wdXAiO2k6MDtzOjIxOiJkZWZhdWx0X29yZGVyX3R5cGVfaWQiO047czoyNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fcG9zIjtpOjA7czozNzoiaGlkZV9tZW51X2l0ZW1faW1hZ2Vfb25fY3VzdG9tZXJfc2l0ZSI7aTowO3M6ODoidGF4X21vZGUiO3M6NToib3JkZXIiO3M6MTM6InRheF9pbmNsdXNpdmUiO2k6MDtzOjIyOiJjdXN0b21lcl9zaXRlX2xhbmd1YWdlIjtzOjI6ImVuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO2k6MTtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO2k6MTtzOjE4OiJtaW5pbXVtX3BhcnR5X3NpemUiO2k6MTtzOjI2OiJ0YWJsZV9sb2NrX3RpbWVvdXRfbWludXRlcyI7aToxMDt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MTE6e3M6MTc6ImxpY2Vuc2VfZXhwaXJlX29uIjtzOjg6ImRhdGV0aW1lIjtzOjE1OiJ0cmlhbF9leHBpcmVfb24iO3M6ODoiZGF0ZXRpbWUiO3M6MTg6ImxpY2Vuc2VfdXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoyMzoic3Vic2NyaXB0aW9uX3VwZGF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MTA6InVwZGF0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6MjM6ImN1c3RvbV9kZWxpdmVyeV9vcHRpb25zIjtzOjU6ImFycmF5IjtzOjk6ImlzX2FjdGl2ZSI7czo3OiJib29sZWFuIjtzOjI0OiJlbmFibGVfYWRtaW5fcmVzZXJ2YXRpb24iO3M6NzoiYm9vbGVhbiI7czoyNzoiZW5hYmxlX2N1c3RvbWVyX3Jlc2VydmF0aW9uIjtzOjc6ImJvb2xlYW4iO3M6Mjk6InJlc3RyaWN0X3FyX29yZGVyX2J5X2xvY2F0aW9uIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6ODoibG9nb191cmwiO31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MjoiaWQiO31zOjE3OiJjdXN0b21lcklwQWRkcmVzcyI7TjtzOjI0OiJlc3RpbWF0aW9uQmlsbGluZ0FkZHJlc3MiO2E6MDp7fXM6MTM6ImNvbGxlY3RUYXhJZHMiO2I6MDtzOjg6ImNvdXBvbklkIjtOO3M6MTU6InByb21vdGlvbkNvZGVJZCI7TjtzOjE5OiJhbGxvd1Byb21vdGlvbkNvZGVzIjtiOjA7fX1zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjowO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MDp7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MToiKiI7fX1zOjg6InRpbWV6b25lIjtzOjEyOiJFdXJvcGUvU29maWEiO3M6NToiaXNSdGwiO2I6MDtzOjMwOiJuZXdfb3JkZXJfbm90aWZpY2F0aW9uX3BlbmRpbmciO2I6MDtzOjE2OiJsYXN0X29yZGVyX2NvdW50IjtpOjE7czoxNzoidG9kYXlfb3JkZXJfY291bnQiO2k6MDtzOjI4OiJhY3RpdmVfd2FpdGVyX3JlcXVlc3RzX2NvdW50IjtpOjA7czo4OiJjdXJyZW5jeSI7czozOiLigqwiO30=', '1768495557'),
('3UzyDwoW49TsCSCPfJ1GlC8sUpoa4KqhpeKdYc66', '1', '212.104.118.18', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'YToxMzp7czo2OiJfdG9rZW4iO3M6NDA6IkVGQ3NNWXVsYUxlbDE3dWZjWnNta1dQdHJmOVZqdm9LNHpPaDgyTGMiO3M6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6MzoidXJsIjthOjE6e3M6ODoiaW50ZW5kZWQiO3M6MzM6Imh0dHBzOi8vaGVsbG9wb3Mub25saW5lL2Rhc2hib2FyZCI7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjYxOiJodHRwczovL2hlbGxvcG9zLm9ubGluZS9tYW5pZmVzdC5qc29uP3VybD1zdXBlcmFkbWluLXNldHRpbmdzIjt9czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtpOjA7czo0OiJ1c2VyIjtPOjE1OiJBcHBcTW9kZWxzXFVzZXIiOjM2OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjU6InVzZXJzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MjQ6e3M6MjoiaWQiO2k6MTtzOjEzOiJyZXN0YXVyYW50X2lkIjtOO3M6OToiYnJhbmNoX2lkIjtOO3M6NDoibmFtZSI7czoxNToiSGFsaWwgU2lkemhpbW92IjtzOjU6ImVtYWlsIjtzOjIwOiJoc2lkemhpbW92QGdtYWlsLmNvbSI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjEwOiIwODg1MjE5MDcyIjtzOjEwOiJwaG9uZV9jb2RlIjtzOjM6IjM1OSI7czoyNjoidGVybXNfYW5kX3ByaXZhY3lfYWNjZXB0ZWQiO2k6MDtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtpOjA7czoxNzoiZW1haWxfdmVyaWZpZWRfYXQiO047czo4OiJwYXNzd29yZCI7czo2MDoiJDJ5JDEyJENsTzROSWg0V3NtQVNOWmxuaUhtei4yLmlJMDV1Y3AwNmFEdWh0dEVlbzNNbEw2Z0suNFlHIjtzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7TjtzOjI1OiJ0d29fZmFjdG9yX3JlY292ZXJ5X2NvZGVzIjtOO3M6MjM6InR3b19mYWN0b3JfY29uZmlybWVkX2F0IjtOO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtzOjYwOiJmNWlLQTk0cGlCM3J0a1NnRzhXWUpsMklCb1hKR1o3c3o3MzBmRklQc0pCUFh6bDBhbEpPS0MwaHhFMGYiO3M6MTU6ImN1cnJlbnRfdGVhbV9pZCI7TjtzOjE4OiJwcm9maWxlX3Bob3RvX3BhdGgiO047czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMyAxMDozMDowMiI7czo2OiJsb2NhbGUiO3M6MjoiZW4iO3M6OToic3RyaXBlX2lkIjtOO3M6NzoicG1fdHlwZSI7TjtzOjEyOiJwbV9sYXN0X2ZvdXIiO047czoxMzoidHJpYWxfZW5kc19hdCI7Tjt9czoxMToiACoAb3JpZ2luYWwiO2E6MjQ6e3M6MjoiaWQiO2k6MTtzOjEzOiJyZXN0YXVyYW50X2lkIjtOO3M6OToiYnJhbmNoX2lkIjtOO3M6NDoibmFtZSI7czoxNToiSGFsaWwgU2lkemhpbW92IjtzOjU6ImVtYWlsIjtzOjIwOiJoc2lkemhpbW92QGdtYWlsLmNvbSI7czoxMjoicGhvbmVfbnVtYmVyIjtzOjEwOiIwODg1MjE5MDcyIjtzOjEwOiJwaG9uZV9jb2RlIjtzOjM6IjM1OSI7czoyNjoidGVybXNfYW5kX3ByaXZhY3lfYWNjZXB0ZWQiO2k6MDtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtpOjA7czoxNzoiZW1haWxfdmVyaWZpZWRfYXQiO047czo4OiJwYXNzd29yZCI7czo2MDoiJDJ5JDEyJENsTzROSWg0V3NtQVNOWmxuaUhtei4yLmlJMDV1Y3AwNmFEdWh0dEVlbzNNbEw2Z0suNFlHIjtzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7TjtzOjI1OiJ0d29fZmFjdG9yX3JlY292ZXJ5X2NvZGVzIjtOO3M6MjM6InR3b19mYWN0b3JfY29uZmlybWVkX2F0IjtOO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtzOjYwOiJmNWlLQTk0cGlCM3J0a1NnRzhXWUpsMklCb1hKR1o3c3o3MzBmRklQc0pCUFh6bDBhbEpPS0MwaHhFMGYiO3M6MTU6ImN1cnJlbnRfdGVhbV9pZCI7TjtzOjE4OiJwcm9maWxlX3Bob3RvX3BhdGgiO047czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MSI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMyAxMDozMDowMiI7czo2OiJsb2NhbGUiO3M6MjoiZW4iO3M6OToic3RyaXBlX2lkIjtOO3M6NzoicG1fdHlwZSI7TjtzOjEyOiJwbV9sYXN0X2ZvdXIiO047czoxMzoidHJpYWxfZW5kc19hdCI7Tjt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6Njp7czoxNzoiZW1haWxfdmVyaWZpZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6ODoicGFzc3dvcmQiO3M6NjoiaGFzaGVkIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtzOjc6ImludGVnZXIiO3M6OToiYnJhbmNoX2lkIjtzOjc6ImludGVnZXIiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO3M6NzoiYm9vbGVhbiI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YToxOntpOjA7czoxNzoicHJvZmlsZV9waG90b191cmwiO31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjE6e3M6NToicm9sZXMiO086Mzk6IklsbHVtaW5hdGVcRGF0YWJhc2VcRWxvcXVlbnRcQ29sbGVjdGlvbiI6Mjp7czo4OiIAKgBpdGVtcyI7YToxOntpOjA7TzoyOToiU3BhdGllXFBlcm1pc3Npb25cTW9kZWxzXFJvbGUiOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjU6InJvbGVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6Nzp7czoyOiJpZCI7aToxO3M6NDoibmFtZSI7czoxMToiU3VwZXIgQWRtaW4iO3M6MTI6ImRpc3BsYXlfbmFtZSI7czoxMToiU3VwZXIgQWRtaW4iO3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjUwIjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjUwIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtOO31zOjExOiIAKgBvcmlnaW5hbCI7YToxMDp7czoyOiJpZCI7aToxO3M6NDoibmFtZSI7czoxMToiU3VwZXIgQWRtaW4iO3M6MTI6ImRpc3BsYXlfbmFtZSI7czoxMToiU3VwZXIgQWRtaW4iO3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjUwIjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjUwIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtOO3M6MTQ6InBpdm90X21vZGVsX2lkIjtpOjE7czoxMzoicGl2b3Rfcm9sZV9pZCI7aToxO3M6MTY6InBpdm90X21vZGVsX3R5cGUiO3M6MTU6IkFwcFxNb2RlbHNcVXNlciI7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MTp7czo1OiJwaXZvdCI7Tzo0OToiSWxsdW1pbmF0ZVxEYXRhYmFzZVxFbG9xdWVudFxSZWxhdGlvbnNcTW9ycGhQaXZvdCI6Mzk6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTU6Im1vZGVsX2hhc19yb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjowO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjM6e3M6MTA6Im1vZGVsX3R5cGUiO3M6MTU6IkFwcFxNb2RlbHNcVXNlciI7czo4OiJtb2RlbF9pZCI7aToxO3M6Nzoicm9sZV9pZCI7aToxO31zOjExOiIAKgBvcmlnaW5hbCI7YTozOntzOjEwOiJtb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO3M6ODoibW9kZWxfaWQiO2k6MTtzOjc6InJvbGVfaWQiO2k6MTt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MDp7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MDtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjA6e31zOjExOiJwaXZvdFBhcmVudCI7TzoxNToiQXBwXE1vZGVsc1xVc2VyIjozNjp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJ1c2VycyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjowO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjA6e31zOjExOiIAKgBvcmlnaW5hbCI7YTowOnt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6Njp7czoxNzoiZW1haWxfdmVyaWZpZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO3M6ODoicGFzc3dvcmQiO3M6NjoiaGFzaGVkIjtzOjEzOiJyZXN0YXVyYW50X2lkIjtzOjc6ImludGVnZXIiO3M6OToiYnJhbmNoX2lkIjtzOjc6ImludGVnZXIiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO3M6NzoiYm9vbGVhbiI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YToxOntpOjA7czoxNzoicHJvZmlsZV9waG90b191cmwiO31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTo0OntpOjA7czo4OiJwYXNzd29yZCI7aToxO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtpOjI7czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7aTozO3M6MTc6InR3b19mYWN0b3Jfc2VjcmV0Ijt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTA6e2k6MDtzOjQ6Im5hbWUiO2k6MTtzOjU6ImVtYWlsIjtpOjI7czo4OiJwYXNzd29yZCI7aTozO3M6OToiYnJhbmNoX2lkIjtpOjQ7czoxMzoicmVzdGF1cmFudF9pZCI7aTo1O3M6NjoibG9jYWxlIjtpOjY7czoxMjoicGhvbmVfbnVtYmVyIjtpOjc7czoxMDoicGhvbmVfY29kZSI7aTo4O3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjk7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MToiKiI7fXM6MTk6IgAqAGF1dGhQYXNzd29yZE5hbWUiO3M6ODoicGFzc3dvcmQiO3M6MjA6IgAqAHJlbWVtYmVyVG9rZW5OYW1lIjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7czoxNDoiACoAYWNjZXNzVG9rZW4iO047fXM6MTI6InBpdm90UmVsYXRlZCI7TzoyOToiU3BhdGllXFBlcm1pc3Npb25cTW9kZWxzXFJvbGUiOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjU6InJvbGVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjA7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTp7czoxMDoiZ3VhcmRfbmFtZSI7czozOiJ3ZWIiO31zOjExOiIAKgBvcmlnaW5hbCI7YTowOnt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MDp7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fXM6MTM6IgAqAGZvcmVpZ25LZXkiO3M6ODoibW9kZWxfaWQiO3M6MTM6IgAqAHJlbGF0ZWRLZXkiO3M6Nzoicm9sZV9pZCI7czoxMjoiACoAbW9ycGhUeXBlIjtzOjEwOiJtb2RlbF90eXBlIjtzOjEzOiIAKgBtb3JwaENsYXNzIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO319czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjA6e31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjI6ImlkIjt9fX1zOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7fX1zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTo0OntpOjA7czo4OiJwYXNzd29yZCI7aToxO3M6MTQ6InJlbWVtYmVyX3Rva2VuIjtpOjI7czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7aTozO3M6MTc6InR3b19mYWN0b3Jfc2VjcmV0Ijt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTA6e2k6MDtzOjQ6Im5hbWUiO2k6MTtzOjU6ImVtYWlsIjtpOjI7czo4OiJwYXNzd29yZCI7aTozO3M6OToiYnJhbmNoX2lkIjtpOjQ7czoxMzoicmVzdGF1cmFudF9pZCI7aTo1O3M6NjoibG9jYWxlIjtpOjY7czoxMjoicGhvbmVfbnVtYmVyIjtpOjc7czoxMDoicGhvbmVfY29kZSI7aTo4O3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjk7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MToiKiI7fXM6MTk6IgAqAGF1dGhQYXNzd29yZE5hbWUiO3M6ODoicGFzc3dvcmQiO3M6MjA6IgAqAHJlbWVtYmVyVG9rZW5OYW1lIjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7czoxNDoiACoAYWNjZXNzVG9rZW4iO047fXM6MzE6Imdsb2JhbF9jdXJyZW5jeV9mb3JtYXRfc2V0dGluZzQiO086MjU6IkFwcFxNb2RlbHNcR2xvYmFsQ3VycmVuY3kiOjM0OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE3OiJnbG9iYWxfY3VycmVuY2llcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjExOiIAKgBvcmlnaW5hbCI7YToxNTp7czoyOiJpZCI7aTo0O3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6NToiRXVyb3MiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigqwiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiRVVSIjtzOjEzOiJleGNoYW5nZV9yYXRlIjtOO3M6OToidXNkX3ByaWNlIjtOO3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtzOjI6Im5vIjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6Njoic3RhdHVzIjtzOjY6ImVuYWJsZSI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDoyNiI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDoyNiI7czoxMDoiZGVsZXRlZF9hdCI7Tjt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6Mjp7czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6NzoiYm9vbGVhbiI7czoxMDoiZGVsZXRlZF9hdCI7czo4OiJkYXRldGltZSI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YTowOnt9czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6MDp7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjExOntpOjA7czoxMzoiY3VycmVuY3lfbmFtZSI7aToxO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7aToyO3M6MTM6ImN1cnJlbmN5X2NvZGUiO2k6MztzOjEzOiJleGNoYW5nZV9yYXRlIjtpOjQ7czo5OiJ1c2RfcHJpY2UiO2k6NTtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7aTo2O3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtpOjc7czoxMzoibm9fb2ZfZGVjaW1hbCI7aTo4O3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7aTo5O3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtpOjEwO3M6Njoic3RhdHVzIjt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9czoxNjoiACoAZm9yY2VEZWxldGluZyI7YjowO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6MTY6InJvbGVfcGVybWlzc2lvbnMiO2E6MDp7fXM6MTc6InBhc3N3b3JkX2hhc2hfd2ViIjtzOjYwOiIkMnkkMTIkQ2xPNE5JaDRXc21BU05abG5pSG16LjIuaUkwNXVjcDA2YUR1aHR0RWVvM01sTDZnSy40WUciO3M6MTI6InNtdHBfc2V0dGluZyI7TzoyMzoiQXBwXE1vZGVsc1xFbWFpbFNldHRpbmciOjMzOntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE0OiJlbWFpbF9zZXR0aW5ncyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE0OntzOjI6ImlkIjtpOjE7czoxNDoibWFpbF9mcm9tX25hbWUiO3M6ODoiSGVsbG9QT1MiO3M6MTU6Im1haWxfZnJvbV9lbWFpbCI7czoyMDoiaW5mb0BoZWxsb3Bvcy5vbmxpbmUiO3M6MTI6ImVuYWJsZV9xdWV1ZSI7czozOiJ5ZXMiO3M6MTE6Im1haWxfZHJpdmVyIjtzOjQ6InNtdHAiO3M6OToic210cF9ob3N0IjtzOjIwOiJtYWlsLmhlbGxvcG9zLm9ubGluZSI7czo5OiJzbXRwX3BvcnQiO2k6NDY1O3M6MTU6InNtdHBfZW5jcnlwdGlvbiI7czozOiJzc2wiO3M6MTM6Im1haWxfdXNlcm5hbWUiO3M6MjA6ImluZm9AaGVsbG9wb3Mub25saW5lIjtzOjEzOiJtYWlsX3Bhc3N3b3JkIjtzOjEyOiJyYUdDJVMhJnpaUEYiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6NTQiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MTg6MDIiO3M6MTQ6ImVtYWlsX3ZlcmlmaWVkIjtpOjA7czo4OiJ2ZXJpZmllZCI7aToxO31zOjExOiIAKgBvcmlnaW5hbCI7YToxNDp7czoyOiJpZCI7aToxO3M6MTQ6Im1haWxfZnJvbV9uYW1lIjtzOjg6IkhlbGxvUE9TIjtzOjE1OiJtYWlsX2Zyb21fZW1haWwiO3M6MjA6ImluZm9AaGVsbG9wb3Mub25saW5lIjtzOjEyOiJlbmFibGVfcXVldWUiO3M6MzoieWVzIjtzOjExOiJtYWlsX2RyaXZlciI7czo0OiJzbXRwIjtzOjk6InNtdHBfaG9zdCI7czoyMDoibWFpbC5oZWxsb3Bvcy5vbmxpbmUiO3M6OToic210cF9wb3J0IjtzOjM6IjQ2NSI7czoxNToic210cF9lbmNyeXB0aW9uIjtzOjM6InNzbCI7czoxMzoibWFpbF91c2VybmFtZSI7czoyMDoiaW5mb0BoZWxsb3Bvcy5vbmxpbmUiO3M6MTM6Im1haWxfcGFzc3dvcmQiO3M6MTI6InJhR0MlUyEmelpQRiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1NCI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDoxODowMiI7czoxNDoiZW1haWxfdmVyaWZpZWQiO2k6MDtzOjg6InZlcmlmaWVkIjtpOjE7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX1zOjU6ImlzUnRsIjtiOjA7fQ==', '1768495717'),
('41VRAzjssSXtnJqvUL5CivHUPPPfZrBplDuNBbir', NULL, '66.249.72.165', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.192 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiZ2RlV2RXaWtjR3RvbUdsdnRNTk9qSTNRUkRqdkh4VVJtRTdqVDV6NyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyNzoiaHR0cHM6Ly93d3cuaGVsbG9wb3Mub25saW5lIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1768493193'),
('Gg7MPural3TMKcAYXmLtpcOVeFppqVozWpXhbsUh', '1', '212.104.118.18', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36', 'YToxMjp7czoxNjoic3RvcF9pbXBlcnNvbmF0ZSI7aToxO3M6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7czo2OiJfdG9rZW4iO3M6NDA6IjI2MGppbVRZWDlTVmppQkN5WmFpRTdCRzBNaGNhbkg1THNrWW9OOWIiO3M6NDoidXNlciI7TzoxNToiQXBwXE1vZGVsc1xVc2VyIjozNjp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJ1c2VycyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTU6IkhhbGlsIFNpZHpoaW1vdiI7czo1OiJlbWFpbCI7czoyMDoiaHNpZHpoaW1vdkBnbWFpbC5jb20iO3M6MTI6InBob25lX251bWJlciI7czoxMDoiMDg4NTIxOTA3MiI7czoxMDoicGhvbmVfY29kZSI7czozOiIzNTkiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRDbE80TkloNFdzbUFTTlpsbmlIbXouMi5pSTA1dWNwMDZhRHVodHRFZW8zTWxMNmdLLjRZRyI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7czo2MDoiZjVpS0E5NHBpQjNydGtTZ0c4V1lKbDJJQm9YSkdaN3N6NzMwZkZJUHNKQlBYemwwYWxKT0tDMGh4RTBmIjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6NTEiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMTA6MzA6MDIiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjI0OntzOjI6ImlkIjtpOjE7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjk6ImJyYW5jaF9pZCI7TjtzOjQ6Im5hbWUiO3M6MTU6IkhhbGlsIFNpZHpoaW1vdiI7czo1OiJlbWFpbCI7czoyMDoiaHNpZHpoaW1vdkBnbWFpbC5jb20iO3M6MTI6InBob25lX251bWJlciI7czoxMDoiMDg4NTIxOTA3MiI7czoxMDoicGhvbmVfY29kZSI7czozOiIzNTkiO3M6MjY6InRlcm1zX2FuZF9wcml2YWN5X2FjY2VwdGVkIjtpOjA7czoyNToibWFya2V0aW5nX2VtYWlsc19hY2NlcHRlZCI7aTowO3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtOO3M6ODoicGFzc3dvcmQiO3M6NjA6IiQyeSQxMiRDbE80TkloNFdzbUFTTlpsbmlIbXouMi5pSTA1dWNwMDZhRHVodHRFZW8zTWxMNmdLLjRZRyI7czoxNzoidHdvX2ZhY3Rvcl9zZWNyZXQiO047czoyNToidHdvX2ZhY3Rvcl9yZWNvdmVyeV9jb2RlcyI7TjtzOjIzOiJ0d29fZmFjdG9yX2NvbmZpcm1lZF9hdCI7TjtzOjE0OiJyZW1lbWJlcl90b2tlbiI7czo2MDoiZjVpS0E5NHBpQjNydGtTZ0c4V1lKbDJJQm9YSkdaN3N6NzMwZkZJUHNKQlBYemwwYWxKT0tDMGh4RTBmIjtzOjE1OiJjdXJyZW50X3RlYW1faWQiO047czoxODoicHJvZmlsZV9waG90b19wYXRoIjtOO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6NTEiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTItMDMgMTA6MzA6MDIiO3M6NjoibG9jYWxlIjtzOjI6ImVuIjtzOjk6InN0cmlwZV9pZCI7TjtzOjc6InBtX3R5cGUiO047czoxMjoicG1fbGFzdF9mb3VyIjtOO3M6MTM6InRyaWFsX2VuZHNfYXQiO047fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjY6e3M6MTc6ImVtYWlsX3ZlcmlmaWVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjg6InBhc3N3b3JkIjtzOjY6Imhhc2hlZCI7czoxMzoicmVzdGF1cmFudF9pZCI7czo3OiJpbnRlZ2VyIjtzOjk6ImJyYW5jaF9pZCI7czo3OiJpbnRlZ2VyIjtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7czo3OiJib29sZWFuIjtzOjI1OiJtYXJrZXRpbmdfZW1haWxzX2FjY2VwdGVkIjtzOjc6ImJvb2xlYW4iO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MTp7aTowO3M6MTc6InByb2ZpbGVfcGhvdG9fdXJsIjt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YToxOntzOjU6InJvbGVzIjtPOjM5OiJJbGx1bWluYXRlXERhdGFiYXNlXEVsb3F1ZW50XENvbGxlY3Rpb24iOjI6e3M6ODoiACoAaXRlbXMiO2E6MTp7aTowO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjc6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MCI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MCI7czoxMzoicmVzdGF1cmFudF9pZCI7Tjt9czoxMToiACoAb3JpZ2luYWwiO2E6MTA6e3M6MjoiaWQiO2k6MTtzOjQ6Im5hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEyOiJkaXNwbGF5X25hbWUiO3M6MTE6IlN1cGVyIEFkbWluIjtzOjEwOiJndWFyZF9uYW1lIjtzOjM6IndlYiI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MCI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDo1MCI7czoxMzoicmVzdGF1cmFudF9pZCI7TjtzOjE0OiJwaXZvdF9tb2RlbF9pZCI7aToxO3M6MTM6InBpdm90X3JvbGVfaWQiO2k6MTtzOjE2OiJwaXZvdF9tb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YTowOnt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjE6e3M6NToicGl2b3QiO086NDk6IklsbHVtaW5hdGVcRGF0YWJhc2VcRWxvcXVlbnRcUmVsYXRpb25zXE1vcnBoUGl2b3QiOjM5OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjE1OiJtb2RlbF9oYXNfcm9sZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MDtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YTozOntzOjEwOiJtb2RlbF90eXBlIjtzOjE1OiJBcHBcTW9kZWxzXFVzZXIiO3M6ODoibW9kZWxfaWQiO2k6MTtzOjc6InJvbGVfaWQiO2k6MTt9czoxMToiACoAb3JpZ2luYWwiO2E6Mzp7czoxMDoibW9kZWxfdHlwZSI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjtzOjg6Im1vZGVsX2lkIjtpOjE7czo3OiJyb2xlX2lkIjtpOjE7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YTowOnt9czoxMToicGl2b3RQYXJlbnQiO3I6NTtzOjEyOiJwaXZvdFJlbGF0ZWQiO086Mjk6IlNwYXRpZVxQZXJtaXNzaW9uXE1vZGVsc1xSb2xlIjozMzp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czo1OiJyb2xlcyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjowO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjE6e3M6MTA6Imd1YXJkX25hbWUiO3M6Mzoid2ViIjt9czoxMToiACoAb3JpZ2luYWwiO2E6MDp7fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjA6e31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX1zOjEzOiIAKgBmb3JlaWduS2V5IjtzOjg6Im1vZGVsX2lkIjtzOjEzOiIAKgByZWxhdGVkS2V5IjtzOjc6InJvbGVfaWQiO3M6MTI6IgAqAG1vcnBoVHlwZSI7czoxMDoibW9kZWxfdHlwZSI7czoxMzoiACoAbW9ycGhDbGFzcyI7czoxNToiQXBwXE1vZGVsc1xVc2VyIjt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fX19czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO319czoxMDoiACoAdG91Y2hlcyI7YTowOnt9czoyNzoiACoAcmVsYXRpb25BdXRvbG9hZENhbGxiYWNrIjtOO3M6MjY6IgAqAHJlbGF0aW9uQXV0b2xvYWRDb250ZXh0IjtOO3M6MTA6InRpbWVzdGFtcHMiO2I6MTtzOjEzOiJ1c2VzVW5pcXVlSWRzIjtiOjA7czo5OiIAKgBoaWRkZW4iO2E6NDp7aTowO3M6ODoicGFzc3dvcmQiO2k6MTtzOjE0OiJyZW1lbWJlcl90b2tlbiI7aToyO3M6MjU6InR3b19mYWN0b3JfcmVjb3ZlcnlfY29kZXMiO2k6MztzOjE3OiJ0d29fZmFjdG9yX3NlY3JldCI7fXM6MTA6IgAqAHZpc2libGUiO2E6MDp7fXM6MTE6IgAqAGZpbGxhYmxlIjthOjEwOntpOjA7czo0OiJuYW1lIjtpOjE7czo1OiJlbWFpbCI7aToyO3M6ODoicGFzc3dvcmQiO2k6MztzOjk6ImJyYW5jaF9pZCI7aTo0O3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6NTtzOjY6ImxvY2FsZSI7aTo2O3M6MTI6InBob25lX251bWJlciI7aTo3O3M6MTA6InBob25lX2NvZGUiO2k6ODtzOjI2OiJ0ZXJtc19hbmRfcHJpdmFjeV9hY2NlcHRlZCI7aTo5O3M6MjU6Im1hcmtldGluZ19lbWFpbHNfYWNjZXB0ZWQiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE5OiIAKgBhdXRoUGFzc3dvcmROYW1lIjtzOjg6InBhc3N3b3JkIjtzOjIwOiIAKgByZW1lbWJlclRva2VuTmFtZSI7czoxNDoicmVtZW1iZXJfdG9rZW4iO3M6MTQ6IgAqAGFjY2Vzc1Rva2VuIjtOO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjE3OiJwYXNzd29yZF9oYXNoX3dlYiI7czo2MDoiJDJ5JDEyJENsTzROSWg0V3NtQVNOWmxuaUhtei4yLmlJMDV1Y3AwNmFEdWh0dEVlbzNNbEw2Z0suNFlHIjtzOjE2OiJyb2xlX3Blcm1pc3Npb25zIjthOjA6e31zOjIwOiJjaGVja19taWdyYXRlX3N0YXR1cyI7czo0OiJHb29kIjtzOjMxOiJnbG9iYWxfY3VycmVuY3lfZm9ybWF0X3NldHRpbmc0IjtPOjI1OiJBcHBcTW9kZWxzXEdsb2JhbEN1cnJlbmN5IjozNDp7czoxMzoiACoAY29ubmVjdGlvbiI7czo1OiJteXNxbCI7czo4OiIAKgB0YWJsZSI7czoxNzoiZ2xvYmFsX2N1cnJlbmNpZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YToxNTp7czoyOiJpZCI7aTo0O3M6MTM6ImN1cnJlbmN5X25hbWUiO3M6NToiRXVyb3MiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigqwiO3M6MTM6ImN1cnJlbmN5X2NvZGUiO3M6MzoiRVVSIjtzOjEzOiJleGNoYW5nZV9yYXRlIjtOO3M6OToidXNkX3ByaWNlIjtOO3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtzOjI6Im5vIjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7czo0OiJsZWZ0IjtzOjEzOiJub19vZl9kZWNpbWFsIjtpOjI7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtzOjE6IiwiO3M6MTc6ImRlY2ltYWxfc2VwYXJhdG9yIjtzOjE6Ii4iO3M6Njoic3RhdHVzIjtzOjY6ImVuYWJsZSI7czoxMDoiY3JlYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDoyNiI7czoxMDoidXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMS0yNyAwMDowMDoyNiI7czoxMDoiZGVsZXRlZF9hdCI7Tjt9czoxMToiACoAb3JpZ2luYWwiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTA6IgAqAGNoYW5nZXMiO2E6MDp7fXM6MTE6IgAqAHByZXZpb3VzIjthOjA6e31zOjg6IgAqAGNhc3RzIjthOjI6e3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtzOjc6ImJvb2xlYW4iO3M6MTA6ImRlbGV0ZWRfYXQiO3M6ODoiZGF0ZXRpbWUiO31zOjE3OiIAKgBjbGFzc0Nhc3RDYWNoZSI7YTowOnt9czoyMToiACoAYXR0cmlidXRlQ2FzdENhY2hlIjthOjA6e31zOjEzOiIAKgBkYXRlRm9ybWF0IjtOO3M6MTA6IgAqAGFwcGVuZHMiO2E6MDp7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YToxMTp7aTowO3M6MTM6ImN1cnJlbmN5X25hbWUiO2k6MTtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO2k6MjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtpOjM7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7aTo0O3M6OToidXNkX3ByaWNlIjtpOjU7czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO2k6NjtzOjE3OiJjdXJyZW5jeV9wb3NpdGlvbiI7aTo3O3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6ODtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO2k6OTtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7aToxMDtzOjY6InN0YXR1cyI7fXM6MTA6IgAqAGd1YXJkZWQiO2E6MTp7aTowO3M6MToiKiI7fXM6MTY6IgAqAGZvcmNlRGVsZXRpbmciO2I6MDt9czoyNToiY3VycmVuY3lfZm9ybWF0X3NldHRpbmcxMSI7TzoxOToiQXBwXE1vZGVsc1xDdXJyZW5jeSI6MzM6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTA6ImN1cnJlbmNpZXMiO3M6MTM6IgAqAHByaW1hcnlLZXkiO3M6MjoiaWQiO3M6MTA6IgAqAGtleVR5cGUiO3M6MzoiaW50IjtzOjEyOiJpbmNyZW1lbnRpbmciO2I6MTtzOjc6IgAqAHdpdGgiO2E6MDp7fXM6MTI6IgAqAHdpdGhDb3VudCI7YTowOnt9czoxOToicHJldmVudHNMYXp5TG9hZGluZyI7YjowO3M6MTA6IgAqAHBlclBhZ2UiO2k6MTU7czo2OiJleGlzdHMiO2I6MTtzOjE4OiJ3YXNSZWNlbnRseUNyZWF0ZWQiO2I6MDtzOjI4OiIAKgBlc2NhcGVXaGVuQ2FzdGluZ1RvU3RyaW5nIjtiOjA7czoxMzoiACoAYXR0cmlidXRlcyI7YToxMjp7czoyOiJpZCI7aToxMTtzOjEzOiJyZXN0YXVyYW50X2lkIjtpOjM7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTU6ImN1cnJlbmN5X3N5bWJvbCI7czozOiLigqwiO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7fXM6MTE6IgAqAG9yaWdpbmFsIjthOjEyOntzOjI6ImlkIjtpOjExO3M6MTM6InJlc3RhdXJhbnRfaWQiO2k6MztzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjEzOiJleGNoYW5nZV9yYXRlIjtOO3M6OToidXNkX3ByaWNlIjtOO3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtzOjI6Im5vIjt9czoxMDoiACoAY2hhbmdlcyI7YTowOnt9czoxMToiACoAcHJldmlvdXMiO2E6MDp7fXM6ODoiACoAY2FzdHMiO2E6MDp7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YTowOnt9czoxOToiACoAZGlzcGF0Y2hlc0V2ZW50cyI7YTowOnt9czoxNDoiACoAb2JzZXJ2YWJsZXMiO2E6MDp7fXM6MTI6IgAqAHJlbGF0aW9ucyI7YToxOntzOjEwOiJyZXN0YXVyYW50IjtPOjIxOiJBcHBcTW9kZWxzXFJlc3RhdXJhbnQiOjM5OntzOjEzOiIAKgBjb25uZWN0aW9uIjtzOjU6Im15c3FsIjtzOjg6IgAqAHRhYmxlIjtzOjExOiJyZXN0YXVyYW50cyI7czoxMzoiACoAcHJpbWFyeUtleSI7czoyOiJpZCI7czoxMDoiACoAa2V5VHlwZSI7czozOiJpbnQiO3M6MTI6ImluY3JlbWVudGluZyI7YjoxO3M6NzoiACoAd2l0aCI7YTowOnt9czoxMjoiACoAd2l0aENvdW50IjthOjA6e31zOjE5OiJwcmV2ZW50c0xhenlMb2FkaW5nIjtiOjA7czoxMDoiACoAcGVyUGFnZSI7aToxNTtzOjY6ImV4aXN0cyI7YjoxO3M6MTg6Indhc1JlY2VudGx5Q3JlYXRlZCI7YjowO3M6Mjg6IgAqAGVzY2FwZVdoZW5DYXN0aW5nVG9TdHJpbmciO2I6MDtzOjEzOiIAKgBhdHRyaWJ1dGVzIjthOjg2OntzOjI6ImlkIjtpOjM7czoxMDoic3ViX2RvbWFpbiI7czoyNDoiYWxjYXBvbmUuaGVsbG9wb3Mub25saW5lIjtzOjQ6Im5hbWUiO3M6MTQ6IkFMIENBUE9ORSBDTFVCIjtzOjQ6Imhhc2giO3M6MTQ6ImFsLWNhcG9uZS1jbHViIjtzOjc6ImFkZHJlc3MiO3M6MzM6IjMgRXZsb2dpIEdlb3JnaWV2IApLYXBhbmEKUGxvdmRpdiI7czoxMjoicGhvbmVfbnVtYmVyIjtpOjg3NzAyMjc3MztzOjEwOiJwaG9uZV9jb2RlIjtpOjM1OTtzOjU6ImVtYWlsIjtzOjE5OiJ2aXAuemFrb3ZAZ21haWwuY29tIjtzOjg6InRpbWV6b25lIjtzOjEyOiJFdXJvcGUvU29maWEiO3M6OToidGhlbWVfaGV4IjtzOjc6IiMyNTYzRUIiO3M6OToidGhlbWVfcmdiIjtzOjExOiIzNywgOTksIDIzNSI7czo0OiJsb2dvIjtzOjM2OiJhZDkwYmNiMjljNzQ2NTEzNDhhMDY1NDczNzA3NDVlYi5wbmciO3M6MTA6ImNvdW50cnlfaWQiO2k6MzU7czoxNToiaGlkZV9uZXdfb3JkZXJzIjtpOjA7czoyMToiaGlkZV9uZXdfcmVzZXJ2YXRpb25zIjtpOjA7czoyMzoiaGlkZV9uZXdfd2FpdGVyX3JlcXVlc3QiO2k6MDtzOjExOiJjdXJyZW5jeV9pZCI7aToxMTtzOjEyOiJsaWNlbnNlX3R5cGUiO3M6NDoiZnJlZSI7czo5OiJpc19hY3RpdmUiO2k6MTtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI2LTAxLTE0IDE1OjMwOjU2IjtzOjIzOiJjdXN0b21lcl9sb2dpbl9yZXF1aXJlZCI7aTowO3M6ODoiYWJvdXRfdXMiO3M6MTMwNDoiPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIFdlbGNvbWUgdG8gb3VyIHJlc3RhdXJhbnQsIHdoZXJlIGdyZWF0IGZvb2QgYW5kIGdvb2QgdmliZXMgY29tZSB0b2dldGhlciEgV2UncmUgYSBsb2NhbCwgZmFtaWx5LW93bmVkIHNwb3QgdGhhdCBsb3ZlcyBicmluZ2luZyBwZW9wbGUgdG9nZXRoZXIgb3ZlciBkZWxpY2lvdXMgbWVhbHMgYW5kIHVuZm9yZ2V0dGFibGUgbW9tZW50cy4gV2hldGhlciB5b3UncmUgaGVyZSBmb3IgYSBxdWljayBiaXRlLCBhIGZhbWlseSBkaW5uZXIsIG9yIGEgY2VsZWJyYXRpb24sIHdlJ3JlIGFsbCBhYm91dCBtYWtpbmcgeW91ciB0aW1lIHdpdGggdXMgc3BlY2lhbC4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIE91ciBtZW51IGlzIHBhY2tlZCB3aXRoIGRpc2hlcyBtYWRlIGZyb20gZnJlc2gsIHF1YWxpdHkgaW5ncmVkaWVudHMgYmVjYXVzZSB3ZSBiZWxpZXZlIGZvb2Qgc2hvdWxkIHRhc3RlIGFzCiAgICAgICAgICBnb29kIGFzIGl0IG1ha2VzIHlvdSBmZWVsLiBGcm9tIG91ciBzaWduYXR1cmUgZGlzaGVzIHRvIHNlYXNvbmFsIHNwZWNpYWxzLCB0aGVyZSdzIGFsd2F5cyBzb21ldGhpbmcgdG8gZXhjaXRlCiAgICAgICAgICB5b3VyIHRhc3RlIGJ1ZHMuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBCdXQgd2UncmUgbm90IGp1c3QgYWJvdXQgdGhlIGZvb2TigJR3ZSdyZSBhYm91dCBjb21tdW5pdHkuIFdlIGxvdmUgc2VlaW5nIGZhbWlsaWFyIGZhY2VzIGFuZCB3ZWxjb21pbmcgbmV3IG9uZXMuCiAgICAgICAgICBPdXIgdGVhbSBpcyBhIGZ1biwgZnJpZW5kbHkgYnVuY2ggZGVkaWNhdGVkIHRvIHNlcnZpbmcgeW91IHdpdGggYSBzbWlsZSBhbmQgbWFraW5nIHN1cmUgZXZlcnkgdmlzaXQgZmVlbHMgbGlrZQogICAgICAgICAgY29taW5nIGhvbWUuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAiPgogICAgICAgICAgU28sIGNvbWUgb24gaW4sIGdyYWIgYSBzZWF0LCBhbmQgbGV0IHVzIHRha2UgY2FyZSBvZiB0aGUgcmVzdC4gV2UgY2FuJ3Qgd2FpdCB0byBzaGFyZSBvdXIgbG92ZSBvZiBmb29kIHdpdGgKICAgICAgICAgIHlvdSEKICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTgwMCBmb250LXNlbWlib2xkIG10LTYiPlNlZSB5b3Ugc29vbiEg8J+Nve+4j+KcqDwvcD4iO3M6MzA6ImFsbG93X2N1c3RvbWVyX2RlbGl2ZXJ5X29yZGVycyI7aToxO3M6Mjg6ImFsbG93X2N1c3RvbWVyX3BpY2t1cF9vcmRlcnMiO2k6MTtzOjE3OiJwaWNrdXBfZGF5c19yYW5nZSI7aTo3O3M6MjE6ImFsbG93X2N1c3RvbWVyX29yZGVycyI7aToxO3M6MjA6ImFsbG93X2RpbmVfaW5fb3JkZXJzIjtpOjE7czo4OiJzaG93X3ZlZyI7aToxO3M6MTA6InNob3dfaGFsYWwiO2k6MDtzOjEwOiJwYWNrYWdlX2lkIjtpOjc7czoxMjoicGFja2FnZV90eXBlIjtzOjc6Im1vbnRobHkiO3M6Njoic3RhdHVzIjtzOjY6ImFjdGl2ZSI7czoxNzoibGljZW5zZV9leHBpcmVfb24iO3M6MTk6IjIwMjYtMTItMDEgMDA6MDA6MDAiO3M6OToiY291bnRfc21zIjtpOjA7czo5OiJ0b3RhbF9zbXMiO2k6MDtzOjEzOiJ0cmlhbF9lbmRzX2F0IjtOO3M6MTg6ImxpY2Vuc2VfdXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMyAwMDowMDowMCI7czoyMzoic3Vic2NyaXB0aW9uX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6OToic3RyaXBlX2lkIjtOO3M6NzoicG1fdHlwZSI7TjtzOjEyOiJwbV9sYXN0X2ZvdXIiO047czoyNToiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZCI7aToxO3M6MzI6ImRlZmF1bHRfdGFibGVfcmVzZXJ2YXRpb25fc3RhdHVzIjtzOjk6IkNvbmZpcm1lZCI7czoyMDoiZGlzYWJsZV9zbG90X21pbnV0ZXMiO2k6MzA7czoxNToiYXBwcm92YWxfc3RhdHVzIjtzOjg6IkFwcHJvdmVkIjtzOjE2OiJyZWplY3Rpb25fcmVhc29uIjtOO3M6MTM6ImZhY2Vib29rX2xpbmsiO3M6NDE6Imh0dHBzOi8vd3d3LmZhY2Vib29rLmNvbS9BbENhcG9uZVBsb3ZkaXYvIjtzOjE0OiJpbnN0YWdyYW1fbGluayI7czo0MjoiaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9hbGNhcG9uZXBsb3ZkaXYvIjtzOjEyOiJ0d2l0dGVyX2xpbmsiO047czo5OiJ5ZWxwX2xpbmsiO047czo5OiJ3aWZpX25hbWUiO047czoxMzoid2lmaV9wYXNzd29yZCI7TjtzOjE0OiJzaG93X3dpZmlfaWNvbiI7aTowO3M6MTQ6InRhYmxlX3JlcXVpcmVkIjtpOjA7czoxNDoic2hvd19sb2dvX3RleHQiO2k6MTtzOjEyOiJtZXRhX2tleXdvcmQiO047czoxNjoibWV0YV9kZXNjcmlwdGlvbiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfMTkyIjtOO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV81MTIiO047czozMjoidXBsb2FkX2Zhdl9pY29uX2FwcGxlX3RvdWNoX2ljb24iO047czoxNzoidXBsb2FkX2Zhdmljb25fMTYiO047czoxNzoidXBsb2FkX2Zhdmljb25fMzIiO047czo3OiJmYXZpY29uIjtOO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb25fZGVza3RvcCI7aToxO3M6MzU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb25fbW9iaWxlIjtpOjE7czozNjoiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vcGVuX2J5X3FyIjtpOjA7czoxMToid2VibWFuaWZlc3QiO047czoxNToiZW5hYmxlX3RpcF9zaG9wIjtpOjE7czoxNDoiZW5hYmxlX3RpcF9wb3MiO2k6MTtzOjI1OiJpc19wd2FfaW5zdGFsbF9hbGVydF9zaG93IjtpOjA7czoxOToiYXV0b19jb25maXJtX29yZGVycyI7aTowO3M6Mjk6InJlc3RyaWN0X3FyX29yZGVyX2J5X2xvY2F0aW9uIjtpOjA7czoyMjoicXJfb3JkZXJfcmFkaXVzX21ldGVycyI7TjtzOjIzOiJzaG93X29yZGVyX3R5cGVfb3B0aW9ucyI7aToxO3M6MjQ6ImRpc2FibGVfb3JkZXJfdHlwZV9wb3B1cCI7aTowO3M6MjE6ImRlZmF1bHRfb3JkZXJfdHlwZV9pZCI7TjtzOjI3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9wb3MiO2k6MDtzOjM3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9jdXN0b21lcl9zaXRlIjtpOjA7czo4OiJ0YXhfbW9kZSI7czo1OiJvcmRlciI7czoxMzoidGF4X2luY2x1c2l2ZSI7aTowO3M6MjI6ImN1c3RvbWVyX3NpdGVfbGFuZ3VhZ2UiO3M6MjoiZW4iO3M6MjQ6ImVuYWJsZV9hZG1pbl9yZXNlcnZhdGlvbiI7aToxO3M6Mjc6ImVuYWJsZV9jdXN0b21lcl9yZXNlcnZhdGlvbiI7aToxO3M6MTg6Im1pbmltdW1fcGFydHlfc2l6ZSI7aToxO3M6MjY6InRhYmxlX2xvY2tfdGltZW91dF9taW51dGVzIjtpOjEwO31zOjExOiIAKgBvcmlnaW5hbCI7YTo4Njp7czoyOiJpZCI7aTozO3M6MTA6InN1Yl9kb21haW4iO3M6MjQ6ImFsY2Fwb25lLmhlbGxvcG9zLm9ubGluZSI7czo0OiJuYW1lIjtzOjE0OiJBTCBDQVBPTkUgQ0xVQiI7czo0OiJoYXNoIjtzOjE0OiJhbC1jYXBvbmUtY2x1YiI7czo3OiJhZGRyZXNzIjtzOjMzOiIzIEV2bG9naSBHZW9yZ2lldiAKS2FwYW5hClBsb3ZkaXYiO3M6MTI6InBob25lX251bWJlciI7czo5OiI4NzcwMjI3NzMiO3M6MTA6InBob25lX2NvZGUiO3M6MzoiMzU5IjtzOjU6ImVtYWlsIjtzOjE5OiJ2aXAuemFrb3ZAZ21haWwuY29tIjtzOjg6InRpbWV6b25lIjtzOjEyOiJFdXJvcGUvU29maWEiO3M6OToidGhlbWVfaGV4IjtzOjc6IiMyNTYzRUIiO3M6OToidGhlbWVfcmdiIjtzOjExOiIzNywgOTksIDIzNSI7czo0OiJsb2dvIjtzOjM2OiJhZDkwYmNiMjljNzQ2NTEzNDhhMDY1NDczNzA3NDVlYi5wbmciO3M6MTA6ImNvdW50cnlfaWQiO2k6MzU7czoxNToiaGlkZV9uZXdfb3JkZXJzIjtpOjA7czoyMToiaGlkZV9uZXdfcmVzZXJ2YXRpb25zIjtpOjA7czoyMzoiaGlkZV9uZXdfd2FpdGVyX3JlcXVlc3QiO2k6MDtzOjExOiJjdXJyZW5jeV9pZCI7aToxMTtzOjEyOiJsaWNlbnNlX3R5cGUiO3M6NDoiZnJlZSI7czo5OiJpc19hY3RpdmUiO2k6MTtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDEwOjE3OjE5IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI2LTAxLTE0IDE1OjMwOjU2IjtzOjIzOiJjdXN0b21lcl9sb2dpbl9yZXF1aXJlZCI7aTowO3M6ODoiYWJvdXRfdXMiO3M6MTMwNDoiPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIFdlbGNvbWUgdG8gb3VyIHJlc3RhdXJhbnQsIHdoZXJlIGdyZWF0IGZvb2QgYW5kIGdvb2QgdmliZXMgY29tZSB0b2dldGhlciEgV2UncmUgYSBsb2NhbCwgZmFtaWx5LW93bmVkIHNwb3QgdGhhdCBsb3ZlcyBicmluZ2luZyBwZW9wbGUgdG9nZXRoZXIgb3ZlciBkZWxpY2lvdXMgbWVhbHMgYW5kIHVuZm9yZ2V0dGFibGUgbW9tZW50cy4gV2hldGhlciB5b3UncmUgaGVyZSBmb3IgYSBxdWljayBiaXRlLCBhIGZhbWlseSBkaW5uZXIsIG9yIGEgY2VsZWJyYXRpb24sIHdlJ3JlIGFsbCBhYm91dCBtYWtpbmcgeW91ciB0aW1lIHdpdGggdXMgc3BlY2lhbC4KICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTYwMCBtYi02Ij4KICAgICAgICAgIE91ciBtZW51IGlzIHBhY2tlZCB3aXRoIGRpc2hlcyBtYWRlIGZyb20gZnJlc2gsIHF1YWxpdHkgaW5ncmVkaWVudHMgYmVjYXVzZSB3ZSBiZWxpZXZlIGZvb2Qgc2hvdWxkIHRhc3RlIGFzCiAgICAgICAgICBnb29kIGFzIGl0IG1ha2VzIHlvdSBmZWVsLiBGcm9tIG91ciBzaWduYXR1cmUgZGlzaGVzIHRvIHNlYXNvbmFsIHNwZWNpYWxzLCB0aGVyZSdzIGFsd2F5cyBzb21ldGhpbmcgdG8gZXhjaXRlCiAgICAgICAgICB5b3VyIHRhc3RlIGJ1ZHMuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAgbWItNiI+CiAgICAgICAgICBCdXQgd2UncmUgbm90IGp1c3QgYWJvdXQgdGhlIGZvb2TigJR3ZSdyZSBhYm91dCBjb21tdW5pdHkuIFdlIGxvdmUgc2VlaW5nIGZhbWlsaWFyIGZhY2VzIGFuZCB3ZWxjb21pbmcgbmV3IG9uZXMuCiAgICAgICAgICBPdXIgdGVhbSBpcyBhIGZ1biwgZnJpZW5kbHkgYnVuY2ggZGVkaWNhdGVkIHRvIHNlcnZpbmcgeW91IHdpdGggYSBzbWlsZSBhbmQgbWFraW5nIHN1cmUgZXZlcnkgdmlzaXQgZmVlbHMgbGlrZQogICAgICAgICAgY29taW5nIGhvbWUuCiAgICAgICAgPC9wPgogICAgICAgIDxwIGNsYXNzPSJ0ZXh0LWxnIHRleHQtZ3JheS02MDAiPgogICAgICAgICAgU28sIGNvbWUgb24gaW4sIGdyYWIgYSBzZWF0LCBhbmQgbGV0IHVzIHRha2UgY2FyZSBvZiB0aGUgcmVzdC4gV2UgY2FuJ3Qgd2FpdCB0byBzaGFyZSBvdXIgbG92ZSBvZiBmb29kIHdpdGgKICAgICAgICAgIHlvdSEKICAgICAgICA8L3A+CiAgICAgICAgPHAgY2xhc3M9InRleHQtbGcgdGV4dC1ncmF5LTgwMCBmb250LXNlbWlib2xkIG10LTYiPlNlZSB5b3Ugc29vbiEg8J+Nve+4j+KcqDwvcD4iO3M6MzA6ImFsbG93X2N1c3RvbWVyX2RlbGl2ZXJ5X29yZGVycyI7aToxO3M6Mjg6ImFsbG93X2N1c3RvbWVyX3BpY2t1cF9vcmRlcnMiO2k6MTtzOjE3OiJwaWNrdXBfZGF5c19yYW5nZSI7aTo3O3M6MjE6ImFsbG93X2N1c3RvbWVyX29yZGVycyI7aToxO3M6MjA6ImFsbG93X2RpbmVfaW5fb3JkZXJzIjtpOjE7czo4OiJzaG93X3ZlZyI7aToxO3M6MTA6InNob3dfaGFsYWwiO2k6MDtzOjEwOiJwYWNrYWdlX2lkIjtpOjc7czoxMjoicGFja2FnZV90eXBlIjtzOjc6Im1vbnRobHkiO3M6Njoic3RhdHVzIjtzOjY6ImFjdGl2ZSI7czoxNzoibGljZW5zZV9leHBpcmVfb24iO3M6MTk6IjIwMjYtMTItMDEgMDA6MDA6MDAiO3M6OToiY291bnRfc21zIjtpOjA7czo5OiJ0b3RhbF9zbXMiO2k6MDtzOjEzOiJ0cmlhbF9lbmRzX2F0IjtOO3M6MTg6ImxpY2Vuc2VfdXBkYXRlZF9hdCI7czoxOToiMjAyNS0xMi0wMyAwMDowMDowMCI7czoyMzoic3Vic2NyaXB0aW9uX3VwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMTA6MTc6MTkiO3M6OToic3RyaXBlX2lkIjtOO3M6NzoicG1fdHlwZSI7TjtzOjEyOiJwbV9sYXN0X2ZvdXIiO047czoyNToiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZCI7aToxO3M6MzI6ImRlZmF1bHRfdGFibGVfcmVzZXJ2YXRpb25fc3RhdHVzIjtzOjk6IkNvbmZpcm1lZCI7czoyMDoiZGlzYWJsZV9zbG90X21pbnV0ZXMiO2k6MzA7czoxNToiYXBwcm92YWxfc3RhdHVzIjtzOjg6IkFwcHJvdmVkIjtzOjE2OiJyZWplY3Rpb25fcmVhc29uIjtOO3M6MTM6ImZhY2Vib29rX2xpbmsiO3M6NDE6Imh0dHBzOi8vd3d3LmZhY2Vib29rLmNvbS9BbENhcG9uZVBsb3ZkaXYvIjtzOjE0OiJpbnN0YWdyYW1fbGluayI7czo0MjoiaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9hbGNhcG9uZXBsb3ZkaXYvIjtzOjEyOiJ0d2l0dGVyX2xpbmsiO047czo5OiJ5ZWxwX2xpbmsiO047czo5OiJ3aWZpX25hbWUiO047czoxMzoid2lmaV9wYXNzd29yZCI7TjtzOjE0OiJzaG93X3dpZmlfaWNvbiI7aTowO3M6MTQ6InRhYmxlX3JlcXVpcmVkIjtpOjA7czoxNDoic2hvd19sb2dvX3RleHQiO2k6MTtzOjEyOiJtZXRhX2tleXdvcmQiO047czoxNjoibWV0YV9kZXNjcmlwdGlvbiI7TjtzOjM0OiJ1cGxvYWRfZmF2X2ljb25fYW5kcm9pZF9jaHJvbWVfMTkyIjtOO3M6MzQ6InVwbG9hZF9mYXZfaWNvbl9hbmRyb2lkX2Nocm9tZV81MTIiO047czozMjoidXBsb2FkX2Zhdl9pY29uX2FwcGxlX3RvdWNoX2ljb24iO047czoxNzoidXBsb2FkX2Zhdmljb25fMTYiO047czoxNzoidXBsb2FkX2Zhdmljb25fMzIiO047czo3OiJmYXZpY29uIjtOO3M6MzY6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb25fZGVza3RvcCI7aToxO3M6MzU6ImlzX3dhaXRlcl9yZXF1ZXN0X2VuYWJsZWRfb25fbW9iaWxlIjtpOjE7czozNjoiaXNfd2FpdGVyX3JlcXVlc3RfZW5hYmxlZF9vcGVuX2J5X3FyIjtpOjA7czoxMToid2VibWFuaWZlc3QiO047czoxNToiZW5hYmxlX3RpcF9zaG9wIjtpOjE7czoxNDoiZW5hYmxlX3RpcF9wb3MiO2k6MTtzOjI1OiJpc19wd2FfaW5zdGFsbF9hbGVydF9zaG93IjtpOjA7czoxOToiYXV0b19jb25maXJtX29yZGVycyI7aTowO3M6Mjk6InJlc3RyaWN0X3FyX29yZGVyX2J5X2xvY2F0aW9uIjtpOjA7czoyMjoicXJfb3JkZXJfcmFkaXVzX21ldGVycyI7TjtzOjIzOiJzaG93X29yZGVyX3R5cGVfb3B0aW9ucyI7aToxO3M6MjQ6ImRpc2FibGVfb3JkZXJfdHlwZV9wb3B1cCI7aTowO3M6MjE6ImRlZmF1bHRfb3JkZXJfdHlwZV9pZCI7TjtzOjI3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9wb3MiO2k6MDtzOjM3OiJoaWRlX21lbnVfaXRlbV9pbWFnZV9vbl9jdXN0b21lcl9zaXRlIjtpOjA7czo4OiJ0YXhfbW9kZSI7czo1OiJvcmRlciI7czoxMzoidGF4X2luY2x1c2l2ZSI7aTowO3M6MjI6ImN1c3RvbWVyX3NpdGVfbGFuZ3VhZ2UiO3M6MjoiZW4iO3M6MjQ6ImVuYWJsZV9hZG1pbl9yZXNlcnZhdGlvbiI7aToxO3M6Mjc6ImVuYWJsZV9jdXN0b21lcl9yZXNlcnZhdGlvbiI7aToxO3M6MTg6Im1pbmltdW1fcGFydHlfc2l6ZSI7aToxO3M6MjY6InRhYmxlX2xvY2tfdGltZW91dF9taW51dGVzIjtpOjEwO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToxMTp7czoxNzoibGljZW5zZV9leHBpcmVfb24iO3M6ODoiZGF0ZXRpbWUiO3M6MTU6InRyaWFsX2V4cGlyZV9vbiI7czo4OiJkYXRldGltZSI7czoxODoibGljZW5zZV91cGRhdGVkX2F0IjtzOjg6ImRhdGV0aW1lIjtzOjIzOiJzdWJzY3JpcHRpb25fdXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoxMDoiY3JlYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoxMDoidXBkYXRlZF9hdCI7czo4OiJkYXRldGltZSI7czoyMzoiY3VzdG9tX2RlbGl2ZXJ5X29wdGlvbnMiO3M6NToiYXJyYXkiO3M6OToiaXNfYWN0aXZlIjtzOjc6ImJvb2xlYW4iO3M6MjQ6ImVuYWJsZV9hZG1pbl9yZXNlcnZhdGlvbiI7czo3OiJib29sZWFuIjtzOjI3OiJlbmFibGVfY3VzdG9tZXJfcmVzZXJ2YXRpb24iO3M6NzoiYm9vbGVhbiI7czoyOToicmVzdHJpY3RfcXJfb3JkZXJfYnlfbG9jYXRpb24iO3M6NzoiYm9vbGVhbiI7fXM6MTc6IgAqAGNsYXNzQ2FzdENhY2hlIjthOjA6e31zOjIxOiIAKgBhdHRyaWJ1dGVDYXN0Q2FjaGUiO2E6MDp7fXM6MTM6IgAqAGRhdGVGb3JtYXQiO047czoxMDoiACoAYXBwZW5kcyI7YToxOntpOjA7czo4OiJsb2dvX3VybCI7fXM6MTk6IgAqAGRpc3BhdGNoZXNFdmVudHMiO2E6MDp7fXM6MTQ6IgAqAG9ic2VydmFibGVzIjthOjA6e31zOjEyOiIAKgByZWxhdGlvbnMiO2E6MDp7fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjE7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoyOiJpZCI7fXM6MTc6ImN1c3RvbWVySXBBZGRyZXNzIjtOO3M6MjQ6ImVzdGltYXRpb25CaWxsaW5nQWRkcmVzcyI7YTowOnt9czoxMzoiY29sbGVjdFRheElkcyI7YjowO3M6ODoiY291cG9uSWQiO047czoxNToicHJvbW90aW9uQ29kZUlkIjtOO3M6MTk6ImFsbG93UHJvbW90aW9uQ29kZXMiO2I6MDt9fXM6MTA6IgAqAHRvdWNoZXMiO2E6MDp7fXM6Mjc6IgAqAHJlbGF0aW9uQXV0b2xvYWRDYWxsYmFjayI7TjtzOjI2OiIAKgByZWxhdGlvbkF1dG9sb2FkQ29udGV4dCI7TjtzOjEwOiJ0aW1lc3RhbXBzIjtiOjA7czoxMzoidXNlc1VuaXF1ZUlkcyI7YjowO3M6OToiACoAaGlkZGVuIjthOjA6e31zOjEwOiIAKgB2aXNpYmxlIjthOjA6e31zOjExOiIAKgBmaWxsYWJsZSI7YTowOnt9czoxMDoiACoAZ3VhcmRlZCI7YToxOntpOjA7czoxOiIqIjt9fXM6NToiaXNSdGwiO2I6MDtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czo1MDoiaHR0cHM6Ly9oZWxsb3Bvcy5vbmxpbmUvcmVzdGF1cmFudHMvYWwtY2Fwb25lLWNsdWIiO319', '1768495663'),
('h3sQtocSTOpyIiveDArFYKNT1ZIhE47ucn4w9Hek', NULL, '89.187.187.67', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiSEFJTzJkczd0R29GMDJsQmF5S2hnUHVyRjBGdDVkSDZBc3htSUd0YyI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyMzoiaHR0cHM6Ly9oZWxsb3Bvcy5vbmxpbmUiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1768488496'),
('hvERn5PaIUygsuTCPuecZJ22yyJAlfXgYhTtb3jB', NULL, '43.153.135.208', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiQTlkZ3N3N0JTaWpvTThhRW13V0VOU3B3M0NnOUVTTk1JWDZkSklXYSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyNzoiaHR0cHM6Ly93d3cuaGVsbG9wb3Mub25saW5lIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1768489521'),
('HVME3g0WtClXKvsNUEQUN3RNnGFwldk0gZtoduYC', NULL, '66.249.72.166', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiVTg1a05landVeDR4QVJveFc5OXd2VlpsQzRjc1NoWXJ1b3JlWk0xVCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyNzoiaHR0cHM6Ly93d3cuaGVsbG9wb3Mub25saW5lIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1768491362'),
('OUeZFJT5icW7t4dB2jitf3G7mfJkb0u7QbIUkl8a', NULL, '66.249.72.165', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiRlBSUFRrUldEOXpwN0NzT2RFZXpTbUJHN3ZSYmJJeHVWZFJ0WDI3RSI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyNzoiaHR0cHM6Ly93d3cuaGVsbG9wb3Mub25saW5lIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1768491361'),
('r1Pum2l0aG1vHcZi7JjZYZmRbWo8ldnQ6NuftVPt', NULL, '204.76.203.25', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiUzg2U3VqZm9seU9uaGV2b1dQOEZsTjhXT1NBSlh4WGF2Y0ZKMWRpWCI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyMzoiaHR0cHM6Ly9oZWxsb3Bvcy5vbmxpbmUiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', '1768489935'),
('WLZiAQEyv6WaMPM8UMyqJ82YcwhdQPhafS6EtEMC', NULL, '123.187.240.242', 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1', 'YTo3OntzOjY6Il90b2tlbiI7czo0MDoiTVQ3SG1MN0U3anJ5djBMa1hkaHpybXdhNDJDTjdlR2hZT1NUa1FEeiI7czoyMDoiY2hlY2tfbWlncmF0ZV9zdGF0dXMiO3M6NDoiR29vZCI7czoxNToiY3VzdG9tZXJfaXNfcnRsIjtiOjA7czozMToiZ2xvYmFsX2N1cnJlbmN5X2Zvcm1hdF9zZXR0aW5nNCI7TzoyNToiQXBwXE1vZGVsc1xHbG9iYWxDdXJyZW5jeSI6MzQ6e3M6MTM6IgAqAGNvbm5lY3Rpb24iO3M6NToibXlzcWwiO3M6ODoiACoAdGFibGUiO3M6MTc6Imdsb2JhbF9jdXJyZW5jaWVzIjtzOjEzOiIAKgBwcmltYXJ5S2V5IjtzOjI6ImlkIjtzOjEwOiIAKgBrZXlUeXBlIjtzOjM6ImludCI7czoxMjoiaW5jcmVtZW50aW5nIjtiOjE7czo3OiIAKgB3aXRoIjthOjA6e31zOjEyOiIAKgB3aXRoQ291bnQiO2E6MDp7fXM6MTk6InByZXZlbnRzTGF6eUxvYWRpbmciO2I6MDtzOjEwOiIAKgBwZXJQYWdlIjtpOjE1O3M6NjoiZXhpc3RzIjtiOjE7czoxODoid2FzUmVjZW50bHlDcmVhdGVkIjtiOjA7czoyODoiACoAZXNjYXBlV2hlbkNhc3RpbmdUb1N0cmluZyI7YjowO3M6MTM6IgAqAGF0dHJpYnV0ZXMiO2E6MTU6e3M6MjoiaWQiO2k6NDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtzOjU6IkV1cm9zIjtzOjE1OiJjdXJyZW5jeV9zeW1ib2wiO3M6Mzoi4oKsIjtzOjEzOiJjdXJyZW5jeV9jb2RlIjtzOjM6IkVVUiI7czoxMzoiZXhjaGFuZ2VfcmF0ZSI7TjtzOjk6InVzZF9wcmljZSI7TjtzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czoyOiJubyI7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO3M6NDoibGVmdCI7czoxMzoibm9fb2ZfZGVjaW1hbCI7aToyO3M6MTg6InRob3VzYW5kX3NlcGFyYXRvciI7czoxOiIsIjtzOjE3OiJkZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjY6InN0YXR1cyI7czo2OiJlbmFibGUiO3M6MTA6ImNyZWF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6InVwZGF0ZWRfYXQiO3M6MTk6IjIwMjUtMTEtMjcgMDA6MDA6MjYiO3M6MTA6ImRlbGV0ZWRfYXQiO047fXM6MTE6IgAqAG9yaWdpbmFsIjthOjE1OntzOjI6ImlkIjtpOjQ7czoxMzoiY3VycmVuY3lfbmFtZSI7czo1OiJFdXJvcyI7czoxNToiY3VycmVuY3lfc3ltYm9sIjtzOjM6IuKCrCI7czoxMzoiY3VycmVuY3lfY29kZSI7czozOiJFVVIiO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO047czo5OiJ1c2RfcHJpY2UiO047czoxNzoiaXNfY3J5cHRvY3VycmVuY3kiO3M6Mjoibm8iO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjQ6ImxlZnQiO3M6MTM6Im5vX29mX2RlY2ltYWwiO2k6MjtzOjE4OiJ0aG91c2FuZF9zZXBhcmF0b3IiO3M6MToiLCI7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO3M6MToiLiI7czo2OiJzdGF0dXMiO3M6NjoiZW5hYmxlIjtzOjEwOiJjcmVhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJ1cGRhdGVkX2F0IjtzOjE5OiIyMDI1LTExLTI3IDAwOjAwOjI2IjtzOjEwOiJkZWxldGVkX2F0IjtOO31zOjEwOiIAKgBjaGFuZ2VzIjthOjA6e31zOjExOiIAKgBwcmV2aW91cyI7YTowOnt9czo4OiIAKgBjYXN0cyI7YToyOntzOjE3OiJpc19jcnlwdG9jdXJyZW5jeSI7czo3OiJib29sZWFuIjtzOjEwOiJkZWxldGVkX2F0IjtzOjg6ImRhdGV0aW1lIjt9czoxNzoiACoAY2xhc3NDYXN0Q2FjaGUiO2E6MDp7fXM6MjE6IgAqAGF0dHJpYnV0ZUNhc3RDYWNoZSI7YTowOnt9czoxMzoiACoAZGF0ZUZvcm1hdCI7TjtzOjEwOiIAKgBhcHBlbmRzIjthOjA6e31zOjE5OiIAKgBkaXNwYXRjaGVzRXZlbnRzIjthOjA6e31zOjE0OiIAKgBvYnNlcnZhYmxlcyI7YTowOnt9czoxMjoiACoAcmVsYXRpb25zIjthOjA6e31zOjEwOiIAKgB0b3VjaGVzIjthOjA6e31zOjI3OiIAKgByZWxhdGlvbkF1dG9sb2FkQ2FsbGJhY2siO047czoyNjoiACoAcmVsYXRpb25BdXRvbG9hZENvbnRleHQiO047czoxMDoidGltZXN0YW1wcyI7YjoxO3M6MTM6InVzZXNVbmlxdWVJZHMiO2I6MDtzOjk6IgAqAGhpZGRlbiI7YTowOnt9czoxMDoiACoAdmlzaWJsZSI7YTowOnt9czoxMToiACoAZmlsbGFibGUiO2E6MTE6e2k6MDtzOjEzOiJjdXJyZW5jeV9uYW1lIjtpOjE7czoxNToiY3VycmVuY3lfc3ltYm9sIjtpOjI7czoxMzoiY3VycmVuY3lfY29kZSI7aTozO3M6MTM6ImV4Y2hhbmdlX3JhdGUiO2k6NDtzOjk6InVzZF9wcmljZSI7aTo1O3M6MTc6ImlzX2NyeXB0b2N1cnJlbmN5IjtpOjY7czoxNzoiY3VycmVuY3lfcG9zaXRpb24iO2k6NztzOjEzOiJub19vZl9kZWNpbWFsIjtpOjg7czoxODoidGhvdXNhbmRfc2VwYXJhdG9yIjtpOjk7czoxNzoiZGVjaW1hbF9zZXBhcmF0b3IiO2k6MTA7czo2OiJzdGF0dXMiO31zOjEwOiIAKgBndWFyZGVkIjthOjE6e2k6MDtzOjE6IioiO31zOjE2OiIAKgBmb3JjZURlbGV0aW5nIjtiOjA7fXM6NDoidXNlciI7TjtzOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czoyNzoiaHR0cHM6Ly93d3cuaGVsbG9wb3Mub25saW5lIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', '1768492608');


-- Table structure for table `sms_global_settings`
DROP TABLE IF EXISTS `sms_global_settings`;
CREATE TABLE `sms_global_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `vonage_api_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vonage_api_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vonage_from_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `msg91_auth_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `msg91_from` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `vonage_status` tinyint(1) NOT NULL DEFAULT '0',
  `msg91_status` tinyint(1) NOT NULL DEFAULT '0',
  `phone_verification_status` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sms_global_settings`
INSERT INTO `sms_global_settings` VALUES
('1', NULL, '384c0006-c196-4a86-bfa0-4a1d78192734', NULL, '2026-05-28 03:22:34', '1', NULL, NULL, NULL, NULL, NULL, '0', '0', '0', '2025-11-27 01:00:55', '2025-11-27 01:00:56');


-- Table structure for table `sms_notification_settings`
DROP TABLE IF EXISTS `sms_notification_settings`;
CREATE TABLE `sms_notification_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `send_sms` enum('yes','no') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sms_notification_settings_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `sms_notification_settings_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sms_notification_settings`
INSERT INTO `sms_notification_settings` VALUES
('1', '2', 'reservation_confirmed', 'no', NULL, NULL),
('2', '2', 'order_bill_sent', 'no', NULL, NULL),
('3', '2', 'send_otp', 'no', NULL, NULL),
('4', '3', 'reservation_confirmed', 'no', NULL, NULL),
('5', '3', 'order_bill_sent', 'no', NULL, NULL),
('6', '3', 'send_otp', 'no', NULL, NULL),
('7', '4', 'reservation_confirmed', 'no', NULL, NULL),
('8', '4', 'order_bill_sent', 'no', NULL, NULL),
('9', '4', 'send_otp', 'no', NULL, NULL);


-- Table structure for table `sms_templates`
DROP TABLE IF EXISTS `sms_templates`;
CREATE TABLE `sms_templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `flow_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `sms_templates_type_unique` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sms_templates`
INSERT INTO `sms_templates` VALUES
('1', 'reservation_confirmed', NULL, '2025-11-27 01:00:55', '2025-11-27 01:00:55'),
('2', 'order_bill_sent', NULL, '2025-11-27 01:00:55', '2025-11-27 01:00:55'),
('3', 'send_otp', NULL, '2025-11-27 01:00:55', '2025-11-27 01:00:55'),
('4', 'send_verify_otp', NULL, '2025-11-27 01:00:55', '2025-11-27 01:00:55');


-- Table structure for table `sms_usage_logs`
DROP TABLE IF EXISTS `sms_usage_logs`;
CREATE TABLE `sms_usage_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `date` datetime NOT NULL,
  `gateway` enum('vonage','msg91') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` enum('reservation_confirmed','order_bill_sent','send_otp') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `count` int NOT NULL DEFAULT '1',
  `package_id` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `sms_usage_unique` (`restaurant_id`,`branch_id`,`type`,`gateway`,`date`),
  KEY `sms_usage_logs_branch_id_foreign` (`branch_id`),
  KEY `sms_usage_logs_restaurant_id_date_index` (`restaurant_id`,`date`),
  KEY `sms_usage_logs_gateway_type_index` (`gateway`,`type`),
  KEY `sms_usage_logs_date_gateway_index` (`date`,`gateway`),
  KEY `sms_usage_logs_package_id_date_index` (`package_id`,`date`),
  CONSTRAINT `sms_usage_logs_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `sms_usage_logs_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `sms_usage_logs_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `split_order_items`
DROP TABLE IF EXISTS `split_order_items`;
CREATE TABLE `split_order_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `split_order_id` bigint unsigned NOT NULL,
  `order_item_id` bigint unsigned NOT NULL,
  `quantity` int DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `split_order_items_split_order_id_foreign` (`split_order_id`),
  KEY `split_order_items_order_item_id_foreign` (`order_item_id`),
  CONSTRAINT `split_order_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `split_order_items_split_order_id_foreign` FOREIGN KEY (`split_order_id`) REFERENCES `split_orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `split_order_items`
INSERT INTO `split_order_items` VALUES
('1', '1', '1113', '1', '2026-02-05 02:49:29', '2026-02-05 02:49:29'),
('2', '2', '1114', '2', '2026-02-05 02:51:01', '2026-02-05 02:51:01'),
('3', '2', '1115', '1', '2026-02-05 02:51:01', '2026-02-05 02:51:01'),
('4', '2', '1117', '1', '2026-02-05 02:51:01', '2026-02-05 02:51:01'),
('5', '2', '1116', '1', '2026-02-05 02:51:01', '2026-02-05 02:51:01');


-- Table structure for table `split_orders`
DROP TABLE IF EXISTS `split_orders`;
CREATE TABLE `split_orders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `amount` decimal(16,2) NOT NULL,
  `status` enum('pending','paid') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_method` enum('cash','upi','card','bank_transfer','due','stripe','razorpay') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'cash',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `split_orders_order_id_foreign` (`order_id`),
  CONSTRAINT `split_orders_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `split_orders`
INSERT INTO `split_orders` VALUES
('1', '489', '4.00', 'paid', 'card', '2026-02-05 02:49:29', '2026-02-05 02:49:29'),
('2', '489', '15.50', 'paid', 'cash', '2026-02-05 02:51:01', '2026-02-05 02:51:01');


-- Table structure for table `stripe_payments`
DROP TABLE IF EXISTS `stripe_payments`;
CREATE TABLE `stripe_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_error_response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_payment_intent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_session_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `stripe_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `stripe_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `sub_domain_module_settings`
DROP TABLE IF EXISTS `sub_domain_module_settings`;
CREATE TABLE `sub_domain_module_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `banned_subdomain` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `sub_domain_module_settings`
INSERT INTO `sub_domain_module_settings` VALUES
('1', NULL, '384c0006-c196-4a86-bfa0-4a1d78192734', NULL, '2026-05-28 03:22:34', '[\"admin\"]', '1', '2025-11-27 01:00:12', '2025-11-27 01:07:53');


-- Table structure for table `superadmin_payment_gateways`
DROP TABLE IF EXISTS `superadmin_payment_gateways`;
CREATE TABLE `superadmin_payment_gateways` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `razorpay_type` enum('test','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'test',
  `test_razorpay_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `test_razorpay_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_test_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_razorpay_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_razorpay_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_live_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `razorpay_status` tinyint(1) NOT NULL DEFAULT '0',
  `stripe_type` enum('test','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'test',
  `test_stripe_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `test_stripe_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_test_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_stripe_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_stripe_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_live_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stripe_status` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `flutterwave_status` tinyint(1) NOT NULL DEFAULT '0',
  `flutterwave_type` enum('test','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'test',
  `test_flutterwave_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `test_flutterwave_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `test_flutterwave_hash` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `flutterwave_test_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_flutterwave_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_flutterwave_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_flutterwave_hash` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `flutterwave_live_webhook_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_paypal_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_paypal_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paypal_client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paypal_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paypal_status` tinyint(1) NOT NULL DEFAULT '0',
  `paypal_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `live_payfast_merchant_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_payfast_merchant_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_payfast_passphrase` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_payfast_merchant_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_payfast_merchant_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_payfast_passphrase` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payfast_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `payfast_status` tinyint(1) NOT NULL DEFAULT '0',
  `live_paystack_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_paystack_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_paystack_merchant_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paystack_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paystack_secret` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paystack_merchant_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paystack_payment_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'https://api.paystack.co',
  `paystack_status` tinyint(1) NOT NULL DEFAULT '0',
  `paystack_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `xendit_status` tinyint(1) NOT NULL DEFAULT '0',
  `xendit_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `test_xendit_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_xendit_secret_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_secret_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_xendit_webhook_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_xendit_webhook_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `paddle_status` tinyint(1) NOT NULL DEFAULT '0',
  `paddle_mode` enum('sandbox','live') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sandbox',
  `test_paddle_vendor_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paddle_api_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `test_paddle_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `test_paddle_client_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_paddle_vendor_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_paddle_api_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `live_paddle_public_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_paddle_client_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `paddle_webhook_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `superadmin_payment_gateways`
INSERT INTO `superadmin_payment_gateways` VALUES
('1', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'live', NULL, NULL, NULL, 'pk_live_51SXhz0DgHRHlOzDsoEuwiBR5Dh4rmyYi84yXcF4UAbm0eR43SvmyXlin8BXsOh2eisPCTnixYUgt7Zxket6dfxwS00cl8iMnDb', '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', 'whsec_ieWLqOoMFdLF2xY9GJEKaZZWC1ZOU7uH', '1', '2025-11-27 00:00:25', '2025-11-27 00:44:19', '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
('2', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-11-27 00:00:54', '2025-11-27 00:00:54', '0', 'test', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, 'sandbox', '0', NULL, NULL, NULL, NULL, NULL, NULL, 'https://api.paystack.co', '0', 'sandbox', '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, '0', 'sandbox', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


-- Table structure for table `suppliers`
DROP TABLE IF EXISTS `suppliers`;
CREATE TABLE `suppliers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `suppliers_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `suppliers_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


-- Table structure for table `table_sessions`
DROP TABLE IF EXISTS `table_sessions`;
CREATE TABLE `table_sessions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `table_id` bigint unsigned NOT NULL,
  `locked_by_user_id` bigint unsigned DEFAULT NULL,
  `locked_at` datetime DEFAULT NULL,
  `last_activity_at` datetime DEFAULT NULL,
  `session_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `table_sessions_session_token_unique` (`session_token`),
  KEY `table_sessions_branch_id_foreign` (`branch_id`),
  KEY `table_sessions_locked_by_user_id_foreign` (`locked_by_user_id`),
  KEY `table_sessions_table_id_locked_by_user_id_index` (`table_id`,`locked_by_user_id`),
  KEY `table_sessions_last_activity_at_index` (`last_activity_at`),
  CONSTRAINT `table_sessions_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `table_sessions_locked_by_user_id_foreign` FOREIGN KEY (`locked_by_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `table_sessions_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `table_sessions`
INSERT INTO `table_sessions` VALUES
('1', '3', '1', NULL, NULL, NULL, NULL, '2025-11-27 05:34:56', '2025-12-28 09:39:03'),
('2', '3', '10', NULL, NULL, NULL, NULL, '2025-11-27 10:24:32', '2025-12-19 18:32:59'),
('3', '4', '6', NULL, NULL, NULL, NULL, '2025-11-27 11:27:07', '2025-12-22 22:15:43'),
('4', '4', '2', NULL, NULL, NULL, NULL, '2025-11-27 16:52:10', '2026-02-13 18:55:56'),
('5', '4', '3', NULL, NULL, NULL, NULL, '2025-11-27 18:21:41', '2026-02-13 18:55:56'),
('6', '4', '12', NULL, NULL, NULL, NULL, '2025-11-27 18:47:35', '2025-12-11 23:16:31'),
('7', '4', '4', NULL, NULL, NULL, NULL, '2025-11-27 19:37:18', '2025-11-27 23:50:39'),
('8', '3', '14', NULL, NULL, NULL, NULL, '2025-11-30 08:48:56', '2025-12-01 05:47:10'),
('9', '4', '5', NULL, NULL, NULL, NULL, '2025-12-06 20:25:23', '2025-12-11 19:30:42'),
('10', '4', '13', NULL, NULL, NULL, NULL, '2025-12-06 20:25:28', '2025-12-07 19:33:12'),
('11', '4', '9', NULL, NULL, NULL, NULL, '2025-12-06 20:50:06', '2025-12-06 21:15:33'),
('12', '4', '7', NULL, NULL, NULL, NULL, '2025-12-06 20:50:32', '2025-12-06 20:50:35'),
('13', '4', '8', NULL, NULL, NULL, NULL, '2025-12-06 23:06:19', '2025-12-07 00:18:57');


-- Table structure for table `tables`
DROP TABLE IF EXISTS `tables`;
CREATE TABLE `tables` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned DEFAULT NULL,
  `table_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('active','inactive') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `available_status` enum('available','reserved','running') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'available',
  `area_id` bigint unsigned NOT NULL,
  `seating_capacity` tinyint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tables_area_id_foreign` (`area_id`),
  KEY `tables_branch_id_foreign` (`branch_id`),
  CONSTRAINT `tables_area_id_foreign` FOREIGN KEY (`area_id`) REFERENCES `areas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `tables_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `tables`
INSERT INTO `tables` VALUES
('1', '3', 'T1', 'eb8d1c3aeb7aee26ed882cdd45d1597b', 'active', 'running', '1', '6', '2025-11-27 01:34:08', '2025-12-27 21:50:03'),
('2', '4', '1', 'a2ffc30f0bcb174db0cbe493f4904187', 'active', 'available', '2', '6', '2025-11-27 10:21:47', '2026-01-28 21:44:23'),
('3', '4', '2', 'b4080a0a05bd5835bc870767767f2d3b', 'active', 'available', '2', '6', '2025-11-27 10:22:54', '2025-12-20 23:37:07'),
('4', '4', '3', '1383d0450c4127580f1999f64f018c10', 'active', 'available', '2', '6', '2025-11-27 10:23:04', '2025-12-02 18:21:48'),
('5', '4', '4', '59e0356d205876647df30d3a4c40537e', 'active', 'available', '2', '6', '2025-11-27 10:23:14', '2025-12-11 19:30:42'),
('6', '4', '5', 'a84f59b9a9efafade4e31ef1a3544750', 'active', 'available', '2', '6', '2025-11-27 10:23:24', '2025-12-23 01:08:56'),
('7', '4', '6', 'bd255fdd5e2d6a0a0378015b1fb6b668', 'active', 'available', '2', '4', '2025-11-27 10:23:38', '2025-11-27 10:23:38'),
('8', '4', '7', '56165606f53b7b28d69ec2d4236e87d7', 'active', 'available', '2', '4', '2025-11-27 10:24:03', '2025-12-07 00:18:57'),
('9', '4', '8', '87cad8dd99979cdc267ccb1ce6b60154', 'active', 'available', '2', '4', '2025-11-27 10:24:22', '2025-11-27 10:24:22'),
('10', '3', 'T2', 'd763636295cb049faad61d2955348028', 'active', 'available', '1', '4', '2025-11-27 10:24:23', '2025-12-11 05:51:33'),
('11', '4', '9', '10dd42b6e6a992afef88bf3bc960b8eb', 'active', 'available', '2', '4', '2025-11-27 10:24:53', '2025-11-27 10:24:53'),
('12', '4', '10', 'd922dbc300b2953a9137d8818d94d84b', 'active', 'running', '2', '4', '2025-11-27 10:25:42', '2025-12-11 21:28:12'),
('13', '4', '11', '724af6f56ac61f67b62e746f466d7bc0', 'active', 'available', '2', '4', '2025-11-27 10:25:54', '2025-12-07 19:33:12'),
('14', '3', 'T3', '41dac1b2b242782e26978c19e44ab229', 'active', 'available', '1', '6', '2025-11-30 08:47:49', '2025-12-11 05:55:18'),
('15', '5', 'T1', 'e180895147ed81fee6e2515ff742ec34', 'active', 'available', '3', '3', '2025-12-01 11:36:39', '2025-12-01 11:36:39'),
('16', '5', 'T2', '99938a5f9ac02fb1db439675f6d63ee1', 'active', 'available', '3', '4', '2025-12-01 11:37:10', '2025-12-01 11:37:10'),
('17', '5', 'T3', '744d2325cae07330f9796750783d21bd', 'active', 'available', '3', '4', '2025-12-01 11:37:27', '2025-12-01 11:37:27'),
('18', '5', 'T4', 'ccca7de3c3640c7970418f426a4eb1b2', 'active', 'available', '3', '2', '2025-12-01 11:38:10', '2025-12-01 11:38:10'),
('19', '5', 'T5', '2c6f96cbf9fb682ae5595b2689f9e391', 'active', 'available', '3', '5', '2025-12-01 11:38:28', '2025-12-01 11:38:28'),
('20', '5', 'T6', '5f0709bff4c473d3f735d2e5ccbcd379', 'active', 'available', '3', '5', '2025-12-01 11:38:41', '2025-12-01 11:38:41'),
('21', '5', 'T7', '51f78d3e7872bfe494d25236391a7b30', 'active', 'available', '3', '1', '2025-12-01 11:39:05', '2025-12-01 11:39:05'),
('22', '5', 'T8', '002809e53dbdbb7de3ca2c7b0461ca39', 'active', 'available', '3', '1', '2025-12-01 11:39:23', '2025-12-01 11:39:23'),
('23', '5', 'T9', 'cc63129cbbf3ca2791ff6394dcfb439b', 'active', 'available', '3', '1', '2025-12-01 11:39:36', '2025-12-01 11:39:36'),
('24', '5', 't10', '2996ff8efde44b7c766c36dba451c9b7', 'active', 'available', '3', '1', '2025-12-01 11:39:52', '2025-12-01 11:39:52'),
('25', '5', 'TB1', 'b8efa1713fafcc299812b7dd10d725d5', 'active', 'available', '3', '3', '2025-12-01 11:40:21', '2025-12-01 11:40:21'),
('26', '5', 'TB2', '1f82efd737f4bf271280ccd1b7a8ffc9', 'active', 'available', '3', '3', '2025-12-01 11:40:35', '2025-12-01 11:40:35'),
('27', '5', 'TB3', 'c00ed7d313714e3b742edc49fe4a922b', 'active', 'available', '3', '4', '2025-12-01 11:40:53', '2025-12-01 11:40:53'),
('28', '5', 'TB4', 'cb718c73dd2adbea0591b18fef4dcabf', 'active', 'available', '3', '4', '2025-12-01 11:41:06', '2025-12-01 11:41:06'),
('29', '5', 'TB5', 'f8dd599f693fdcc9eed9f35a005b7f64', 'active', 'available', '3', '5', '2025-12-01 11:41:24', '2025-12-01 11:41:24'),
('30', '5', 'TB6', '9d53d366d2c35b9dad0ed0a8d34b6803', 'active', 'available', '3', '1', '2025-12-01 11:41:41', '2025-12-01 11:41:41'),
('31', '5', 'TB7', '33659e63dabcc19032f87dc78148a6fc', 'active', 'available', '3', '1', '2025-12-01 11:41:57', '2025-12-01 11:41:57'),
('32', '5', 'TB8', '8318b4b73d198db755f85b9aed749a07', 'active', 'available', '3', '1', '2025-12-01 11:42:17', '2025-12-01 11:42:17'),
('33', '5', 'TB9', 'eb6df55dd852b913038251a780ddfc3d', 'active', 'available', '3', '1', '2025-12-01 11:42:27', '2025-12-01 11:42:27');


-- Table structure for table `taxes`
DROP TABLE IF EXISTS `taxes`;
CREATE TABLE `taxes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `tax_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_percent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `taxes_restaurant_id_foreign` (`restaurant_id`),
  CONSTRAINT `taxes_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `taxes`
INSERT INTO `taxes` VALUES
('1', '1', 'SGST', '2.5', '2025-11-27 00:00:54', '2025-11-27 00:00:54'),
('2', '1', 'CGST', '2.5', '2025-11-27 00:00:54', '2025-11-27 00:00:54');


-- Table structure for table `units`
DROP TABLE IF EXISTS `units`;
CREATE TABLE `units` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `units_branch_id_foreign` (`branch_id`),
  CONSTRAINT `units_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `units`
INSERT INTO `units` VALUES
('1', '1', 'Kilogram', 'kg', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('2', '1', 'Gram', 'g', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('3', '1', 'Liter', 'L', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('4', '1', 'Milliliter', 'ml', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('5', '1', 'Piece', 'pc', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('6', '1', 'Box', 'box', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('7', '1', 'Dozen', 'dz', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('8', '1', 'Bottle', 'btl', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('9', '1', 'Package', 'pkg', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('10', '1', 'Can', 'can', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('11', '2', 'Kilogram', 'kg', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('12', '2', 'Gram', 'g', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('13', '2', 'Liter', 'L', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('14', '2', 'Milliliter', 'ml', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('15', '2', 'Piece', 'pc', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('16', '2', 'Box', 'box', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('17', '2', 'Dozen', 'dz', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('18', '2', 'Bottle', 'btl', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('19', '2', 'Package', 'pkg', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('20', '2', 'Can', 'can', '2025-11-27 01:00:03', '2025-11-27 01:00:03'),
('21', '3', 'Kilogram', 'kg', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('22', '3', 'Gram', 'g', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('23', '3', 'Liter', 'L', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('24', '3', 'Milliliter', 'ml', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('25', '3', 'Piece', 'pc', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('26', '3', 'Box', 'box', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('27', '3', 'Dozen', 'dz', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('28', '3', 'Bottle', 'btl', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('29', '3', 'Package', 'pkg', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('30', '3', 'Can', 'can', '2025-11-27 01:20:35', '2025-11-27 01:20:35'),
('31', '4', 'Kilogram', 'kg', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('32', '4', 'Gram', 'g', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('33', '4', 'Liter', 'L', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('34', '4', 'Milliliter', 'ml', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('35', '4', 'Piece', 'pc', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('36', '4', 'Box', 'box', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('37', '4', 'Dozen', 'dz', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('38', '4', 'Bottle', 'btl', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('39', '4', 'Package', 'pkg', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('40', '4', 'Can', 'can', '2025-11-27 10:17:19', '2025-11-27 10:17:19'),
('41', '5', 'Kilogram', 'kg', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('42', '5', 'Gram', 'g', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('43', '5', 'Liter', 'L', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('44', '5', 'Milliliter', 'ml', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('45', '5', 'Piece', 'pc', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('46', '5', 'Box', 'box', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('47', '5', 'Dozen', 'dz', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('48', '5', 'Bottle', 'btl', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('49', '5', 'Package', 'pkg', '2025-12-01 11:34:12', '2025-12-01 11:34:12'),
('50', '5', 'Can', 'can', '2025-12-01 11:34:12', '2025-12-01 11:34:12');


-- Table structure for table `universal_bundle_settings`
DROP TABLE IF EXISTS `universal_bundle_settings`;
CREATE TABLE `universal_bundle_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `purchase_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supported_until` timestamp NULL DEFAULT NULL,
  `purchased_on` timestamp NULL DEFAULT NULL,
  `license_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notify_update` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `universal_bundle_settings`
INSERT INTO `universal_bundle_settings` VALUES
('1', '384c0006-c196-4a86-bfa0-4a1d78192734', '2026-05-28 03:22:34', '2025-11-26 12:22:34', 'Regular License', '1', '2025-11-27 00:57:59', '2025-11-27 00:59:23');


-- Table structure for table `universal_module_installs`
DROP TABLE IF EXISTS `universal_module_installs`;
CREATE TABLE `universal_module_installs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `module_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `universal_module_installs`
INSERT INTO `universal_module_installs` VALUES
('1', 'Backup', '1.0.2\n', '2025-11-27 00:59:34', '2025-11-27 00:59:34'),
('2', 'Subdomain', '1.0.2\n', '2025-11-27 01:00:13', '2025-11-27 01:00:13'),
('3', 'Sms', '1.0.0\n', '2025-11-27 01:00:56', '2025-11-27 01:00:56'),
('4', 'MultiPOS', '1.0.0\n', '2025-11-27 01:01:05', '2025-11-27 01:01:05'),
('5', 'LanguagePack', '1.0.7\n', '2025-11-27 01:01:18', '2025-11-27 01:01:18'),
('6', 'Kiosk', '1.0.4\n', '2025-11-27 01:01:26', '2025-12-27 21:45:09'),
('7', 'CashRegister', '1.0.14\n', '2025-11-27 01:01:34', '2025-12-27 21:44:50'),
('8', 'Inventory', '1.0.70\n', '2025-12-27 21:45:02', '2025-12-27 21:45:02');


-- Table structure for table `users`
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `restaurant_id` bigint unsigned DEFAULT NULL,
  `branch_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `terms_and_privacy_accepted` tinyint(1) NOT NULL DEFAULT '0',
  `marketing_emails_accepted` tinyint(1) NOT NULL DEFAULT '0',
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `two_factor_secret` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `two_factor_recovery_codes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `two_factor_confirmed_at` timestamp NULL DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `current_team_id` bigint unsigned DEFAULT NULL,
  `profile_photo_path` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en',
  `stripe_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pm_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pm_last_four` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trial_ends_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  KEY `users_restaurant_id_foreign` (`restaurant_id`),
  KEY `users_stripe_id_index` (`stripe_id`),
  KEY `idx_branch_email` (`branch_id`,`email`),
  CONSTRAINT `users_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `users_restaurant_id_foreign` FOREIGN KEY (`restaurant_id`) REFERENCES `restaurants` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `users`
INSERT INTO `users` VALUES
('1', NULL, NULL, 'Halil Sidzhimov', 'hsidzhimov@gmail.com', '0885219072', '359', '0', '0', NULL, '$2y$12$ClO4NIh4WsmASNZlniHmz.2.iI05ucp06aDuhttEeo3MlL6gK.4YG', NULL, NULL, NULL, 'oUwbUBhBIJpanuTZu55d2OQ3q19oz9To07R1TI84MAUYkReKjHcooMxQxJG9', NULL, NULL, '2025-11-27 00:00:51', '2025-12-03 10:30:02', 'en', NULL, NULL, NULL, NULL),
('2', '1', NULL, 'John Doe', 'admin@example.com', NULL, NULL, '0', '0', NULL, '$2y$12$16ZiNLDcIVyZg0ORbPKC4eqpjYWszI/BrUIeqkmN65hECtonu.RCe', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 00:00:54', '2025-11-27 00:21:42', 'en', NULL, NULL, NULL, NULL),
('3', '1', '1', 'Jaquelyn Battle', 'waiter@example.com', NULL, NULL, '0', '0', NULL, '$2y$12$VUTdeQb1h0JbyLSzEIw4L.SMIHzngKyGhjZ35kI7mb/FpnnZmdQtm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-27 00:00:55', '2025-11-27 00:21:42', 'en', NULL, NULL, NULL, NULL),
('4', '2', '3', 'Halil Sidzhimov', 'hsidzhimov@googlemail.com', '07999973384', '359', '0', '0', NULL, '$2y$12$wMGHtu.QqaPcbrb5EHF8DuNB5Gd8hIId.AEl.W/0ZM8TCFjLTD6/u', NULL, NULL, NULL, 'mAyG6rLSc4XdNV9WHf5DxL8u3VEzRE2F8VLgaajJ52p1TqwVWuK79p6XNgso', NULL, NULL, '2025-11-27 01:20:35', '2025-11-27 01:20:35', 'en', NULL, NULL, NULL, NULL),
('5', '3', '4', 'Kalofer Zakov', 'vip.zakov@gmail.com', '877022773', '359', '0', '0', NULL, '$2y$12$.m8Y7guJRrMasqokkPeq1OiLLXDaMyWki6fDUZ5xjKey/VpIJmUGu', NULL, NULL, NULL, 'nNrw3WG9jUNAmxE9Y2rABJf4BBK9STKivoKaP0Llp0rOgRuy3GzFaukYG20a', NULL, NULL, '2025-11-27 10:17:23', '2025-11-27 16:23:06', 'en', NULL, NULL, NULL, NULL),
('6', '3', '4', 'Hristo', 'hvuljev@gmail.com', '896933538', '359', '0', '0', NULL, '$2y$12$/yIgsqNQzzzlvg.ZE/vBnegQfCau4dkHxD27J.ZAbkKogjTCpecqu', NULL, NULL, NULL, '7Jhx5fmSgHoGNLcTddvCJ1JLwYGHwr5TgCHI5uBrn7vuheBJG0FyK41DU775', NULL, NULL, '2025-11-27 14:17:22', '2025-11-27 16:06:00', 'en', NULL, NULL, NULL, NULL),
('7', '4', '5', 'Nicolay Yordanov', 'nicolas@abv.bg', '884909605', '359', '0', '0', NULL, '$2y$12$f9f/L3.VCoL/mGO4Dna34.RwERyC98F7CJVjackjDf4WfsDEWQmW2', NULL, NULL, NULL, 'i88ASHATdhEkWtoJ5ZBPQWg7UjCRbQxRDm8S9134jriSHHAfaC32BidrvlWp', NULL, NULL, '2025-12-01 11:34:16', '2025-12-01 11:34:16', 'en', NULL, NULL, NULL, NULL),
('8', NULL, NULL, 'Kalofer Zakov', 'office@rosie.vodka', NULL, NULL, '0', '0', NULL, '$2y$12$3Zs91TIhePJ7THLZbkjEEO0kV3B8NNmrO8B/P8c8IJCzjWdoxFNCa', NULL, NULL, NULL, 'uPFkoviUWTTp8V4iUopKcrftQuXisQpEZgWZ9QnWcbWBUtXRh2DgUjzL59jQ', NULL, NULL, '2025-12-03 10:26:41', '2025-12-03 10:26:41', 'en', NULL, NULL, NULL, NULL),
('9', '3', '4', 'Mitko', 'dimitark65@gmail.com', '878599144', '359', '0', '0', NULL, '$2y$12$VBZkg7vDeR5K.qQuo23nreLnPze9l0hE2IYyslG64prUEyEclEJ8a', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-30 20:08:35', '2025-12-30 20:09:10', 'en', NULL, NULL, NULL, NULL),
('10', NULL, NULL, 'superadmin', 'superadmin@hellopos.online', NULL, NULL, '0', '0', NULL, '$2y$12$xbl51m1.1rRUatBNnYgWY.NyqJW2KDH7vhg0Oc/gdYhdkixLVY/Ra', NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-16 15:36:30', '2026-01-16 15:36:30', 'en', NULL, NULL, NULL, NULL),
('11', '3', '4', 'Анастасия', 'petrova.asiy@gmail.com', '892923593', '359', '0', '0', NULL, '$2y$12$h6T7kfr.RpajyNMQJmYrcO02bSYxunY.lh/6plLcQZqkGT1SMTXtO', NULL, NULL, NULL, NULL, NULL, NULL, '2026-01-28 21:31:35', '2026-01-28 21:31:35', 'en', NULL, NULL, NULL, NULL),
('12', '3', '4', 'Иван Николов', 'nikolovivan8600@gmail.com', '0879007157', '359', '0', '0', NULL, '$2y$12$uZv8ZnUt1u.OzeMZIi4JBOR10j3sfddFQIva/UHRu4Ce622EblWim', NULL, NULL, NULL, NULL, NULL, NULL, '2026-02-15 19:13:43', '2026-02-15 19:13:43', 'en', NULL, NULL, NULL, NULL);


-- Table structure for table `waiter_requests`
DROP TABLE IF EXISTS `waiter_requests`;
CREATE TABLE `waiter_requests` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `branch_id` bigint unsigned NOT NULL,
  `table_id` bigint unsigned NOT NULL,
  `status` enum('pending','completed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `waiter_requests_branch_id_foreign` (`branch_id`),
  KEY `waiter_requests_table_id_foreign` (`table_id`),
  CONSTRAINT `waiter_requests_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE CASCADE,
  CONSTRAINT `waiter_requests_table_id_foreign` FOREIGN KEY (`table_id`) REFERENCES `tables` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Dumping data for table `waiter_requests`
INSERT INTO `waiter_requests` VALUES
('1', '4', '2', 'completed', '2026-02-13 18:53:32', '2026-03-27 21:43:06');


-- Table structure for table `xendit_payments`
DROP TABLE IF EXISTS `xendit_payments`;
CREATE TABLE `xendit_payments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `payment_date` datetime DEFAULT NULL,
  `amount` decimal(16,2) DEFAULT NULL,
  `payment_status` enum('pending','requested','declined','completed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_error_response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `xendit_payment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `xendit_invoice_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `xendit_external_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `xendit_payments_order_id_foreign` (`order_id`),
  CONSTRAINT `xendit_payments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

