-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 25, 2026 at 08:49 AM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.2.12

SET FOREIGN_KEY_CHECKS=0;
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `gooyachat`
--
DROP DATABASE IF EXISTS `gooyachat`;
CREATE DATABASE IF NOT EXISTS `gooyachat` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_persian_ci;
USE `gooyachat`;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_access`
--

DROP TABLE IF EXISTS `gooyaacc_chat_access`;
CREATE TABLE `gooyaacc_chat_access` (
  `user_id` int(11) NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `chat_role` enum('user','operator','admin') NOT NULL DEFAULT 'user',
  `can_start_direct` tinyint(1) NOT NULL DEFAULT 1,
  `display_name` varchar(150) DEFAULT NULL,
  `avatar_path` varchar(255) DEFAULT NULL,
  `is_online` tinyint(1) NOT NULL DEFAULT 0,
  `last_seen_at` datetime DEFAULT NULL,
  `enabled_by` int(11) DEFAULT NULL,
  `enabled_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_access`
--

INSERT IGNORE INTO `gooyaacc_chat_access` (`user_id`, `is_enabled`, `chat_role`, `can_start_direct`, `display_name`, `avatar_path`, `is_online`, `last_seen_at`, `enabled_by`, `enabled_at`, `updated_at`) VALUES
(1, 1, 'admin', 1, 'حسین فغان پور', NULL, 1, '2026-08-17 15:01:15', NULL, '2026-08-10 14:10:15', '2026-08-10 14:10:15'),
(2, 1, 'user', 1, 'علی محمدی', NULL, 1, '2026-08-11 11:26:34', 1, NULL, '2026-08-11 11:26:34'),
(3, 1, 'user', 1, 'سارا احمدی', NULL, 1, '2026-08-11 11:26:34', 1, NULL, '2026-08-11 11:26:34'),
(4, 1, 'user', 1, 'رضا کریمی', NULL, 0, NULL, 1, NULL, '2026-08-11 11:26:34'),
(5, 0, 'user', 1, 'عیسی زارع', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(6, 0, 'user', 1, 'رضا محمدیان', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(7, 0, 'user', 1, 'علی کریمی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(8, 0, 'user', 1, 'نیما قاسمی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(9, 0, 'user', 1, 'زهرا مرادی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(10, 0, 'user', 1, 'امیر صادقی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(11, 0, 'user', 1, 'سارا احمدی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(12, 0, 'user', 1, 'فاطمه کاظمی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(13, 0, 'user', 1, 'سینا یوسفی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(14, 0, 'user', 1, 'الهام جعفری', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(15, 0, 'user', 1, 'حسن رضایی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(16, 0, 'user', 1, 'بهرام اکبری', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(17, 0, 'user', 1, 'نگار شریفی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(18, 0, 'user', 1, 'پیمان بابایی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(19, 0, 'user', 1, 'مریم حسینی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(20, 0, 'user', 1, 'مینا رستمی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(21, 0, 'user', 1, 'کیان عباسی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(22, 0, 'user', 1, 'رها نادری', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(23, 0, 'user', 1, 'کاوه نوری', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(24, 0, 'user', 1, 'آرش فلاحی', NULL, 0, NULL, 1, NULL, '2026-08-10 14:46:50'),
(25, 0, 'user', 1, 'سحر زارع', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15'),
(26, 0, 'user', 1, 'وحید محمودی', NULL, 0, NULL, NULL, NULL, '2026-08-10 14:10:15');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_archive_attachments`
--

DROP TABLE IF EXISTS `gooyaacc_chat_archive_attachments`;
CREATE TABLE `gooyaacc_chat_archive_attachments` (
  `id` int(11) NOT NULL,
  `message_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `storage_attachment_id` bigint(20) UNSIGNED NOT NULL,
  `kind` enum('file','image','voice') NOT NULL DEFAULT 'file',
  `orig_name` varchar(255) DEFAULT NULL,
  `ext` varchar(12) DEFAULT NULL,
  `mime` varchar(120) DEFAULT NULL,
  `size_bytes` bigint(20) NOT NULL DEFAULT 0,
  `duration_sec` int(11) DEFAULT NULL,
  `width` int(11) DEFAULT NULL,
  `height` int(11) DEFAULT NULL,
  `sha256` char(64) DEFAULT NULL,
  `storage_status` enum('pending','ready','deleted','failed') NOT NULL DEFAULT 'pending',
  `created_at` datetime DEFAULT NULL,
  `archive_run_id` int(11) NOT NULL,
  `archived_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_archive_messages`
--

DROP TABLE IF EXISTS `gooyaacc_chat_archive_messages`;
CREATE TABLE `gooyaacc_chat_archive_messages` (
  `id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `sender_id` int(11) NOT NULL,
  `msg_type` enum('text','file','image','voice','system') NOT NULL DEFAULT 'text',
  `body` text DEFAULT NULL,
  `reply_to_id` int(11) DEFAULT NULL,
  `client_uid` varchar(40) DEFAULT NULL,
  `is_edited` tinyint(1) NOT NULL DEFAULT 0,
  `edited_at` datetime DEFAULT NULL,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `deleted_by` int(11) DEFAULT NULL,
  `deleted_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `archive_run_id` int(11) NOT NULL,
  `archived_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_archive_runs`
--

DROP TABLE IF EXISTS `gooyaacc_chat_archive_runs`;
CREATE TABLE `gooyaacc_chat_archive_runs` (
  `id` int(11) NOT NULL,
  `run_type` enum('auto','manual') NOT NULL DEFAULT 'manual',
  `cutoff_date` date NOT NULL,
  `months_setting` int(11) NOT NULL DEFAULT 6,
  `rooms_count` int(11) NOT NULL DEFAULT 0,
  `messages_count` int(11) NOT NULL DEFAULT 0,
  `attachments_count` int(11) NOT NULL DEFAULT 0,
  `bytes_moved` bigint(20) NOT NULL DEFAULT 0,
  `status` enum('running','done','failed','rolled_back') NOT NULL DEFAULT 'running',
  `error_text` text DEFAULT NULL,
  `cloud_export_status` enum('pending','exporting','ready','failed','disabled') NOT NULL DEFAULT 'pending',
  `cloud_file_id` bigint(20) UNSIGNED DEFAULT NULL,
  `cloud_attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `cloud_sha256` char(64) DEFAULT NULL,
  `cloud_exported_at` datetime DEFAULT NULL,
  `cloud_error_text` text DEFAULT NULL,
  `run_by` int(11) DEFAULT NULL,
  `started_at` datetime DEFAULT NULL,
  `finished_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_attachments`
--

DROP TABLE IF EXISTS `gooyaacc_chat_attachments`;
CREATE TABLE `gooyaacc_chat_attachments` (
  `id` int(11) NOT NULL,
  `message_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `storage_attachment_id` bigint(20) UNSIGNED NOT NULL,
  `kind` enum('file','image','voice') NOT NULL DEFAULT 'file',
  `orig_name` varchar(255) DEFAULT NULL,
  `ext` varchar(12) DEFAULT NULL,
  `mime` varchar(120) DEFAULT NULL,
  `size_bytes` bigint(20) NOT NULL DEFAULT 0,
  `duration_sec` int(11) DEFAULT NULL,
  `width` int(11) DEFAULT NULL,
  `height` int(11) DEFAULT NULL,
  `sha256` char(64) DEFAULT NULL,
  `storage_status` enum('pending','ready','deleted','failed') NOT NULL DEFAULT 'pending',
  `created_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_attachments`
--

INSERT IGNORE INTO `gooyaacc_chat_attachments` (`id`, `message_id`, `room_id`, `storage_attachment_id`, `kind`, `orig_name`, `ext`, `mime`, `size_bytes`, `duration_sec`, `width`, `height`, `sha256`, `storage_status`, `created_at`) VALUES
(28, 102, 1, 2569, 'voice', 'voice-1786437748206.webm', 'webm', 'video/webm', 162737, 11, NULL, NULL, 'bed146fcc639b657c990b79f0b72d1cda716c81c198e6b25b8b7d60c373c2e7b', 'ready', '2026-08-11 12:12:28'),
(29, 106, 1, 2714, 'voice', 'voice-1786962651679.webm', 'webm', 'video/webm', 67893, 5, NULL, NULL, 'cb1d8980229345f533233ed70a7032c2dd25a2d873788ce58f67acfed9d507e8', 'ready', '2026-08-17 14:00:52');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_log`
--

DROP TABLE IF EXISTS `gooyaacc_chat_log`;
CREATE TABLE `gooyaacc_chat_log` (
  `id` int(11) NOT NULL,
  `actor_id` int(11) DEFAULT NULL,
  `action` varchar(50) NOT NULL,
  `room_id` int(11) DEFAULT NULL,
  `message_id` int(11) DEFAULT NULL,
  `target_user_id` int(11) DEFAULT NULL,
  `detail` varchar(500) DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  `ua` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_log`
--

INSERT IGNORE INTO `gooyaacc_chat_log` (`id`, `actor_id`, `action`, `room_id`, `message_id`, `target_user_id`, `detail`, `ip`, `ua`, `created_at`) VALUES
(34, 1, 'update_settings', NULL, NULL, NULL, '{\"chat_globally_enabled\":1,\"allow_direct_chat\":1,\"max_file_size_mb\":10,\"archive_mode\":\"auto\",\"archive_after_months\":6,\"archive_hour\":2,\"retain_attachments_on_archive\":1}', '', 'GooyaChat admin', '2026-08-11 09:21:41'),
(316, 1, 'archive_export', NULL, NULL, NULL, '{\"run_id\":1,\"cloud_file_id\":114,\"sha256\":\"fdebce7a8c1b076ebbf3a16f712b35ce984fe8170615d35dec8f69c2fb093dc6\",\"format\":\"zip-jsonl-v1\"}', '', 'GooyaChat archive', '2026-08-11 11:29:24'),
(317, 1, 'archive_restore', NULL, NULL, NULL, '{\"run_id\":1,\"messages\":1,\"attachments\":1}', '', 'GooyaChat archive', '2026-08-11 11:29:24'),
(319, 1, 'archive_purge', NULL, NULL, NULL, '{\"run_id\":2,\"attachments\":1,\"via\":\"GooyaStorage\"}', '', 'GooyaChat archive', '2026-08-11 11:29:25'),
(375, 1, 'archive_export', NULL, NULL, NULL, '{\"run_id\":7,\"cloud_file_id\":115,\"sha256\":\"eaff99c75d9cad08e13fcfee2ca0f40cecf571a1b9ebf75cfd7bda29ad685ee3\",\"format\":\"zip-jsonl-v1\"}', '', 'GooyaChat archive', '2026-08-11 11:56:42'),
(376, 1, 'archive_restore', NULL, NULL, NULL, '{\"run_id\":7,\"messages\":1,\"attachments\":1}', '', 'GooyaChat archive', '2026-08-11 11:56:42'),
(378, 1, 'archive_export', NULL, NULL, NULL, '{\"run_id\":8,\"cloud_file_id\":116,\"sha256\":\"cbad4f5d5f11aeb2b55334f811d22dc88b73eb1095926727ca163807279331c1\",\"format\":\"zip-jsonl-v1\"}', '', 'GooyaChat archive', '2026-08-11 11:56:43'),
(379, 1, 'archive_purge', NULL, NULL, NULL, '{\"run_id\":8,\"attachments\":1,\"via\":\"GooyaStorage\"}', '', 'GooyaChat archive', '2026-08-11 11:56:43'),
(425, 1, 'archive_export', NULL, NULL, NULL, '{\"run_id\":9,\"cloud_file_id\":117,\"sha256\":\"588588d78b4325d4fdcf31ab6a39151fe6e3ead533b8ae126113f7cae04bd181\",\"format\":\"zip-jsonl-v1\"}', '', 'GooyaChat archive', '2026-08-11 11:57:07'),
(426, 1, 'archive_restore', NULL, NULL, NULL, '{\"run_id\":9,\"messages\":1,\"attachments\":1}', '', 'GooyaChat archive', '2026-08-11 11:57:07'),
(428, 1, 'archive_export', NULL, NULL, NULL, '{\"run_id\":10,\"cloud_file_id\":118,\"sha256\":\"68b3f303abc6415e24aff2dd17f08d9c0de2a66791dfca4414e3cf36b1065d93\",\"format\":\"zip-jsonl-v1\"}', '', 'GooyaChat archive', '2026-08-11 11:57:09'),
(429, 1, 'archive_purge', NULL, NULL, NULL, '{\"run_id\":10,\"attachments\":1,\"via\":\"GooyaStorage\"}', '', 'GooyaChat archive', '2026-08-11 11:57:09'),
(439, 1, 'send_attachment', 1, 102, NULL, '{\"storage_attachment_id\":2569,\"kind\":\"voice\",\"sha256\":\"bed146fcc639b657c990b79f0b72d1cda716c81c198e6b25b8b7d60c373c2e7b\"}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36', '2026-08-11 12:12:28'),
(447, 1, 'send_attachment', 1, 106, NULL, '{\"storage_attachment_id\":2714,\"kind\":\"voice\",\"sha256\":\"cb1d8980229345f533233ed70a7032c2dd25a2d873788ce58f67acfed9d507e8\"}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36', '2026-08-17 14:00:52');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_members`
--

DROP TABLE IF EXISTS `gooyaacc_chat_members`;
CREATE TABLE `gooyaacc_chat_members` (
  `id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `member_role` enum('member','operator','owner') NOT NULL DEFAULT 'member',
  `last_read_message_id` int(11) NOT NULL DEFAULT 0,
  `unread_count` int(11) NOT NULL DEFAULT 0,
  `is_muted` tinyint(1) NOT NULL DEFAULT 0,
  `is_pinned` tinyint(1) NOT NULL DEFAULT 0,
  `joined_at` datetime DEFAULT NULL,
  `left_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_members`
--

INSERT IGNORE INTO `gooyaacc_chat_members` (`id`, `room_id`, `user_id`, `member_role`, `last_read_message_id`, `unread_count`, `is_muted`, `is_pinned`, `joined_at`, `left_at`) VALUES
(1, 1, 1, 'operator', 106, 0, 0, 0, '2026-08-10 14:10:15', NULL),
(2, 2, 1, 'operator', 0, 0, 0, 0, '2026-08-10 14:10:15', NULL),
(12, 1, 24, 'operator', 0, 0, 0, 0, '2026-08-10 14:29:39', '2026-08-10 14:46:50'),
(13, 2, 24, 'operator', 0, 0, 0, 0, '2026-08-10 14:29:39', '2026-08-10 14:46:50'),
(546, 1, 2, 'member', 0, 5, 0, 0, '2026-08-11 11:26:34', NULL),
(547, 2, 2, 'member', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL),
(549, 108, 2, 'owner', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL),
(551, 1, 3, 'member', 0, 5, 0, 0, '2026-08-11 11:26:34', NULL),
(552, 2, 3, 'member', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL),
(554, 109, 3, 'owner', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL),
(556, 1, 4, 'member', 0, 5, 0, 0, '2026-08-11 11:26:34', NULL),
(557, 2, 4, 'member', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL),
(559, 110, 4, 'owner', 0, 0, 0, 0, '2026-08-11 11:26:34', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_messages`
--

DROP TABLE IF EXISTS `gooyaacc_chat_messages`;
CREATE TABLE `gooyaacc_chat_messages` (
  `id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `sender_id` int(11) NOT NULL,
  `msg_type` enum('text','file','image','voice','system') NOT NULL DEFAULT 'text',
  `body` text DEFAULT NULL,
  `reply_to_id` int(11) DEFAULT NULL,
  `client_uid` varchar(40) DEFAULT NULL,
  `is_edited` tinyint(1) NOT NULL DEFAULT 0,
  `edited_at` datetime DEFAULT NULL,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `deleted_by` int(11) DEFAULT NULL,
  `deleted_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_messages`
--

INSERT IGNORE INTO `gooyaacc_chat_messages` (`id`, `room_id`, `sender_id`, `msg_type`, `body`, `reply_to_id`, `client_uid`, `is_edited`, `edited_at`, `deleted`, `deleted_by`, `deleted_at`, `created_at`) VALUES
(100, 1, 1, 'text', 'سلام', NULL, 'b9e583e4f5b244d49b0ff0bae7ec1fc3', 0, NULL, 0, NULL, NULL, '2026-08-11 12:10:07'),
(101, 1, 1, 'text', 'سیسیس', 100, '72e34a1d6d9849da9baf02e5b5f53734', 0, NULL, 0, NULL, NULL, '2026-08-11 12:11:05'),
(102, 1, 1, 'voice', 'voice-1786437748206.webm', NULL, '49e3a412659747fd9b903d73cdaae496', 0, NULL, 0, NULL, NULL, '2026-08-11 12:12:28'),
(105, 1, 1, 'text', 'cvcvcvcvc', NULL, '031d30d9ed604e088e35cbcafabc36ff', 0, NULL, 0, NULL, NULL, '2026-08-17 13:59:57'),
(106, 1, 1, 'voice', 'voice-1786962651679.webm', NULL, 'dd8d88da1c324aae987d674114cf1037', 0, NULL, 0, NULL, NULL, '2026-08-17 14:00:52');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_receipts`
--

DROP TABLE IF EXISTS `gooyaacc_chat_receipts`;
CREATE TABLE `gooyaacc_chat_receipts` (
  `message_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `delivered_at` datetime DEFAULT NULL,
  `read_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_receipts`
--

INSERT IGNORE INTO `gooyaacc_chat_receipts` (`message_id`, `user_id`, `delivered_at`, `read_at`) VALUES
(100, 2, NULL, NULL),
(100, 3, NULL, NULL),
(100, 4, NULL, NULL),
(101, 2, NULL, NULL),
(101, 3, NULL, NULL),
(101, 4, NULL, NULL),
(102, 2, NULL, NULL),
(102, 3, NULL, NULL),
(102, 4, NULL, NULL),
(105, 2, NULL, NULL),
(105, 3, NULL, NULL),
(105, 4, NULL, NULL),
(106, 2, NULL, NULL),
(106, 3, NULL, NULL),
(106, 4, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_rooms`
--

DROP TABLE IF EXISTS `gooyaacc_chat_rooms`;
CREATE TABLE `gooyaacc_chat_rooms` (
  `id` int(11) NOT NULL,
  `room_type` enum('public','support','direct') NOT NULL,
  `title` varchar(200) DEFAULT NULL,
  `slug` varchar(100) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `owner_user_id` int(11) DEFAULT NULL,
  `dm_key` varchar(40) DEFAULT NULL,
  `is_readonly` tinyint(1) NOT NULL DEFAULT 0,
  `status` enum('open','closed') NOT NULL DEFAULT 'open',
  `assigned_op_id` int(11) DEFAULT NULL,
  `is_archived` tinyint(1) NOT NULL DEFAULT 0,
  `last_message_id` int(11) DEFAULT NULL,
  `last_message_at` datetime DEFAULT NULL,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_rooms`
--

INSERT IGNORE INTO `gooyaacc_chat_rooms` (`id`, `room_type`, `title`, `slug`, `description`, `owner_user_id`, `dm_key`, `is_readonly`, `status`, `assigned_op_id`, `is_archived`, `last_message_id`, `last_message_at`, `deleted`, `created_by`, `created_at`) VALUES
(1, 'public', 'گفتگوی عمومی', 'general', 'کانال عمومی همهٔ همکاران', NULL, NULL, 0, 'open', NULL, 0, 106, '2026-08-17 14:00:52', 0, 1, '2026-08-10 14:10:15'),
(2, 'public', 'اطلاعیه‌ها', 'announcements', 'اطلاعیه‌های مدیریت — فقط خواندنی', NULL, NULL, 1, 'open', NULL, 0, NULL, NULL, 0, 1, '2026-08-10 14:10:15');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_settings`
--

DROP TABLE IF EXISTS `gooyaacc_chat_settings`;
CREATE TABLE `gooyaacc_chat_settings` (
  `skey` varchar(64) NOT NULL,
  `svalue` text DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_settings`
--

INSERT IGNORE INTO `gooyaacc_chat_settings` (`skey`, `svalue`, `updated_at`) VALUES
('allow_direct_chat', '1', '2026-08-11 09:21:41'),
('allowed_ext', 'jpg,jpeg,png,gif,webp,pdf,doc,docx,xls,xlsx,ppt,pptx,csv,zip', '2026-08-10 14:10:15'),
('archive_after_months', '6', '2026-08-11 09:21:41'),
('archive_chunk_size', '5000', '2026-08-10 14:10:15'),
('archive_cloud_folder_name', 'آرشیو چت‌های گویا', '2026-08-10 14:10:15'),
('archive_cloud_format', 'zip-jsonl-v1', '2026-08-10 14:10:15'),
('archive_cloud_owner_user_id', '0', '2026-08-10 14:10:15'),
('archive_cloud_public_links', '0', '2026-08-11 09:21:41'),
('archive_hour', '2', '2026-08-11 09:21:41'),
('archive_mode', 'auto', '2026-08-11 09:21:41'),
('archive_package_encryption_required', '1', '2026-08-11 09:21:41'),
('archive_to_gooya_cloud', '1', '2026-08-11 09:21:41'),
('chat_globally_enabled', '1', '2026-08-11 11:26:34'),
('edit_window_seconds', '300', '2026-08-10 14:10:15'),
('max_file_size', '10485760', '2026-08-11 09:21:41'),
('poll_idle_ms', '20000', '2026-08-10 14:10:15'),
('poll_interval_ms', '4000', '2026-08-10 14:10:15'),
('rate_messages_per_min', '30', '2026-08-10 14:10:15'),
('rate_uploads_per_min', '10', '2026-08-10 14:10:15'),
('retain_attachments_on_archive', '1', '2026-08-11 09:21:41'),
('schema_version', '2.0-contract', '2026-08-10 14:10:15'),
('storage_gateway', 'GooyaStorage', '2026-08-11 09:21:41'),
('storage_source_module', 'GooyaChat', '2026-08-10 14:10:15'),
('typing_1', '{\"room_id\":0,\"typing\":0,\"at\":1786962596}', '2026-08-17 13:59:56'),
('user_sync_ttl_minutes', '60', '2026-08-10 14:10:15'),
('voice_ext', 'webm,ogg,oga,m4a,mp3,wav', '2026-08-10 14:10:15'),
('voice_max_seconds', '120', '2026-08-10 14:10:15'),
('voice_max_size', '5242880', '2026-08-10 14:10:15');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_chat_users`
--

DROP TABLE IF EXISTS `gooyaacc_chat_users`;
CREATE TABLE `gooyaacc_chat_users` (
  `user_id` int(11) NOT NULL,
  `user_name` varchar(100) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `full_name` varchar(220) DEFAULT NULL,
  `email` varchar(180) DEFAULT NULL,
  `is_crm_admin` tinyint(1) NOT NULL DEFAULT 0,
  `crm_status` varchar(25) DEFAULT NULL,
  `crm_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `synced_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_chat_users`
--

INSERT IGNORE INTO `gooyaacc_chat_users` (`user_id`, `user_name`, `first_name`, `last_name`, `full_name`, `email`, `is_crm_admin`, `crm_status`, `crm_deleted`, `synced_at`) VALUES
(1, 'admin', 'فرهاد', 'داداشی', 'فرهاد داداشی', '', 1, 'Active', 0, '2026-08-25 09:46:59'),
(2, 'ali', 'خانم', 'حسنی', 'خانم حسنی', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(3, 'sara', 'خانم', 'رمضانپور', 'خانم رمضانپور', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(4, 'reza', 'خانم', 'تقی پور', 'خانم تقی پور', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(5, 'a.zare', 'خانم', 'رامی', 'خانم رامی', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(6, 'kpiseed_mgr', 'خانم', 'سعادتی', 'خانم سعادتی', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(7, 'kpiseed_sup1', 'خانم', 'صادق نیا', 'خانم صادق نیا', '', 0, 'Active', 0, '2026-08-25 09:46:59'),
(8, 'kpiseed_emp1', 'نیما', 'قاسمی', 'نیما قاسمی', 'kpiseed_emp1@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(9, 'kpiseed_emp2', 'زهرا', 'مرادی', 'زهرا مرادی', 'kpiseed_emp2@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(10, 'kpiseed_emp3', 'امیر', 'صادقی', 'امیر صادقی', 'kpiseed_emp3@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(11, 'kpiseed_sup2', 'سارا', 'احمدی', 'سارا احمدی', 'kpiseed_sup2@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(12, 'kpiseed_emp4', 'فاطمه', 'کاظمی', 'فاطمه کاظمی', 'kpiseed_emp4@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(13, 'kpiseed_emp5', 'سینا', 'یوسفی', 'سینا یوسفی', 'kpiseed_emp5@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(14, 'kpiseed_emp6', 'الهام', 'جعفری', 'الهام جعفری', 'kpiseed_emp6@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(15, 'kpiseed_sup3', 'حسن', 'رضایی', 'حسن رضایی', 'kpiseed_sup3@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(16, 'kpiseed_emp7', 'بهرام', 'اکبری', 'بهرام اکبری', 'kpiseed_emp7@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(17, 'kpiseed_emp8', 'نگار', 'شریفی', 'نگار شریفی', 'kpiseed_emp8@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(18, 'kpiseed_emp9', 'پیمان', 'بابایی', 'پیمان بابایی', 'kpiseed_emp9@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(19, 'kpiseed_sup4', 'مریم', 'حسینی', 'مریم حسینی', 'kpiseed_sup4@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(20, 'kpiseed_emp10', 'مینا', 'رستمی', 'مینا رستمی', 'kpiseed_emp10@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(21, 'kpiseed_emp11', 'کیان', 'عباسی', 'کیان عباسی', 'kpiseed_emp11@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(22, 'kpiseed_emp12', 'رها', 'نادری', 'رها نادری', 'kpiseed_emp12@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(23, 'kpiseed_sup5', 'کاوه', 'نوری', 'کاوه نوری', 'kpiseed_sup5@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(24, 'kpiseed_emp13', 'آرش', 'فلاحی', 'آرش فلاحی', 'kpiseed_emp13@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(25, 'kpiseed_emp14', 'سحر', 'زارع', 'سحر زارع', 'kpiseed_emp14@example.local', 0, 'Active', 0, '2026-08-25 09:46:59'),
(26, 'kpiseed_emp15', 'وحید', 'محمودی', 'وحید محمودی', 'kpiseed_emp15@example.local', 0, 'Active', 0, '2026-08-25 09:46:59');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `gooyaacc_chat_access`
--
ALTER TABLE `gooyaacc_chat_access`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_enabled` (`is_enabled`),
  ADD KEY `idx_role` (`chat_role`);

--
-- Indexes for table `gooyaacc_chat_archive_attachments`
--
ALTER TABLE `gooyaacc_chat_archive_attachments`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_archive_storage_attachment` (`storage_attachment_id`),
  ADD KEY `idx_run` (`archive_run_id`),
  ADD KEY `idx_msg` (`message_id`),
  ADD KEY `idx_room` (`room_id`),
  ADD KEY `idx_storage_status` (`storage_status`);

--
-- Indexes for table `gooyaacc_chat_archive_messages`
--
ALTER TABLE `gooyaacc_chat_archive_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_run` (`archive_run_id`),
  ADD KEY `idx_room` (`room_id`,`id`),
  ADD KEY `idx_created` (`created_at`),
  ADD KEY `idx_sender` (`sender_id`);

--
-- Indexes for table `gooyaacc_chat_archive_runs`
--
ALTER TABLE `gooyaacc_chat_archive_runs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_cloud_file` (`cloud_file_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_cutoff` (`cutoff_date`),
  ADD KEY `idx_cloud_export` (`cloud_export_status`);

--
-- Indexes for table `gooyaacc_chat_attachments`
--
ALTER TABLE `gooyaacc_chat_attachments`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_storage_attachment` (`storage_attachment_id`),
  ADD KEY `idx_msg` (`message_id`),
  ADD KEY `idx_room` (`room_id`),
  ADD KEY `idx_kind` (`kind`),
  ADD KEY `idx_storage_status` (`storage_status`);

--
-- Indexes for table `gooyaacc_chat_log`
--
ALTER TABLE `gooyaacc_chat_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_actor` (`actor_id`),
  ADD KEY `idx_action` (`action`),
  ADD KEY `idx_created` (`created_at`);

--
-- Indexes for table `gooyaacc_chat_members`
--
ALTER TABLE `gooyaacc_chat_members`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_room_user` (`room_id`,`user_id`),
  ADD KEY `idx_user` (`user_id`),
  ADD KEY `idx_unread` (`user_id`,`unread_count`);

--
-- Indexes for table `gooyaacc_chat_messages`
--
ALTER TABLE `gooyaacc_chat_messages`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_client` (`room_id`,`client_uid`),
  ADD KEY `idx_room_id` (`room_id`,`id`),
  ADD KEY `idx_created` (`created_at`),
  ADD KEY `idx_sender` (`sender_id`);

--
-- Indexes for table `gooyaacc_chat_receipts`
--
ALTER TABLE `gooyaacc_chat_receipts`
  ADD PRIMARY KEY (`message_id`,`user_id`),
  ADD KEY `idx_user` (`user_id`);

--
-- Indexes for table `gooyaacc_chat_rooms`
--
ALTER TABLE `gooyaacc_chat_rooms`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_slug` (`slug`),
  ADD UNIQUE KEY `uq_dm` (`dm_key`),
  ADD KEY `idx_type` (`room_type`),
  ADD KEY `idx_owner` (`owner_user_id`),
  ADD KEY `idx_last` (`last_message_at`),
  ADD KEY `idx_arch` (`is_archived`);

--
-- Indexes for table `gooyaacc_chat_settings`
--
ALTER TABLE `gooyaacc_chat_settings`
  ADD PRIMARY KEY (`skey`);

--
-- Indexes for table `gooyaacc_chat_users`
--
ALTER TABLE `gooyaacc_chat_users`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_active` (`crm_deleted`,`crm_status`),
  ADD KEY `idx_admin` (`is_crm_admin`),
  ADD KEY `idx_name` (`full_name`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `gooyaacc_chat_archive_runs`
--
ALTER TABLE `gooyaacc_chat_archive_runs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `gooyaacc_chat_attachments`
--
ALTER TABLE `gooyaacc_chat_attachments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `gooyaacc_chat_log`
--
ALTER TABLE `gooyaacc_chat_log`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=448;

--
-- AUTO_INCREMENT for table `gooyaacc_chat_members`
--
ALTER TABLE `gooyaacc_chat_members`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=881;

--
-- AUTO_INCREMENT for table `gooyaacc_chat_messages`
--
ALTER TABLE `gooyaacc_chat_messages`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=107;

--
-- AUTO_INCREMENT for table `gooyaacc_chat_rooms`
--
ALTER TABLE `gooyaacc_chat_rooms`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=196;
--
-- Database: `gooyanegar`
--
DROP DATABASE IF EXISTS `gooyanegar`;
CREATE DATABASE IF NOT EXISTS `gooyanegar` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_persian_ci;
USE `gooyanegar`;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_access`
--

DROP TABLE IF EXISTS `gooyaacc_negar_access`;
CREATE TABLE `gooyaacc_negar_access` (
  `user_id` int(11) NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `access_role` enum('user','secretary','manager','admin') NOT NULL DEFAULT 'user',
  `view_scope` enum('own','org_unit','assigned','all') NOT NULL DEFAULT 'own',
  `can_create` tinyint(1) NOT NULL DEFAULT 1,
  `can_send` tinyint(1) NOT NULL DEFAULT 0,
  `can_register` tinyint(1) NOT NULL DEFAULT 0,
  `can_approve` tinyint(1) NOT NULL DEFAULT 0,
  `can_sign` tinyint(1) NOT NULL DEFAULT 0,
  `can_manage_templates` tinyint(1) NOT NULL DEFAULT 0,
  `can_view_confidential` tinyint(1) NOT NULL DEFAULT 0,
  `can_use_ai` tinyint(1) NOT NULL DEFAULT 0,
  `can_export` tinyint(1) NOT NULL DEFAULT 0,
  `can_manage_archive` tinyint(1) NOT NULL DEFAULT 0,
  `can_purge` tinyint(1) NOT NULL DEFAULT 0,
  `can_view_audit` tinyint(1) NOT NULL DEFAULT 0,
  `can_manage_users` tinyint(1) NOT NULL DEFAULT 0,
  `max_file_size_bytes` bigint(20) UNSIGNED DEFAULT NULL,
  `enabled_by` int(11) DEFAULT NULL,
  `enabled_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `temporary_substitute_user_id` int(11) DEFAULT NULL,
  `temporary_substitute_from` datetime DEFAULT NULL,
  `temporary_substitute_until` datetime DEFAULT NULL,
  `temporary_substitute_set_by` int(11) DEFAULT NULL,
  `temporary_substitute_reason` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_access`
--

INSERT IGNORE INTO `gooyaacc_negar_access` (`user_id`, `is_enabled`, `access_role`, `view_scope`, `can_create`, `can_send`, `can_register`, `can_approve`, `can_sign`, `can_manage_templates`, `can_view_confidential`, `can_use_ai`, `can_export`, `can_manage_archive`, `can_purge`, `can_view_audit`, `can_manage_users`, `max_file_size_bytes`, `enabled_by`, `enabled_at`, `updated_at`, `temporary_substitute_user_id`, `temporary_substitute_from`, `temporary_substitute_until`, `temporary_substitute_set_by`, `temporary_substitute_reason`) VALUES
(1, 1, 'admin', 'all', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL, 1, '2026-08-15 10:57:24', '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(2, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(3, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(4, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(5, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(6, 1, 'manager', 'own', 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, NULL, 1, '2026-08-15 10:57:24', '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(7, 1, 'user', 'own', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 1, '2026-08-15 10:57:24', '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(8, 1, 'user', 'own', 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 1, '2026-08-15 10:57:24', '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(9, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(10, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(11, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(12, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(13, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(14, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(15, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(16, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(17, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(18, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(19, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(20, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(21, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(22, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(23, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(24, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(25, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL),
(26, 0, 'user', 'own', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, '2026-08-25 09:48:21', NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_ai_audit`
--

DROP TABLE IF EXISTS `gooyaacc_negar_ai_audit`;
CREATE TABLE `gooyaacc_negar_ai_audit` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `request_uuid` char(36) NOT NULL,
  `letter_id` bigint(20) UNSIGNED DEFAULT NULL,
  `version_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `operation` enum('draft','rewrite','grammar','shorten','expand','subject','summary','action_extract','reply') NOT NULL,
  `provider_name` varchar(100) DEFAULT NULL,
  `model_name` varchar(120) DEFAULT NULL,
  `data_policy` enum('internal','external_allowed','blocked_confidential') NOT NULL DEFAULT 'internal',
  `prompt_sha256` char(64) DEFAULT NULL,
  `input_sha256` char(64) DEFAULT NULL,
  `output_sha256` char(64) DEFAULT NULL,
  `input_tokens` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `output_tokens` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `request_status` enum('pending','completed','failed','blocked','cancelled') NOT NULL DEFAULT 'pending',
  `error_code` varchar(80) DEFAULT NULL,
  `error_message` varchar(500) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `finished_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_archive_runs`
--

DROP TABLE IF EXISTS `gooyaacc_negar_archive_runs`;
CREATE TABLE `gooyaacc_negar_archive_runs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `idempotency_key` varchar(120) NOT NULL,
  `operation` enum('archive','export','backup','restore_drill','purge') NOT NULL DEFAULT 'archive',
  `run_mode` enum('manual','cron') NOT NULL DEFAULT 'manual',
  `cutoff_date` date DEFAULT NULL,
  `retention_months` smallint(5) UNSIGNED DEFAULT NULL,
  `letters_count` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `attachments_count` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `bytes_total` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `run_status` enum('pending','running','completed','failed','rolled_back') NOT NULL DEFAULT 'pending',
  `cloud_export_status` enum('disabled','pending','exporting','ready','failed') NOT NULL DEFAULT 'disabled',
  `cloud_file_id` bigint(20) UNSIGNED DEFAULT NULL,
  `cloud_attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `cloud_sha256` char(64) DEFAULT NULL,
  `manifest_sha256` char(64) DEFAULT NULL,
  `encryption_key_id` varchar(120) DEFAULT NULL,
  `cloud_exported_at` datetime DEFAULT NULL,
  `verified_at` datetime DEFAULT NULL,
  `restore_drill_at` datetime DEFAULT NULL,
  `error_message` text DEFAULT NULL,
  `run_by` int(11) DEFAULT NULL,
  `started_at` datetime DEFAULT NULL,
  `finished_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_attachments`
--

DROP TABLE IF EXISTS `gooyaacc_negar_attachments`;
CREATE TABLE `gooyaacc_negar_attachments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED DEFAULT NULL,
  `version_id` bigint(20) UNSIGNED DEFAULT NULL,
  `attachment_kind` enum('attachment','draft_pdf','final_pdf','letterhead') NOT NULL DEFAULT 'attachment',
  `storage_attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `display_name` varchar(255) NOT NULL,
  `extension` varchar(16) DEFAULT NULL,
  `mime_type` varchar(150) DEFAULT NULL,
  `size_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `checksum_sha256` char(64) DEFAULT NULL,
  `visibility` enum('all_recipients','primary_only','internal_only') NOT NULL DEFAULT 'all_recipients',
  `storage_status` enum('pending','ready','quarantined','deleted','failed') NOT NULL DEFAULT 'pending',
  `purge_status` enum('none','pending','purged','failed') NOT NULL DEFAULT 'none',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL,
  `deleted_by` int(11) DEFAULT NULL,
  `deleted_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_attachments`
--

INSERT IGNORE INTO `gooyaacc_negar_attachments` (`id`, `letter_id`, `version_id`, `attachment_kind`, `storage_attachment_id`, `display_name`, `extension`, `mime_type`, `size_bytes`, `checksum_sha256`, `visibility`, `storage_status`, `purge_status`, `created_by`, `created_at`, `deleted_by`, `deleted_at`) VALUES
(74, 102, 111, 'final_pdf', 2700, 'official-GNT-1405-000001.pdf', 'pdf', 'application/pdf', 129557, '3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22', 'all_recipients', 'ready', 'none', 6, '2026-08-15 10:57:25', NULL, NULL),
(75, 102, 111, 'final_pdf', 2701, 'registry-GNT-1405-000001.pdf', 'pdf', 'application/pdf', 130709, 'da73b4ad8f4b5b13f14565c07d59a4c75db43e6b1cc290436f8406ee4553d4c2', 'internal_only', 'ready', 'none', 6, '2026-08-15 10:57:25', NULL, NULL),
(76, 103, 112, 'final_pdf', 2702, 'official-GNT-1405-000002.pdf', 'pdf', 'application/pdf', 128980, '3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef', 'all_recipients', 'ready', 'none', 6, '2026-08-15 10:57:26', NULL, NULL),
(77, 103, 112, 'final_pdf', 2703, 'registry-GNT-1405-000002.pdf', 'pdf', 'application/pdf', 129776, 'b9708296490b6487bf83c2163880061dc69d11b74197ca3b1409fb78adfc462e', 'internal_only', 'ready', 'none', 6, '2026-08-15 10:57:26', NULL, NULL),
(78, 104, 113, 'attachment', 2704, 'پیوست-آزمایشی-گویانگار.txt', 'txt', 'text/plain', 80, 'd850c79103b2fb0dffc3b1512e0bae1e5e5acd17a6d2a05248f5c774ea64ddf8', 'all_recipients', 'ready', 'none', 1, '2026-08-15 10:57:26', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_audit_log`
--

DROP TABLE IF EXISTS `gooyaacc_negar_audit_log`;
CREATE TABLE `gooyaacc_negar_audit_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_uuid` char(36) NOT NULL,
  `actor_user_id` int(11) DEFAULT NULL,
  `action` varchar(100) NOT NULL,
  `outcome` enum('success','denied','failed') NOT NULL DEFAULT 'success',
  `letter_id` bigint(20) UNSIGNED DEFAULT NULL,
  `version_id` bigint(20) UNSIGNED DEFAULT NULL,
  `recipient_id` bigint(20) UNSIGNED DEFAULT NULL,
  `referral_id` bigint(20) UNSIGNED DEFAULT NULL,
  `target_user_id` int(11) DEFAULT NULL,
  `request_id` varchar(100) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent_sha256` char(64) DEFAULT NULL,
  `detail_json` mediumtext DEFAULT NULL,
  `previous_hash` char(64) DEFAULT NULL,
  `event_hash` char(64) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_audit_log`
--

INSERT IGNORE INTO `gooyaacc_negar_audit_log` (`id`, `event_uuid`, `actor_user_id`, `action`, `outcome`, `letter_id`, `version_id`, `recipient_id`, `referral_id`, `target_user_id`, `request_id`, `ip_address`, `user_agent_sha256`, `detail_json`, `previous_hash`, `event_hash`, `created_at`) VALUES
(686, '8ef5401d-2341-4b88-87e0-0b91e4c7f4c7', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '8ef5401d-2341-4b88-87e0-0b91e4c7f4c7', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', '0000000000000000000000000000000000000000000000000000000000000000', '0f07948e60c444a0042b8f1b1c3e829287998440445ca8395176a055d062b5c5', '2026-08-15 06:14:43'),
(687, 'f81907fa-bb29-4e02-94cb-2c3da7c3ac71', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, 'f81907fa-bb29-4e02-94cb-2c3da7c3ac71', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', '0f07948e60c444a0042b8f1b1c3e829287998440445ca8395176a055d062b5c5', 'e57573113e7a5523dd90f4f7dfdcccd8d93bc38946a00d93b729f76ca452d347', '2026-08-15 06:25:58'),
(695, '74867044-1e5f-4b21-94e0-b4747d4e8d70', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '74867044-1e5f-4b21-94e0-b4747d4e8d70', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', 'e57573113e7a5523dd90f4f7dfdcccd8d93bc38946a00d93b729f76ca452d347', '8408e66e2f778225a96a571b2888d48627383a2cea16ae6f33285ea8d583cbc4', '2026-08-15 06:30:14'),
(696, '08be3278-6e02-4cff-b641-8e32d89fccc9', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '08be3278-6e02-4cff-b641-8e32d89fccc9', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', '8408e66e2f778225a96a571b2888d48627383a2cea16ae6f33285ea8d583cbc4', '06965ac08e0832cb57b4aa6fc76b4eb8c07ae240b35ccb76b3ee63a40ac190d7', '2026-08-15 06:31:27'),
(697, '04de62c4-292e-4778-afa7-ff45c9d8b191', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '04de62c4-292e-4778-afa7-ff45c9d8b191', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"create\",\"reason\":\"module_disabled\"}', '06965ac08e0832cb57b4aa6fc76b4eb8c07ae240b35ccb76b3ee63a40ac190d7', '20be1e8d4b1a06aae5cb17880f029502717454be612f9923aebf0a9b48ed6fa7', '2026-08-15 06:31:31'),
(698, '593eca93-e72d-4b73-9c67-a09d9231da5d', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '593eca93-e72d-4b73-9c67-a09d9231da5d', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', '20be1e8d4b1a06aae5cb17880f029502717454be612f9923aebf0a9b48ed6fa7', '15596b55cb25296098bf60a305460f90956be14f09478e2992469659b4a75686', '2026-08-15 06:43:05'),
(699, '0f2a57f7-b75e-4b9a-8e06-a65c71eed6f7', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '0f2a57f7-b75e-4b9a-8e06-a65c71eed6f7', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"create\",\"reason\":\"module_disabled\"}', '15596b55cb25296098bf60a305460f90956be14f09478e2992469659b4a75686', 'f2e4eb58ba7eb7ddc27241f67535862ee331af6f34c838a13a5537bd259cfde4', '2026-08-15 06:43:07'),
(700, 'bdad0654-69c5-4df3-90a4-1b29ce2d45a8', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, 'bdad0654-69c5-4df3-90a4-1b29ce2d45a8', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', 'f2e4eb58ba7eb7ddc27241f67535862ee331af6f34c838a13a5537bd259cfde4', '50e0fcddf4949187df450e7df8135063a8a139e6f509bc8f3cd9c3d111f684b1', '2026-08-15 06:48:52'),
(863, '1c9e2bdf-ee72-4667-bdb6-79e82c9d7d1e', 1, 'access_denied', 'denied', NULL, NULL, NULL, NULL, NULL, '1c9e2bdf-ee72-4667-bdb6-79e82c9d7d1e', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capability\":\"view\",\"reason\":\"module_disabled\"}', '50e0fcddf4949187df450e7df8135063a8a139e6f509bc8f3cd9c3d111f684b1', 'ccb1cecbdd41de86ae951761e60aa0f19e02f33d787ae80bf2cd01bc0fcb6212', '2026-08-15 07:18:08'),
(864, '12411d2b-1b79-43ca-bb78-bd206d54dd5e', 6, 'signature_register', 'success', NULL, NULL, NULL, NULL, 6, '12411d2b-1b79-43ca-bb78-bd206d54dd5e', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"auth_method\":\"password\",\"checksum_sha256\":\"9cf6793740d9b53764b0393e1db65f3e33440408ba1a72455c0d5e9712640779\",\"storage_attachment_id\":2699,\"version_no\":1}', 'ccb1cecbdd41de86ae951761e60aa0f19e02f33d787ae80bf2cd01bc0fcb6212', '8e0e056b2bb7362c7e2957840bb372a6a086e2581f6b9accf52eb66db76aec60', '2026-08-15 07:27:24'),
(865, '5ae5e690-c4cf-4161-bc5c-60cb253fd73f', 1, 'draft_created', 'success', 102, 111, NULL, NULL, NULL, '5ae5e690-c4cf-4161-bc5c-60cb253fd73f', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"content_sha256\":\"bf28d4f286e51b984fe0fddf6c7210ad3b72386d7cc2462b52c8e2907b00dab9\",\"link_count\":0,\"recipient_count\":3,\"row_version\":1,\"save_reason\":\"manual\"}', '8e0e056b2bb7362c7e2957840bb372a6a086e2581f6b9accf52eb66db76aec60', '523e0af5283e0ac598757a017e336ebf55da1eae39a7e2c011909a768c8928f6', '2026-08-15 07:27:25'),
(866, 'e770b98b-0895-44d2-8f9a-395396d467f1', 1, 'workflow_review_requested', 'success', 102, 111, NULL, NULL, 1, 'e770b98b-0895-44d2-8f9a-395396d467f1', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"due_at\":null,\"step_id\":150}', '523e0af5283e0ac598757a017e336ebf55da1eae39a7e2c011909a768c8928f6', 'ea0aa975d3002ea72b3cf150256b21e7507369fa3b354f0a196a9923d348e659', '2026-08-15 07:27:25'),
(867, '9599fe1d-c4db-446e-a4c2-490accdd34dc', 1, 'workflow_review_approved', 'success', 102, 111, NULL, NULL, 1, '9599fe1d-c4db-446e-a4c2-490accdd34dc', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"next_step_id\":151,\"note\":\"\",\"principal_user_id\":1}', 'ea0aa975d3002ea72b3cf150256b21e7507369fa3b354f0a196a9923d348e659', '0c87f0858ddc572bbc706eaa65b237e2467bdf4adc5b8f4cf72ade38428ac26f', '2026-08-15 07:27:25'),
(868, '2430a37f-2569-4713-9c71-82b5f8f4f09a', 1, 'workflow_approved', 'success', 102, 111, NULL, NULL, 1, '2430a37f-2569-4713-9c71-82b5f8f4f09a', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"note\":\"\",\"principal_user_id\":1}', '0c87f0858ddc572bbc706eaa65b237e2467bdf4adc5b8f4cf72ade38428ac26f', '463f95979031a46fbcdf5dee313e2d6e3599e21a9fbb81e4b33b878c51ec06ae', '2026-08-15 07:27:25'),
(869, '92facca2-e789-4a1c-87e1-0cf772830f2b', 1, 'workflow_registration_requested', 'success', 102, NULL, NULL, NULL, 1, '92facca2-e789-4a1c-87e1-0cf772830f2b', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"step_id\":152}', '463f95979031a46fbcdf5dee313e2d6e3599e21a9fbb81e4b33b878c51ec06ae', 'f01a90d1d0da44e54abf2bf21ae10979495112a5c4d85952727cef3255ac228c', '2026-08-15 07:27:25'),
(870, 'c142bc95-8210-4ff1-942a-58511e89dca1', 1, 'letter_registered', 'success', 102, 111, NULL, NULL, 1, 'c142bc95-8210-4ff1-942a-58511e89dca1', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"letter_no\":\"GNT-1405-000001\",\"principal_user_id\":1,\"sequence_id\":24,\"transaction_attempt\":1}', 'f01a90d1d0da44e54abf2bf21ae10979495112a5c4d85952727cef3255ac228c', '1a8e540ff764ba873b0e6627c6ed9edefcb4a8fcfcedd6726348fc5b3addf53e', '2026-08-15 07:27:25'),
(871, '335c7a73-9e5a-4eda-9ee2-45407b24c5a1', 1, 'workflow_signature_requested', 'success', 102, NULL, NULL, NULL, 6, '335c7a73-9e5a-4eda-9ee2-45407b24c5a1', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"step_id\":153}', '1a8e540ff764ba873b0e6627c6ed9edefcb4a8fcfcedd6726348fc5b3addf53e', 'cb6a39c009c38130630ee6d00e1ebebc4b02c3e79d10595ef5239b3bb4bc5362', '2026-08-15 07:27:25'),
(872, '1dfb0df5-d5c6-4e7d-9697-9a9d5aa16a10', 6, 'letter_final_pdf_created', 'success', 102, 111, NULL, NULL, 6, '1dfb0df5-d5c6-4e7d-9697-9a9d5aa16a10', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"blind_copy_count\":1,\"public_attachment_id\":74,\"public_sha256\":\"3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22\",\"public_storage_attachment_id\":2700,\"registry_attachment_id\":75,\"registry_sha256\":\"da73b4ad8f4b5b13f14565c07d59a4c75db43e6b1cc290436f8406ee4553d4c2\",\"renderer\":\"TCPDF 6.10.0\"}', 'cb6a39c009c38130630ee6d00e1ebebc4b02c3e79d10595ef5239b3bb4bc5362', 'a535dff9119576e109504ba7bb7643628b6e551f2aa57ddbfb3fafd4c688c118', '2026-08-15 07:27:25'),
(873, '69841c61-abe0-4acf-90a2-1fa693320a27', 6, 'letter_signed', 'success', 102, 111, NULL, NULL, 6, '69841c61-abe0-4acf-90a2-1fa693320a27', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"acceptance_path\":true,\"auth_method\":\"password\",\"final_pdf_sha256\":\"3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22\",\"signature_checksum\":\"9cf6793740d9b53764b0393e1db65f3e33440408ba1a72455c0d5e9712640779\",\"signature_id\":33}', 'a535dff9119576e109504ba7bb7643628b6e551f2aa57ddbfb3fafd4c688c118', '49c2b8bdeba3657f94ca502ac99c68911a2151dbb9b308f3cd89d1fbfbc764a0', '2026-08-15 07:27:25'),
(874, '7329d898-b12f-41e7-8ca9-d2f863597293', 1, 'letter_sent_final', 'success', 102, 111, NULL, NULL, NULL, '7329d898-b12f-41e7-8ca9-d2f863597293', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"final_pdf_sha256\":\"3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22\",\"letter_no\":\"GNT-1405-000001\",\"sms_copy_enabled\":0,\"sms_queued\":1}', '49c2b8bdeba3657f94ca502ac99c68911a2151dbb9b308f3cd89d1fbfbc764a0', 'dfa8b5a322677a71fc7c018388270a9faac89d9f791255b4d30e79be697e98a2', '2026-08-15 07:27:25'),
(875, '7742ba9d-d9d9-4b94-a3d3-469bc131025b', 6, 'letter_viewed_full', 'success', 102, 111, 140, NULL, 6, '7742ba9d-d9d9-4b94-a3d3-469bc131025b', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"session_fingerprint\":\"d8796e00b03e2a41\",\"session_id_sha256\":\"d8796e00b03e2a418eea2aeee09f9ad66428980d5eec6130c93738aaa7e8156a\"}', 'dfa8b5a322677a71fc7c018388270a9faac89d9f791255b4d30e79be697e98a2', 'e008aa135974ac17a55f0b2a4b338d48040ef29190098bf46d4caa326c342ca1', '2026-08-15 07:27:25'),
(876, '733e9293-eb32-4a85-a906-7f83e7159b16', 6, 'letter_receipt_acknowledged', 'success', 102, NULL, 140, NULL, 6, '733e9293-eb32-4a85-a906-7f83e7159b16', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '[]', 'e008aa135974ac17a55f0b2a4b338d48040ef29190098bf46d4caa326c342ca1', '3991f72ad18190a036ec0b8b8bdf4773bf8f5155ef9bb0ad0be69421d54afa85', '2026-08-15 07:27:25'),
(877, 'a2769b70-faa4-4c47-8d83-a636e6d40851', 1, 'draft_created', 'success', 103, 112, NULL, NULL, NULL, 'a2769b70-faa4-4c47-8d83-a636e6d40851', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"content_sha256\":\"704423af465b20a501252a631dc5f31b34134a1f4898f54f03df803a3ac75002\",\"link_count\":0,\"recipient_count\":3,\"row_version\":1,\"save_reason\":\"manual\"}', '3991f72ad18190a036ec0b8b8bdf4773bf8f5155ef9bb0ad0be69421d54afa85', '82d578332296ac0f7a77ac69409281072e6af76303fdf4e4257d675e9a7eb60d', '2026-08-15 07:27:25'),
(878, '0b6a1b65-12c2-44a5-9b48-6b87d4218fe5', 1, 'workflow_review_requested', 'success', 103, 112, NULL, NULL, 1, '0b6a1b65-12c2-44a5-9b48-6b87d4218fe5', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"due_at\":null,\"step_id\":155}', '82d578332296ac0f7a77ac69409281072e6af76303fdf4e4257d675e9a7eb60d', '6ae6b554b2ee4ab85ee295a09a7f7a8f2bd75dfdd353ac391dc6eea56b248e9c', '2026-08-15 07:27:25'),
(879, 'fbbc8593-da93-4325-b5af-e988f121c7e7', 1, 'workflow_review_approved', 'success', 103, 112, NULL, NULL, 1, 'fbbc8593-da93-4325-b5af-e988f121c7e7', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"next_step_id\":156,\"note\":\"\",\"principal_user_id\":1}', '6ae6b554b2ee4ab85ee295a09a7f7a8f2bd75dfdd353ac391dc6eea56b248e9c', 'c1941b6ebff99ac7726f956a8a976812606f74fa9e5d020fd74ef0fa9fa35a6c', '2026-08-15 07:27:26'),
(880, 'e0a0534a-0452-460b-9105-c79a535e762a', 1, 'workflow_approved', 'success', 103, 112, NULL, NULL, 1, 'e0a0534a-0452-460b-9105-c79a535e762a', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"note\":\"\",\"principal_user_id\":1}', 'c1941b6ebff99ac7726f956a8a976812606f74fa9e5d020fd74ef0fa9fa35a6c', 'cf5bd2e5e565b274428c2064d7ec25caa66426f41cb3f4db4a9ef6bc5415dae1', '2026-08-15 07:27:26'),
(881, '93b169f5-ab8a-4ae0-9d76-b49540a74eed', 1, 'workflow_registration_requested', 'success', 103, NULL, NULL, NULL, 1, '93b169f5-ab8a-4ae0-9d76-b49540a74eed', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"step_id\":157}', 'cf5bd2e5e565b274428c2064d7ec25caa66426f41cb3f4db4a9ef6bc5415dae1', '70666d90eaadd0d7584a747c1e7a23deb6fafbe814da37966b4cc2125bfdf88a', '2026-08-15 07:27:26'),
(882, '86fced0e-571d-4161-ac3b-8062db8000f5', 1, 'letter_registered', 'success', 103, 112, NULL, NULL, 1, '86fced0e-571d-4161-ac3b-8062db8000f5', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"delegated\":false,\"letter_no\":\"GNT-1405-000002\",\"principal_user_id\":1,\"sequence_id\":24,\"transaction_attempt\":1}', '70666d90eaadd0d7584a747c1e7a23deb6fafbe814da37966b4cc2125bfdf88a', '83a5ad71e7976903d5f2721cc2488824c17cfe0c4ec40e4cfa45cc3dd1c9a226', '2026-08-15 07:27:26'),
(883, '70822187-337e-4167-afc2-aaf4d91553b0', 1, 'workflow_signature_requested', 'success', 103, NULL, NULL, NULL, 6, '70822187-337e-4167-afc2-aaf4d91553b0', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"step_id\":158}', '83a5ad71e7976903d5f2721cc2488824c17cfe0c4ec40e4cfa45cc3dd1c9a226', '9ceaca0cac9c00b91a8d37b79050801b0c4840e8b2f320c2950cd01f75a05133', '2026-08-15 07:27:26'),
(884, 'beac2ed8-aa43-4e28-91ab-8912cbd63558', 6, 'letter_final_pdf_created', 'success', 103, 112, NULL, NULL, 6, 'beac2ed8-aa43-4e28-91ab-8912cbd63558', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"blind_copy_count\":1,\"public_attachment_id\":76,\"public_sha256\":\"3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef\",\"public_storage_attachment_id\":2702,\"registry_attachment_id\":77,\"registry_sha256\":\"b9708296490b6487bf83c2163880061dc69d11b74197ca3b1409fb78adfc462e\",\"renderer\":\"TCPDF 6.10.0\"}', '9ceaca0cac9c00b91a8d37b79050801b0c4840e8b2f320c2950cd01f75a05133', 'aaea5529f632568ce05f163ba118bfaf4f431b0897ace41d32660669d23ae82b', '2026-08-15 07:27:26'),
(885, '882ca028-1211-4e40-b85d-a17e72e2be87', 6, 'letter_signed', 'success', 103, 112, NULL, NULL, 6, '882ca028-1211-4e40-b85d-a17e72e2be87', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"acceptance_path\":true,\"auth_method\":\"password\",\"final_pdf_sha256\":\"3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef\",\"signature_checksum\":\"9cf6793740d9b53764b0393e1db65f3e33440408ba1a72455c0d5e9712640779\",\"signature_id\":33}', 'aaea5529f632568ce05f163ba118bfaf4f431b0897ace41d32660669d23ae82b', 'e41795bc692e5026e61d03a2a41af01a7770092b9e48c73ca477d977b2c5e22d', '2026-08-15 07:27:26'),
(886, '21d3e397-bfc3-4877-ae61-528c30f9b805', 1, 'letter_sent_final', 'success', 103, 112, NULL, NULL, NULL, '21d3e397-bfc3-4877-ae61-528c30f9b805', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"final_pdf_sha256\":\"3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef\",\"letter_no\":\"GNT-1405-000002\",\"sms_copy_enabled\":0,\"sms_queued\":0}', 'e41795bc692e5026e61d03a2a41af01a7770092b9e48c73ca477d977b2c5e22d', 'cc76808a2c8afe8c906c2ec90d93555de69265519c5256ca13c94310b9ac87bb', '2026-08-15 07:27:26'),
(887, '3f1f6465-3067-4d03-b594-ddbf49aad400', 1, 'draft_created', 'success', 104, 113, NULL, NULL, NULL, '3f1f6465-3067-4d03-b594-ddbf49aad400', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"content_sha256\":\"0925bd121aaf1efc78122dccbf38c8b344267a4f7123557dd77630058d91977e\",\"link_count\":0,\"recipient_count\":1,\"row_version\":1,\"save_reason\":\"manual\"}', 'cc76808a2c8afe8c906c2ec90d93555de69265519c5256ca13c94310b9ac87bb', '51c1f6c7b6157f1afa943c352a175c988b76dfb6a2d88895a22b5fddb02fbc59', '2026-08-15 07:27:26'),
(888, '4827d6fe-6aa9-49f5-9490-8df76de1ffab', 1, 'draft_attachment_uploaded', 'success', 104, 113, NULL, NULL, NULL, '4827d6fe-6aa9-49f5-9490-8df76de1ffab', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"checksum_sha256\":\"d850c79103b2fb0dffc3b1512e0bae1e5e5acd17a6d2a05248f5c774ea64ddf8\",\"display_name\":\"پیوست-آزمایشی-گویانگار.txt\",\"mime_type\":\"text/plain\",\"size_bytes\":80,\"visibility\":\"all_recipients\"}', '51c1f6c7b6157f1afa943c352a175c988b76dfb6a2d88895a22b5fddb02fbc59', '5765b51e56e0159c687751d75098234cc2c3518a2facb94236090a89f502dfff', '2026-08-15 07:27:27'),
(889, '6f783294-3e6a-4bda-a74a-e30cd8debf0f', 1, 'letter_viewed_full', 'success', 102, 111, NULL, NULL, 1, '6f783294-3e6a-4bda-a74a-e30cd8debf0f', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"session_fingerprint\":\"0cd5592725ff7e80\",\"session_id_sha256\":\"0cd5592725ff7e8024248685bc0635a82da118cbd704d9da7e130dc453bef1e8\"}', '5765b51e56e0159c687751d75098234cc2c3518a2facb94236090a89f502dfff', '374ebc715d39089825f844aed1ec5c196ad62c351462edfceb7c0c3fb06b3b4e', '2026-08-15 07:33:26'),
(890, '4164449a-55ce-46b9-96b8-b7426723908c', 1, 'letter_viewed_full', 'success', 103, 112, NULL, NULL, 1, '4164449a-55ce-46b9-96b8-b7426723908c', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"session_fingerprint\":\"0cd5592725ff7e80\",\"session_id_sha256\":\"0cd5592725ff7e8024248685bc0635a82da118cbd704d9da7e130dc453bef1e8\"}', '374ebc715d39089825f844aed1ec5c196ad62c351462edfceb7c0c3fb06b3b4e', 'ba24076669d4fe67932cc84e980b6574e540df9ac23636f639693f4e90cb99a1', '2026-08-15 07:33:31'),
(891, '35a4e7d8-435d-46d2-8fd5-177f395145a0', 1, 'letter_pdf_accessed', 'success', 103, 112, NULL, NULL, 1, '35a4e7d8-435d-46d2-8fd5-177f395145a0', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"sha256\":\"3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef\",\"variant\":\"official\"}', 'ba24076669d4fe67932cc84e980b6574e540df9ac23636f639693f4e90cb99a1', '54be6f1a91f84ca5cc4f65a8e018617456437dc8d423e539b3118ad3e312e5be', '2026-08-15 07:33:50'),
(892, 'd8825b10-a7d4-49cd-9565-307f555812ba', 1, 'letter_viewed_full', 'success', 102, 111, NULL, NULL, 1, 'd8825b10-a7d4-49cd-9565-307f555812ba', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"session_fingerprint\":\"0cd5592725ff7e80\",\"session_id_sha256\":\"0cd5592725ff7e8024248685bc0635a82da118cbd704d9da7e130dc453bef1e8\"}', '54be6f1a91f84ca5cc4f65a8e018617456437dc8d423e539b3118ad3e312e5be', 'def7fdc549666d38372f28f5fd5b1213a5cb92cbbf4ad06d595cb6b09f334acf', '2026-08-15 07:34:32'),
(893, '460f4e40-0cde-434b-8fb9-d1d221f952d5', 1, 'letter_viewed_full', 'success', 102, 111, NULL, NULL, 1, '460f4e40-0cde-434b-8fb9-d1d221f952d5', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"session_fingerprint\":\"0cd5592725ff7e80\",\"session_id_sha256\":\"0cd5592725ff7e8024248685bc0635a82da118cbd704d9da7e130dc453bef1e8\"}', 'def7fdc549666d38372f28f5fd5b1213a5cb92cbbf4ad06d595cb6b09f334acf', '0166c027b9ace4a58634d6dbe1aa443ac2056883801f4c342333e8facfecb98c', '2026-08-15 07:34:48'),
(894, 'edabd0de-d04d-4a9f-b42c-68215fcfbe9d', 1, 'letter_pdf_accessed', 'success', 102, 111, NULL, NULL, 1, 'edabd0de-d04d-4a9f-b42c-68215fcfbe9d', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"sha256\":\"3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22\",\"variant\":\"official\"}', '0166c027b9ace4a58634d6dbe1aa443ac2056883801f4c342333e8facfecb98c', 'f0acd0e288ffd1ffe23ca3471ccc172e04099a9b804be878f1541df53fea782f', '2026-08-15 07:35:16'),
(895, 'a99dbf5b-bc00-47e6-b9ae-3381a3805290', 1, 'admin_enable_user', 'success', NULL, NULL, NULL, NULL, 1, 'a99dbf5b-bc00-47e6-b9ae-3381a3805290', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"capabilities\":{\"can_approve\":1,\"can_create\":1,\"can_export\":1,\"can_manage_archive\":1,\"can_manage_templates\":1,\"can_manage_users\":1,\"can_purge\":0,\"can_register\":1,\"can_send\":1,\"can_sign\":1,\"can_use_ai\":0,\"can_view_audit\":1,\"can_view_confidential\":1},\"max_file_size_mb\":0,\"role\":\"admin\",\"scope\":\"all\"}', 'f0acd0e288ffd1ffe23ca3471ccc172e04099a9b804be878f1541df53fea782f', '53075dbf979064584cd363f413ea22a5b5f5c66990e6a8a749ca29999ab20778', '2026-08-15 07:37:19'),
(896, '3c5b4977-91c4-4617-820a-e8346d89acbc', 1, 'letter_pdf_accessed', 'success', 102, 111, NULL, NULL, 1, '3c5b4977-91c4-4617-820a-e8346d89acbc', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"sha256\":\"3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22\",\"variant\":\"official\"}', '53075dbf979064584cd363f413ea22a5b5f5c66990e6a8a749ca29999ab20778', '0c69729e4ff0cdd6f02ae9def2ca1d3808b22c7915a7c1ea44b574f69486f0ab', '2026-08-15 07:37:28'),
(922, 'cfaa7120-a305-4d30-b876-90173a1471ad', NULL, 'sms_sent', 'success', 102, NULL, 140, NULL, 6, 'cfaa7120-a305-4d30-b876-90173a1471ad', '', '1b58e7c73ad6e179d8dc924dcec823f8ff4ec0cb80c7453bfcb5a045301515db', '{\"attempt\":1,\"provider_message_id_sha256\":\"75c90caa7fed24b8358206d5ca430bb5a020c0e38b2759eaf1d20843bd73979b\"}', '0c69729e4ff0cdd6f02ae9def2ca1d3808b22c7915a7c1ea44b574f69486f0ab', '95e9eda7150f6ba3f6c26ab13acf241f4294fd97497a32cd0da1f1348468db0d', '2026-08-15 09:54:38'),
(930, '0af6ae82-e1dc-4d0e-ac0f-890ee9cb8e59', 1, 'letter_viewed_full', 'success', 103, 112, NULL, NULL, 1, '0af6ae82-e1dc-4d0e-ac0f-890ee9cb8e59', '::1', '6235d36597d64fc0e0c3883911a8fb2f9451d0254ab3379d980f5a3426585d87', '{\"session_fingerprint\":\"0cd5592725ff7e80\",\"session_id_sha256\":\"0cd5592725ff7e8024248685bc0635a82da118cbd704d9da7e130dc453bef1e8\"}', '95e9eda7150f6ba3f6c26ab13acf241f4294fd97497a32cd0da1f1348468db0d', '55960a471f4514e63f62e4ae29c41c2883acae37abf1c20ac685abb3a44c954a', '2026-08-15 10:12:33'),
(937, 'ea9d229f-ee3c-45ca-9806-de3e78acd3b6', 1, 'identity_password_verify', 'success', NULL, NULL, NULL, NULL, NULL, 'ea9d229f-ee3c-45ca-9806-de3e78acd3b6', '::1', '40956f08f6c9af83802ecd226385c678a06f995e8a19f59cd575a9a4c6acc287', '{\"purpose\":\"manage_signature\"}', '55960a471f4514e63f62e4ae29c41c2883acae37abf1c20ac685abb3a44c954a', 'a3e798fb7c4bd1842c1ddb44058343d701693320fccec90bae2dc8f4ac3132f3', '2026-08-17 10:39:36'),
(938, '6d4003d9-d9bc-4935-98b9-6da24630780f', 1, 'signature_register', 'success', NULL, NULL, NULL, NULL, 1, '6d4003d9-d9bc-4935-98b9-6da24630780f', '::1', '40956f08f6c9af83802ecd226385c678a06f995e8a19f59cd575a9a4c6acc287', '{\"auth_method\":\"password\",\"checksum_sha256\":\"c0d3d67c84871e19ea43668806c39fa6c80f5db5d602f0388704fb51ff97626a\",\"storage_attachment_id\":2716,\"version_no\":1}', 'a3e798fb7c4bd1842c1ddb44058343d701693320fccec90bae2dc8f4ac3132f3', '2708fefc69bd40fc55f91841f3020805396a1ac64f2bacfa72edee0be81bbdf4', '2026-08-17 10:39:37');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_letters`
--

DROP TABLE IF EXISTS `gooyaacc_negar_letters`;
CREATE TABLE `gooyaacc_negar_letters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `public_uuid` char(36) NOT NULL,
  `direction` enum('internal','incoming','outgoing') NOT NULL DEFAULT 'internal',
  `status` enum('draft','pending_review','changes_requested','pending_approval','approved','rejected','pending_registration','registered','pending_signature','signed','sent','closed','archived','cancelled') NOT NULL DEFAULT 'draft',
  `confidentiality` enum('normal','confidential','secret') NOT NULL DEFAULT 'normal',
  `priority` enum('normal','urgent','immediate') NOT NULL DEFAULT 'normal',
  `org_unit_id` int(11) DEFAULT NULL,
  `sender_user_id` int(11) NOT NULL,
  `sender_name_snapshot` varchar(220) NOT NULL,
  `sender_title_snapshot` varchar(180) DEFAULT NULL,
  `subject` varchar(500) NOT NULL,
  `sequence_id` bigint(20) UNSIGNED DEFAULT NULL,
  `letter_year` smallint(5) UNSIGNED DEFAULT NULL,
  `letter_no` varchar(100) DEFAULT NULL,
  `registered_at` datetime DEFAULT NULL,
  `current_version_id` bigint(20) UNSIGNED DEFAULT NULL,
  `final_pdf_attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `final_pdf_sha256` char(64) DEFAULT NULL,
  `requires_ack` tinyint(1) NOT NULL DEFAULT 0,
  `due_at` datetime DEFAULT NULL,
  `signed_at` datetime DEFAULT NULL,
  `sent_at` datetime DEFAULT NULL,
  `closed_at` datetime DEFAULT NULL,
  `archived_at` datetime DEFAULT NULL,
  `legal_hold` tinyint(1) NOT NULL DEFAULT 0,
  `draft_deleted_at` datetime DEFAULT NULL,
  `cancelled_by` int(11) DEFAULT NULL,
  `cancelled_at` datetime DEFAULT NULL,
  `cancellation_reason` varchar(1000) DEFAULT NULL,
  `row_version` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  `sender_starred` tinyint(1) NOT NULL DEFAULT 0,
  `sender_personal_archived_at` datetime DEFAULT NULL,
  `sender_follow_up_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_letters`
--

INSERT IGNORE INTO `gooyaacc_negar_letters` (`id`, `public_uuid`, `direction`, `status`, `confidentiality`, `priority`, `org_unit_id`, `sender_user_id`, `sender_name_snapshot`, `sender_title_snapshot`, `subject`, `sequence_id`, `letter_year`, `letter_no`, `registered_at`, `current_version_id`, `final_pdf_attachment_id`, `final_pdf_sha256`, `requires_ack`, `due_at`, `signed_at`, `sent_at`, `closed_at`, `archived_at`, `legal_hold`, `draft_deleted_at`, `cancelled_by`, `cancelled_at`, `cancellation_reason`, `row_version`, `created_by`, `created_at`, `updated_at`, `sender_starred`, `sender_personal_archived_at`, `sender_follow_up_at`) VALUES
(102, '960cb303-bbd7-4575-a381-4a66f2c854f4', 'internal', 'sent', 'normal', 'urgent', 2, 1, 'حسین فغان پور', '', '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] نامه رسمی امضاشده و مشاهده‌شده', 24, 1405, 'GNT-1405-000001', '2026-08-15 10:57:25', 111, 2700, '3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22', 1, NULL, '2026-08-15 10:57:25', '2026-08-15 10:57:25', NULL, NULL, 0, NULL, NULL, NULL, NULL, 6, 1, '2026-08-15 10:57:24', '2026-08-15 10:57:25', 0, NULL, NULL),
(103, 'ca18d983-8673-463c-a5b6-93e72591c416', 'internal', 'sent', 'confidential', 'normal', 2, 1, 'حسین فغان پور', '', '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] نامه خوانده‌نشده با رونوشت', 24, 1405, 'GNT-1405-000002', '2026-08-15 10:57:26', 112, 2702, '3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef', 0, NULL, '2026-08-15 10:57:26', '2026-08-15 10:57:26', NULL, NULL, 0, NULL, NULL, NULL, NULL, 6, 1, '2026-08-15 10:57:25', '2026-08-15 10:57:26', 0, NULL, NULL),
(104, '2df4eecb-6174-4f03-bf74-4ba20dcaf50b', 'internal', 'draft', 'normal', 'normal', 2, 1, 'حسین فغان پور', '', '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] پیش‌نویس دارای پیوست', NULL, NULL, NULL, NULL, 113, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 1, 1, '2026-08-15 10:57:26', '2026-08-15 10:57:26', 0, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_letter_versions`
--

DROP TABLE IF EXISTS `gooyaacc_negar_letter_versions`;
CREATE TABLE `gooyaacc_negar_letter_versions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED NOT NULL,
  `version_no` int(10) UNSIGNED NOT NULL,
  `subject` varchar(500) NOT NULL,
  `summary` text DEFAULT NULL,
  `greeting` varchar(500) DEFAULT NULL,
  `body_html` longtext NOT NULL,
  `body_text` longtext NOT NULL,
  `closing_text` varchar(500) DEFAULT NULL,
  `content_sha256` char(64) NOT NULL,
  `change_reason` varchar(1000) DEFAULT NULL,
  `is_final` tinyint(1) NOT NULL DEFAULT 0,
  `immutable_at` datetime DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_letter_versions`
--

INSERT IGNORE INTO `gooyaacc_negar_letter_versions` (`id`, `letter_id`, `version_no`, `subject`, `summary`, `greeting`, `body_html`, `body_text`, `closing_text`, `content_sha256`, `change_reason`, `is_final`, `immutable_at`, `created_by`, `created_at`) VALUES
(111, 102, 1, '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] نامه رسمی امضاشده و مشاهده‌شده', '', '', 'با سلام و احترام<br />\n<br />\nاین نامه برای آزمون عملی چرخه کامل مکاتبات سازمانی گویانگار ایجاد شده است. لطفاً دریافت، مشاهده و وضعیت پیگیری آن بررسی شود.<br />\n<br />\nبا احترام', 'با سلام و احترام\n\nاین نامه برای آزمون عملی چرخه کامل مکاتبات سازمانی گویانگار ایجاد شده است. لطفاً دریافت، مشاهده و وضعیت پیگیری آن بررسی شود.\n\nبا احترام', '', 'bf28d4f286e51b984fe0fddf6c7210ad3b72386d7cc2462b52c8e2907b00dab9', 'manual', 1, '2026-08-15 10:57:25', 1, '2026-08-15 10:57:24'),
(112, 103, 1, '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] نامه خوانده‌نشده با رونوشت', '', '', 'با سلام<br />\n<br />\nاین نامه برای بررسی صندوق ورودی، رونوشت دریافتی و وضعیت خوانده‌نشده ایجاد شده است.<br />\n<br />\nبا احترام', 'با سلام\n\nاین نامه برای بررسی صندوق ورودی، رونوشت دریافتی و وضعیت خوانده‌نشده ایجاد شده است.\n\nبا احترام', '', '704423af465b20a501252a631dc5f31b34134a1f4898f54f03df803a3ac75002', 'manual', 1, '2026-08-15 10:57:25', 1, '2026-08-15 10:57:25'),
(113, 104, 1, '[آزمون عملی گویانگار ۱۴۰۵/۰۵/۲۴] پیش‌نویس دارای پیوست', '', '', 'این پیش‌نویس برای آزمون ویرایش خودکار، Drag &amp; Drop و پیوست متمرکز نگهداری شده است.', 'این پیش‌نویس برای آزمون ویرایش خودکار، Drag & Drop و پیوست متمرکز نگهداری شده است.', '', '0925bd121aaf1efc78122dccbf38c8b344267a4f7123557dd77630058d91977e', 'manual', 0, NULL, 1, '2026-08-15 10:57:26');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_links`
--

DROP TABLE IF EXISTS `gooyaacc_negar_links`;
CREATE TABLE `gooyaacc_negar_links` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED NOT NULL,
  `link_type` enum('reply_to','parent_letter','related_letter','crm_record') NOT NULL,
  `related_letter_id` bigint(20) UNSIGNED DEFAULT NULL,
  `crm_module` varchar(80) DEFAULT NULL,
  `crm_record_id` varchar(100) DEFAULT NULL,
  `label_snapshot` varchar(255) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_org_members`
--

DROP TABLE IF EXISTS `gooyaacc_negar_org_members`;
CREATE TABLE `gooyaacc_negar_org_members` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `org_unit_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `member_role` enum('member','manager','secretary') NOT NULL DEFAULT 'member',
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `valid_from` datetime DEFAULT NULL,
  `valid_until` datetime DEFAULT NULL,
  `synced_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_org_members`
--

INSERT IGNORE INTO `gooyaacc_negar_org_members` (`id`, `org_unit_id`, `user_id`, `member_role`, `is_primary`, `is_active`, `valid_from`, `valid_until`, `synced_at`) VALUES
(1, 2, 1, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(2, 2, 5, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(3, 3, 4, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(4, 3, 8, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(5, 3, 13, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(6, 3, 14, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(7, 3, 17, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(8, 3, 18, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(9, 3, 19, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(10, 3, 20, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(11, 5, 7, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(12, 5, 9, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(13, 5, 10, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(14, 5, 12, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(15, 5, 16, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(16, 5, 24, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(17, 5, 25, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(18, 5, 26, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(19, 6, 2, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(20, 6, 3, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(21, 6, 6, 'member', 1, 0, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(22, 6, 11, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(23, 6, 15, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(24, 6, 21, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(25, 6, 22, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(26, 6, 23, 'member', 1, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(27, 10, 1, 'member', 0, 1, '2026-08-11 13:43:04', NULL, '2026-08-25 09:48:21'),
(279, 4, 2, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21'),
(280, 4, 6, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21'),
(293, 7, 5, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21'),
(294, 8, 3, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21'),
(295, 8, 4, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21'),
(296, 8, 7, 'member', 1, 1, '2026-08-25 09:45:26', NULL, '2026-08-25 09:48:21');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_org_units`
--

DROP TABLE IF EXISTS `gooyaacc_negar_org_units`;
CREATE TABLE `gooyaacc_negar_org_units` (
  `id` int(11) NOT NULL,
  `external_key` varchar(100) NOT NULL,
  `source_kind` enum('crm_role','crm_group','manual') NOT NULL DEFAULT 'manual',
  `parent_id` int(11) DEFAULT NULL,
  `unit_code` varchar(50) DEFAULT NULL,
  `unit_name` varchar(180) NOT NULL,
  `manager_user_id` int(11) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `synced_at` datetime DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_org_units`
--

INSERT IGNORE INTO `gooyaacc_negar_org_units` (`id`, `external_key`, `source_kind`, `parent_id`, `unit_code`, `unit_name`, `manager_user_id`, `is_active`, `synced_at`, `created_at`, `updated_at`) VALUES
(1, 'role:H1', 'crm_role', NULL, 'H1', 'Organization', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(2, 'role:H2', 'crm_role', 1, 'H2', 'مدیرعامل', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(3, 'role:H29', 'crm_role', 1, 'H29', 'آزمون گویا - مجاز - 20260801-073004', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(4, 'role:H3', 'crm_role', 2, 'H3', 'مدیر پروژه', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(5, 'role:H30', 'crm_role', 1, 'H30', 'آزمون گویا - ارث‌بری - 20260801-073004', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(6, 'role:H31', 'crm_role', 1, 'H31', 'آزمون گویا - محدود - 20260801-073004', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(7, 'role:H4', 'crm_role', 2, 'H4', 'سرپرست و مدیر دفتر', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(8, 'role:H5', 'crm_role', 2, 'H5', 'کارشناس', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(9, 'group:2', 'crm_group', NULL, '2', 'Team Selling', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(10, 'group:3', 'crm_group', NULL, '3', 'Marketing Group', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21'),
(11, 'group:4', 'crm_group', NULL, '4', 'Support Group', NULL, 1, '2026-08-25 09:48:21', '2026-08-11 13:43:04', '2026-08-25 09:48:21');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_recipients`
--

DROP TABLE IF EXISTS `gooyaacc_negar_recipients`;
CREATE TABLE `gooyaacc_negar_recipients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED NOT NULL,
  `recipient_user_id` int(11) NOT NULL,
  `selected_org_unit_id` int(11) DEFAULT NULL,
  `recipient_type` enum('primary','copy','blind_copy') NOT NULL DEFAULT 'primary',
  `recipient_name_snapshot` varchar(220) NOT NULL,
  `recipient_title_snapshot` varchar(180) DEFAULT NULL,
  `copy_purpose` enum('none','information','action','review','archive','custom') NOT NULL DEFAULT 'none',
  `purpose_text` varchar(500) DEFAULT NULL,
  `delivery_status` enum('pending','queued','sent','failed','cancelled') NOT NULL DEFAULT 'pending',
  `delivered_at` datetime DEFAULT NULL,
  `first_opened_at` datetime DEFAULT NULL,
  `last_opened_at` datetime DEFAULT NULL,
  `open_count` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `acknowledged_at` datetime DEFAULT NULL,
  `sms_status` enum('not_required','pending','sending','sent','delivered','failed') NOT NULL DEFAULT 'not_required',
  `sms_attempts` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
  `sms_last_attempt_at` datetime DEFAULT NULL,
  `sms_next_attempt_at` datetime DEFAULT NULL,
  `sms_sent_at` datetime DEFAULT NULL,
  `sms_delivered_at` datetime DEFAULT NULL,
  `sms_provider_message_id` varchar(150) DEFAULT NULL,
  `sms_last_error` varchar(500) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT 0,
  `personal_archived_at` datetime DEFAULT NULL,
  `follow_up_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_recipients`
--

INSERT IGNORE INTO `gooyaacc_negar_recipients` (`id`, `letter_id`, `recipient_user_id`, `selected_org_unit_id`, `recipient_type`, `recipient_name_snapshot`, `recipient_title_snapshot`, `copy_purpose`, `purpose_text`, `delivery_status`, `delivered_at`, `first_opened_at`, `last_opened_at`, `open_count`, `acknowledged_at`, `sms_status`, `sms_attempts`, `sms_last_attempt_at`, `sms_next_attempt_at`, `sms_sent_at`, `sms_delivered_at`, `sms_provider_message_id`, `sms_last_error`, `created_at`, `is_starred`, `personal_archived_at`, `follow_up_at`) VALUES
(140, 102, 6, NULL, 'primary', 'رضا محمدیان', '', 'none', '', 'sent', '2026-08-15 10:57:25', '2026-08-15 10:57:25', '2026-08-15 10:57:25', 1, '2026-08-15 10:57:25', 'sent', 1, '2026-08-15 13:24:37', NULL, '2026-08-15 13:24:38', NULL, '27535007', NULL, '2026-08-15 10:57:24', 0, NULL, NULL),
(141, 102, 7, NULL, 'copy', 'علی کریمی', '', 'information', '', 'sent', '2026-08-15 10:57:25', NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:25', 0, NULL, NULL),
(142, 102, 8, NULL, 'blind_copy', 'نیما قاسمی', '', 'archive', '', 'sent', '2026-08-15 10:57:25', NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:25', 0, NULL, NULL),
(143, 103, 7, NULL, 'primary', 'علی کریمی', '', 'none', '', 'sent', '2026-08-15 10:57:26', NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:25', 0, NULL, NULL),
(144, 103, 6, NULL, 'copy', 'رضا محمدیان', '', 'action', '', 'sent', '2026-08-15 10:57:26', NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:25', 0, NULL, NULL),
(145, 103, 8, NULL, 'blind_copy', 'نیما قاسمی', '', 'review', '', 'sent', '2026-08-15 10:57:26', NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:25', 0, NULL, NULL),
(146, 104, 6, NULL, 'primary', 'رضا محمدیان', '', 'none', '', 'pending', NULL, NULL, NULL, 0, NULL, 'not_required', 0, NULL, NULL, NULL, NULL, NULL, NULL, '2026-08-15 10:57:26', 0, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_referrals`
--

DROP TABLE IF EXISTS `gooyaacc_negar_referrals`;
CREATE TABLE `gooyaacc_negar_referrals` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED NOT NULL,
  `parent_referral_id` bigint(20) UNSIGNED DEFAULT NULL,
  `from_user_id` int(11) NOT NULL,
  `to_user_id` int(11) DEFAULT NULL,
  `to_org_unit_id` int(11) DEFAULT NULL,
  `instruction_text` text NOT NULL,
  `priority` enum('normal','urgent','immediate') NOT NULL DEFAULT 'normal',
  `referral_status` enum('new','opened','in_progress','completed','returned','cancelled') NOT NULL DEFAULT 'new',
  `due_at` datetime DEFAULT NULL,
  `first_opened_at` datetime DEFAULT NULL,
  `last_opened_at` datetime DEFAULT NULL,
  `result_text` text DEFAULT NULL,
  `completed_by` int(11) DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT 0,
  `personal_archived_at` datetime DEFAULT NULL,
  `follow_up_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_sequences`
--

DROP TABLE IF EXISTS `gooyaacc_negar_sequences`;
CREATE TABLE `gooyaacc_negar_sequences` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `org_unit_id` int(11) NOT NULL DEFAULT 0,
  `calendar_year` smallint(5) UNSIGNED NOT NULL,
  `direction` enum('internal','incoming','outgoing') NOT NULL,
  `prefix` varchar(40) NOT NULL DEFAULT '',
  `number_pattern` varchar(120) NOT NULL DEFAULT '{prefix}-{year}-{number}',
  `current_no` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `lock_version` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_sequences`
--

INSERT IGNORE INTO `gooyaacc_negar_sequences` (`id`, `org_unit_id`, `calendar_year`, `direction`, `prefix`, `number_pattern`, `current_no`, `lock_version`, `is_active`, `updated_by`, `updated_at`) VALUES
(24, 2, 1405, 'internal', 'GNT', '{prefix}-{year}-{number}', 2, 2, 1, NULL, '2026-08-15 10:57:26');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_settings`
--

DROP TABLE IF EXISTS `gooyaacc_negar_settings`;
CREATE TABLE `gooyaacc_negar_settings` (
  `skey` varchar(80) NOT NULL,
  `svalue` text DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_settings`
--

INSERT IGNORE INTO `gooyaacc_negar_settings` (`skey`, `svalue`, `updated_by`, `updated_at`) VALUES
('ai_enabled', '0', 0, '2026-08-11 13:43:03'),
('allowed_extensions', 'pdf,doc,docx,xls,xlsx,ppt,pptx,jpg,jpeg,png,webp,txt', 0, '2026-08-11 13:43:03'),
('archive_cloud_folder_name', 'آرشیو گویانگار', 0, '2026-08-11 13:43:03'),
('archive_cloud_public_links', '0', 0, '2026-08-11 13:43:03'),
('archive_enabled', '0', 0, '2026-08-11 13:43:03'),
('archive_to_gooya_cloud', '1', 0, '2026-08-11 13:43:03'),
('backup_enabled', '0', 0, '2026-08-11 13:43:03'),
('default_retention_months', '12', 0, '2026-08-11 13:43:03'),
('max_file_size_bytes', '20971520', 0, '2026-08-11 13:43:03'),
('module_enabled', '1', 1, '2026-08-15 10:57:24'),
('purge_enabled', '0', 0, '2026-08-11 13:43:03'),
('schema_version', '1.0-contract', 0, '2026-08-11 13:43:03'),
('signed_url_ttl_seconds', '180', 0, '2026-08-11 13:43:03'),
('sms_confidential_content', '0', 0, '2026-08-11 13:43:03'),
('sms_confidential_template', 'شما از طرف «{sender}» یک نامه سازمانی محرمانه جدید در سامانه گویا دارید. شماره نامه: {number}', 1, '2026-08-13 13:24:51'),
('sms_copy_enabled', '0', 1, '2026-08-15 10:57:24'),
('sms_letter_template', 'شما از طرف «{sender}» یک نامه سازمانی جدید در سامانه گویا دارید. شماره نامه: {number}', 1, '2026-08-13 13:24:51'),
('sms_max_attempts', '3', 1, '2026-08-13 13:24:51'),
('sms_notifications_enabled', '1', 1, '2026-08-15 10:57:26'),
('sms_retry_minutes', '5', 1, '2026-08-13 13:24:51'),
('storage_gateway', 'GooyaStorage', 0, '2026-08-11 13:43:03'),
('storage_source_module', 'GooyaNegar', 0, '2026-08-11 13:43:03'),
('supported_directions', 'internal,incoming,outgoing', 0, '2026-08-11 13:43:03'),
('user_sync_ttl_minutes', '60', 0, '2026-08-11 13:43:03');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_signatures`
--

DROP TABLE IF EXISTS `gooyaacc_negar_signatures`;
CREATE TABLE `gooyaacc_negar_signatures` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `version_no` int(10) UNSIGNED NOT NULL,
  `storage_attachment_id` bigint(20) UNSIGNED NOT NULL,
  `mime_type` varchar(100) NOT NULL DEFAULT 'image/png',
  `size_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `checksum_sha256` char(64) NOT NULL,
  `canvas_width` int(10) UNSIGNED DEFAULT NULL,
  `canvas_height` int(10) UNSIGNED DEFAULT NULL,
  `signature_status` enum('active','replaced','revoked') NOT NULL DEFAULT 'active',
  `registered_auth` enum('password','otp','password_otp') NOT NULL,
  `verified_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `replaced_at` datetime DEFAULT NULL,
  `revoked_by` int(11) DEFAULT NULL,
  `revoked_at` datetime DEFAULT NULL,
  `revoke_reason` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_signatures`
--

INSERT IGNORE INTO `gooyaacc_negar_signatures` (`id`, `user_id`, `version_no`, `storage_attachment_id`, `mime_type`, `size_bytes`, `checksum_sha256`, `canvas_width`, `canvas_height`, `signature_status`, `registered_auth`, `verified_at`, `created_at`, `replaced_at`, `revoked_by`, `revoked_at`, `revoke_reason`) VALUES
(33, 6, 1, 2699, 'image/png', 1701, '9cf6793740d9b53764b0393e1db65f3e33440408ba1a72455c0d5e9712640779', 520, 210, 'active', 'password', '2026-08-15 10:57:24', '2026-08-15 10:57:24', NULL, NULL, NULL, NULL),
(39, 1, 1, 2716, 'image/png', 13101, 'c0d3d67c84871e19ea43668806c39fa6c80f5db5d602f0388704fb51ff97626a', 828, 306, 'active', 'password', '2026-08-17 14:09:37', '2026-08-17 14:09:37', NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_templates`
--

DROP TABLE IF EXISTS `gooyaacc_negar_templates`;
CREATE TABLE `gooyaacc_negar_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `template_code` varchar(80) NOT NULL,
  `template_name` varchar(180) NOT NULL,
  `org_unit_id` int(11) DEFAULT NULL,
  `direction` enum('internal','incoming','outgoing','any') NOT NULL DEFAULT 'any',
  `template_type` enum('body','letterhead','full') NOT NULL DEFAULT 'full',
  `header_html` mediumtext DEFAULT NULL,
  `body_html` longtext DEFAULT NULL,
  `footer_html` mediumtext DEFAULT NULL,
  `print_css` mediumtext DEFAULT NULL,
  `letterhead_storage_attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `version_no` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_users`
--

DROP TABLE IF EXISTS `gooyaacc_negar_users`;
CREATE TABLE `gooyaacc_negar_users` (
  `user_id` int(11) NOT NULL,
  `user_name` varchar(100) DEFAULT NULL,
  `first_name` varchar(100) DEFAULT NULL,
  `last_name` varchar(100) DEFAULT NULL,
  `full_name` varchar(220) DEFAULT NULL,
  `email` varchar(180) DEFAULT NULL,
  `mobile` varchar(40) DEFAULT NULL,
  `job_title` varchar(180) DEFAULT NULL,
  `is_crm_admin` tinyint(1) NOT NULL DEFAULT 0,
  `crm_status` varchar(25) DEFAULT NULL,
  `crm_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `synced_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_users`
--

INSERT IGNORE INTO `gooyaacc_negar_users` (`user_id`, `user_name`, `first_name`, `last_name`, `full_name`, `email`, `mobile`, `job_title`, `is_crm_admin`, `crm_status`, `crm_deleted`, `synced_at`) VALUES
(1, 'admin', 'فرهاد', 'داداشی', 'فرهاد داداشی', '', '09111007370', 'مدیرعامل', 1, 'Active', 0, '2026-08-25 09:48:21'),
(2, 'ali', 'خانم', 'حسنی', 'خانم حسنی', '', '', 'مدیر پروژه', 0, 'Active', 0, '2026-08-25 09:48:21'),
(3, 'sara', 'خانم', 'رمضانپور', 'خانم رمضانپور', '', '', 'کارشناس', 0, 'Active', 0, '2026-08-25 09:48:21'),
(4, 'reza', 'خانم', 'تقی پور', 'خانم تقی پور', '', '', 'کارشناس', 0, 'Active', 0, '2026-08-25 09:48:21'),
(5, 'a.zare', 'خانم', 'رامی', 'خانم رامی', '', '', 'سرپرست و مدیر دفتر', 0, 'Active', 0, '2026-08-25 09:48:21'),
(6, 'kpiseed_mgr', 'خانم', 'سعادتی', 'خانم سعادتی', '', '', 'مدیر پروژه', 0, 'Active', 0, '2026-08-25 09:48:21'),
(7, 'kpiseed_sup1', 'خانم', 'صادق نیا', 'خانم صادق نیا', '', '', 'کارشناس', 0, 'Active', 0, '2026-08-25 09:48:21'),
(8, 'kpiseed_emp1', 'نیما', 'قاسمی', 'نیما قاسمی', 'kpiseed_emp1@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(9, 'kpiseed_emp2', 'زهرا', 'مرادی', 'زهرا مرادی', 'kpiseed_emp2@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(10, 'kpiseed_emp3', 'امیر', 'صادقی', 'امیر صادقی', 'kpiseed_emp3@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(11, 'kpiseed_sup2', 'سارا', 'احمدی', 'سارا احمدی', 'kpiseed_sup2@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(12, 'kpiseed_emp4', 'فاطمه', 'کاظمی', 'فاطمه کاظمی', 'kpiseed_emp4@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(13, 'kpiseed_emp5', 'سینا', 'یوسفی', 'سینا یوسفی', 'kpiseed_emp5@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(14, 'kpiseed_emp6', 'الهام', 'جعفری', 'الهام جعفری', 'kpiseed_emp6@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(15, 'kpiseed_sup3', 'حسن', 'رضایی', 'حسن رضایی', 'kpiseed_sup3@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(16, 'kpiseed_emp7', 'بهرام', 'اکبری', 'بهرام اکبری', 'kpiseed_emp7@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(17, 'kpiseed_emp8', 'نگار', 'شریفی', 'نگار شریفی', 'kpiseed_emp8@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(18, 'kpiseed_emp9', 'پیمان', 'بابایی', 'پیمان بابایی', 'kpiseed_emp9@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(19, 'kpiseed_sup4', 'مریم', 'حسینی', 'مریم حسینی', 'kpiseed_sup4@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(20, 'kpiseed_emp10', 'مینا', 'رستمی', 'مینا رستمی', 'kpiseed_emp10@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(21, 'kpiseed_emp11', 'کیان', 'عباسی', 'کیان عباسی', 'kpiseed_emp11@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(22, 'kpiseed_emp12', 'رها', 'نادری', 'رها نادری', 'kpiseed_emp12@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(23, 'kpiseed_sup5', 'کاوه', 'نوری', 'کاوه نوری', 'kpiseed_sup5@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(24, 'kpiseed_emp13', 'آرش', 'فلاحی', 'آرش فلاحی', 'kpiseed_emp13@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(25, 'kpiseed_emp14', 'سحر', 'زارع', 'سحر زارع', 'kpiseed_emp14@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21'),
(26, 'kpiseed_emp15', 'وحید', 'محمودی', 'وحید محمودی', 'kpiseed_emp15@example.local', '09119090378', '', 0, 'Active', 0, '2026-08-25 09:48:21');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_negar_workflow_steps`
--

DROP TABLE IF EXISTS `gooyaacc_negar_workflow_steps`;
CREATE TABLE `gooyaacc_negar_workflow_steps` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `letter_id` bigint(20) UNSIGNED NOT NULL,
  `step_no` int(10) UNSIGNED NOT NULL,
  `step_type` enum('review','approval','registration','signature','dispatch','acknowledgement','close') NOT NULL,
  `assigned_user_id` int(11) DEFAULT NULL,
  `assigned_org_unit_id` int(11) DEFAULT NULL,
  `step_status` enum('pending','in_progress','approved','rejected','changes_requested','completed','cancelled','skipped') NOT NULL DEFAULT 'pending',
  `is_required` tinyint(1) NOT NULL DEFAULT 1,
  `decision_note` varchar(2000) DEFAULT NULL,
  `signature_id` bigint(20) UNSIGNED DEFAULT NULL,
  `due_at` datetime DEFAULT NULL,
  `acted_by` int(11) DEFAULT NULL,
  `acted_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT 0,
  `personal_archived_at` datetime DEFAULT NULL,
  `follow_up_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_negar_workflow_steps`
--

INSERT IGNORE INTO `gooyaacc_negar_workflow_steps` (`id`, `letter_id`, `step_no`, `step_type`, `assigned_user_id`, `assigned_org_unit_id`, `step_status`, `is_required`, `decision_note`, `signature_id`, `due_at`, `acted_by`, `acted_at`, `created_at`, `is_starred`, `personal_archived_at`, `follow_up_at`) VALUES
(150, 102, 1, 'review', 1, NULL, 'approved', 1, NULL, NULL, NULL, 1, '2026-08-15 10:57:25', '2026-08-15 10:57:25', 0, NULL, NULL),
(151, 102, 2, 'approval', 1, NULL, 'approved', 1, NULL, NULL, NULL, 1, '2026-08-15 10:57:25', '2026-08-15 10:57:25', 0, NULL, NULL),
(152, 102, 3, 'registration', 1, NULL, 'completed', 1, 'شماره GNT-1405-000001', NULL, NULL, 1, '2026-08-15 10:57:25', '2026-08-15 10:57:25', 0, NULL, NULL),
(153, 102, 4, 'signature', 6, NULL, 'completed', 1, 'امضا با احراز هویت password', 33, NULL, 6, '2026-08-15 10:57:25', '2026-08-15 10:57:25', 0, NULL, NULL),
(154, 102, 5, 'dispatch', 1, NULL, 'completed', 1, 'ارسال نهایی', NULL, NULL, 1, '2026-08-15 10:57:25', '2026-08-15 10:57:25', 0, NULL, NULL),
(155, 103, 1, 'review', 1, NULL, 'approved', 1, NULL, NULL, NULL, 1, '2026-08-15 10:57:26', '2026-08-15 10:57:25', 0, NULL, NULL),
(156, 103, 2, 'approval', 1, NULL, 'approved', 1, NULL, NULL, NULL, 1, '2026-08-15 10:57:26', '2026-08-15 10:57:26', 0, NULL, NULL),
(157, 103, 3, 'registration', 1, NULL, 'completed', 1, 'شماره GNT-1405-000002', NULL, NULL, 1, '2026-08-15 10:57:26', '2026-08-15 10:57:26', 0, NULL, NULL),
(158, 103, 4, 'signature', 6, NULL, 'completed', 1, 'امضا با احراز هویت password', 33, NULL, 6, '2026-08-15 10:57:26', '2026-08-15 10:57:26', 0, NULL, NULL),
(159, 103, 5, 'dispatch', 1, NULL, 'completed', 1, 'ارسال نهایی', NULL, NULL, 1, '2026-08-15 10:57:26', '2026-08-15 10:57:26', 0, NULL, NULL);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `gooyaacc_negar_access`
--
ALTER TABLE `gooyaacc_negar_access`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_negar_access_enabled` (`is_enabled`,`access_role`),
  ADD KEY `idx_negar_access_substitute` (`temporary_substitute_user_id`,`temporary_substitute_from`,`temporary_substitute_until`);

--
-- Indexes for table `gooyaacc_negar_ai_audit`
--
ALTER TABLE `gooyaacc_negar_ai_audit`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_ai_request` (`request_uuid`),
  ADD KEY `idx_negar_ai_letter` (`letter_id`,`created_at`),
  ADD KEY `idx_negar_ai_user` (`user_id`,`created_at`),
  ADD KEY `idx_negar_ai_status` (`request_status`,`created_at`);

--
-- Indexes for table `gooyaacc_negar_archive_runs`
--
ALTER TABLE `gooyaacc_negar_archive_runs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_archive_idempotency` (`idempotency_key`),
  ADD UNIQUE KEY `uq_negar_archive_cloud_file` (`cloud_file_id`),
  ADD KEY `idx_negar_archive_status` (`run_status`,`cloud_export_status`),
  ADD KEY `idx_negar_archive_cutoff` (`cutoff_date`);

--
-- Indexes for table `gooyaacc_negar_attachments`
--
ALTER TABLE `gooyaacc_negar_attachments`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_storage_attachment` (`storage_attachment_id`),
  ADD KEY `idx_negar_attachment_letter` (`letter_id`,`attachment_kind`,`storage_status`),
  ADD KEY `idx_negar_attachment_version` (`version_id`),
  ADD KEY `idx_negar_attachment_purge` (`purge_status`,`deleted_at`);

--
-- Indexes for table `gooyaacc_negar_audit_log`
--
ALTER TABLE `gooyaacc_negar_audit_log`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_audit_event` (`event_uuid`),
  ADD KEY `idx_negar_audit_letter` (`letter_id`,`created_at`),
  ADD KEY `idx_negar_audit_actor` (`actor_user_id`,`created_at`),
  ADD KEY `idx_negar_audit_action` (`action`,`created_at`),
  ADD KEY `idx_negar_audit_hash` (`event_hash`);

--
-- Indexes for table `gooyaacc_negar_letters`
--
ALTER TABLE `gooyaacc_negar_letters`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_letter_uuid` (`public_uuid`),
  ADD UNIQUE KEY `uq_negar_registered_number` (`sequence_id`,`letter_year`,`letter_no`),
  ADD KEY `idx_negar_letter_box` (`sender_user_id`,`status`,`sent_at`),
  ADD KEY `idx_negar_letter_org` (`org_unit_id`,`status`,`created_at`),
  ADD KEY `idx_negar_letter_subject` (`subject`(191)),
  ADD KEY `idx_negar_letter_archive` (`status`,`archived_at`),
  ADD KEY `idx_negar_sender_personal` (`sender_user_id`,`sender_starred`,`sender_personal_archived_at`,`sender_follow_up_at`);

--
-- Indexes for table `gooyaacc_negar_letter_versions`
--
ALTER TABLE `gooyaacc_negar_letter_versions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_letter_version` (`letter_id`,`version_no`),
  ADD KEY `idx_negar_version_hash` (`content_sha256`),
  ADD KEY `idx_negar_version_creator` (`created_by`,`created_at`);

--
-- Indexes for table `gooyaacc_negar_links`
--
ALTER TABLE `gooyaacc_negar_links`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_negar_link_letter` (`letter_id`,`link_type`),
  ADD KEY `idx_negar_link_related` (`related_letter_id`),
  ADD KEY `idx_negar_link_crm` (`crm_module`,`crm_record_id`);

--
-- Indexes for table `gooyaacc_negar_org_members`
--
ALTER TABLE `gooyaacc_negar_org_members`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_org_member_role` (`org_unit_id`,`user_id`,`member_role`),
  ADD KEY `idx_negar_org_member_user` (`user_id`,`is_active`),
  ADD KEY `idx_negar_org_member_unit` (`org_unit_id`,`is_active`);

--
-- Indexes for table `gooyaacc_negar_org_units`
--
ALTER TABLE `gooyaacc_negar_org_units`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_org_external` (`external_key`),
  ADD UNIQUE KEY `uq_negar_org_code` (`unit_code`),
  ADD KEY `idx_negar_org_parent` (`parent_id`),
  ADD KEY `idx_negar_org_active` (`is_active`);

--
-- Indexes for table `gooyaacc_negar_recipients`
--
ALTER TABLE `gooyaacc_negar_recipients`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_recipient_user` (`letter_id`,`recipient_user_id`),
  ADD KEY `idx_negar_recipient_inbox` (`recipient_user_id`,`delivery_status`,`delivered_at`),
  ADD KEY `idx_negar_recipient_sms` (`sms_status`,`sms_next_attempt_at`),
  ADD KEY `idx_negar_recipient_opened` (`letter_id`,`first_opened_at`),
  ADD KEY `idx_negar_recipient_personal` (`recipient_user_id`,`is_starred`,`personal_archived_at`,`follow_up_at`);

--
-- Indexes for table `gooyaacc_negar_referrals`
--
ALTER TABLE `gooyaacc_negar_referrals`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_negar_referral_user` (`to_user_id`,`referral_status`,`due_at`),
  ADD KEY `idx_negar_referral_unit` (`to_org_unit_id`,`referral_status`),
  ADD KEY `idx_negar_referral_letter` (`letter_id`,`created_at`),
  ADD KEY `idx_negar_referral_personal` (`to_user_id`,`is_starred`,`personal_archived_at`,`follow_up_at`);

--
-- Indexes for table `gooyaacc_negar_sequences`
--
ALTER TABLE `gooyaacc_negar_sequences`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_sequence` (`org_unit_id`,`calendar_year`,`direction`,`prefix`),
  ADD KEY `idx_negar_sequence_active` (`is_active`);

--
-- Indexes for table `gooyaacc_negar_settings`
--
ALTER TABLE `gooyaacc_negar_settings`
  ADD PRIMARY KEY (`skey`);

--
-- Indexes for table `gooyaacc_negar_signatures`
--
ALTER TABLE `gooyaacc_negar_signatures`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_signature_version` (`user_id`,`version_no`),
  ADD UNIQUE KEY `uq_negar_signature_storage` (`storage_attachment_id`),
  ADD KEY `idx_negar_signature_active` (`user_id`,`signature_status`);

--
-- Indexes for table `gooyaacc_negar_templates`
--
ALTER TABLE `gooyaacc_negar_templates`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_template_code_version` (`template_code`,`version_no`),
  ADD KEY `idx_negar_template_active` (`is_active`,`org_unit_id`,`direction`);

--
-- Indexes for table `gooyaacc_negar_users`
--
ALTER TABLE `gooyaacc_negar_users`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_negar_users_active` (`crm_deleted`,`crm_status`),
  ADD KEY `idx_negar_users_name` (`full_name`);

--
-- Indexes for table `gooyaacc_negar_workflow_steps`
--
ALTER TABLE `gooyaacc_negar_workflow_steps`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_negar_workflow_step` (`letter_id`,`step_no`),
  ADD KEY `idx_negar_workflow_assignee` (`assigned_user_id`,`step_status`,`due_at`),
  ADD KEY `idx_negar_workflow_letter` (`letter_id`,`step_status`),
  ADD KEY `idx_negar_workflow_personal` (`assigned_user_id`,`is_starred`,`personal_archived_at`,`follow_up_at`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `gooyaacc_negar_ai_audit`
--
ALTER TABLE `gooyaacc_negar_ai_audit`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_archive_runs`
--
ALTER TABLE `gooyaacc_negar_archive_runs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_attachments`
--
ALTER TABLE `gooyaacc_negar_attachments`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_audit_log`
--
ALTER TABLE `gooyaacc_negar_audit_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=939;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_letters`
--
ALTER TABLE `gooyaacc_negar_letters`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=108;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_letter_versions`
--
ALTER TABLE `gooyaacc_negar_letter_versions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=117;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_links`
--
ALTER TABLE `gooyaacc_negar_links`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_org_members`
--
ALTER TABLE `gooyaacc_negar_org_members`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=352;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_org_units`
--
ALTER TABLE `gooyaacc_negar_org_units`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_recipients`
--
ALTER TABLE `gooyaacc_negar_recipients`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=156;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_referrals`
--
ALTER TABLE `gooyaacc_negar_referrals`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_sequences`
--
ALTER TABLE `gooyaacc_negar_sequences`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_signatures`
--
ALTER TABLE `gooyaacc_negar_signatures`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_templates`
--
ALTER TABLE `gooyaacc_negar_templates`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `gooyaacc_negar_workflow_steps`
--
ALTER TABLE `gooyaacc_negar_workflow_steps`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=163;
--
-- Database: `vtigercrm`
--
DROP DATABASE IF EXISTS `vtigercrm`;
CREATE DATABASE IF NOT EXISTS `vtigercrm` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
USE `vtigercrm`;

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflows`
--

DROP TABLE IF EXISTS `com_vtiger_workflows`;
CREATE TABLE `com_vtiger_workflows` (
  `workflow_id` int(11) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `summary` varchar(400) NOT NULL,
  `test` text NOT NULL,
  `execution_condition` int(11) NOT NULL,
  `defaultworkflow` int(1) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `filtersavedinnew` int(1) DEFAULT NULL,
  `schtypeid` int(10) DEFAULT NULL,
  `schdayofmonth` varchar(100) DEFAULT NULL,
  `schdayofweek` varchar(100) DEFAULT NULL,
  `schannualdates` varchar(500) DEFAULT NULL,
  `schtime` varchar(50) DEFAULT NULL,
  `nexttrigger_time` datetime DEFAULT NULL,
  `status` tinyint(1) DEFAULT 1,
  `workflowname` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `com_vtiger_workflows`
--

INSERT IGNORE INTO `com_vtiger_workflows` (`workflow_id`, `module_name`, `summary`, `test`, `execution_condition`, `defaultworkflow`, `type`, `filtersavedinnew`, `schtypeid`, `schdayofmonth`, `schdayofweek`, `schannualdates`, `schtime`, `nexttrigger_time`, `status`, `workflowname`) VALUES
(1, 'Invoice', 'UpdateInventoryProducts On Every Save', '[{\"fieldname\":\"subject\",\"operation\":\"does not contain\",\"value\":\"`!`\"}]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'UpdateInventoryProducts On Every Save'),
(2, 'Accounts', 'Send Email to user when Notifyowner is True', '[{\"fieldname\":\"notify_owner\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 2, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to user when Notifyowner is True'),
(3, 'Contacts', 'Send Email to user when Notifyowner is True', '[{\"fieldname\":\"notify_owner\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 2, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to user when Notifyowner is True'),
(4, 'Contacts', 'Send Email to user when Portal User is True', '[{\"fieldname\":\"portal\",\"operation\":\"is\",\"value\":\"1\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"email\",\"operation\":\"is not empty\",\"value\":\"\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Send Email to user when Portal User is True'),
(5, 'Potentials', 'Send Email to users on Potential creation', '[]', 1, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to users on Potential creation'),
(6, 'Contacts', 'Workflow for Contact Creation or Modification', '[]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Workflow for Contact Creation or Modification'),
(7, 'HelpDesk', 'Ticket Creation From Portal : Send Email to Record Owner and Contact', '[{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":1,\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":0}]', 1, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Ticket Creation From Portal : Send Email to Record Owner and Contact'),
(9, 'HelpDesk', 'Send Email to Contact on Ticket Update', '[{\"fieldname\":\"(contact_id : (Contacts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":0,\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":0},{\"fieldname\":\"ticketstatus\",\"operation\":\"has changed to\",\"value\":\"Closed\",\"valuetype\":\"rawtext\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"solution\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"description\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to Contact on Ticket Update'),
(10, 'Events', 'Workflow for Events when Send Notification is True', '[{\"fieldname\":\"sendnotification\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Workflow for Events when Send Notification is True'),
(11, 'Calendar', 'Workflow for Calendar Todos when Send Notification is True', '[{\"fieldname\":\"sendnotification\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Workflow for Calendar Todos when Send Notification is True'),
(12, 'Potentials', 'Calculate or Update forecast amount', '[]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Calculate or Update forecast amount'),
(13, 'Events', 'Workflow for Events when Send Notification is True', '[{\"fieldname\":\"sendnotification\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Workflow for Events when Send Notification is True'),
(14, 'Calendar', 'Workflow for Calendar Todos when Send Notification is True', '[{\"fieldname\":\"sendnotification\",\"operation\":\"is\",\"value\":\"true:boolean\"}]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Workflow for Calendar Todos when Send Notification is True'),
(15, 'HelpDesk', 'Comment Added From CRM : Send Email to Organization', '[{\"fieldname\":\"_VT_add_comment\",\"operation\":\"is added\",\"value\":\"\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"(parent_id : (Accounts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Comment Added From CRM : Send Email to Organization'),
(16, 'PurchaseOrder', 'Update Inventory Products On Every Save', '[]', 3, 1, 'basic', 5, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Update Inventory Products On Every Save'),
(17, 'HelpDesk', 'Comment Added From Portal : Send Email to Record Owner', '[{\"fieldname\":\"_VT_add_comment\",\"operation\":\"is added\",\"value\":\"\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"1\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Comment Added From Portal : Send Email to Record Owner'),
(18, 'HelpDesk', 'Comment Added From CRM : Send Email to Contact, where Contact is not a Portal User', '[{\"fieldname\":\"(contact_id : (Contacts) portal)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"_VT_add_comment\",\"operation\":\"is added\",\"value\":\"\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"(contact_id : (Contacts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Comment Added From CRM : Send Email to Contact, where Contact is not a Portal User'),
(19, 'HelpDesk', 'Comment Added From CRM : Send Email to Contact, where Contact is Portal User', '[{\"fieldname\":\"(contact_id : (Contacts) portal)\",\"operation\":\"is\",\"value\":\"1\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"_VT_add_comment\",\"operation\":\"is added\",\"value\":\"\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"(contact_id : (Contacts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Comment Added From CRM : Send Email to Contact, where Contact is Portal User'),
(20, 'HelpDesk', 'Send Email to Record Owner on Ticket Update', '[{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":0,\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":0},{\"fieldname\":\"ticketstatus\",\"operation\":\"has changed to\",\"value\":\"Closed\",\"valuetype\":\"rawtext\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"solution\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"assigned_user_id\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"description\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to Record Owner on Ticket Update'),
(21, 'HelpDesk', 'Ticket Creation From CRM : Send Email to Record Owner', '[{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 1, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Ticket Creation From CRM : Send Email to Record Owner'),
(22, 'HelpDesk', 'Send Email to Organization on Ticket Update', '[{\"fieldname\":\"(parent_id : (Accounts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":0,\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":0},{\"fieldname\":\"ticketstatus\",\"operation\":\"has changed to\",\"value\":\"Closed\",\"valuetype\":\"rawtext\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"solution\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"},{\"fieldname\":\"description\",\"operation\":\"has changed\",\"value\":\"\",\"valuetype\":\"\",\"joincondition\":\"or\",\"groupjoin\":\"and\",\"groupid\":\"1\"}]', 3, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Send Email to Organization on Ticket Update'),
(23, 'HelpDesk', 'Ticket Creation From CRM : Send Email to Organization', '[{\"fieldname\":\"(parent_id : (Accounts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 1, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Ticket Creation From CRM : Send Email to Organization'),
(24, 'HelpDesk', 'Ticket Creation From CRM : Send Email to Contact', '[{\"fieldname\":\"(contact_id : (Contacts) emailoptout)\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"and\",\"groupjoin\":\"and\",\"groupid\":\"0\"},{\"fieldname\":\"from_portal\",\"operation\":\"is\",\"value\":\"0\",\"valuetype\":\"rawtext\",\"joincondition\":\"\",\"groupjoin\":\"and\",\"groupid\":\"0\"}]', 1, 1, 'basic', 6, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Ticket Creation From CRM : Send Email to Contact');

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflows_seq`
--

DROP TABLE IF EXISTS `com_vtiger_workflows_seq`;
CREATE TABLE `com_vtiger_workflows_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `com_vtiger_workflows_seq`
--

INSERT IGNORE INTO `com_vtiger_workflows_seq` (`id`) VALUES
(24);

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtasks`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtasks`;
CREATE TABLE `com_vtiger_workflowtasks` (
  `task_id` int(11) NOT NULL,
  `workflow_id` int(11) DEFAULT NULL,
  `summary` varchar(400) NOT NULL,
  `task` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `com_vtiger_workflowtasks`
--

INSERT IGNORE INTO `com_vtiger_workflowtasks` (`task_id`, `workflow_id`, `summary`, `task`) VALUES
(1, 1, '', 'O:18:\"VTEntityMethodTask\":6:{s:18:\"executeImmediately\";b:1;s:10:\"workflowId\";i:1;s:7:\"summary\";s:0:\"\";s:6:\"active\";b:1;s:10:\"methodName\";s:15:\"UpdateInventory\";s:2:\"id\";i:1;}'),
(2, 2, 'An account has been created ', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:1:\"2\";s:7:\"summary\";s:28:\"An account has been created \";s:6:\"active\";s:1:\"1\";s:10:\"methodName\";s:11:\"NotifyOwner\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:26:\"Regarding Account Creation\";s:7:\"content\";s:297:\"An Account has been assigned to you on Gouya<br>Details of account are :<br><br>AccountId:<b>$account_no</b><br>AccountName:<b>$accountname</b><br>Rating:<b>$rating</b><br>Industry:<b>$industry</b><br>AccountType:<b>$accounttype</b><br>Description:<b>$description</b><br><br><br>Thank You<br>Admin\";s:2:\"id\";s:1:\"2\";}'),
(3, 3, 'An contact has been created ', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:1:\"3\";s:7:\"summary\";s:28:\"An contact has been created \";s:6:\"active\";s:1:\"1\";s:10:\"methodName\";s:11:\"NotifyOwner\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:26:\"Regarding Contact Creation\";s:7:\"content\";s:301:\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>$contact_no</b><br>LastName:<b>$lastname</b><br>FirstName:<b>$firstname</b><br>Lead Source:<b>$leadsource</b><br>Department:<b>$department</b><br>Description:<b>$description</b><br><br><br>Thank You<br>Admin\";s:2:\"id\";s:1:\"3\";}'),
(4, 4, 'Email Customer Portal Login Details', 'O:18:\"VTEntityMethodTask\":6:{s:18:\"executeImmediately\";b:1;s:10:\"workflowId\";i:4;s:7:\"summary\";s:35:\"Email Customer Portal Login Details\";s:6:\"active\";b:1;s:10:\"methodName\";s:22:\"SendPortalLoginDetails\";s:2:\"id\";i:4;}'),
(5, 5, 'An Potential has been created ', 'O:11:\"VTEmailTask\":8:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:1:\"5\";s:7:\"summary\";s:30:\"An Potential has been created \";s:6:\"active\";s:1:\"1\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:30:\"Regarding Potential Assignment\";s:7:\"content\";s:338:\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>$potential_no</b><br>Potential Name:<b>$potentialname</b><br>Amount:<b>$amount</b><br>Expected Close Date:<b>$closingdate ($_DATE_FORMAT_)</b><br>Type:<b>$opportunity_type</b><br><br><br>Description :$description<br><br>Thank You<br>Admin\";s:2:\"id\";s:1:\"5\";}'),
(6, 6, 'An contact has been created ', 'O:11:\"VTEmailTask\":8:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:1:\"6\";s:7:\"summary\";s:28:\"An contact has been created \";s:6:\"active\";s:1:\"1\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:28:\"Regarding Contact Assignment\";s:7:\"content\";s:380:\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>$contact_no</b><br>LastName:<b>$lastname</b><br>FirstName:<b>$firstname</b><br>Lead Source:<b>$leadsource</b><br>Department:<b>$department</b><br>Description:<b>$description</b><br><br><br>And <b>CustomerPortal Login Details</b> is sent to the EmailID :-$email<br><br>Thank You<br>Admin\";s:2:\"id\";s:1:\"6\";}'),
(7, 7, 'Notify Related Contact when Ticket is created from Portal', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:57:\"Notify Related Contact when Ticket is created from Portal\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:1:\"7\";s:10:\"workflowId\";s:1:\"7\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(contact_id : (Contacts) email)\";s:7:\"subject\";s:93:\"[From Portal] $ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:158:\"Ticket No : $ticket_no<br>\n							  Ticket ID : $(general : (__VtigerMeta__) recordId)<br>\n							  Ticket Title : $ticket_title<br><br>\n							  $description\";}'),
(10, 9, 'Send Email to Contact on Ticket Update', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:38:\"Send Email to Contact on Ticket Update\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(contact_id : (Contacts) email)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:624:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution<br>\n								The comments are : <br>\n								$allComments<br><br>\n								Regards<br>Support Administrator\";s:10:\"workflowId\";s:1:\"9\";}'),
(13, 12, 'update forecast amount', 'O:18:\"VTUpdateFieldsTask\":7:{s:18:\"executeImmediately\";b:1;s:43:\"\0VTUpdateFieldsTask\0referenceFieldFocusList\";a:0:{}s:10:\"workflowId\";i:12;s:7:\"summary\";s:22:\"update forecast amount\";s:6:\"active\";b:1;s:19:\"field_value_mapping\";s:95:\"[{\"fieldname\":\"forecast_amount\",\"valuetype\":\"expression\",\"value\":\"amount * probability / 100\"}]\";s:2:\"id\";i:13;}'),
(14, 13, 'Send Notification Email to Record Owner', 'O:11:\"VTEmailTask\":8:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:2:\"13\";s:7:\"summary\";s:39:\"Send Notification Email to Record Owner\";s:6:\"active\";s:1:\"1\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:17:\"Event :  $subject\";s:7:\"content\";s:771:\"$(assigned_user_id : (Users) last_name) $(assigned_user_id : (Users) first_name) ,<br/><b>Activity Notification Details:</b><br/>Subject             : $subject<br/>Start date and time : $date_start ($(general : (__VtigerMeta__) usertimezone))<br/>End date and time   : $due_date ($(general : (__VtigerMeta__) usertimezone)) <br/>Status              : $eventstatus <br/>Priority            : $taskpriority <br/>Related To          : $(parent_id : (Leads) lastname) $(parent_id : (Leads) firstname) $(parent_id : (Accounts) accountname) $(parent_id : (Potentials) potentialname) $(parent_id : (HelpDesk) ticket_title) $(parent_id : (Campaigns) campaignname) <br/>Contacts List       : $contact_id <br/>Location            : $location <br/>Description         : $description\";s:2:\"id\";s:2:\"14\";}'),
(15, 14, 'Send Notification Email to Record Owner', 'O:11:\"VTEmailTask\":8:{s:18:\"executeImmediately\";s:0:\"\";s:10:\"workflowId\";s:2:\"14\";s:7:\"summary\";s:39:\"Send Notification Email to Record Owner\";s:6:\"active\";s:1:\"1\";s:9:\"recepient\";s:36:\"$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:16:\"Task :  $subject\";s:7:\"content\";s:689:\"$(assigned_user_id : (Users) last_name) $(assigned_user_id : (Users) first_name) ,<br/><b>Task Notification Details:</b><br/>Subject : $subject<br/>Start date and time : $date_start ($(general : (__VtigerMeta__) usertimezone))<br/>End date and time   : $due_date ($_DATE_FORMAT_) <br/>Status              : $taskstatus <br/>Priority            : $taskpriority <br/>Related To          : $(parent_id : (Leads) lastname) $(parent_id : (Leads) firstname) $(parent_id : (Accounts) accountname) $(parent_id : (Potentials) potentialname) $(parent_id : (HelpDesk) ticket_title) $(parent_id : (Campaigns) campaignname) <br/>Contacts List       : $contact_id <br/>Description         : $description\";s:2:\"id\";s:2:\"15\";}'),
(18, 16, 'Update Inventory Products', 'O:18:\"VTEntityMethodTask\":6:{s:18:\"executeImmediately\";b:1;s:10:\"workflowId\";i:16;s:7:\"summary\";s:25:\"Update Inventory Products\";s:6:\"active\";b:1;s:10:\"methodName\";s:15:\"UpdateInventory\";s:2:\"id\";i:18;}'),
(19, 17, 'Comment Added From Portal : Send Email to Record Owner', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:54:\"Comment Added From Portal : Send Email to Record Owner\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"19\";s:10:\"workflowId\";s:2:\"17\";s:9:\"fromEmail\";s:112:\"$(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname)&lt;$(contact_id : (Contacts) email)&gt;\";s:9:\"recepient\";s:37:\",$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:92:\"Respond to Ticket ID## $(general : (__VtigerMeta__) recordId) ## in Customer Portal - URGENT\";s:7:\"content\";s:325:\"Dear $(assigned_user_id : (Users) last_name) $(assigned_user_id : (Users) first_name),<br><br>\n								Customer has provided the following additional information to your reply:<br><br>\n								<b>$lastComment</b><br><br>\n								Kindly respond to above ticket at the earliest.<br><br>\n								Regards<br>Support Administrator\";}'),
(20, 18, 'Comment Added From CRM : Send Email to Contact, where Contact is not a Portal User', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:82:\"Comment Added From CRM : Send Email to Contact, where Contact is not a Portal User\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"20\";s:10:\"workflowId\";s:2:\"18\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(contact_id : (Contacts) email)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:514:\"Dear $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname),<br><br>\n							The Ticket is replied the details are :<br><br>\n							Ticket No : $ticket_no<br>\n							Status : $ticketstatus<br>\n							Category : $ticketcategories<br>\n							Severity : $ticketseverities<br>\n							Priority : $ticketpriorities<br><br>\n							Description : <br>$description<br><br>\n							Solution : <br>$solution<br>\n							The comments are : <br>\n							$allComments<br><br>\n							Regards<br>Support Administrator\";}'),
(21, 19, 'Comment Added From CRM : Send Email to Contact, where Contact is Portal User', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:76:\"Comment Added From CRM : Send Email to Contact, where Contact is Portal User\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"21\";s:10:\"workflowId\";s:2:\"19\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(contact_id : (Contacts) email)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:547:\"Ticket No : $ticket_no<br>\n										Ticket Id : $(general : (__VtigerMeta__) recordId)<br>\n										Subject : $ticket_title<br><br>\n										Dear $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname),<br><br>\n										There is a reply to <b>$ticket_title</b> in the \"Customer Portal\" at VTiger.\n										You can use the following link to view the replies made:<br>\n										<a href=\"$(general : (__VtigerMeta__) portaldetailviewurl)\">Ticket Details</a><br><br>\n										Thanks<br>$(general : (__VtigerMeta__) supportName)\";}'),
(22, 15, 'Comment Added From CRM : Send Email to Organization', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:51:\"Comment Added From CRM : Send Email to Organization\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"22\";s:10:\"workflowId\";s:2:\"15\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:34:\",$(parent_id : (Accounts) email1),\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:589:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(parent_id : (Accounts) accountname),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution<br>\n								The comments are : <br>\n								$allComments<br><br>\n								Regards<br>Support Administrator\";}'),
(23, 7, 'Notify Record Owner when Ticket is created from Portal', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:54:\"Notify Record Owner when Ticket is created from Portal\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"23\";s:10:\"workflowId\";s:1:\"7\";s:9:\"fromEmail\";s:124:\"$(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:37:\",$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:93:\"[From Portal] $ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:158:\"Ticket No : $ticket_no<br>\n							  Ticket ID : $(general : (__VtigerMeta__) recordId)<br>\n							  Ticket Title : $ticket_title<br><br>\n							  $description\";}'),
(24, 20, 'Send Email to Record Owner on Ticket Update', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:43:\"Send Email to Record Owner on Ticket Update\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"24\";s:10:\"workflowId\";s:2:\"20\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:37:\",$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:40:\"Ticket Number : $ticket_no $ticket_title\";s:7:\"content\";s:596:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(assigned_user_id : (Users) last_name) $(assigned_user_id : (Users) first_name),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution\n								$allComments<br><br>\n								Regards<br>Support Administrator\";}'),
(25, 21, 'Ticket Creation From CRM : Send Email to Record Owner', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:53:\"Ticket Creation From CRM : Send Email to Record Owner\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"25\";s:10:\"workflowId\";s:2:\"21\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:37:\",$(assigned_user_id : (Users) email1)\";s:7:\"subject\";s:40:\"Ticket Number : $ticket_no $ticket_title\";s:7:\"content\";s:596:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(assigned_user_id : (Users) last_name) $(assigned_user_id : (Users) first_name),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution\n								$allComments<br><br>\n								Regards<br>Support Administrator\";}'),
(26, 22, 'Send Email to Organization on Ticket Update', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:43:\"Send Email to Organization on Ticket Update\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"26\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(parent_id : (Accounts) email1)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:589:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(parent_id : (Accounts) accountname),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution<br>\n								The comments are : <br>\n								$allComments<br><br>\n								Regards<br>Support Administrator\";s:10:\"workflowId\";s:2:\"22\";}'),
(27, 23, 'Ticket Creation From CRM : Send Email to Organization', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:53:\"Ticket Creation From CRM : Send Email to Organization\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"27\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(parent_id : (Accounts) email1)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:589:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(parent_id : (Accounts) accountname),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution<br>\n								The comments are : <br>\n								$allComments<br><br>\n								Regards<br>Support Administrator\";s:10:\"workflowId\";s:2:\"23\";}'),
(28, 24, 'Ticket Creation From CRM : Send Email to Contact', 'O:11:\"VTEmailTask\":9:{s:18:\"executeImmediately\";s:1:\"0\";s:7:\"summary\";s:48:\"Ticket Creation From CRM : Send Email to Contact\";s:6:\"active\";s:1:\"1\";s:2:\"id\";s:2:\"28\";s:9:\"fromEmail\";s:93:\"$(general : (__VtigerMeta__) supportName)&lt;$(general : (__VtigerMeta__) supportEmailId)&gt;\";s:9:\"recepient\";s:33:\",$(contact_id : (Contacts) email)\";s:7:\"subject\";s:79:\"$ticket_no [ Ticket Id : $(general : (__VtigerMeta__) recordId) ] $ticket_title\";s:7:\"content\";s:624:\"Ticket ID : $(general : (__VtigerMeta__) recordId)<br>Ticket Title : $ticket_title<br><br>\n								Dear $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname),<br><br>\n								The Ticket is replied the details are :<br><br>\n								Ticket No : $ticket_no<br>\n								Status : $ticketstatus<br>\n								Category : $ticketcategories<br>\n								Severity : $ticketseverities<br>\n								Priority : $ticketpriorities<br><br>\n								Description : <br>$description<br><br>\n								Solution : <br>$solution<br>\n								The comments are : <br>\n								$allComments<br><br>\n								Regards<br>Support Administrator\";s:10:\"workflowId\";s:2:\"24\";}');

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtasks_entitymethod`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtasks_entitymethod`;
CREATE TABLE `com_vtiger_workflowtasks_entitymethod` (
  `workflowtasks_entitymethod_id` int(11) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `method_name` varchar(100) DEFAULT NULL,
  `function_path` varchar(400) DEFAULT NULL,
  `function_name` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `com_vtiger_workflowtasks_entitymethod`
--

INSERT IGNORE INTO `com_vtiger_workflowtasks_entitymethod` (`workflowtasks_entitymethod_id`, `module_name`, `method_name`, `function_path`, `function_name`) VALUES
(1, 'SalesOrder', 'UpdateInventory', 'include/InventoryHandler.php', 'handleInventoryProductRel'),
(2, 'Invoice', 'UpdateInventory', 'include/InventoryHandler.php', 'handleInventoryProductRel'),
(3, 'Contacts', 'SendPortalLoginDetails', 'modules/Contacts/ContactsHandler.php', 'Contacts_sendCustomerPortalLoginDetails'),
(4, 'HelpDesk', 'NotifyOnPortalTicketCreation', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDesk_nofifyOnPortalTicketCreation'),
(5, 'HelpDesk', 'NotifyOnPortalTicketComment', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDesk_notifyOnPortalTicketComment'),
(6, 'HelpDesk', 'NotifyOwnerOnTicketChange', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDesk_notifyOwnerOnTicketChange'),
(7, 'HelpDesk', 'NotifyParentOnTicketChange', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDesk_notifyParentOnTicketChange'),
(8, 'ModComments', 'CustomerCommentFromPortal', 'modules/ModComments/ModCommentsHandler.php', 'CustomerCommentFromPortal'),
(9, 'ModComments', 'TicketOwnerComments', 'modules/ModComments/ModCommentsHandler.php', 'TicketOwnerComments'),
(10, 'PurchaseOrder', 'UpdateInventory', 'include/InventoryHandler.php', 'handleInventoryProductRel');

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtasks_entitymethod_seq`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtasks_entitymethod_seq`;
CREATE TABLE `com_vtiger_workflowtasks_entitymethod_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `com_vtiger_workflowtasks_entitymethod_seq`
--

INSERT IGNORE INTO `com_vtiger_workflowtasks_entitymethod_seq` (`id`) VALUES
(10);

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtasks_seq`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtasks_seq`;
CREATE TABLE `com_vtiger_workflowtasks_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `com_vtiger_workflowtasks_seq`
--

INSERT IGNORE INTO `com_vtiger_workflowtasks_seq` (`id`) VALUES
(28);

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtask_queue`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtask_queue`;
CREATE TABLE `com_vtiger_workflowtask_queue` (
  `task_id` int(11) DEFAULT NULL,
  `entity_id` varchar(100) DEFAULT NULL,
  `do_after` int(11) DEFAULT NULL,
  `relatedinfo` varchar(255) DEFAULT NULL,
  `task_contents` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `com_vtiger_workflowtask_queue`
--

INSERT IGNORE INTO `com_vtiger_workflowtask_queue` (`task_id`, `entity_id`, `do_after`, `relatedinfo`, `task_contents`) VALUES
(6, '12x11', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"hujiko Administrator\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON1<\\/b><br>LastName:<b>\\u0632\\u0627\\u0631\\u0639<\\/b><br>FirstName:<b>\\u0639\\u06cc\\u0633\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b><\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2046', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on vtigerCRM<br>Details of Potential are :<br><br>Potential No:<b>POT9<\\/b><br>Potential Name:<b>\\u062a\\u0633\\u062a \\u0633\\u06cc\\u0633\\u062a\\u0645 - \\u0641\\u0631\\u0635\\u062a \\u06af\\u0648\\u06cc\\u0627<\\/b><br>Amount:<b>$45,000,000<\\/b><br>Expected Close Date:<b>07-27-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2049', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on vtigerCRM<br>Details of Potential are :<br><br>Potential No:<b>POT12<\\/b><br>Potential Name:<b>\\u0646\\u0645\\u0648\\u0646\\u0647 \\u062a\\u0633\\u062a B - \\u0641\\u0631\\u0648\\u0634 \\u0645\\u0648\\u0641\\u0642 \\u062a\\u06cc\\u0631<\\/b><br>Amount:<b>$60,000,000<\\/b><br>Expected Close Date:<b>07-11-2026 (mm-dd-yyyy)<\\/b><br>Type:<b>\\u0645\\u0634\\u062a\\u0631\\u06cc \\u0645\\u0648\\u062c\\u0648\\u062f \\/ \\u062a\\u0645\\u062f\\u06cc\\u062f<\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2050', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on vtigerCRM<br>Details of Potential are :<br><br>Potential No:<b>POT13<\\/b><br>Potential Name:<b>\\u0646\\u0645\\u0648\\u0646\\u0647 \\u062a\\u0633\\u062a C - \\u0633\\u0631\\u0631\\u0633\\u06cc\\u062f \\u06af\\u0630\\u0634\\u062a\\u0647<\\/b><br>Amount:<b>$33,000,000<\\/b><br>Expected Close Date:<b>05-31-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :\\u0646\\u0645\\u0648\\u0646\\u0647 \\u0628\\u0631\\u0627\\u06cc \\u062a\\u0633\\u062a \\u0647\\u0634\\u062f\\u0627\\u0631 \\u0633\\u0631\\u0631\\u0633\\u06cc\\u062f<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2066', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON2<\\/b><br>LastName:<b>\\u0645\\u062d\\u0645\\u062f\\u06cc<\\/b><br>FirstName:<b>\\u0639\\u0644\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2067', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON3<\\/b><br>LastName:<b>\\u0627\\u062d\\u0645\\u062f\\u06cc<\\/b><br>FirstName:<b>\\u0633\\u0627\\u0631\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2068', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON4<\\/b><br>LastName:<b>\\u06a9\\u0631\\u06cc\\u0645\\u06cc<\\/b><br>FirstName:<b>\\u0631\\u0636\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2069', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON5<\\/b><br>LastName:<b>\\u0645\\u062d\\u0645\\u062f\\u06cc\\u0627\\u0646<\\/b><br>FirstName:<b>\\u0631\\u0636\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_mgr@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2070', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON6<\\/b><br>LastName:<b>\\u06a9\\u0631\\u06cc\\u0645\\u06cc<\\/b><br>FirstName:<b>\\u0639\\u0644\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_sup1@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2071', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON7<\\/b><br>LastName:<b>\\u0642\\u0627\\u0633\\u0645\\u06cc<\\/b><br>FirstName:<b>\\u0646\\u06cc\\u0645\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp1@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2072', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON8<\\/b><br>LastName:<b>\\u0645\\u0631\\u0627\\u062f\\u06cc<\\/b><br>FirstName:<b>\\u0632\\u0647\\u0631\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp2@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2073', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON9<\\/b><br>LastName:<b>\\u0635\\u0627\\u062f\\u0642\\u06cc<\\/b><br>FirstName:<b>\\u0627\\u0645\\u06cc\\u0631<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp3@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2074', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON10<\\/b><br>LastName:<b>\\u06a9\\u0627\\u0638\\u0645\\u06cc<\\/b><br>FirstName:<b>\\u0641\\u0627\\u0637\\u0645\\u0647<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp4@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2075', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON11<\\/b><br>LastName:<b>\\u06cc\\u0648\\u0633\\u0641\\u06cc<\\/b><br>FirstName:<b>\\u0633\\u06cc\\u0646\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp5@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2076', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON12<\\/b><br>LastName:<b>\\u062c\\u0639\\u0641\\u0631\\u06cc<\\/b><br>FirstName:<b>\\u0627\\u0644\\u0647\\u0627\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp6@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2077', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON13<\\/b><br>LastName:<b>\\u0631\\u0636\\u0627\\u06cc\\u06cc<\\/b><br>FirstName:<b>\\u062d\\u0633\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_sup3@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2078', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON14<\\/b><br>LastName:<b>\\u0627\\u06a9\\u0628\\u0631\\u06cc<\\/b><br>FirstName:<b>\\u0628\\u0647\\u0631\\u0627\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp7@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2079', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON15<\\/b><br>LastName:<b>\\u0634\\u0631\\u06cc\\u0641\\u06cc<\\/b><br>FirstName:<b>\\u0646\\u06af\\u0627\\u0631<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp8@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2080', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON16<\\/b><br>LastName:<b>\\u0628\\u0627\\u0628\\u0627\\u06cc\\u06cc<\\/b><br>FirstName:<b>\\u067e\\u06cc\\u0645\\u0627\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp9@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2081', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON17<\\/b><br>LastName:<b>\\u062d\\u0633\\u06cc\\u0646\\u06cc<\\/b><br>FirstName:<b>\\u0645\\u0631\\u06cc\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_sup4@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2082', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON18<\\/b><br>LastName:<b>\\u0631\\u0633\\u062a\\u0645\\u06cc<\\/b><br>FirstName:<b>\\u0645\\u06cc\\u0646\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp10@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2083', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON19<\\/b><br>LastName:<b>\\u0639\\u0628\\u0627\\u0633\\u06cc<\\/b><br>FirstName:<b>\\u06a9\\u06cc\\u0627\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp11@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2084', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON20<\\/b><br>LastName:<b>\\u0646\\u0627\\u062f\\u0631\\u06cc<\\/b><br>FirstName:<b>\\u0631\\u0647\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp12@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2085', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON21<\\/b><br>LastName:<b>\\u0646\\u0648\\u0631\\u06cc<\\/b><br>FirstName:<b>\\u06a9\\u0627\\u0648\\u0647<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_sup5@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2086', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON22<\\/b><br>LastName:<b>\\u0641\\u0644\\u0627\\u062d\\u06cc<\\/b><br>FirstName:<b>\\u0622\\u0631\\u0634<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp13@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2087', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON23<\\/b><br>LastName:<b>\\u0632\\u0627\\u0631\\u0639<\\/b><br>FirstName:<b>\\u0633\\u062d\\u0631<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp14@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2088', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON24<\\/b><br>LastName:<b>\\u0645\\u062d\\u0645\\u0648\\u062f\\u06cc<\\/b><br>FirstName:<b>\\u0648\\u062d\\u06cc\\u062f<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_emp15@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2089', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON25<\\/b><br>LastName:<b>\\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631<\\/b><br>FirstName:<b>\\u062d\\u0633\\u06cc\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1 [user:admin]<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-hossein.fgh@gmail.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2090', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON26<\\/b><br>LastName:<b>\\u0627\\u062d\\u0645\\u062f\\u06cc<\\/b><br>FirstName:<b>\\u0633\\u0627\\u0631\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SYNC_FROM_USERS v1 [user:kpiseed_sup2]<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kpiseed_sup2@example.local<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2091', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON27<\\/b><br>LastName:<b>\\u0645\\u062d\\u0645\\u062f\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0627\\u0641\\u0631\\u0648\\u0632<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-afrooz@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2092', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT1 \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u067e\\u0634\\u062a\\u06cc\\u0628\\u0627\\u0646\\u06cc \\u0646\\u0635\\u0628 (\\u0645\\u062b\\u0627\\u0644)\",\"content\":\"Ticket ID : 2092<br>Ticket Title : \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u067e\\u0634\\u062a\\u06cc\\u0628\\u0627\\u0646\\u06cc \\u0646\\u0635\\u0628 (\\u0645\\u062b\\u0627\\u0644)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT1<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : Open<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : High<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>SEED_GOOYA_TICKETS v1<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2093', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON28<\\/b><br>LastName:<b>\\u0646\\u06cc\\u06a9 \\u0631\\u0641\\u062a\\u0627\\u0631 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0631\\u0648\\u06cc\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-roya@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2095', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON29<\\/b><br>LastName:<b>\\u0642\\u0627\\u0636\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0645\\u0647\\u0646\\u062f\\u0633<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-ghazi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2096', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON30<\\/b><br>LastName:<b>\\u0641\\u0631\\u0648\\u0632\\u0634 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0645\\u0647\\u062f\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-forouzesh@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2097', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",hossein.fgh@gmail.com,a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT3 \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0622\\u0645\\u0648\\u0632\\u0634 \\u06a9\\u0627\\u0631\\u0628\\u0631\\u06cc (\\u0645\\u062b\\u0627\\u0644)\",\"content\":\"Ticket ID : 2097<br>Ticket Title : \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0622\\u0645\\u0648\\u0632\\u0634 \\u06a9\\u0627\\u0631\\u0628\\u0631\\u06cc (\\u0645\\u062b\\u0627\\u0644)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631,\\u0632\\u0627\\u0631\\u0639 \\u062d\\u0633\\u06cc\\u0646,\\u0639\\u06cc\\u0633\\u06cc,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT3<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : Wait For Response<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : Normal<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>SEED_GOOYA_TICKETS v1<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2098', 0, 'false', '{\"fromEmail\":\"kpiseed_mgr@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_mgr@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON31<\\/b><br>LastName:<b>\\u06a9\\u0627\\u0628\\u06cc\\u0646\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0645\\u062d\\u0645\\u062f<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-ayini@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2100', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON32<\\/b><br>LastName:<b>\\u0632\\u0627\\u0645\\u06cc\\u0627\\u062f (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0645\\u0647\\u0646\\u062f\\u0633<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-zamyad@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2102', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON33<\\/b><br>LastName:<b>\\u0639\\u0628\\u0627\\u0633\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u063a\\u0644\\u0627\\u0645\\u0639\\u0644\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-abbasi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2101', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT5 \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u06af\\u0632\\u0627\\u0631\\u0634 \\u0627\\u062e\\u062a\\u0635\\u0627\\u0635\\u06cc (\\u0645\\u062b\\u0627\\u0644)\",\"content\":\"Ticket ID : 2101<br>Ticket Title : \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u06af\\u0632\\u0627\\u0631\\u0634 \\u0627\\u062e\\u062a\\u0635\\u0627\\u0635\\u06cc (\\u0645\\u062b\\u0627\\u0644)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0632\\u0627\\u0631\\u0639 \\u0639\\u06cc\\u0633\\u06cc,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT5<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : Open<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : \\u067e\\u0627\\u06cc\\u06cc\\u0646<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>SEED_GOOYA_TICKETS v1<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2103', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON34<\\/b><br>LastName:<b>\\u0645\\u062d\\u0645\\u062f\\u0622\\u0628\\u0627\\u062f\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-mohammadabadi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2105', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON35<\\/b><br>LastName:<b>\\u062e\\u0633\\u0631\\u0648\\u0622\\u0628\\u0627\\u062f\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0644\\u0639\\u06cc\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-laya@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2106', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT7 \\u062a\\u0645\\u062f\\u06cc\\u062f \\u0642\\u0631\\u0627\\u0631\\u062f\\u0627\\u062f \\u067e\\u0634\\u062a\\u06cc\\u0628\\u0627\\u0646\\u06cc (\\u0645\\u062b\\u0627\\u0644)\",\"content\":\"Ticket ID : 2106<br>Ticket Title : \\u062a\\u0645\\u062f\\u06cc\\u062f \\u0642\\u0631\\u0627\\u0631\\u062f\\u0627\\u062f \\u067e\\u0634\\u062a\\u06cc\\u0628\\u0627\\u0646\\u06cc (\\u0645\\u062b\\u0627\\u0644)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT7<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : Closed<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : Normal<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>SEED_GOOYA_TICKETS v1<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2107', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON36<\\/b><br>LastName:<b>\\u062f\\u0627\\u062f\\u062c\\u0648 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u06a9\\u0627\\u0645\\u0631\\u0627\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-dadjoo@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2108', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON37<\\/b><br>LastName:<b>\\u0645\\u0644\\u0627\\u0645\\u062d\\u0645\\u062f\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0639\\u0644\\u06cc<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-ali@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2109', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",hossein.fgh@gmail.com,a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT8 \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0641\\u0639\\u0627\\u0644\\u200c\\u0633\\u0627\\u0632\\u06cc \\u0645\\u0627\\u0698\\u0648\\u0644 \\u062c\\u062f\\u06cc\\u062f (\\u0645\\u062b\\u0627\\u0644)\",\"content\":\"Ticket ID : 2109<br>Ticket Title : \\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0641\\u0639\\u0627\\u0644\\u200c\\u0633\\u0627\\u0632\\u06cc \\u0645\\u0627\\u0698\\u0648\\u0644 \\u062c\\u062f\\u06cc\\u062f (\\u0645\\u062b\\u0627\\u0644)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631,\\u0632\\u0627\\u0631\\u0639 \\u062d\\u0633\\u06cc\\u0646,\\u0639\\u06cc\\u0633\\u06cc,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT8<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : Open<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : Normal<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>SEED_GOOYA_TICKETS v1<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2110', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON38<\\/b><br>LastName:<b>\\u0645\\u0646\\u0648\\u0686\\u0647\\u0631\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0631\\u0636\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-reza@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2111', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON39<\\/b><br>LastName:<b>\\u063a\\u0641\\u0627\\u0631\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0645\\u062d\\u0633\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2113', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON40<\\/b><br>LastName:<b>\\u067e\\u0648\\u0631\\u0639\\u0644\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-pourali@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2114', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON41<\\/b><br>LastName:<b>\\u062e\\u0627\\u0644\\u0642\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-khaleghi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2116', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON42<\\/b><br>LastName:<b>\\u062a\\u0648\\u06a9\\u0644\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0645\\u0647\\u0646\\u062f\\u0633<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-tavakoli@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2117', 0, 'false', '{\"fromEmail\":\"kpiseed_mgr@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_mgr@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON43<\\/b><br>LastName:<b>\\u0635\\u0627\\u062f\\u0642\\u06cc \\u0646\\u0698\\u0627\\u062f (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0634\\u0627\\u06cc\\u0627\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2118', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON44<\\/b><br>LastName:<b>\\u0634\\u0631\\u06cc\\u0641 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-sharif@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2119', 0, 'false', '{\"fromEmail\":\"kpiseed_mgr@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_mgr@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON45<\\/b><br>LastName:<b>\\u06a9\\u0627\\u0638\\u0645 \\u0632\\u0627\\u062f\\u0647 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0631\\u0642\\u06cc\\u0647<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-kazemzadeh@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2120', 0, 'false', '{\"fromEmail\":\"kpiseed_sup1@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_sup1@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON46<\\/b><br>LastName:<b>\\u0646\\u06cc\\u06a9\\u062a\\u0627\\u0628\\u06cc\\u06a9 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u062c\\u0648\\u0627\\u062f<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2121', 0, 'false', '{\"fromEmail\":\"kpiseed_sup1@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_sup1@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON47<\\/b><br>LastName:<b>\\u0632\\u0627\\u0647\\u062f\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u062e\\u0627\\u0646\\u0645 \\u0645\\u0644\\u06cc\\u06a9\\u0627<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-zahedi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2122', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON48<\\/b><br>LastName:<b>\\u0631\\u0639\\u0641\\u062a\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0639\\u0628\\u0627\\u0633<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-alii@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2123', 0, 'false', '{\"fromEmail\":\"a@gmail.com\",\"fromName\":\"\\u0639\\u06cc\\u0633\\u06cc \\u0632\\u0627\\u0631\\u0639\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"a@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON49<\\/b><br>LastName:<b>\\u0627\\u0646\\u0635\\u0627\\u0631\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0645\\u0646\\u0648\\u0686\\u0647\\u0631<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2124', 0, 'false', '{\"fromEmail\":\"kpiseed_mgr@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_mgr@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON50<\\/b><br>LastName:<b>\\u0627\\u062d\\u0645\\u062f\\u06cc\\u0627\\u0646 (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0635\\u0627\\u0628\\u0631<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-ahmadian@test.com<br><br>Thank You<br>Admin<br><br>\"}');
INSERT IGNORE INTO `com_vtiger_workflowtask_queue` (`task_id`, `entity_id`, `do_after`, `relatedinfo`, `task_contents`) VALUES
(6, '12x2125', 0, 'false', '{\"fromEmail\":\"kpiseed_mgr@example.local\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"kpiseed_mgr@example.local\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON51<\\/b><br>LastName:<b>\\u0633\\u0644\\u06cc\\u0645\\u06cc (\\u0645\\u062b\\u0627\\u0644)<\\/b><br>FirstName:<b>\\u0622\\u0642\\u0627\\u06cc \\u0627\\u0628\\u0648\\u0627\\u0644\\u0641\\u0636\\u0644<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>SEED_GOOYA_CONTACTS v1<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-salimi@test.com<br><br>Thank You<br>Admin<br><br>\"}'),
(25, '17x2149', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Ticket Number : TT9 \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0646\\u0635\\u0628 \\u0648 \\u0631\\u0627\\u0647\\u200c\\u0627\\u0646\\u062f\\u0627\\u0632\\u06cc \\u067e\\u06a9\\u06cc\\u062c \\u067e\\u06cc\\u0634\\u0631\\u0641\\u062a\\u0647 (\\u0646\\u0645\\u0648\\u0646\\u0647 \\u0641\\u0627\\u0632 \\u06f2)\",\"content\":\"Ticket ID : 2149<br>Ticket Title : \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0646\\u0635\\u0628 \\u0648 \\u0631\\u0627\\u0647\\u200c\\u0627\\u0646\\u062f\\u0627\\u0632\\u06cc \\u067e\\u06a9\\u06cc\\u062c \\u067e\\u06cc\\u0634\\u0631\\u0641\\u062a\\u0647 (\\u0646\\u0645\\u0648\\u0646\\u0647 \\u0641\\u0627\\u0632 \\u06f2)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT9<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : Other Problem<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : Major<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : High<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>\\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc\\u0627\\u062a\\u06cc \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0628\\u0631\\u0627\\u06cc \\u0622\\u0632\\u0645\\u0648\\u0646 \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u06a9\\u0627\\u0645\\u0644 \\u062d\\u0633\\u0627\\u0628\\u060c \\u0641\\u0631\\u062f\\u060c \\u062a\\u0627\\u0631\\u06cc\\u062e\\u0686\\u0647 \\u0648 \\u06af\\u0631\\u062f\\u0634 \\u0648\\u0636\\u0639\\u06cc\\u062a.<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(28, '17x2149', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"your-support name\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\",dadjoo@test.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"TT9 [ Ticket Id : 2149 ] \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0646\\u0635\\u0628 \\u0648 \\u0631\\u0627\\u0647\\u200c\\u0627\\u0646\\u062f\\u0627\\u0632\\u06cc \\u067e\\u06a9\\u06cc\\u062c \\u067e\\u06cc\\u0634\\u0631\\u0641\\u062a\\u0647 (\\u0646\\u0645\\u0648\\u0646\\u0647 \\u0641\\u0627\\u0632 \\u06f2)\",\"content\":\"Ticket ID : 2149<br>Ticket Title : \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0646\\u0635\\u0628 \\u0648 \\u0631\\u0627\\u0647\\u200c\\u0627\\u0646\\u062f\\u0627\\u0632\\u06cc \\u067e\\u06a9\\u06cc\\u062c \\u067e\\u06cc\\u0634\\u0631\\u0641\\u062a\\u0647 (\\u0646\\u0645\\u0648\\u0646\\u0647 \\u0641\\u0627\\u0632 \\u06f2)<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDear \\u062f\\u0627\\u062f\\u062c\\u0648 (\\u0645\\u062b\\u0627\\u0644) \\u0622\\u0642\\u0627\\u06cc \\u06a9\\u0627\\u0645\\u0631\\u0627\\u0646,<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe Ticket is replied the details are :<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tTicket No : TT9<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tStatus : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tCategory : Other Problem<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSeverity : Major<br>\\n\\t\\t\\t\\t\\t\\t\\t\\tPriority : High<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tDescription : <br>\\u062f\\u0631\\u062e\\u0648\\u0627\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc\\u0627\\u062a\\u06cc \\u0633\\u0631\\u0648\\u06cc\\u0633 \\u0628\\u0631\\u0627\\u06cc \\u0622\\u0632\\u0645\\u0648\\u0646 \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u06a9\\u0627\\u0645\\u0644 \\u062d\\u0633\\u0627\\u0628\\u060c \\u0641\\u0631\\u062f\\u060c \\u062a\\u0627\\u0631\\u06cc\\u062e\\u0686\\u0647 \\u0648 \\u06af\\u0631\\u062f\\u0634 \\u0648\\u0636\\u0639\\u06cc\\u062a.<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tSolution : <br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tThe comments are : <br>\\n\\t\\t\\t\\t\\t\\t\\t\\t<br><br>\\n\\t\\t\\t\\t\\t\\t\\t\\tRegards<br>Support Administrator<br><br>\"}'),
(6, '12x2167', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON52<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260718040406-5955<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2199', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON53<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260718043336-8174<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2207', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON54<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260718043458-8234<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2215', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>Contact Id:<b>CON55<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260718043554-3440<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2276', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON78<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2279', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON79<\\/b><br>LastName:<b>GOUYA-CONTACT-SMOKE-20260801180622-8131<\\/b><br>FirstName:<b>Gouya<\\/b><br>Lead Source:<b><\\/b><br>Department:<b>Quality Assurance<\\/b><br>Description:<b>Temporary integration test<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-contact-smoke@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2279', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON79<\\/b><br>LastName:<b>GOUYA-CONTACT-SMOKE-20260801180622-8131<\\/b><br>FirstName:<b>Gouya<\\/b><br>Lead Source:<b><\\/b><br>Department:<b>Quality Assurance<\\/b><br>Description:<b>Temporary integration test<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-contact-smoke@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2313', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON88<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2321', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON89<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2329', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON90<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2337', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON91<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2345', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON92<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(6, '12x2353', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Contact Assignment\",\"content\":\"An Contact has been assigned to you on Gouya<br>Details of Contact are :<br><br>Contact Id:<b>CON93<\\/b><br>LastName:<b>\\u06cc\\u06a9\\u067e\\u0627\\u0631\\u0686\\u06af\\u06cc \\u0633\\u0631\\u0646\\u062e<\\/b><br>FirstName:<b>\\u0622\\u0632\\u0645\\u0648\\u0646<\\/b><br>Lead Source:<b><\\/b><br>Department:<b><\\/b><br>Description:<b>Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988<\\/b><br><br><br>And <b>CustomerPortal Login Details<\\/b> is sent to the EmailID :-lead-updated@example.test<br><br>Thank You<br>Admin<br><br>\"}'),
(15, '9x2358', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Task :  __CODEX_GOOYA_TASK_SMOKE__20260809070601\",\"content\":\"\\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646 ,<br\\/><b>Task Notification Details:<\\/b><br\\/>Subject : __CODEX_GOOYA_TASK_SMOKE__20260809070601<br\\/>Start date and time : 08-09-2026 11:05 AM ((UTC+03:30) Tehran)<br\\/>End date and time   : 08-09-2026 (mm-dd-yyyy) <br\\/>Status              : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645 <br\\/>Priority            : \\u0628\\u0627\\u0644\\u0627 <br\\/>Related To          :       <br\\/>Contacts List       :  <br\\/>Description         : \\u062a\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc \\u0630\\u062e\\u06cc\\u0631\\u0647\\u060c \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u0648 \\u06cc\\u0627\\u062f\\u0622\\u0648\\u0631 \\u0648\\u0638\\u06cc\\u0641\\u0647<br><br>\"}'),
(15, '9x2359', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Task :  __CODEX_GOOYA_TASK_SMOKE__20260809072018\",\"content\":\"\\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646 ,<br\\/><b>Task Notification Details:<\\/b><br\\/>Subject : __CODEX_GOOYA_TASK_SMOKE__20260809072018<br\\/>Start date and time : 08-09-2026 11:05 AM ((UTC+03:30) Tehran)<br\\/>End date and time   : 08-09-2026 (mm-dd-yyyy) <br\\/>Status              : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645 <br\\/>Priority            : \\u0628\\u0627\\u0644\\u0627 <br\\/>Related To          :       <br\\/>Contacts List       :  <br\\/>Description         : \\u062a\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc \\u0630\\u062e\\u06cc\\u0631\\u0647\\u060c \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u0648 \\u06cc\\u0627\\u062f\\u0622\\u0648\\u0631 \\u0648\\u0638\\u06cc\\u0641\\u0647<br><br>\"}'),
(15, '9x2361', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Task :  __CODEX_GOOYA_TASK_SMOKE__20260809084235\",\"content\":\"\\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646 ,<br\\/><b>Task Notification Details:<\\/b><br\\/>Subject : __CODEX_GOOYA_TASK_SMOKE__20260809084235<br\\/>Start date and time : 08-09-2026 11:05 AM ((UTC+03:30) Tehran)<br\\/>End date and time   : 08-09-2026 (mm-dd-yyyy) <br\\/>Status              : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645 <br\\/>Priority            : \\u0628\\u0627\\u0644\\u0627 <br\\/>Related To          :       <br\\/>Contacts List       :  <br\\/>Description         : \\u062a\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc \\u0630\\u062e\\u06cc\\u0631\\u0647\\u060c \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u0648 \\u06cc\\u0627\\u062f\\u0622\\u0648\\u0631 \\u0648\\u0638\\u06cc\\u0641\\u0647<br><br>\"}'),
(15, '9x2368', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Task :  __CODEX_GOOYA_TASK_SMOKE__20260809090416\",\"content\":\"\\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631 \\u062d\\u0633\\u06cc\\u0646 ,<br\\/><b>Task Notification Details:<\\/b><br\\/>Subject : __CODEX_GOOYA_TASK_SMOKE__20260809090416<br\\/>Start date and time : 08-09-2026 11:05 AM ((UTC+03:30) Tehran)<br\\/>End date and time   : 08-09-2026 (mm-dd-yyyy) <br\\/>Status              : \\u062f\\u0631 \\u062d\\u0627\\u0644 \\u0627\\u0646\\u062c\\u0627\\u0645 <br\\/>Priority            : \\u0628\\u0627\\u0644\\u0627 <br\\/>Related To          :       <br\\/>Contacts List       :  <br\\/>Description         : \\u062a\\u0633\\u062a \\u0639\\u0645\\u0644\\u06cc \\u0630\\u062e\\u06cc\\u0631\\u0647\\u060c \\u0627\\u0631\\u062a\\u0628\\u0627\\u0637 \\u0648 \\u06cc\\u0627\\u062f\\u0622\\u0648\\u0631 \\u0648\\u0638\\u06cc\\u0641\\u0647<br><br>\"}'),
(5, '13x2528', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1100<\\/b><br>Potential Name:<b>\\u0622\\u0632\\u0645\\u0648\\u0646 \\u0641\\u0631\\u0645 \\u0641\\u0631\\u0635\\u062a \\u06af\\u0648\\u06cc\\u0627 20260810072231-589<\\/b><br>Amount:<b>$2,500,000<\\/b><br>Expected Close Date:<b>08-24-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :\\u0622\\u0632\\u0645\\u0648\\u0646 \\u0628\\u0627\\u0632\\u06af\\u0634\\u062a\\u200c\\u067e\\u0630\\u06cc\\u0631 \\u0641\\u0631\\u0645 \\u0641\\u0631\\u0635\\u062a \\u0648 \\u0633\\u0631\\u0648\\u0631 \\u06af\\u0648\\u06cc\\u0627<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2530', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1101<\\/b><br>Potential Name:<b>\\u0622\\u0632\\u0645\\u0648\\u0646 \\u0639\\u0645\\u0644\\u06cc \\u0641\\u0631\\u0645 \\u0641\\u0631\\u0635\\u062a \\u06af\\u0648\\u06cc\\u0627 1786346601193<\\/b><br>Amount:<b>$2,500,000<\\/b><br>Expected Close Date:<b>08-10-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2531', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1102<\\/b><br>Potential Name:<b>\\u0622\\u0632\\u0645\\u0648\\u0646 \\u0641\\u0631\\u0645 \\u0641\\u0631\\u0635\\u062a \\u06af\\u0648\\u06cc\\u0627 20260810072758-870<\\/b><br>Amount:<b>$2,500,000<\\/b><br>Expected Close Date:<b>08-24-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :\\u0622\\u0632\\u0645\\u0648\\u0646 \\u0628\\u0627\\u0632\\u06af\\u0634\\u062a\\u200c\\u067e\\u0630\\u06cc\\u0631 \\u0641\\u0631\\u0645 \\u0641\\u0631\\u0635\\u062a \\u0648 \\u0633\\u0631\\u0648\\u0631 \\u06af\\u0648\\u06cc\\u0627<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2534', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1103<\\/b><br>Potential Name:<b>Gouya Forecast Smoke 20260810074049-797<\\/b><br>Amount:<b>$7,654,321<\\/b><br>Expected Close Date:<b>08-10-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2535', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1104<\\/b><br>Potential Name:<b>Gouya Forecast Smoke 20260810074113-128<\\/b><br>Amount:<b>$7,654,321<\\/b><br>Expected Close Date:<b>08-10-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}'),
(5, '13x2536', 0, 'false', '{\"fromEmail\":\"hossein.fgh@gmail.com\",\"fromName\":\"\\u062d\\u0633\\u06cc\\u0646 \\u0641\\u063a\\u0627\\u0646 \\u067e\\u0648\\u0631\",\"replyTo\":\"hossein.fgh@gmail.com\",\"toEmail\":\"hossein.fgh@gmail.com\",\"ccEmail\":\"\",\"bccEmail\":\"\",\"subject\":\"Regarding Potential Assignment\",\"content\":\"An Potential has been assigned to you on Gouya<br>Details of Potential are :<br><br>Potential No:<b>POT1105<\\/b><br>Potential Name:<b>Gouya Forecast Smoke 20260810074554-681<\\/b><br>Amount:<b>$7,654,321<\\/b><br>Expected Close Date:<b>08-10-2026 (mm-dd-yyyy)<\\/b><br>Type:<b><\\/b><br><br><br>Description :<br><br>Thank You<br>Admin<br><br>\"}');

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflowtemplates`
--

DROP TABLE IF EXISTS `com_vtiger_workflowtemplates`;
CREATE TABLE `com_vtiger_workflowtemplates` (
  `template_id` int(11) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `title` varchar(400) DEFAULT NULL,
  `template` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflow_activatedonce`
--

DROP TABLE IF EXISTS `com_vtiger_workflow_activatedonce`;
CREATE TABLE `com_vtiger_workflow_activatedonce` (
  `workflow_id` int(11) NOT NULL,
  `entity_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflow_tasktypes`
--

DROP TABLE IF EXISTS `com_vtiger_workflow_tasktypes`;
CREATE TABLE `com_vtiger_workflow_tasktypes` (
  `id` int(11) NOT NULL,
  `tasktypename` varchar(255) NOT NULL,
  `label` varchar(255) DEFAULT NULL,
  `classname` varchar(255) DEFAULT NULL,
  `classpath` varchar(255) DEFAULT NULL,
  `templatepath` varchar(255) DEFAULT NULL,
  `modules` varchar(500) DEFAULT NULL,
  `sourcemodule` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `com_vtiger_workflow_tasktypes`
--

INSERT IGNORE INTO `com_vtiger_workflow_tasktypes` (`id`, `tasktypename`, `label`, `classname`, `classpath`, `templatepath`, `modules`, `sourcemodule`) VALUES
(1, 'VTEmailTask', 'Send Mail', 'VTEmailTask', 'modules/com_vtiger_workflow/tasks/VTEmailTask.inc', 'modules/Settings/Workflows/Tasks/VTEmailTask.tpl', '{\"include\":[],\"exclude\":[]}', ''),
(2, 'VTEntityMethodTask', 'Invoke Custom Function', 'VTEntityMethodTask', 'modules/com_vtiger_workflow/tasks/VTEntityMethodTask.inc', 'modules/Settings/Workflows/Tasks/VTEntityMethodTask.tpl', '{\"include\":[],\"exclude\":[]}', ''),
(3, 'VTCreateTodoTask', 'Create Todo', 'VTCreateTodoTask', 'modules/com_vtiger_workflow/tasks/VTCreateTodoTask.inc', 'modules/Settings/Workflows/Tasks/VTCreateTodoTask.tpl', '{\"include\":[\"Leads\",\"Accounts\",\"Potentials\",\"Contacts\",\"HelpDesk\",\"Campaigns\",\"Quotes\",\"PurchaseOrder\",\"SalesOrder\",\"Invoice\",\"Project\"],\"exclude\":[\"Calendar\",\"FAQ\",\"Events\"]}', ''),
(4, 'VTCreateEventTask', 'Create Event', 'VTCreateEventTask', 'modules/com_vtiger_workflow/tasks/VTCreateEventTask.inc', 'modules/Settings/Workflows/Tasks/VTCreateEventTask.tpl', '{\"include\":[\"Leads\",\"Accounts\",\"Potentials\",\"Contacts\",\"HelpDesk\",\"Campaigns\",\"Project\"],\"exclude\":[\"Calendar\",\"FAQ\",\"Events\"]}', ''),
(5, 'VTUpdateFieldsTask', 'Update Fields', 'VTUpdateFieldsTask', 'modules/com_vtiger_workflow/tasks/VTUpdateFieldsTask.inc', 'modules/Settings/Workflows/Tasks/VTUpdateFieldsTask.tpl', '{\"include\":[],\"exclude\":[]}', ''),
(6, 'VTCreateEntityTask', 'Create Entity', 'VTCreateEntityTask', 'modules/com_vtiger_workflow/tasks/VTCreateEntityTask.inc', 'modules/Settings/Workflows/Tasks/VTCreateEntityTask.tpl', '{\"include\":[],\"exclude\":[]}', ''),
(7, 'VTSMSTask', 'SMS Task', 'VTSMSTask', 'modules/com_vtiger_workflow/tasks/VTSMSTask.inc', 'modules/Settings/Workflows/Tasks/VTSMSTask.tpl', '{\"include\":[],\"exclude\":[]}', 'SMSNotifier');

-- --------------------------------------------------------

--
-- Table structure for table `com_vtiger_workflow_tasktypes_seq`
--

DROP TABLE IF EXISTS `com_vtiger_workflow_tasktypes_seq`;
CREATE TABLE `com_vtiger_workflow_tasktypes_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `com_vtiger_workflow_tasktypes_seq`
--

INSERT IGNORE INTO `com_vtiger_workflow_tasktypes_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_files`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_files`;
CREATE TABLE `gooyaacc_cloud_files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` int(10) UNSIGNED NOT NULL,
  `folder_id` bigint(20) UNSIGNED NOT NULL,
  `current_attachment_id` bigint(20) UNSIGNED NOT NULL COMMENT 'gooya_attachment_storage.attachment_id نسخه جاری',
  `orig_name` varchar(255) NOT NULL,
  `ext` varchar(16) NOT NULL DEFAULT '',
  `mime` varchar(150) NOT NULL DEFAULT 'application/octet-stream',
  `size_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `sha256` char(64) NOT NULL DEFAULT '',
  `version_no` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `description` varchar(500) DEFAULT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT 0,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `deleted_at` datetime DEFAULT NULL,
  `purge_status` enum('none','pending','failed') NOT NULL DEFAULT 'none',
  `created_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='متادیتای منطقی فایل‌های GooyaCloud با ارجاع به سرور گویا';

--
-- Dumping data for table `gooyaacc_cloud_files`
--

INSERT IGNORE INTO `gooyaacc_cloud_files` (`id`, `owner_id`, `folder_id`, `current_attachment_id`, `orig_name`, `ext`, `mime`, `size_bytes`, `sha256`, `version_no`, `description`, `is_starred`, `deleted`, `deleted_at`, `purge_status`, `created_by`, `created_at`, `updated_at`) VALUES
(143, 1, 284, 2715, 'Book1 (2).pdf', 'pdf', 'application/pdf', 65836, 'bb24ac42acb3d2959b1e39d9a22a77c41d6ff0054e5c9997bd4952d751d505a2', 1, NULL, 1, 0, NULL, 'none', 1, '2026-08-17 10:36:23', '2026-08-17 10:36:31');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_folders`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_folders`;
CREATE TABLE `gooyaacc_cloud_folders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` int(10) UNSIGNED NOT NULL,
  `parent_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `is_root` tinyint(1) NOT NULL DEFAULT 0,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `deleted_at` datetime DEFAULT NULL,
  `created_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='درخت پوشه‌های فضای ابری گویا';

--
-- Dumping data for table `gooyaacc_cloud_folders`
--

INSERT IGNORE INTO `gooyaacc_cloud_folders` (`id`, `owner_id`, `parent_id`, `name`, `is_root`, `deleted`, `deleted_at`, `created_by`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, 'فضای من', 1, 0, NULL, 1, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(2, 2, NULL, 'فضای من', 1, 0, NULL, 2, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(3, 3, NULL, 'فضای من', 1, 0, NULL, 3, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(4, 4, NULL, 'فضای من', 1, 0, NULL, 4, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(5, 5, NULL, 'فضای من', 1, 0, NULL, 5, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(6, 6, NULL, 'فضای من', 1, 0, NULL, 6, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(7, 7, NULL, 'فضای من', 1, 0, NULL, 7, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(8, 8, NULL, 'فضای من', 1, 0, NULL, 8, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(9, 9, NULL, 'فضای من', 1, 0, NULL, 9, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(10, 10, NULL, 'فضای من', 1, 0, NULL, 10, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(11, 11, NULL, 'فضای من', 1, 0, NULL, 11, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(12, 12, NULL, 'فضای من', 1, 0, NULL, 12, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(13, 13, NULL, 'فضای من', 1, 0, NULL, 13, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(14, 14, NULL, 'فضای من', 1, 0, NULL, 14, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(15, 15, NULL, 'فضای من', 1, 0, NULL, 15, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(16, 16, NULL, 'فضای من', 1, 0, NULL, 16, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(17, 17, NULL, 'فضای من', 1, 0, NULL, 17, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(18, 18, NULL, 'فضای من', 1, 0, NULL, 18, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(19, 19, NULL, 'فضای من', 1, 0, NULL, 19, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(20, 20, NULL, 'فضای من', 1, 0, NULL, 20, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(21, 21, NULL, 'فضای من', 1, 0, NULL, 21, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(22, 22, NULL, 'فضای من', 1, 0, NULL, 22, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(23, 23, NULL, 'فضای من', 1, 0, NULL, 23, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(24, 24, NULL, 'فضای من', 1, 0, NULL, 24, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(25, 25, NULL, 'فضای من', 1, 0, NULL, 25, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(26, 26, NULL, 'فضای من', 1, 0, NULL, 26, '2026-08-09 14:00:09', '2026-08-09 14:00:09'),
(98, 1, 1, 'ذرذر', 0, 0, NULL, 1, '2026-08-10 05:43:00', '2026-08-10 05:43:00'),
(272, 1, 1, 'آرشیو چت‌های گویا', 0, 0, NULL, 1, '2026-08-11 07:59:23', '2026-08-11 07:59:23'),
(284, 1, 1, 'cvvcv', 0, 0, NULL, 1, '2026-08-17 10:34:55', '2026-08-17 10:34:55');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_links`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_links`;
CREATE TABLE `gooyaacc_cloud_links` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `item_type` enum('file','folder') NOT NULL,
  `item_id` bigint(20) UNSIGNED NOT NULL,
  `token` char(64) NOT NULL,
  `permission` enum('view','download') NOT NULL DEFAULT 'view',
  `password_hash` varchar(255) DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL,
  `max_downloads` int(10) UNSIGNED DEFAULT NULL,
  `download_count` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `revoked` tinyint(1) NOT NULL DEFAULT 0,
  `created_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='لینک عمومی محدود و قابل ابطال GooyaCloud';

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_log`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_log`;
CREATE TABLE `gooyaacc_cloud_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL DEFAULT '',
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `action` varchar(40) NOT NULL,
  `item_type` enum('file','folder') DEFAULT NULL,
  `item_id` bigint(20) UNSIGNED DEFAULT NULL,
  `attachment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `target_user_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'مالک دارایی در اقدام بین‌کاربری/ادمین',
  `success` tinyint(1) NOT NULL DEFAULT 1,
  `error_code` varchar(80) NOT NULL DEFAULT '',
  `detail` text DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  `ua` varchar(255) DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='لاگ حسابرسی غیرقابل حذف از پنل GooyaCloud';

--
-- Dumping data for table `gooyaacc_cloud_log`
--

INSERT IGNORE INTO `gooyaacc_cloud_log` (`id`, `request_id`, `user_id`, `action`, `item_type`, `item_id`, `attachment_id`, `target_user_id`, `success`, `error_code`, `detail`, `ip`, `ua`, `created_at`) VALUES
(445, 'b0d2e973-fdb9-4f6f-bda1-ae6dbc537fd3', 1, 'module_enable', NULL, NULL, NULL, 1, 1, '', '{\"public_links\":1,\"versioning\":1}', '', '', '2026-08-09 16:50:47'),
(446, '08c9d7ef-f057-77fe-7ac7-60dd3fcb4f71', 1, 'module_enable', NULL, NULL, NULL, 1, 1, '', '{\"public_links\":1,\"versioning\":1}', '', '', '2026-08-09 16:52:03'),
(454, 'e42ddac1-4523-aa55-ee6d-ff96aace00f0', 1, 'cron_register', NULL, NULL, NULL, 1, 1, '', '{\"changed\":2,\"task_ids\":[9,10]}', '', 'GooyaCloud scheduler', '2026-08-09 17:10:24'),
(455, '7d5410a9-fd9d-9329-658f-d016f8fb6971', 1, 'cron_purge', NULL, NULL, NULL, 1, 1, '', '{\"folders\":0,\"files\":0,\"versions\":0,\"failed\":0,\"errors\":[]}', '', 'GooyaCloud scheduler', '2026-08-09 17:11:11'),
(456, 'fecb0d07-0e74-b451-793c-8fe06cd94e53', 1, 'cron_reconcile', NULL, NULL, NULL, 1, 1, '', '{\"checked\":26,\"changed\":0,\"log_count\":0}', '', 'GooyaCloud scheduler', '2026-08-09 17:11:20'),
(468, '3af46072-b50a-c9a4-fa6a-f5fcd35471a8', 1, 'folder_create', 'folder', 98, NULL, 1, 1, '', '{\"parent_id\":1}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36', '2026-08-10 05:43:00'),
(625, '73e5126a-9251-e703-7ee4-2fd95a9e28e7', 1, 'quota_reconcile', NULL, NULL, NULL, 1, 1, '', '{\"old_used_bytes\":1270,\"new_used_bytes\":0}', '', '', '2026-08-10 06:40:20'),
(777, '1cba4f93-ef84-3653-e474-720fee32d5d4', 1, 'quota_reconcile', NULL, NULL, NULL, 1, 1, '', '{\"old_used_bytes\":127,\"new_used_bytes\":0}', '', '', '2026-08-10 06:47:02'),
(866, '28ea1a9a-f410-fa38-28af-988fb81b3fa9', 1, 'quota_reconcile', NULL, NULL, NULL, 1, 1, '', '{\"old_used_bytes\":127,\"new_used_bytes\":0}', '', '', '2026-08-10 06:48:16'),
(1089, '2d714e1c-b95f-d12c-4648-b9a6f91a9544', 1, 'folder_create', 'folder', 272, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-11 07:59:23'),
(1090, '46d3ca6b-27c2-687a-ca97-bdb55f478ec5', 1, 'upload', 'file', 114, 2550, 1, 1, '', '{\"folder_id\":272,\"size\":4420}', '', '', '2026-08-11 07:59:24'),
(1091, 'a8e85356-b587-b2fb-8c9b-70a3ba71462a', 1, 'delete', 'file', 114, 2550, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-11 07:59:25'),
(1092, '6123ae77-e08e-bf32-3764-0a06aa7c6787', 1, 'purge', 'file', 114, NULL, 1, 1, '', '{\"bytes\":4420,\"attachments\":1}', '', '', '2026-08-11 07:59:25'),
(1093, 'f0dee22b-d0d7-1b60-bd6f-6e437f7db77c', 1, 'upload', 'file', 115, 2560, 1, 1, '', '{\"folder_id\":272,\"size\":4420}', '', '', '2026-08-11 08:26:42'),
(1094, '0112a28a-9a3a-e8f8-f9d7-c10da7419abd', 1, 'upload', 'file', 116, 2561, 1, 1, '', '{\"folder_id\":272,\"size\":4420}', '', '', '2026-08-11 08:26:43'),
(1095, 'a8f279dd-4331-4250-9f0c-b1b132fa9751', 1, 'delete', 'file', 116, 2561, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-11 08:26:43'),
(1096, '769fa00e-c4bf-8c33-8d74-06f1ad637002', 1, 'purge', 'file', 116, NULL, 1, 1, '', '{\"bytes\":4420,\"attachments\":1}', '', '', '2026-08-11 08:26:43'),
(1097, '0e62ddc5-39c7-5c37-5200-4e769d297d5c', 1, 'delete', 'file', 115, 2560, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-11 08:26:44'),
(1098, 'd5eeb1e6-6260-6e80-0703-e13a83740bae', 1, 'purge', 'file', 115, NULL, 1, 1, '', '{\"bytes\":4420,\"attachments\":1}', '', '', '2026-08-11 08:26:44'),
(1099, 'b1750203-30fe-423c-e20c-ad7c38b10f8e', 1, 'upload', 'file', 117, 2566, 1, 1, '', '{\"folder_id\":272,\"size\":4420}', '', '', '2026-08-11 08:27:07'),
(1100, '06867deb-d8d8-10c0-8103-8d8c4bb3a949', 1, 'upload', 'file', 118, 2567, 1, 1, '', '{\"folder_id\":272,\"size\":4423}', '', '', '2026-08-11 08:27:09'),
(1101, '0ae5bd91-b3f9-180f-52f2-f76f8107e400', 1, 'delete', 'file', 118, 2567, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-11 08:27:09'),
(1102, 'c10dd40b-19b7-ff02-ce18-38a537e9e342', 1, 'purge', 'file', 118, NULL, 1, 1, '', '{\"bytes\":4423,\"attachments\":1}', '', '', '2026-08-11 08:27:09'),
(1103, 'ce6d2f2e-35b1-a3ba-f7aa-83641353747f', 1, 'delete', 'file', 117, 2566, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-11 08:27:09'),
(1104, '6fad994d-65ae-9eea-837c-8bf8424af727', 1, 'purge', 'file', 117, NULL, 1, 1, '', '{\"bytes\":4420,\"attachments\":1}', '', '', '2026-08-11 08:27:09'),
(1105, 'a80b1f69-6381-feaf-1ba1-76bb66aa30ff', 1, 'folder_create', 'folder', 273, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-12 09:54:35'),
(1106, '0365e26f-c053-03ec-027b-4d8e6ba5f91a', 1, 'upload', 'file', 119, 2581, 1, 1, '', '{\"folder_id\":273,\"size\":1443}', '', '', '2026-08-12 09:54:37'),
(1107, 'd0b8c239-11c8-00cc-fe3b-d9572efd49cd', 1, 'delete', 'file', 119, 2581, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 09:54:38'),
(1108, '91104e1a-e00d-ff0c-07f1-d7a880e496ee', 1, 'purge', 'file', 119, NULL, 1, 1, '', '{\"bytes\":1443,\"attachments\":1}', '', '', '2026-08-12 09:54:39'),
(1109, 'e07dce72-f465-b3a3-6ee6-56876740a610', 1, 'delete', 'folder', 273, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 09:54:39'),
(1110, '76c294a9-f6ad-4929-c44b-0ec54db8b1d2', 1, 'purge', 'folder', 273, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-12 09:54:39'),
(1111, '71312114-680e-cc86-7877-f7b61b355da2', 1, 'folder_create', 'folder', 274, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-12 10:27:14'),
(1112, '72c50575-249c-e88e-d8cc-327504bc0556', 1, 'upload', 'file', 120, 2588, 1, 1, '', '{\"folder_id\":274,\"size\":1414}', '', '', '2026-08-12 10:27:15'),
(1113, 'd44b68eb-b010-b2b8-2e22-5f6207ceb748', 1, 'upload', 'file', 121, 2589, 1, 1, '', '{\"folder_id\":274,\"size\":1414}', '', '', '2026-08-12 10:27:18'),
(1114, '103f45ab-167d-e745-baa0-dbc9b8a697f7', 1, 'delete', 'file', 121, 2589, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:27:21'),
(1115, '2718d192-2a36-802b-1aef-f1a9c54102b5', 1, 'purge', 'file', 121, NULL, 1, 1, '', '{\"bytes\":1414,\"attachments\":1}', '', '', '2026-08-12 10:27:21'),
(1116, '20199df9-1e80-51ad-f2b2-21c1cfd33b6d', 1, 'delete', 'file', 120, 2588, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:27:21'),
(1117, '3b887dce-edba-31f5-faa8-a5116d370ea0', 1, 'purge', 'file', 120, NULL, 1, 1, '', '{\"bytes\":1414,\"attachments\":1}', '', '', '2026-08-12 10:27:21'),
(1118, 'e17e3351-05a9-747a-cf81-09774eedf022', 1, 'delete', 'folder', 274, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:27:22'),
(1119, 'dd768b7f-4ebf-8c0f-0181-f660ca8a6f30', 1, 'purge', 'folder', 274, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-12 10:27:22'),
(1120, 'b5c6f2e0-f02e-c5f2-38fd-78b3923e7aa8', 1, 'folder_create', 'folder', 275, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-12 10:28:09'),
(1121, '18e3785d-1e1b-0323-486a-8feed4acd4a8', 1, 'upload', 'file', 122, 2592, 1, 1, '', '{\"folder_id\":275,\"size\":1414}', '', '', '2026-08-12 10:28:10'),
(1122, '86ba27d6-ff1e-8b46-3899-3637b3ab5d96', 1, 'upload', 'file', 123, 2593, 1, 1, '', '{\"folder_id\":275,\"size\":1414}', '', '', '2026-08-12 10:28:13'),
(1123, '652e8fd3-a175-1419-f14a-7f5d9412f13a', 1, 'delete', 'file', 123, 2593, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:28:15'),
(1124, '1990d78e-7930-17c1-e38c-59bab06289ad', 1, 'purge', 'file', 123, NULL, 1, 1, '', '{\"bytes\":1414,\"attachments\":1}', '', '', '2026-08-12 10:28:15'),
(1125, '8c1fe939-4b4b-18eb-e1d2-2b1b32c2b384', 1, 'delete', 'file', 122, 2592, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:28:15'),
(1126, 'a3e6ae95-e6ae-a5ff-d566-f44528865b86', 1, 'purge', 'file', 122, NULL, 1, 1, '', '{\"bytes\":1414,\"attachments\":1}', '', '', '2026-08-12 10:28:16'),
(1127, 'cfc71e96-bf4e-eecb-564e-25a59a2fc5ef', 1, 'delete', 'folder', 275, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-12 10:28:16'),
(1128, '57805f0b-6457-b596-d857-2ce4bac4f084', 1, 'purge', 'folder', 275, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-12 10:28:16'),
(1129, '11b41e49-83aa-d1ff-c0e9-2e50e633680d', 1, 'folder_create', 'folder', 276, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:11:28'),
(1130, 'c545e5a1-8190-c22f-5f83-e62e1b73abfc', 1, 'upload', 'file', 124, 2623, 1, 1, '', '{\"folder_id\":276,\"size\":1444}', '', '', '2026-08-13 09:11:28'),
(1131, '99a4c04a-dd9d-44c8-e8e1-d67178f12116', 1, 'delete', 'file', 124, 2623, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:11:29'),
(1132, '29ac3740-a270-687e-4539-1b94b4cb614f', 1, 'purge', 'file', 124, NULL, 1, 1, '', '{\"bytes\":1444,\"attachments\":1}', '', '', '2026-08-13 09:11:29'),
(1133, '0ac4e396-a92c-c682-37da-adc8ccd26d18', 1, 'delete', 'folder', 276, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:11:29'),
(1134, '032b289e-9872-b8a2-30ef-8812f34a3505', 1, 'purge', 'folder', 276, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:11:29'),
(1135, 'ffee4e07-f705-f1f8-aa22-ebe3758a970f', 1, 'folder_create', 'folder', 277, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:11:34'),
(1136, '46d9bcbf-b014-ff35-82ae-6bc106d59ee7', 1, 'upload', 'file', 125, 2626, 1, 1, '', '{\"folder_id\":277,\"size\":1415}', '', '', '2026-08-13 09:11:34'),
(1137, '0bd2dfa9-a9f2-f40b-c13f-a37d5987832d', 1, 'upload', 'file', 126, 2627, 1, 1, '', '{\"folder_id\":277,\"size\":1416}', '', '', '2026-08-13 09:11:35'),
(1138, '1d10598a-6b10-acb3-4921-f99bf5b6cca8', 1, 'delete', 'file', 126, 2627, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:11:37'),
(1139, 'e6e33f67-acd9-218b-a2e5-55b39a3bdf38', 1, 'purge', 'file', 126, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:11:37'),
(1140, '3a54a398-770a-7e14-fd67-bb6c5c629efe', 1, 'delete', 'file', 125, 2626, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:11:37'),
(1141, '47e1aa3d-1214-8760-b7c2-a98d646e2658', 1, 'purge', 'file', 125, NULL, 1, 1, '', '{\"bytes\":1415,\"attachments\":1}', '', '', '2026-08-13 09:11:37'),
(1142, '23117ecd-9b7b-1b01-0bce-ae1e6183f3ce', 1, 'delete', 'folder', 277, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:11:37'),
(1143, '58e216f8-5bba-5137-85cf-e6c803e40263', 1, 'purge', 'folder', 277, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:11:37'),
(1144, 'f89ed463-6286-0f23-e1ea-b5243d661341', 1, 'folder_create', 'folder', 278, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:39:57'),
(1145, 'a432cefb-e7bd-e34a-bc7f-1e64fd373b5c', 1, 'upload', 'file', 127, 2636, 1, 1, '', '{\"folder_id\":278,\"size\":1416}', '', '', '2026-08-13 09:39:57'),
(1146, '2ed6ab0d-6ef8-386b-f380-159c55e10704', 1, 'upload', 'file', 128, 2637, 1, 1, '', '{\"folder_id\":278,\"size\":1416}', '', '', '2026-08-13 09:39:59'),
(1147, '1f27da34-8ac2-62da-ad3f-2fb4cbe0b001', 1, 'delete', 'file', 128, 2637, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:40:00'),
(1148, '8f1dda9b-0248-b060-1ef2-3237211da89a', 1, 'purge', 'file', 128, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:40:00'),
(1149, '60bf0da5-9af5-f05c-c8ae-1ec49e66c4a0', 1, 'delete', 'file', 127, 2636, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:40:00'),
(1150, '183eec19-1bcb-f654-f41d-f90c37d4c176', 1, 'purge', 'file', 127, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:40:00'),
(1151, '221c6192-1f72-49c6-aaa5-2fbe8567e663', 1, 'delete', 'folder', 278, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:40:00'),
(1152, '2c5b6bcd-db9b-800f-a5be-bffd89636734', 1, 'purge', 'folder', 278, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:40:00'),
(1153, '17b8a054-08c6-5cca-6a53-f9a6eea62d54', 1, 'folder_create', 'folder', 279, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:41:12'),
(1154, '7cae57d1-8619-ab12-4beb-2185230d09b9', 1, 'upload', 'file', 129, 2642, 1, 1, '', '{\"folder_id\":279,\"size\":1416}', '', '', '2026-08-13 09:41:12'),
(1155, 'ee09f77f-4825-6251-cd54-39da45289858', 1, 'upload', 'file', 130, 2643, 1, 1, '', '{\"folder_id\":279,\"size\":1416}', '', '', '2026-08-13 09:41:14'),
(1156, '90e14280-52f4-ae82-0e57-23f38d02fb23', 1, 'upload', 'file', 131, 2644, 1, 1, '', '{\"folder_id\":279,\"size\":1416}', '', '', '2026-08-13 09:41:15'),
(1157, '1648aa1c-be40-13db-81a3-fcb8013fa73b', 1, 'upload', 'file', 132, 2645, 1, 1, '', '{\"folder_id\":279,\"size\":1416}', '', '', '2026-08-13 09:41:16'),
(1158, '9aa1c315-b72d-20d8-e336-1674e03785e4', 1, 'delete', 'file', 132, 2645, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:41:17'),
(1159, '022dc803-fd09-fa12-73de-079e252b15d8', 1, 'purge', 'file', 132, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:41:17'),
(1160, 'aac58294-f308-f8d5-1d37-5efc0c9c2b26', 1, 'delete', 'file', 131, 2644, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:41:17'),
(1161, '98926fb7-f163-6a06-f4d4-ade50d625175', 1, 'purge', 'file', 131, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:41:17'),
(1162, 'ac85c6a9-dbea-f910-76d9-01d76037a0a8', 1, 'delete', 'file', 130, 2643, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:41:18'),
(1163, 'dd370f91-adf1-28c2-8fda-93bfb51c5791', 1, 'purge', 'file', 130, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:41:18'),
(1164, '9a61773a-4211-be4e-ed91-4d49b8064d38', 1, 'delete', 'file', 129, 2642, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:41:18'),
(1165, '88147263-7d51-714e-8228-eb96aa52b7e3', 1, 'purge', 'file', 129, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:41:18'),
(1166, '2d4a492b-c098-24ce-fcbc-4339f6791d4f', 1, 'delete', 'folder', 279, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:41:18'),
(1167, '171c279b-b819-24fe-8aa9-358375c04070', 1, 'purge', 'folder', 279, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:41:18'),
(1168, '455942f0-cf30-0ed4-14d8-dcd684ae3bec', 1, 'folder_create', 'folder', 280, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:55:03'),
(1169, 'e625cdc3-1673-7aa9-be2e-2a2bf4633409', 1, 'upload', 'file', 133, 2659, 1, 1, '', '{\"folder_id\":280,\"size\":1445}', '', '', '2026-08-13 09:55:03'),
(1170, '5e5b0da1-5a2e-921e-757f-c02d574f2e18', 1, 'delete', 'file', 133, 2659, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:04'),
(1171, '7e0ab1e4-d329-4a70-88d9-a84a81597dd8', 1, 'purge', 'file', 133, NULL, 1, 1, '', '{\"bytes\":1445,\"attachments\":1}', '', '', '2026-08-13 09:55:04'),
(1172, 'cfc90f57-c2dc-787c-955f-655ce6668d80', 1, 'delete', 'folder', 280, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:04'),
(1173, 'f1fae54a-d622-65ca-e60d-15a22d7b3256', 1, 'purge', 'folder', 280, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:55:04'),
(1174, 'bf7a59f3-6295-3816-60c7-c31193ebfd70', 1, 'folder_create', 'folder', 281, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-13 09:55:09'),
(1175, 'd3cb042a-cdc0-b536-2515-401a0af517fa', 1, 'upload', 'file', 134, 2664, 1, 1, '', '{\"folder_id\":281,\"size\":1416}', '', '', '2026-08-13 09:55:09'),
(1176, '707138c5-acc1-8c04-269f-6d22d78eca93', 1, 'upload', 'file', 135, 2665, 1, 1, '', '{\"folder_id\":281,\"size\":1416}', '', '', '2026-08-13 09:55:11'),
(1177, 'fa28a272-82bd-c6c0-1b72-0ae753a0c123', 1, 'upload', 'file', 136, 2666, 1, 1, '', '{\"folder_id\":281,\"size\":1416}', '', '', '2026-08-13 09:55:12'),
(1178, '5fa4669d-83df-1b45-114b-9ae30da3d9e0', 1, 'upload', 'file', 137, 2667, 1, 1, '', '{\"folder_id\":281,\"size\":1416}', '', '', '2026-08-13 09:55:13'),
(1179, '6e0d5fe8-8a32-64f1-ecbe-34dc47d60fbf', 1, 'delete', 'file', 137, 2667, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:14'),
(1180, '865f91c4-f633-b757-6f22-0f036baf9885', 1, 'purge', 'file', 137, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:55:14'),
(1181, '5a2ca35f-d9cd-2427-d8b4-2a5199f71d63', 1, 'delete', 'file', 136, 2666, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:14'),
(1182, 'ea901b8e-0ddd-1732-c4c4-3f024cf51636', 1, 'purge', 'file', 136, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:55:14'),
(1183, '76109cc4-5031-f494-20b4-5c9051c50f65', 1, 'delete', 'file', 135, 2665, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:14'),
(1184, '9c8ebee5-f9d8-0726-5d4b-9c4d4c5412f4', 1, 'purge', 'file', 135, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:55:14'),
(1185, '84f1923b-c193-ac56-7842-cdbefe9ee40b', 1, 'delete', 'file', 134, 2664, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:14'),
(1186, 'aadd9138-c74f-75ee-92f1-16bf5dd83a08', 1, 'purge', 'file', 134, NULL, 1, 1, '', '{\"bytes\":1416,\"attachments\":1}', '', '', '2026-08-13 09:55:14'),
(1187, 'da4806c2-9dcb-44e6-4a73-729f9c43d517', 1, 'delete', 'folder', 281, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-13 09:55:15'),
(1188, 'ad299e1b-de4d-e791-1c42-b2d0e90eac10', 1, 'purge', 'folder', 281, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-13 09:55:15'),
(1189, '1aa39cc6-1dfd-f98b-68ce-82b0e2dcae8d', 1, 'folder_create', 'folder', 282, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-15 07:10:04'),
(1190, '83cbd6ec-7beb-a8e9-0702-af79877c8304', 1, 'upload', 'file', 138, 2689, 1, 1, '', '{\"folder_id\":282,\"size\":1446}', '', '', '2026-08-15 07:10:04'),
(1191, '21671aea-9352-2f73-cdcf-4c21d6bce550', 1, 'delete', 'file', 138, 2689, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:05'),
(1192, '698d9139-51a5-61dc-e810-9405842a8784', 1, 'purge', 'file', 138, NULL, 1, 1, '', '{\"bytes\":1446,\"attachments\":1}', '', '', '2026-08-15 07:10:05'),
(1193, 'f8735800-edcf-2c31-e693-f3ea9a7953fb', 1, 'delete', 'folder', 282, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:05'),
(1194, '62024bfa-927b-0732-0e99-2f652a84d48c', 1, 'purge', 'folder', 282, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-15 07:10:05'),
(1195, '506af3ad-03d2-ce35-0972-64e11b73d2ea', 1, 'folder_create', 'folder', 283, NULL, 1, 1, '', '{\"parent_id\":1}', '', '', '2026-08-15 07:10:10'),
(1196, 'e0c1fdc1-eb40-2f45-0505-2c09a1acad54', 1, 'upload', 'file', 139, 2694, 1, 1, '', '{\"folder_id\":283,\"size\":1417}', '', '', '2026-08-15 07:10:10'),
(1197, '97cbc638-1cfe-beba-7cd4-c727bb1f9d42', 1, 'upload', 'file', 140, 2695, 1, 1, '', '{\"folder_id\":283,\"size\":1417}', '', '', '2026-08-15 07:10:12'),
(1198, '4e3c3eaf-71e5-fcef-9eec-b4dbd3ea1445', 1, 'upload', 'file', 141, 2696, 1, 1, '', '{\"folder_id\":283,\"size\":1417}', '', '', '2026-08-15 07:10:13'),
(1199, 'ea94b8b7-2de6-3160-8826-e445cceef317', 1, 'upload', 'file', 142, 2697, 1, 1, '', '{\"folder_id\":283,\"size\":1419}', '', '', '2026-08-15 07:10:14'),
(1200, '2fb1b376-febc-5fc2-5050-ba3d08bfe96c', 1, 'delete', 'file', 142, 2697, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:15'),
(1201, 'b2d928ea-382a-7701-f9d0-ae4fffb878fa', 1, 'purge', 'file', 142, NULL, 1, 1, '', '{\"bytes\":1419,\"attachments\":1}', '', '', '2026-08-15 07:10:15'),
(1202, '4f28b166-130d-4aca-8eab-7b4c6dd61cbd', 1, 'delete', 'file', 141, 2696, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:15'),
(1203, 'f4263432-d9c9-2968-6507-e40627068bab', 1, 'purge', 'file', 141, NULL, 1, 1, '', '{\"bytes\":1417,\"attachments\":1}', '', '', '2026-08-15 07:10:15'),
(1204, '6eb3b61e-e974-9b00-f712-7725759ce2e7', 1, 'delete', 'file', 140, 2695, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:16'),
(1205, '7e4b69ff-1bf0-5520-2f8d-15d1dd9191ef', 1, 'purge', 'file', 140, NULL, 1, 1, '', '{\"bytes\":1417,\"attachments\":1}', '', '', '2026-08-15 07:10:16'),
(1206, '9fbb9122-cbde-0e3a-ba1a-5a492e1e38c9', 1, 'delete', 'file', 139, 2694, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:16'),
(1207, '3ce6cb05-9418-3e71-4019-b48699f640d9', 1, 'purge', 'file', 139, NULL, 1, 1, '', '{\"bytes\":1417,\"attachments\":1}', '', '', '2026-08-15 07:10:16'),
(1208, '44ed8caf-970f-389f-f2e7-d666909d3d65', 1, 'delete', 'folder', 283, NULL, 1, 1, '', '{\"soft_delete\":true}', '', '', '2026-08-15 07:10:16'),
(1209, '1dff8962-1c0a-5eae-1358-401f253be38f', 1, 'purge', 'folder', 283, NULL, 1, 1, '', '{\"files\":0,\"folders\":1}', '', '', '2026-08-15 07:10:16'),
(1210, '1139aded-8c00-6d01-28a0-2d28c3d18d88', 1, 'folder_create', 'folder', 284, NULL, 1, 1, '', '{\"parent_id\":1}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36', '2026-08-17 10:34:55'),
(1211, 'de6f7c9b-468a-522d-2ce9-d0e8e3096257', 1, 'upload', 'file', 143, 2715, 1, 1, '', '{\"folder_id\":284,\"size\":65836}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36', '2026-08-17 10:36:23'),
(1212, '2056ea99-7e3d-f17f-91f6-b28369f48120', 1, 'star_toggle', 'file', 143, 2715, 1, 1, '', '{\"is_starred\":1}', '::1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36', '2026-08-17 10:36:31');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_quota`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_quota`;
CREATE TABLE `gooyaacc_cloud_quota` (
  `user_id` int(10) UNSIGNED NOT NULL,
  `quota_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 2147483648,
  `used_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `reserved_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='سهمیه، مصرف قطعی و رزرو آپلود فضای ابری گویا';

--
-- Dumping data for table `gooyaacc_cloud_quota`
--

INSERT IGNORE INTO `gooyaacc_cloud_quota` (`user_id`, `quota_bytes`, `used_bytes`, `reserved_bytes`, `updated_at`) VALUES
(1, 2147483648, 65836, 0, '2026-08-17 10:36:23'),
(2, 2147483648, 0, 0, '2026-08-10 06:59:31'),
(3, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(4, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(5, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(6, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(7, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(8, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(9, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(10, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(11, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(12, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(13, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(14, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(15, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(16, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(17, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(18, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(19, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(20, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(21, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(22, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(23, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(24, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(25, 2147483648, 0, 0, '2026-08-09 14:00:09'),
(26, 2147483648, 0, 0, '2026-08-09 14:00:09');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_settings`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_settings`;
CREATE TABLE `gooyaacc_cloud_settings` (
  `skey` varchar(64) NOT NULL,
  `svalue` text DEFAULT NULL,
  `updated_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='سیاست‌های فضای ابری گویا؛ بدون تنظیم اتصال ذخیره‌سازی';

--
-- Dumping data for table `gooyaacc_cloud_settings`
--

INSERT IGNORE INTO `gooyaacc_cloud_settings` (`skey`, `svalue`, `updated_by`, `updated_at`) VALUES
('allowed_ext', 'doc,docx,odt,xls,xlsx,csv,ods,ppt,pptx,odp,pdf,jpg,jpeg,png,gif,webp,zip,rar,7z', 0, '2026-08-09 14:02:40'),
('blocked_ext', 'mp4,mkv,avi,mov,wmv,flv,webm,mpg,mpeg,m4v,3gp,mp3,wav,aac,ogg,flac,m4a,wma,opus,amr', 0, '2026-08-09 14:02:40'),
('default_quota', '2147483648', 1, '2026-08-10 06:59:34'),
('enable_preview', '1', 0, '2026-08-09 14:02:40'),
('enable_public_links', '1', 1, '2026-08-10 06:59:34'),
('enable_versioning', '1', 1, '2026-08-10 06:59:34'),
('max_file_size', '20971520', 1, '2026-08-10 06:59:34'),
('max_versions_per_file', '5', 1, '2026-08-10 06:59:34'),
('module_enabled', '1', 1, '2026-08-10 06:59:38'),
('notify_on_share', '1', 0, '2026-08-09 14:02:40'),
('ops_purge_error', '', 1, '2026-08-09 17:11:11'),
('ops_purge_finished_at', '2026-08-09 17:11:11', 1, '2026-08-09 17:11:11'),
('ops_purge_started_at', '2026-08-09 17:11:11', 1, '2026-08-09 17:11:11'),
('ops_purge_status', 'success', 1, '2026-08-09 17:11:11'),
('ops_purge_summary', '{&amp;amp;amp;amp;amp;amp;amp;quot;folders&amp;amp;amp;amp;amp;amp;amp;quot;:0,&amp;amp;amp;amp;amp;amp;amp;quot;files&amp;amp;amp;amp;amp;amp;amp;quot;:0,&amp;amp;amp;amp;amp;amp;amp;quot;versions&amp;amp;amp;amp;amp;amp;amp;quot;:0,&amp;amp;amp;amp;amp;amp;amp;quot;failed&amp;amp;amp;amp;amp;amp;amp;quot;:0,&amp;amp;amp;amp;amp;amp;amp;quot;errors&amp;amp;amp;amp;amp;amp;amp;quot;:[]}', 1, '2026-08-09 17:11:11'),
('ops_reconcile_error', '', 1, '2026-08-09 17:11:20'),
('ops_reconcile_finished_at', '2026-08-09 17:11:20', 1, '2026-08-09 17:11:20'),
('ops_reconcile_started_at', '2026-08-09 17:11:20', 1, '2026-08-09 17:11:20'),
('ops_reconcile_status', 'success', 1, '2026-08-09 17:11:20'),
('ops_reconcile_summary', '{&amp;amp;amp;amp;amp;amp;amp;quot;checked&amp;amp;amp;amp;amp;amp;amp;quot;:26,&amp;amp;amp;amp;amp;amp;amp;quot;changed&amp;amp;amp;amp;amp;amp;amp;quot;:0,&amp;amp;amp;amp;amp;amp;amp;quot;log_count&amp;amp;amp;amp;amp;amp;amp;quot;:0}', 1, '2026-08-09 17:11:20'),
('schema_version', '2.0', 0, '2026-08-09 14:02:40'),
('storage_gateway', 'GooyaStorage', 0, '2026-08-09 14:02:40'),
('storage_source_module', 'GooyaCloud', 0, '2026-08-09 14:02:40'),
('trash_retention_days', '30', 1, '2026-08-10 06:59:34');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_shares`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_shares`;
CREATE TABLE `gooyaacc_cloud_shares` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `item_type` enum('file','folder') NOT NULL,
  `item_id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` int(10) UNSIGNED NOT NULL,
  `target_type` enum('user','group','role') NOT NULL DEFAULT 'user',
  `target_id` int(10) UNSIGNED NOT NULL,
  `permission` enum('view','edit') NOT NULL DEFAULT 'view',
  `can_download` tinyint(1) NOT NULL DEFAULT 1,
  `can_reshare` tinyint(1) NOT NULL DEFAULT 0,
  `expires_at` datetime DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL DEFAULT 0,
  `created_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='اشتراک‌گذاری کنترل‌شدهٔ فایل و پوشه در GooyaCloud';

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_cloud_versions`
--

DROP TABLE IF EXISTS `gooyaacc_cloud_versions`;
CREATE TABLE `gooyaacc_cloud_versions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `file_id` bigint(20) UNSIGNED NOT NULL,
  `version_no` int(10) UNSIGNED NOT NULL,
  `attachment_id` bigint(20) UNSIGNED NOT NULL COMMENT 'gooya_attachment_storage.attachment_id نسخه قبلی',
  `orig_name` varchar(255) NOT NULL,
  `mime` varchar(150) NOT NULL DEFAULT 'application/octet-stream',
  `size_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `sha256` char(64) NOT NULL DEFAULT '',
  `uploaded_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `purge_status` enum('none','pending','failed') NOT NULL DEFAULT 'none',
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci COMMENT='نسخه‌های قبلی فایل با ارجاع مستقل به سرور گویا';

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_competitors`
--

DROP TABLE IF EXISTS `gooyaacc_competitors`;
CREATE TABLE `gooyaacc_competitors` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `website` varchar(255) DEFAULT NULL,
  `market` varchar(255) DEFAULT NULL,
  `products` text DEFAULT NULL,
  `strengths` text DEFAULT NULL,
  `weaknesses` text DEFAULT NULL,
  `price_level` varchar(50) DEFAULT NULL,
  `threat_level` varchar(50) DEFAULT NULL,
  `assigned_user_id` int(11) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_forecast_preferences`
--

DROP TABLE IF EXISTS `gooyaacc_forecast_preferences`;
CREATE TABLE `gooyaacc_forecast_preferences` (
  `user_id` int(19) NOT NULL,
  `default_user_id` int(19) NOT NULL DEFAULT 0,
  `sales_process` varchar(100) NOT NULL DEFAULT '',
  `payment_type` varchar(100) NOT NULL DEFAULT '',
  `column_count` tinyint(3) UNSIGNED NOT NULL DEFAULT 5,
  `interval_unit` varchar(20) NOT NULL DEFAULT 'month',
  `sort_by` varchar(20) NOT NULL DEFAULT 'name',
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooyaacc_forecast_preferences`
--

INSERT IGNORE INTO `gooyaacc_forecast_preferences` (`user_id`, `default_user_id`, `sales_process`, `payment_type`, `column_count`, `interval_unit`, `sort_by`, `updated_at`) VALUES
(1, 0, '', '', 5, 'month', 'name', '2026-08-10 07:44:33');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_attendance_statuses`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_attendance_statuses`;
CREATE TABLE `gooyaacc_kpi_attendance_statuses` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_attendance_statuses`
--

INSERT IGNORE INTO `gooyaacc_kpi_attendance_statuses` (`id`, `name`) VALUES
(1, 'حاضر'),
(2, 'غیبت'),
(3, 'مرخصی'),
(4, 'ماموریت');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_audit_logs`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_audit_logs`;
CREATE TABLE `gooyaacc_kpi_audit_logs` (
  `id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_audit_logs`
--

INSERT IGNORE INTO `gooyaacc_kpi_audit_logs` (`id`, `user_id`, `action`, `ip_address`, `created_at`) VALUES
(1, NULL, 'Users-only migration: contacts=22, accounts=1, relations=23', 'CLI', '2026-07-25 05:51:52'),
(2, NULL, 'Users-only migration: contacts=0, accounts=0, relations=0', 'CLI', '2026-07-25 05:57:09');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_avatars`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_avatars`;
CREATE TABLE `gooyaacc_kpi_avatars` (
  `user_id` int(11) NOT NULL,
  `filename` varchar(255) DEFAULT NULL,
  `mime` varchar(60) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooyaacc_kpi_avatars`
--

INSERT IGNORE INTO `gooyaacc_kpi_avatars` (`user_id`, `filename`, `mime`, `updated_at`) VALUES
(1, 'u1.jpg', 'image/jpeg', '2026-06-23 16:19:31');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_ceo_priorities`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_ceo_priorities`;
CREATE TABLE `gooyaacc_kpi_ceo_priorities` (
  `id` int(11) NOT NULL,
  `kpi_definition_id` int(11) NOT NULL,
  `priority_level` int(11) NOT NULL DEFAULT 0,
  `target_value` decimal(10,2) DEFAULT NULL,
  `ceo_comment` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_definitions`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_definitions`;
CREATE TABLE `gooyaacc_kpi_definitions` (
  `id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `max_score` decimal(6,2) NOT NULL DEFAULT 5.00,
  `weight` decimal(5,2) NOT NULL DEFAULT 0.00,
  `kpi_category` varchar(100) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `is_strategic` tinyint(4) NOT NULL DEFAULT 0,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_definitions`
--

INSERT IGNORE INTO `gooyaacc_kpi_definitions` (`id`, `title`, `description`, `max_score`, `weight`, `kpi_category`, `is_active`, `is_strategic`, `created_at`) VALUES
(49, 'حضور به‌موقع', NULL, 10.00, 5.00, 'انضباطی', 1, 1, '2026-06-23 15:51:51'),
(50, 'رعایت نظم و مقررات', NULL, 10.00, 5.00, 'انضباطی', 1, 0, '2026-06-23 15:51:51'),
(51, 'پوشش و آراستگی', NULL, 10.00, 4.00, 'انضباطی', 1, 0, '2026-06-23 15:51:51'),
(52, 'مدیریت زمان', NULL, 10.00, 4.00, 'انضباطی', 1, 0, '2026-06-23 15:51:51'),
(53, 'پایبندی به ساعت کاری', NULL, 10.00, 4.00, 'انضباطی', 1, 0, '2026-06-23 15:51:51'),
(54, 'کیفیت خروجی کار', NULL, 10.00, 6.00, 'عملکردی', 1, 1, '2026-06-23 15:51:51'),
(55, 'سرعت انجام وظایف', NULL, 10.00, 6.00, 'عملکردی', 1, 0, '2026-06-23 15:51:51'),
(56, 'دقت و کم‌خطایی', NULL, 10.00, 5.00, 'عملکردی', 1, 1, '2026-06-23 15:51:51'),
(57, 'تحقق اهداف ماهانه', NULL, 10.00, 5.00, 'عملکردی', 1, 0, '2026-06-23 15:51:51'),
(58, 'بهره‌وری', NULL, 10.00, 5.00, 'عملکردی', 1, 0, '2026-06-23 15:51:51'),
(59, 'مسئولیت‌پذیری', NULL, 10.00, 4.00, 'رفتاری', 1, 0, '2026-06-23 15:51:51'),
(60, 'اخلاق حرفه‌ای', NULL, 10.00, 4.00, 'رفتاری', 1, 1, '2026-06-23 15:51:51'),
(61, 'برخورد با ارباب‌رجوع', NULL, 10.00, 4.00, 'رفتاری', 1, 0, '2026-06-23 15:51:51'),
(62, 'انتقادپذیری', NULL, 10.00, 3.00, 'رفتاری', 1, 0, '2026-06-23 15:51:51'),
(63, 'دانش فنی', NULL, 10.00, 5.00, 'فنی/تخصصی', 1, 1, '2026-06-23 15:51:51'),
(64, 'حل مسئله', NULL, 10.00, 5.00, 'فنی/تخصصی', 1, 0, '2026-06-23 15:51:51'),
(65, 'یادگیری و به‌روزرسانی', NULL, 10.00, 4.00, 'فنی/تخصصی', 1, 0, '2026-06-23 15:51:51'),
(66, 'استفاده از ابزارها', NULL, 10.00, 4.00, 'فنی/تخصصی', 1, 0, '2026-06-23 15:51:51'),
(67, 'همکاری تیمی', NULL, 10.00, 5.00, 'تیمی', 1, 1, '2026-06-23 15:51:51'),
(68, 'اشتراک دانش', NULL, 10.00, 5.00, 'تیمی', 1, 0, '2026-06-23 15:51:51'),
(69, 'کمک به همکاران', NULL, 10.00, 4.00, 'تیمی', 1, 0, '2026-06-23 15:51:51'),
(70, 'مشارکت در جلسات', NULL, 10.00, 4.00, 'تیمی', 1, 0, '2026-06-23 15:51:51');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_evaluations_main`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_evaluations_main`;
CREATE TABLE `gooyaacc_kpi_evaluations_main` (
  `id` int(11) NOT NULL,
  `evaluator_id` int(11) NOT NULL,
  `evaluated_entity_id` int(11) NOT NULL,
  `entity_type` enum('user','team') NOT NULL DEFAULT 'user',
  `evaluation_occurrence_date` date DEFAULT NULL,
  `evaluation_start_date` date DEFAULT NULL,
  `evaluation_end_date` date DEFAULT NULL,
  `attendance_status_id` int(11) DEFAULT NULL,
  `entry_time` time DEFAULT NULL,
  `exit_time` time DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `attachment` varchar(255) DEFAULT NULL,
  `overall_percentage_score` decimal(5,2) DEFAULT NULL,
  `final_kpi_index` decimal(5,2) DEFAULT NULL,
  `evaluation_status_id` int(11) NOT NULL DEFAULT 2,
  `affects_average` tinyint(4) NOT NULL DEFAULT 1,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_evaluations_main`
--

INSERT IGNORE INTO `gooyaacc_kpi_evaluations_main` (`id`, `evaluator_id`, `evaluated_entity_id`, `entity_type`, `evaluation_occurrence_date`, `evaluation_start_date`, `evaluation_end_date`, `attendance_status_id`, `entry_time`, `exit_time`, `comments`, `attachment`, `overall_percentage_score`, `final_kpi_index`, `evaluation_status_id`, `affects_average`, `created_at`, `updated_at`) VALUES
(97, 6, 13, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 76.00, 7.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(98, 1, 13, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 86.00, 8.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(99, 6, 7, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 77.00, 7.70, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(100, 1, 7, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 83.00, 8.30, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(101, 7, 8, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 76.00, 7.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(102, 6, 8, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 71.00, 7.10, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(103, 1, 8, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 80.00, 8.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(104, 7, 9, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 80.00, 8.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(105, 6, 9, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 75.00, 7.50, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(106, 1, 9, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 84.00, 8.40, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(107, 7, 10, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 84.00, 8.40, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(108, 6, 10, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 79.00, 7.90, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(109, 1, 10, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 88.00, 8.80, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(110, 6, 14, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 80.50, 8.05, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(111, 1, 14, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 90.50, 9.05, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(112, 6, 11, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 81.50, 8.15, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(113, 1, 11, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 87.50, 8.75, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(114, 11, 12, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 80.50, 8.05, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(115, 6, 12, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 75.50, 7.55, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(116, 1, 12, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 84.50, 8.45, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(117, 11, 13, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 84.50, 8.45, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(118, 6, 13, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 79.50, 7.95, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(119, 1, 13, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 88.50, 8.85, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(120, 11, 14, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 88.50, 8.85, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(121, 6, 14, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 83.50, 8.35, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(122, 1, 14, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 92.50, 9.25, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(123, 6, 15, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 63.60, 6.36, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(124, 1, 15, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 73.60, 7.36, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(125, 6, 15, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 64.60, 6.46, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(126, 1, 15, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 70.60, 7.06, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(127, 15, 16, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 63.60, 6.36, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(128, 6, 16, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 58.60, 5.86, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(129, 1, 16, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 67.60, 6.76, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(130, 15, 17, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 67.60, 6.76, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(131, 6, 17, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 62.60, 6.26, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(132, 1, 17, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 71.60, 7.16, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(133, 15, 18, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 71.60, 7.16, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(134, 6, 18, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 66.60, 6.66, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(135, 1, 18, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 75.60, 7.56, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(136, 6, 16, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 86.00, 8.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(137, 1, 16, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 96.00, 9.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(138, 6, 19, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 87.00, 8.70, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(139, 1, 19, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 93.00, 9.30, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(140, 19, 20, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 86.00, 8.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(141, 6, 20, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 81.00, 8.10, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(142, 1, 20, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 90.00, 9.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(143, 19, 21, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 90.00, 9.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(144, 6, 21, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 85.00, 8.50, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(145, 1, 21, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 94.00, 9.40, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(146, 19, 22, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 94.00, 9.40, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(147, 6, 22, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 89.00, 8.90, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(148, 1, 22, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 98.00, 9.80, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(149, 6, 17, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(150, 1, 17, 'team', '2026-06-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(151, 6, 23, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 97.00, 9.70, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(152, 1, 23, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(153, 23, 24, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 96.00, 9.60, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(154, 6, 24, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 91.00, 9.10, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(155, 1, 24, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(156, 23, 25, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(157, 6, 25, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 95.00, 9.50, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(158, 1, 25, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(159, 23, 26, 'user', '2026-04-18', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(160, 6, 26, 'user', '2026-05-15', NULL, NULL, 1, NULL, NULL, NULL, NULL, 95.00, 9.50, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52'),
(161, 1, 26, 'user', '2026-06-12', NULL, NULL, 1, NULL, NULL, NULL, NULL, 100.00, 10.00, 2, 1, '2026-06-23 15:51:52', '2026-06-23 15:51:52');

--
-- Triggers `gooyaacc_kpi_evaluations_main`
--
DROP TRIGGER IF EXISTS `gooyaacc_kpi_eval_users_only_bi`;
DELIMITER $$
CREATE TRIGGER `gooyaacc_kpi_eval_users_only_bi` BEFORE INSERT ON `gooyaacc_kpi_evaluations_main` FOR EACH ROW BEGIN
    IF NEW.entity_type='user' AND NOT EXISTS(
        SELECT 1 FROM vtiger_users WHERE id=NEW.evaluated_entity_id AND deleted=0
    ) THEN
        SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='KPI target must reference vtiger_users';
    END IF;
    IF NEW.entity_type='team' AND NOT EXISTS(
        SELECT 1 FROM gooyaacc_kpi_teams WHERE id=NEW.evaluated_entity_id AND deleted=0
    ) THEN
        SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='KPI team target is invalid';
    END IF;
END
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `gooyaacc_kpi_eval_users_only_bu`;
DELIMITER $$
CREATE TRIGGER `gooyaacc_kpi_eval_users_only_bu` BEFORE UPDATE ON `gooyaacc_kpi_evaluations_main` FOR EACH ROW BEGIN
    IF NEW.entity_type='user' AND NOT EXISTS(
        SELECT 1 FROM vtiger_users WHERE id=NEW.evaluated_entity_id AND deleted=0
    ) THEN
        SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='KPI target must reference vtiger_users';
    END IF;
    IF NEW.entity_type='team' AND NOT EXISTS(
        SELECT 1 FROM gooyaacc_kpi_teams WHERE id=NEW.evaluated_entity_id AND deleted=0
    ) THEN
        SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT='KPI team target is invalid';
    END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_evaluation_scores`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_evaluation_scores`;
CREATE TABLE `gooyaacc_kpi_evaluation_scores` (
  `id` int(11) NOT NULL,
  `evaluation_id` int(11) NOT NULL,
  `definition_id` int(11) NOT NULL,
  `score` decimal(5,2) NOT NULL DEFAULT 0.00,
  `feedback` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_evaluation_scores`
--

INSERT IGNORE INTO `gooyaacc_kpi_evaluation_scores` (`id`, `evaluation_id`, `definition_id`, `score`, `feedback`) VALUES
(2001, 97, 49, 9.10, NULL),
(2002, 97, 50, 7.60, NULL),
(2003, 97, 51, 8.70, NULL),
(2004, 97, 52, 6.20, NULL),
(2005, 97, 53, 7.00, NULL),
(2006, 97, 54, 6.60, NULL),
(2007, 97, 55, 9.00, NULL),
(2008, 97, 56, 8.00, NULL),
(2009, 97, 57, 6.60, NULL),
(2010, 97, 58, 9.20, NULL),
(2011, 97, 59, 8.40, NULL),
(2012, 97, 60, 8.80, NULL),
(2013, 97, 61, 7.20, NULL),
(2014, 97, 62, 6.30, NULL),
(2015, 97, 63, 6.50, NULL),
(2016, 97, 64, 7.90, NULL),
(2017, 97, 65, 8.60, NULL),
(2018, 97, 66, 8.60, NULL),
(2019, 97, 67, 7.40, NULL),
(2020, 97, 68, 8.30, NULL),
(2021, 97, 69, 7.30, NULL),
(2022, 97, 70, 6.00, NULL),
(2023, 98, 49, 8.00, NULL),
(2024, 98, 50, 9.40, NULL),
(2025, 98, 51, 9.80, NULL),
(2026, 98, 52, 7.10, NULL),
(2027, 98, 53, 10.00, NULL),
(2028, 98, 54, 10.00, NULL),
(2029, 98, 55, 9.30, NULL),
(2030, 98, 56, 8.70, NULL),
(2031, 98, 57, 8.80, NULL),
(2032, 98, 58, 7.40, NULL),
(2033, 98, 59, 9.40, NULL),
(2034, 98, 60, 8.50, NULL),
(2035, 98, 61, 9.80, NULL),
(2036, 98, 62, 9.50, NULL),
(2037, 98, 63, 8.70, NULL),
(2038, 98, 64, 8.30, NULL),
(2039, 98, 65, 8.20, NULL),
(2040, 98, 66, 8.90, NULL),
(2041, 98, 67, 9.00, NULL),
(2042, 98, 68, 8.30, NULL),
(2043, 98, 69, 8.70, NULL),
(2044, 98, 70, 9.60, NULL),
(2045, 99, 49, 8.20, NULL),
(2046, 99, 50, 6.20, NULL),
(2047, 99, 51, 6.40, NULL),
(2048, 99, 52, 8.10, NULL),
(2049, 99, 53, 6.60, NULL),
(2050, 99, 54, 6.10, NULL),
(2051, 99, 55, 8.20, NULL),
(2052, 99, 56, 9.00, NULL),
(2053, 99, 57, 7.10, NULL),
(2054, 99, 58, 8.40, NULL),
(2055, 99, 59, 8.60, NULL),
(2056, 99, 60, 7.50, NULL),
(2057, 99, 61, 7.90, NULL),
(2058, 99, 62, 8.30, NULL),
(2059, 99, 63, 9.30, NULL),
(2060, 99, 64, 9.10, NULL),
(2061, 99, 65, 7.70, NULL),
(2062, 99, 66, 9.00, NULL),
(2063, 99, 67, 7.80, NULL),
(2064, 99, 68, 8.60, NULL),
(2065, 99, 69, 8.60, NULL),
(2066, 99, 70, 9.00, NULL),
(2067, 100, 49, 9.00, NULL),
(2068, 100, 50, 9.70, NULL),
(2069, 100, 51, 7.20, NULL),
(2070, 100, 52, 9.60, NULL),
(2071, 100, 53, 6.70, NULL),
(2072, 100, 54, 9.50, NULL),
(2073, 100, 55, 6.80, NULL),
(2074, 100, 56, 9.50, NULL),
(2075, 100, 57, 9.70, NULL),
(2076, 100, 58, 6.70, NULL),
(2077, 100, 59, 9.40, NULL),
(2078, 100, 60, 7.00, NULL),
(2079, 100, 61, 9.90, NULL),
(2080, 100, 62, 7.60, NULL),
(2081, 100, 63, 7.60, NULL),
(2082, 100, 64, 9.90, NULL),
(2083, 100, 65, 7.80, NULL),
(2084, 100, 66, 9.20, NULL),
(2085, 100, 67, 7.30, NULL),
(2086, 100, 68, 7.20, NULL),
(2087, 100, 69, 9.10, NULL),
(2088, 100, 70, 7.10, NULL),
(2089, 101, 49, 8.80, NULL),
(2090, 101, 50, 8.70, NULL),
(2091, 101, 51, 8.80, NULL),
(2092, 101, 52, 8.00, NULL),
(2093, 101, 53, 7.50, NULL),
(2094, 101, 54, 8.10, NULL),
(2095, 101, 55, 8.60, NULL),
(2096, 101, 56, 6.60, NULL),
(2097, 101, 57, 8.40, NULL),
(2098, 101, 58, 7.10, NULL),
(2099, 101, 59, 7.00, NULL),
(2100, 101, 60, 6.00, NULL),
(2101, 101, 61, 7.50, NULL),
(2102, 101, 62, 7.70, NULL),
(2103, 101, 63, 8.90, NULL),
(2104, 101, 64, 8.20, NULL),
(2105, 101, 65, 7.10, NULL),
(2106, 101, 66, 6.30, NULL),
(2107, 101, 67, 8.50, NULL),
(2108, 101, 68, 6.50, NULL),
(2109, 101, 69, 8.20, NULL),
(2110, 101, 70, 8.00, NULL),
(2111, 102, 49, 6.70, NULL),
(2112, 102, 50, 7.80, NULL),
(2113, 102, 51, 6.20, NULL),
(2114, 102, 52, 7.90, NULL),
(2115, 102, 53, 8.40, NULL),
(2116, 102, 54, 7.00, NULL),
(2117, 102, 55, 8.40, NULL),
(2118, 102, 56, 6.30, NULL),
(2119, 102, 57, 6.00, NULL),
(2120, 102, 58, 7.00, NULL),
(2121, 102, 59, 7.80, NULL),
(2122, 102, 60, 8.00, NULL),
(2123, 102, 61, 6.70, NULL),
(2124, 102, 62, 7.80, NULL),
(2125, 102, 63, 7.10, NULL),
(2126, 102, 64, 8.20, NULL),
(2127, 102, 65, 6.10, NULL),
(2128, 102, 66, 5.90, NULL),
(2129, 102, 67, 8.50, NULL),
(2130, 102, 68, 5.90, NULL),
(2131, 102, 69, 7.00, NULL),
(2132, 102, 70, 6.50, NULL),
(2133, 103, 49, 7.10, NULL),
(2134, 103, 50, 8.10, NULL),
(2135, 103, 51, 7.20, NULL),
(2136, 103, 52, 7.40, NULL),
(2137, 103, 53, 8.90, NULL),
(2138, 103, 54, 8.80, NULL),
(2139, 103, 55, 7.90, NULL),
(2140, 103, 56, 9.60, NULL),
(2141, 103, 57, 8.10, NULL),
(2142, 103, 58, 9.50, NULL),
(2143, 103, 59, 8.40, NULL),
(2144, 103, 60, 7.30, NULL),
(2145, 103, 61, 9.50, NULL),
(2146, 103, 62, 8.60, NULL),
(2147, 103, 63, 8.10, NULL),
(2148, 103, 64, 7.90, NULL),
(2149, 103, 65, 8.00, NULL),
(2150, 103, 66, 7.00, NULL),
(2151, 103, 67, 7.70, NULL),
(2152, 103, 68, 8.70, NULL),
(2153, 103, 69, 8.70, NULL),
(2154, 103, 70, 8.00, NULL),
(2155, 104, 49, 9.10, NULL),
(2156, 104, 50, 9.20, NULL),
(2157, 104, 51, 9.00, NULL),
(2158, 104, 52, 8.20, NULL),
(2159, 104, 53, 8.60, NULL),
(2160, 104, 54, 8.70, NULL),
(2161, 104, 55, 7.20, NULL),
(2162, 104, 56, 7.80, NULL),
(2163, 104, 57, 9.30, NULL),
(2164, 104, 58, 7.50, NULL),
(2165, 104, 59, 9.60, NULL),
(2166, 104, 60, 6.60, NULL),
(2167, 104, 61, 6.90, NULL),
(2168, 104, 62, 7.60, NULL),
(2169, 104, 63, 8.30, NULL),
(2170, 104, 64, 8.50, NULL),
(2171, 104, 65, 6.40, NULL),
(2172, 104, 66, 9.30, NULL),
(2173, 104, 67, 9.60, NULL),
(2174, 104, 68, 8.60, NULL),
(2175, 104, 69, 7.20, NULL),
(2176, 104, 70, 9.00, NULL),
(2177, 105, 49, 6.30, NULL),
(2178, 105, 50, 9.10, NULL),
(2179, 105, 51, 7.10, NULL),
(2180, 105, 52, 6.60, NULL),
(2181, 105, 53, 7.90, NULL),
(2182, 105, 54, 8.70, NULL),
(2183, 105, 55, 8.20, NULL),
(2184, 105, 56, 7.00, NULL),
(2185, 105, 57, 7.70, NULL),
(2186, 105, 58, 6.50, NULL),
(2187, 105, 59, 9.10, NULL),
(2188, 105, 60, 7.50, NULL),
(2189, 105, 61, 7.40, NULL),
(2190, 105, 62, 8.60, NULL),
(2191, 105, 63, 7.10, NULL),
(2192, 105, 64, 8.80, NULL),
(2193, 105, 65, 6.20, NULL),
(2194, 105, 66, 5.90, NULL),
(2195, 105, 67, 7.50, NULL),
(2196, 105, 68, 7.90, NULL),
(2197, 105, 69, 6.80, NULL),
(2198, 105, 70, 8.40, NULL),
(2199, 106, 49, 9.90, NULL),
(2200, 106, 50, 7.70, NULL),
(2201, 106, 51, 6.80, NULL),
(2202, 106, 52, 9.50, NULL),
(2203, 106, 53, 7.60, NULL),
(2204, 106, 54, 7.70, NULL),
(2205, 106, 55, 9.40, NULL),
(2206, 106, 56, 9.70, NULL),
(2207, 106, 57, 9.20, NULL),
(2208, 106, 58, 8.80, NULL),
(2209, 106, 59, 9.20, NULL),
(2210, 106, 60, 9.30, NULL),
(2211, 106, 61, 7.80, NULL),
(2212, 106, 62, 9.60, NULL),
(2213, 106, 63, 8.30, NULL),
(2214, 106, 64, 6.80, NULL),
(2215, 106, 65, 8.40, NULL),
(2216, 106, 66, 8.40, NULL),
(2217, 106, 67, 7.60, NULL),
(2218, 106, 68, 8.10, NULL),
(2219, 106, 69, 7.50, NULL),
(2220, 106, 70, 7.10, NULL),
(2221, 107, 49, 7.50, NULL),
(2222, 107, 50, 9.30, NULL),
(2223, 107, 51, 8.30, NULL),
(2224, 107, 52, 8.10, NULL),
(2225, 107, 53, 7.50, NULL),
(2226, 107, 54, 9.20, NULL),
(2227, 107, 55, 7.10, NULL),
(2228, 107, 56, 7.00, NULL),
(2229, 107, 57, 6.90, NULL),
(2230, 107, 58, 9.30, NULL),
(2231, 107, 59, 7.20, NULL),
(2232, 107, 60, 9.00, NULL),
(2233, 107, 61, 7.70, NULL),
(2234, 107, 62, 10.00, NULL),
(2235, 107, 63, 9.00, NULL),
(2236, 107, 64, 8.00, NULL),
(2237, 107, 65, 6.90, NULL),
(2238, 107, 66, 7.20, NULL),
(2239, 107, 67, 9.30, NULL),
(2240, 107, 68, 8.90, NULL),
(2241, 107, 69, 9.20, NULL),
(2242, 107, 70, 8.40, NULL),
(2243, 108, 49, 9.40, NULL),
(2244, 108, 50, 6.30, NULL),
(2245, 108, 51, 7.30, NULL),
(2246, 108, 52, 6.30, NULL),
(2247, 108, 53, 6.90, NULL),
(2248, 108, 54, 6.40, NULL),
(2249, 108, 55, 7.60, NULL),
(2250, 108, 56, 7.40, NULL),
(2251, 108, 57, 6.70, NULL),
(2252, 108, 58, 6.90, NULL),
(2253, 108, 59, 8.10, NULL),
(2254, 108, 60, 6.40, NULL),
(2255, 108, 61, 6.70, NULL),
(2256, 108, 62, 9.10, NULL),
(2257, 108, 63, 7.50, NULL),
(2258, 108, 64, 8.00, NULL),
(2259, 108, 65, 6.90, NULL),
(2260, 108, 66, 9.50, NULL),
(2261, 108, 67, 7.60, NULL),
(2262, 108, 68, 7.10, NULL),
(2263, 108, 69, 8.10, NULL),
(2264, 108, 70, 6.40, NULL),
(2265, 109, 49, 9.50, NULL),
(2266, 109, 50, 9.60, NULL),
(2267, 109, 51, 7.30, NULL),
(2268, 109, 52, 10.00, NULL),
(2269, 109, 53, 7.40, NULL),
(2270, 109, 54, 9.80, NULL),
(2271, 109, 55, 8.90, NULL),
(2272, 109, 56, 8.20, NULL),
(2273, 109, 57, 8.60, NULL),
(2274, 109, 58, 8.00, NULL),
(2275, 109, 59, 9.70, NULL),
(2276, 109, 60, 7.40, NULL),
(2277, 109, 61, 9.30, NULL),
(2278, 109, 62, 7.80, NULL),
(2279, 109, 63, 9.90, NULL),
(2280, 109, 64, 10.00, NULL),
(2281, 109, 65, 8.00, NULL),
(2282, 109, 66, 8.20, NULL),
(2283, 109, 67, 8.80, NULL),
(2284, 109, 68, 9.40, NULL),
(2285, 109, 69, 8.50, NULL),
(2286, 109, 70, 8.00, NULL),
(2287, 110, 49, 6.85, NULL),
(2288, 110, 50, 6.85, NULL),
(2289, 110, 51, 8.15, NULL),
(2290, 110, 52, 9.45, NULL),
(2291, 110, 53, 8.25, NULL),
(2292, 110, 54, 7.95, NULL),
(2293, 110, 55, 9.55, NULL),
(2294, 110, 56, 7.75, NULL),
(2295, 110, 57, 9.05, NULL),
(2296, 110, 58, 8.55, NULL),
(2297, 110, 59, 9.65, NULL),
(2298, 110, 60, 8.55, NULL),
(2299, 110, 61, 7.65, NULL),
(2300, 110, 62, 8.45, NULL),
(2301, 110, 63, 6.85, NULL),
(2302, 110, 64, 7.15, NULL),
(2303, 110, 65, 7.25, NULL),
(2304, 110, 66, 9.35, NULL),
(2305, 110, 67, 9.55, NULL),
(2306, 110, 68, 7.55, NULL),
(2307, 110, 69, 9.05, NULL),
(2308, 110, 70, 8.55, NULL),
(2309, 111, 49, 10.00, NULL),
(2310, 111, 50, 8.15, NULL),
(2311, 111, 51, 7.95, NULL),
(2312, 111, 52, 8.65, NULL),
(2313, 111, 53, 9.65, NULL),
(2314, 111, 54, 9.75, NULL),
(2315, 111, 55, 9.95, NULL),
(2316, 111, 56, 9.95, NULL),
(2317, 111, 57, 9.55, NULL),
(2318, 111, 58, 10.00, NULL),
(2319, 111, 59, 8.55, NULL),
(2320, 111, 60, 7.65, NULL),
(2321, 111, 61, 8.25, NULL),
(2322, 111, 62, 9.55, NULL),
(2323, 111, 63, 9.95, NULL),
(2324, 111, 64, 9.85, NULL),
(2325, 111, 65, 8.05, NULL),
(2326, 111, 66, 10.00, NULL),
(2327, 111, 67, 7.85, NULL),
(2328, 111, 68, 8.95, NULL),
(2329, 111, 69, 9.45, NULL),
(2330, 111, 70, 7.55, NULL),
(2331, 112, 49, 9.15, NULL),
(2332, 112, 50, 9.25, NULL),
(2333, 112, 51, 9.05, NULL),
(2334, 112, 52, 8.65, NULL),
(2335, 112, 53, 9.35, NULL),
(2336, 112, 54, 7.05, NULL),
(2337, 112, 55, 9.65, NULL),
(2338, 112, 56, 9.75, NULL),
(2339, 112, 57, 6.85, NULL),
(2340, 112, 58, 6.95, NULL),
(2341, 112, 59, 7.15, NULL),
(2342, 112, 60, 7.25, NULL),
(2343, 112, 61, 7.75, NULL),
(2344, 112, 62, 9.25, NULL),
(2345, 112, 63, 8.75, NULL),
(2346, 112, 64, 6.85, NULL),
(2347, 112, 65, 6.95, NULL),
(2348, 112, 66, 7.05, NULL),
(2349, 112, 67, 6.65, NULL),
(2350, 112, 68, 7.25, NULL),
(2351, 112, 69, 6.85, NULL),
(2352, 112, 70, 7.65, NULL),
(2353, 113, 49, 7.55, NULL),
(2354, 113, 50, 9.35, NULL),
(2355, 113, 51, 8.35, NULL),
(2356, 113, 52, 9.45, NULL),
(2357, 113, 53, 9.65, NULL),
(2358, 113, 54, 9.85, NULL),
(2359, 113, 55, 8.15, NULL),
(2360, 113, 56, 7.85, NULL),
(2361, 113, 57, 9.55, NULL),
(2362, 113, 58, 9.45, NULL),
(2363, 113, 59, 7.55, NULL),
(2364, 113, 60, 10.00, NULL),
(2365, 113, 61, 7.15, NULL),
(2366, 113, 62, 8.55, NULL),
(2367, 113, 63, 8.35, NULL),
(2368, 113, 64, 10.00, NULL),
(2369, 113, 65, 8.65, NULL),
(2370, 113, 66, 9.75, NULL),
(2371, 113, 67, 8.35, NULL),
(2372, 113, 68, 9.35, NULL),
(2373, 113, 69, 8.45, NULL),
(2374, 113, 70, 7.55, NULL),
(2375, 114, 49, 6.65, NULL),
(2376, 114, 50, 7.35, NULL),
(2377, 114, 51, 9.25, NULL),
(2378, 114, 52, 7.45, NULL),
(2379, 114, 53, 6.85, NULL),
(2380, 114, 54, 7.25, NULL),
(2381, 114, 55, 8.15, NULL),
(2382, 114, 56, 7.45, NULL),
(2383, 114, 57, 8.45, NULL),
(2384, 114, 58, 8.65, NULL),
(2385, 114, 59, 9.45, NULL),
(2386, 114, 60, 9.45, NULL),
(2387, 114, 61, 7.75, NULL),
(2388, 114, 62, 7.95, NULL),
(2389, 114, 63, 7.15, NULL),
(2390, 114, 64, 8.95, NULL),
(2391, 114, 65, 9.15, NULL),
(2392, 114, 66, 6.65, NULL),
(2393, 114, 67, 9.35, NULL),
(2394, 114, 68, 8.15, NULL),
(2395, 114, 69, 8.55, NULL),
(2396, 114, 70, 8.85, NULL),
(2397, 115, 49, 6.15, NULL),
(2398, 115, 50, 7.25, NULL),
(2399, 115, 51, 8.55, NULL),
(2400, 115, 52, 6.85, NULL),
(2401, 115, 53, 7.25, NULL),
(2402, 115, 54, 7.35, NULL),
(2403, 115, 55, 6.05, NULL),
(2404, 115, 56, 7.05, NULL),
(2405, 115, 57, 6.85, NULL),
(2406, 115, 58, 6.95, NULL),
(2407, 115, 59, 7.75, NULL),
(2408, 115, 60, 7.75, NULL),
(2409, 115, 61, 8.45, NULL),
(2410, 115, 62, 6.85, NULL),
(2411, 115, 63, 7.95, NULL),
(2412, 115, 64, 8.75, NULL),
(2413, 115, 65, 6.75, NULL),
(2414, 115, 66, 7.95, NULL),
(2415, 115, 67, 7.25, NULL),
(2416, 115, 68, 6.25, NULL),
(2417, 115, 69, 8.65, NULL),
(2418, 115, 70, 6.25, NULL),
(2419, 116, 49, 9.75, NULL),
(2420, 116, 50, 9.85, NULL),
(2421, 116, 51, 8.55, NULL),
(2422, 116, 52, 7.35, NULL),
(2423, 116, 53, 9.85, NULL),
(2424, 116, 54, 7.95, NULL),
(2425, 116, 55, 8.85, NULL),
(2426, 116, 56, 7.15, NULL),
(2427, 116, 57, 9.75, NULL),
(2428, 116, 58, 7.05, NULL),
(2429, 116, 59, 10.00, NULL),
(2430, 116, 60, 8.75, NULL),
(2431, 116, 61, 8.35, NULL),
(2432, 116, 62, 9.85, NULL),
(2433, 116, 63, 9.95, NULL),
(2434, 116, 64, 9.05, NULL),
(2435, 116, 65, 8.25, NULL),
(2436, 116, 66, 9.25, NULL),
(2437, 116, 67, 10.00, NULL),
(2438, 116, 68, 7.65, NULL),
(2439, 116, 69, 8.65, NULL),
(2440, 116, 70, 8.65, NULL),
(2441, 117, 49, 9.15, NULL),
(2442, 117, 50, 7.35, NULL),
(2443, 117, 51, 8.25, NULL),
(2444, 117, 52, 8.15, NULL),
(2445, 117, 53, 8.35, NULL),
(2446, 117, 54, 8.35, NULL),
(2447, 117, 55, 9.45, NULL),
(2448, 117, 56, 8.25, NULL),
(2449, 117, 57, 7.35, NULL),
(2450, 117, 58, 6.85, NULL),
(2451, 117, 59, 8.75, NULL),
(2452, 117, 60, 8.85, NULL),
(2453, 117, 61, 8.95, NULL),
(2454, 117, 62, 9.15, NULL),
(2455, 117, 63, 8.05, NULL),
(2456, 117, 64, 7.25, NULL),
(2457, 117, 65, 9.25, NULL),
(2458, 117, 66, 7.75, NULL),
(2459, 117, 67, 8.85, NULL),
(2460, 117, 68, 8.15, NULL),
(2461, 117, 69, 9.55, NULL),
(2462, 117, 70, 7.75, NULL),
(2463, 118, 49, 9.05, NULL),
(2464, 118, 50, 9.45, NULL),
(2465, 118, 51, 7.35, NULL),
(2466, 118, 52, 8.45, NULL),
(2467, 118, 53, 6.75, NULL),
(2468, 118, 54, 9.55, NULL),
(2469, 118, 55, 8.75, NULL),
(2470, 118, 56, 8.35, NULL),
(2471, 118, 57, 6.65, NULL),
(2472, 118, 58, 8.15, NULL),
(2473, 118, 59, 7.05, NULL),
(2474, 118, 60, 8.85, NULL),
(2475, 118, 61, 7.55, NULL),
(2476, 118, 62, 6.85, NULL),
(2477, 118, 63, 6.75, NULL),
(2478, 118, 64, 8.95, NULL),
(2479, 118, 65, 9.55, NULL),
(2480, 118, 66, 7.65, NULL),
(2481, 118, 67, 8.15, NULL),
(2482, 118, 68, 8.25, NULL),
(2483, 118, 69, 7.15, NULL),
(2484, 118, 70, 6.55, NULL),
(2485, 119, 49, 8.15, NULL),
(2486, 119, 50, 8.25, NULL),
(2487, 119, 51, 10.00, NULL),
(2488, 119, 52, 10.00, NULL),
(2489, 119, 53, 9.85, NULL),
(2490, 119, 54, 8.85, NULL),
(2491, 119, 55, 10.00, NULL),
(2492, 119, 56, 8.75, NULL),
(2493, 119, 57, 8.75, NULL),
(2494, 119, 58, 9.65, NULL),
(2495, 119, 59, 10.00, NULL),
(2496, 119, 60, 8.35, NULL),
(2497, 119, 61, 8.95, NULL),
(2498, 119, 62, 9.65, NULL),
(2499, 119, 63, 7.65, NULL),
(2500, 119, 64, 10.00, NULL),
(2501, 119, 65, 7.85, NULL),
(2502, 119, 66, 7.55, NULL),
(2503, 119, 67, 9.15, NULL),
(2504, 119, 68, 8.45, NULL),
(2505, 119, 69, 9.95, NULL),
(2506, 119, 70, 7.65, NULL),
(2507, 120, 49, 9.55, NULL),
(2508, 120, 50, 10.00, NULL),
(2509, 120, 51, 7.75, NULL),
(2510, 120, 52, 8.85, NULL),
(2511, 120, 53, 10.00, NULL),
(2512, 120, 54, 7.95, NULL),
(2513, 120, 55, 10.00, NULL),
(2514, 120, 56, 9.45, NULL),
(2515, 120, 57, 9.15, NULL),
(2516, 120, 58, 8.95, NULL),
(2517, 120, 59, 9.65, NULL),
(2518, 120, 60, 10.00, NULL),
(2519, 120, 61, 9.65, NULL),
(2520, 120, 62, 8.65, NULL),
(2521, 120, 63, 9.55, NULL),
(2522, 120, 64, 8.15, NULL),
(2523, 120, 65, 8.45, NULL),
(2524, 120, 66, 8.65, NULL),
(2525, 120, 67, 9.25, NULL),
(2526, 120, 68, 9.75, NULL),
(2527, 120, 69, 9.25, NULL),
(2528, 120, 70, 9.45, NULL),
(2529, 121, 49, 9.25, NULL),
(2530, 121, 50, 8.05, NULL),
(2531, 121, 51, 9.15, NULL),
(2532, 121, 52, 9.35, NULL),
(2533, 121, 53, 6.85, NULL),
(2534, 121, 54, 8.15, NULL),
(2535, 121, 55, 9.15, NULL),
(2536, 121, 56, 7.75, NULL),
(2537, 121, 57, 9.85, NULL),
(2538, 121, 58, 9.25, NULL),
(2539, 121, 59, 9.85, NULL),
(2540, 121, 60, 7.15, NULL),
(2541, 121, 61, 9.45, NULL),
(2542, 121, 62, 7.85, NULL),
(2543, 121, 63, 8.35, NULL),
(2544, 121, 64, 6.85, NULL),
(2545, 121, 65, 9.15, NULL),
(2546, 121, 66, 7.75, NULL),
(2547, 121, 67, 7.25, NULL),
(2548, 121, 68, 9.65, NULL),
(2549, 121, 69, 9.25, NULL),
(2550, 121, 70, 7.25, NULL),
(2551, 122, 49, 9.95, NULL),
(2552, 122, 50, 9.65, NULL),
(2553, 122, 51, 8.15, NULL),
(2554, 122, 52, 8.85, NULL),
(2555, 122, 53, 7.95, NULL),
(2556, 122, 54, 7.75, NULL),
(2557, 122, 55, 9.15, NULL),
(2558, 122, 56, 8.85, NULL),
(2559, 122, 57, 10.00, NULL),
(2560, 122, 58, 9.25, NULL),
(2561, 122, 59, 9.45, NULL),
(2562, 122, 60, 8.15, NULL),
(2563, 122, 61, 10.00, NULL),
(2564, 122, 62, 8.25, NULL),
(2565, 122, 63, 7.85, NULL),
(2566, 122, 64, 8.65, NULL),
(2567, 122, 65, 9.25, NULL),
(2568, 122, 66, 9.65, NULL),
(2569, 122, 67, 8.65, NULL),
(2570, 122, 68, 8.95, NULL),
(2571, 122, 69, 10.00, NULL),
(2572, 122, 70, 10.00, NULL),
(2573, 123, 49, 6.56, NULL),
(2574, 123, 50, 4.86, NULL),
(2575, 123, 51, 7.76, NULL),
(2576, 123, 52, 4.86, NULL),
(2577, 123, 53, 7.56, NULL),
(2578, 123, 54, 7.56, NULL),
(2579, 123, 55, 6.66, NULL),
(2580, 123, 56, 5.56, NULL),
(2581, 123, 57, 4.86, NULL),
(2582, 123, 58, 6.16, NULL),
(2583, 123, 59, 5.86, NULL),
(2584, 123, 60, 5.46, NULL),
(2585, 123, 61, 6.66, NULL),
(2586, 123, 62, 5.06, NULL),
(2587, 123, 63, 4.86, NULL),
(2588, 123, 64, 7.46, NULL),
(2589, 123, 65, 6.46, NULL),
(2590, 123, 66, 5.26, NULL),
(2591, 123, 67, 6.96, NULL),
(2592, 123, 68, 6.06, NULL),
(2593, 123, 69, 5.46, NULL),
(2594, 123, 70, 5.96, NULL),
(2595, 124, 49, 6.66, NULL),
(2596, 124, 50, 8.16, NULL),
(2597, 124, 51, 6.56, NULL),
(2598, 124, 52, 6.06, NULL),
(2599, 124, 53, 8.26, NULL),
(2600, 124, 54, 6.96, NULL),
(2601, 124, 55, 8.16, NULL),
(2602, 124, 56, 5.76, NULL),
(2603, 124, 57, 6.76, NULL),
(2604, 124, 58, 8.36, NULL),
(2605, 124, 59, 6.46, NULL),
(2606, 124, 60, 6.96, NULL),
(2607, 124, 61, 7.56, NULL),
(2608, 124, 62, 6.56, NULL),
(2609, 124, 63, 7.46, NULL),
(2610, 124, 64, 8.56, NULL),
(2611, 124, 65, 8.26, NULL),
(2612, 124, 66, 8.46, NULL),
(2613, 124, 67, 8.66, NULL),
(2614, 124, 68, 8.86, NULL),
(2615, 124, 69, 8.16, NULL),
(2616, 124, 70, 7.46, NULL),
(2617, 125, 49, 7.66, NULL),
(2618, 125, 50, 7.06, NULL),
(2619, 125, 51, 7.36, NULL),
(2620, 125, 52, 7.66, NULL),
(2621, 125, 53, 5.56, NULL),
(2622, 125, 54, 7.76, NULL),
(2623, 125, 55, 7.36, NULL),
(2624, 125, 56, 7.36, NULL),
(2625, 125, 57, 5.56, NULL),
(2626, 125, 58, 7.66, NULL),
(2627, 125, 59, 5.16, NULL),
(2628, 125, 60, 5.86, NULL),
(2629, 125, 61, 7.66, NULL),
(2630, 125, 62, 5.96, NULL),
(2631, 125, 63, 6.96, NULL),
(2632, 125, 64, 6.56, NULL),
(2633, 125, 65, 5.16, NULL),
(2634, 125, 66, 7.06, NULL),
(2635, 125, 67, 5.46, NULL),
(2636, 125, 68, 6.26, NULL),
(2637, 125, 69, 6.46, NULL),
(2638, 125, 70, 7.16, NULL),
(2639, 126, 49, 8.36, NULL),
(2640, 126, 50, 5.86, NULL),
(2641, 126, 51, 6.76, NULL),
(2642, 126, 52, 6.36, NULL),
(2643, 126, 53, 5.76, NULL),
(2644, 126, 54, 8.06, NULL),
(2645, 126, 55, 6.66, NULL),
(2646, 126, 56, 6.56, NULL),
(2647, 126, 57, 7.96, NULL),
(2648, 126, 58, 7.66, NULL),
(2649, 126, 59, 8.36, NULL),
(2650, 126, 60, 6.16, NULL),
(2651, 126, 61, 6.06, NULL),
(2652, 126, 62, 8.66, NULL),
(2653, 126, 63, 7.16, NULL),
(2654, 126, 64, 5.96, NULL),
(2655, 126, 65, 6.46, NULL),
(2656, 126, 66, 6.86, NULL),
(2657, 126, 67, 8.66, NULL),
(2658, 126, 68, 7.56, NULL),
(2659, 126, 69, 5.96, NULL),
(2660, 126, 70, 7.76, NULL),
(2661, 127, 49, 5.96, NULL),
(2662, 127, 50, 7.96, NULL),
(2663, 127, 51, 6.46, NULL),
(2664, 127, 52, 5.86, NULL),
(2665, 127, 53, 6.16, NULL),
(2666, 127, 54, 5.16, NULL),
(2667, 127, 55, 6.66, NULL),
(2668, 127, 56, 5.66, NULL),
(2669, 127, 57, 5.76, NULL),
(2670, 127, 58, 4.86, NULL),
(2671, 127, 59, 5.86, NULL),
(2672, 127, 60, 7.06, NULL),
(2673, 127, 61, 7.46, NULL),
(2674, 127, 62, 5.56, NULL),
(2675, 127, 63, 7.86, NULL),
(2676, 127, 64, 6.86, NULL),
(2677, 127, 65, 7.86, NULL),
(2678, 127, 66, 5.96, NULL),
(2679, 127, 67, 6.46, NULL),
(2680, 127, 68, 5.56, NULL),
(2681, 127, 69, 5.86, NULL),
(2682, 127, 70, 6.16, NULL),
(2683, 128, 49, 6.26, NULL),
(2684, 128, 50, 5.06, NULL),
(2685, 128, 51, 6.36, NULL),
(2686, 128, 52, 4.66, NULL),
(2687, 128, 53, 6.96, NULL),
(2688, 128, 54, 5.56, NULL),
(2689, 128, 55, 6.46, NULL),
(2690, 128, 56, 4.76, NULL),
(2691, 128, 57, 5.46, NULL),
(2692, 128, 58, 5.36, NULL),
(2693, 128, 59, 6.36, NULL),
(2694, 128, 60, 6.46, NULL),
(2695, 128, 61, 5.36, NULL),
(2696, 128, 62, 4.66, NULL),
(2697, 128, 63, 5.36, NULL),
(2698, 128, 64, 4.46, NULL),
(2699, 128, 65, 5.86, NULL),
(2700, 128, 66, 6.06, NULL),
(2701, 128, 67, 6.76, NULL),
(2702, 128, 68, 6.06, NULL),
(2703, 128, 69, 7.16, NULL),
(2704, 128, 70, 6.96, NULL),
(2705, 129, 49, 7.36, NULL),
(2706, 129, 50, 5.66, NULL),
(2707, 129, 51, 5.16, NULL),
(2708, 129, 52, 6.66, NULL),
(2709, 129, 53, 7.46, NULL),
(2710, 129, 54, 5.86, NULL),
(2711, 129, 55, 7.16, NULL),
(2712, 129, 56, 5.76, NULL),
(2713, 129, 57, 5.66, NULL),
(2714, 129, 58, 6.46, NULL),
(2715, 129, 59, 6.16, NULL),
(2716, 129, 60, 6.46, NULL),
(2717, 129, 61, 6.26, NULL),
(2718, 129, 62, 5.56, NULL),
(2719, 129, 63, 6.46, NULL),
(2720, 129, 64, 8.36, NULL),
(2721, 129, 65, 6.36, NULL),
(2722, 129, 66, 7.76, NULL),
(2723, 129, 67, 7.76, NULL),
(2724, 129, 68, 7.36, NULL),
(2725, 129, 69, 6.56, NULL),
(2726, 129, 70, 5.16, NULL),
(2727, 130, 49, 5.96, NULL),
(2728, 130, 50, 7.46, NULL),
(2729, 130, 51, 6.36, NULL),
(2730, 130, 52, 7.96, NULL),
(2731, 130, 53, 6.96, NULL),
(2732, 130, 54, 6.06, NULL),
(2733, 130, 55, 7.36, NULL),
(2734, 130, 56, 5.36, NULL),
(2735, 130, 57, 6.56, NULL),
(2736, 130, 58, 8.06, NULL),
(2737, 130, 59, 5.26, NULL),
(2738, 130, 60, 6.66, NULL),
(2739, 130, 61, 5.56, NULL),
(2740, 130, 62, 6.06, NULL),
(2741, 130, 63, 7.96, NULL),
(2742, 130, 64, 6.76, NULL),
(2743, 130, 65, 7.96, NULL),
(2744, 130, 66, 7.96, NULL),
(2745, 130, 67, 8.16, NULL),
(2746, 130, 68, 6.26, NULL),
(2747, 130, 69, 5.96, NULL),
(2748, 130, 70, 5.96, NULL),
(2749, 131, 49, 4.66, NULL),
(2750, 131, 50, 4.76, NULL),
(2751, 131, 51, 7.76, NULL),
(2752, 131, 52, 4.96, NULL),
(2753, 131, 53, 7.66, NULL),
(2754, 131, 54, 6.46, NULL),
(2755, 131, 55, 5.86, NULL),
(2756, 131, 56, 7.56, NULL),
(2757, 131, 57, 7.26, NULL),
(2758, 131, 58, 6.06, NULL),
(2759, 131, 59, 5.26, NULL),
(2760, 131, 60, 5.16, NULL),
(2761, 131, 61, 6.66, NULL),
(2762, 131, 62, 5.36, NULL),
(2763, 131, 63, 6.56, NULL),
(2764, 131, 64, 5.46, NULL),
(2765, 131, 65, 7.06, NULL),
(2766, 131, 66, 7.66, NULL),
(2767, 131, 67, 4.86, NULL),
(2768, 131, 68, 4.86, NULL),
(2769, 131, 69, 5.96, NULL),
(2770, 131, 70, 7.56, NULL),
(2771, 132, 49, 6.86, NULL),
(2772, 132, 50, 8.56, NULL),
(2773, 132, 51, 6.46, NULL),
(2774, 132, 52, 7.16, NULL),
(2775, 132, 53, 6.86, NULL),
(2776, 132, 54, 6.06, NULL),
(2777, 132, 55, 8.46, NULL),
(2778, 132, 56, 5.56, NULL),
(2779, 132, 57, 5.96, NULL),
(2780, 132, 58, 6.06, NULL),
(2781, 132, 59, 7.46, NULL),
(2782, 132, 60, 6.16, NULL),
(2783, 132, 61, 6.36, NULL),
(2784, 132, 62, 8.56, NULL),
(2785, 132, 63, 7.16, NULL),
(2786, 132, 64, 7.56, NULL),
(2787, 132, 65, 5.76, NULL),
(2788, 132, 66, 6.96, NULL),
(2789, 132, 67, 5.76, NULL),
(2790, 132, 68, 5.56, NULL),
(2791, 132, 69, 6.96, NULL),
(2792, 132, 70, 5.96, NULL),
(2793, 133, 49, 6.46, NULL),
(2794, 133, 50, 7.66, NULL),
(2795, 133, 51, 6.86, NULL),
(2796, 133, 52, 7.36, NULL),
(2797, 133, 53, 5.86, NULL),
(2798, 133, 54, 7.86, NULL),
(2799, 133, 55, 6.36, NULL),
(2800, 133, 56, 8.66, NULL),
(2801, 133, 57, 8.56, NULL),
(2802, 133, 58, 5.56, NULL),
(2803, 133, 59, 8.76, NULL),
(2804, 133, 60, 6.06, NULL),
(2805, 133, 61, 7.26, NULL),
(2806, 133, 62, 8.46, NULL),
(2807, 133, 63, 7.26, NULL),
(2808, 133, 64, 6.26, NULL),
(2809, 133, 65, 8.56, NULL),
(2810, 133, 66, 7.46, NULL),
(2811, 133, 67, 6.56, NULL),
(2812, 133, 68, 7.96, NULL),
(2813, 133, 69, 6.66, NULL),
(2814, 133, 70, 7.96, NULL),
(2815, 134, 49, 6.26, NULL),
(2816, 134, 50, 7.46, NULL),
(2817, 134, 51, 7.76, NULL),
(2818, 134, 52, 7.26, NULL),
(2819, 134, 53, 5.06, NULL),
(2820, 134, 54, 8.16, NULL),
(2821, 134, 55, 7.96, NULL),
(2822, 134, 56, 8.16, NULL),
(2823, 134, 57, 8.06, NULL),
(2824, 134, 58, 6.26, NULL),
(2825, 134, 59, 6.46, NULL),
(2826, 134, 60, 7.76, NULL),
(2827, 134, 61, 5.16, NULL),
(2828, 134, 62, 7.06, NULL),
(2829, 134, 63, 8.26, NULL),
(2830, 134, 64, 8.16, NULL),
(2831, 134, 65, 7.36, NULL),
(2832, 134, 66, 6.16, NULL),
(2833, 134, 67, 5.86, NULL),
(2834, 134, 68, 6.06, NULL),
(2835, 134, 69, 6.96, NULL),
(2836, 134, 70, 7.26, NULL),
(2837, 135, 49, 8.66, NULL),
(2838, 135, 50, 8.66, NULL),
(2839, 135, 51, 7.46, NULL),
(2840, 135, 52, 7.76, NULL),
(2841, 135, 53, 8.46, NULL),
(2842, 135, 54, 8.66, NULL),
(2843, 135, 55, 7.16, NULL),
(2844, 135, 56, 8.96, NULL),
(2845, 135, 57, 5.96, NULL),
(2846, 135, 58, 6.46, NULL),
(2847, 135, 59, 6.16, NULL),
(2848, 135, 60, 9.16, NULL),
(2849, 135, 61, 5.96, NULL),
(2850, 135, 62, 7.46, NULL),
(2851, 135, 63, 8.86, NULL),
(2852, 135, 64, 8.86, NULL),
(2853, 135, 65, 6.76, NULL),
(2854, 135, 66, 5.96, NULL),
(2855, 135, 67, 8.26, NULL),
(2856, 135, 68, 8.96, NULL),
(2857, 135, 69, 7.46, NULL),
(2858, 135, 70, 6.56, NULL),
(2859, 136, 49, 8.10, NULL),
(2860, 136, 50, 10.00, NULL),
(2861, 136, 51, 7.90, NULL),
(2862, 136, 52, 9.50, NULL),
(2863, 136, 53, 8.60, NULL),
(2864, 136, 54, 7.70, NULL),
(2865, 136, 55, 9.30, NULL),
(2866, 136, 56, 7.80, NULL),
(2867, 136, 57, 9.30, NULL),
(2868, 136, 58, 7.50, NULL),
(2869, 136, 59, 8.70, NULL),
(2870, 136, 60, 9.00, NULL),
(2871, 136, 61, 7.30, NULL),
(2872, 136, 62, 7.30, NULL),
(2873, 136, 63, 7.30, NULL),
(2874, 136, 64, 9.70, NULL),
(2875, 136, 65, 8.10, NULL),
(2876, 136, 66, 9.90, NULL),
(2877, 136, 67, 8.30, NULL),
(2878, 136, 68, 8.80, NULL),
(2879, 136, 69, 8.10, NULL),
(2880, 136, 70, 7.70, NULL),
(2881, 137, 49, 8.30, NULL),
(2882, 137, 50, 9.80, NULL),
(2883, 137, 51, 8.00, NULL),
(2884, 137, 52, 8.20, NULL),
(2885, 137, 53, 10.00, NULL),
(2886, 137, 54, 8.10, NULL),
(2887, 137, 55, 10.00, NULL),
(2888, 137, 56, 8.60, NULL),
(2889, 137, 57, 8.50, NULL),
(2890, 137, 58, 8.20, NULL),
(2891, 137, 59, 9.80, NULL),
(2892, 137, 60, 9.10, NULL),
(2893, 137, 61, 8.60, NULL),
(2894, 137, 62, 9.30, NULL),
(2895, 137, 63, 10.00, NULL),
(2896, 137, 64, 8.80, NULL),
(2897, 137, 65, 8.70, NULL),
(2898, 137, 66, 9.20, NULL),
(2899, 137, 67, 8.30, NULL),
(2900, 137, 68, 9.60, NULL),
(2901, 137, 69, 10.00, NULL),
(2902, 137, 70, 10.00, NULL),
(2903, 138, 49, 8.10, NULL),
(2904, 138, 50, 9.50, NULL),
(2905, 138, 51, 7.70, NULL),
(2906, 138, 52, 8.80, NULL),
(2907, 138, 53, 7.80, NULL),
(2908, 138, 54, 7.30, NULL),
(2909, 138, 55, 8.60, NULL),
(2910, 138, 56, 8.20, NULL),
(2911, 138, 57, 7.30, NULL),
(2912, 138, 58, 7.80, NULL),
(2913, 138, 59, 8.00, NULL),
(2914, 138, 60, 9.50, NULL),
(2915, 138, 61, 8.00, NULL),
(2916, 138, 62, 8.50, NULL),
(2917, 138, 63, 10.00, NULL),
(2918, 138, 64, 8.90, NULL),
(2919, 138, 65, 10.00, NULL),
(2920, 138, 66, 9.70, NULL),
(2921, 138, 67, 8.30, NULL),
(2922, 138, 68, 7.30, NULL),
(2923, 138, 69, 8.50, NULL),
(2924, 138, 70, 10.00, NULL),
(2925, 139, 49, 8.80, NULL),
(2926, 139, 50, 8.40, NULL),
(2927, 139, 51, 9.50, NULL),
(2928, 139, 52, 10.00, NULL),
(2929, 139, 53, 9.90, NULL),
(2930, 139, 54, 9.40, NULL),
(2931, 139, 55, 9.40, NULL),
(2932, 139, 56, 10.00, NULL),
(2933, 139, 57, 9.90, NULL),
(2934, 139, 58, 8.20, NULL),
(2935, 139, 59, 7.70, NULL),
(2936, 139, 60, 10.00, NULL),
(2937, 139, 61, 10.00, NULL),
(2938, 139, 62, 9.40, NULL),
(2939, 139, 63, 9.60, NULL),
(2940, 139, 64, 8.60, NULL),
(2941, 139, 65, 7.90, NULL),
(2942, 139, 66, 8.00, NULL),
(2943, 139, 67, 7.80, NULL),
(2944, 139, 68, 8.50, NULL),
(2945, 139, 69, 10.00, NULL),
(2946, 139, 70, 10.00, NULL),
(2947, 140, 49, 8.30, NULL),
(2948, 140, 50, 8.80, NULL),
(2949, 140, 51, 7.90, NULL),
(2950, 140, 52, 8.80, NULL),
(2951, 140, 53, 8.70, NULL),
(2952, 140, 54, 10.00, NULL),
(2953, 140, 55, 10.00, NULL),
(2954, 140, 56, 7.00, NULL),
(2955, 140, 57, 8.30, NULL),
(2956, 140, 58, 8.30, NULL),
(2957, 140, 59, 9.60, NULL),
(2958, 140, 60, 8.40, NULL),
(2959, 140, 61, 8.60, NULL),
(2960, 140, 62, 9.90, NULL),
(2961, 140, 63, 7.00, NULL),
(2962, 140, 64, 9.70, NULL),
(2963, 140, 65, 8.60, NULL),
(2964, 140, 66, 10.00, NULL),
(2965, 140, 67, 8.60, NULL),
(2966, 140, 68, 9.90, NULL),
(2967, 140, 69, 9.60, NULL),
(2968, 140, 70, 7.20, NULL),
(2969, 141, 49, 8.50, NULL),
(2970, 141, 50, 9.30, NULL),
(2971, 141, 51, 9.70, NULL),
(2972, 141, 52, 6.80, NULL),
(2973, 141, 53, 7.60, NULL),
(2974, 141, 54, 7.10, NULL),
(2975, 141, 55, 6.70, NULL),
(2976, 141, 56, 9.60, NULL),
(2977, 141, 57, 7.00, NULL),
(2978, 141, 58, 7.80, NULL),
(2979, 141, 59, 8.20, NULL),
(2980, 141, 60, 8.70, NULL),
(2981, 141, 61, 9.20, NULL),
(2982, 141, 62, 7.00, NULL),
(2983, 141, 63, 6.60, NULL),
(2984, 141, 64, 6.90, NULL),
(2985, 141, 65, 8.60, NULL),
(2986, 141, 66, 9.70, NULL),
(2987, 141, 67, 8.70, NULL),
(2988, 141, 68, 9.60, NULL),
(2989, 141, 69, 8.70, NULL),
(2990, 141, 70, 6.80, NULL),
(2991, 142, 49, 7.70, NULL),
(2992, 142, 50, 7.50, NULL),
(2993, 142, 51, 7.60, NULL),
(2994, 142, 52, 8.80, NULL),
(2995, 142, 53, 9.20, NULL),
(2996, 142, 54, 9.70, NULL),
(2997, 142, 55, 8.60, NULL),
(2998, 142, 56, 8.90, NULL),
(2999, 142, 57, 8.80, NULL),
(3000, 142, 58, 10.00, NULL),
(3001, 142, 59, 9.90, NULL),
(3002, 142, 60, 10.00, NULL),
(3003, 142, 61, 10.00, NULL),
(3004, 142, 62, 10.00, NULL),
(3005, 142, 63, 10.00, NULL),
(3006, 142, 64, 10.00, NULL),
(3007, 142, 65, 8.40, NULL),
(3008, 142, 66, 8.90, NULL),
(3009, 142, 67, 10.00, NULL),
(3010, 142, 68, 7.70, NULL),
(3011, 142, 69, 8.80, NULL),
(3012, 142, 70, 9.40, NULL),
(3013, 143, 49, 8.00, NULL),
(3014, 143, 50, 7.40, NULL),
(3015, 143, 51, 10.00, NULL),
(3016, 143, 52, 7.90, NULL),
(3017, 143, 53, 7.90, NULL),
(3018, 143, 54, 7.60, NULL),
(3019, 143, 55, 9.10, NULL),
(3020, 143, 56, 7.90, NULL),
(3021, 143, 57, 8.20, NULL),
(3022, 143, 58, 7.70, NULL),
(3023, 143, 59, 9.40, NULL),
(3024, 143, 60, 8.80, NULL),
(3025, 143, 61, 8.60, NULL),
(3026, 143, 62, 8.10, NULL),
(3027, 143, 63, 8.50, NULL),
(3028, 143, 64, 9.90, NULL),
(3029, 143, 65, 9.30, NULL),
(3030, 143, 66, 9.30, NULL),
(3031, 143, 67, 8.20, NULL),
(3032, 143, 68, 7.80, NULL),
(3033, 143, 69, 9.60, NULL),
(3034, 143, 70, 7.60, NULL),
(3035, 144, 49, 7.70, NULL),
(3036, 144, 50, 7.20, NULL),
(3037, 144, 51, 8.70, NULL),
(3038, 144, 52, 7.40, NULL),
(3039, 144, 53, 9.10, NULL),
(3040, 144, 54, 7.30, NULL),
(3041, 144, 55, 8.20, NULL),
(3042, 144, 56, 10.00, NULL),
(3043, 144, 57, 7.40, NULL),
(3044, 144, 58, 8.30, NULL),
(3045, 144, 59, 9.80, NULL),
(3046, 144, 60, 9.30, NULL),
(3047, 144, 61, 7.40, NULL),
(3048, 144, 62, 7.90, NULL),
(3049, 144, 63, 9.80, NULL),
(3050, 144, 64, 9.50, NULL),
(3051, 144, 65, 9.30, NULL),
(3052, 144, 66, 9.60, NULL),
(3053, 144, 67, 7.70, NULL),
(3054, 144, 68, 9.60, NULL),
(3055, 144, 69, 9.50, NULL),
(3056, 144, 70, 7.40, NULL),
(3057, 145, 49, 9.80, NULL),
(3058, 145, 50, 10.00, NULL),
(3059, 145, 51, 8.80, NULL),
(3060, 145, 52, 9.70, NULL),
(3061, 145, 53, 10.00, NULL),
(3062, 145, 54, 10.00, NULL),
(3063, 145, 55, 7.80, NULL),
(3064, 145, 56, 9.30, NULL),
(3065, 145, 57, 8.90, NULL),
(3066, 145, 58, 10.00, NULL),
(3067, 145, 59, 9.10, NULL),
(3068, 145, 60, 10.00, NULL),
(3069, 145, 61, 9.50, NULL),
(3070, 145, 62, 10.00, NULL),
(3071, 145, 63, 10.00, NULL),
(3072, 145, 64, 10.00, NULL),
(3073, 145, 65, 10.00, NULL),
(3074, 145, 66, 10.00, NULL),
(3075, 145, 67, 10.00, NULL),
(3076, 145, 68, 8.10, NULL),
(3077, 145, 69, 10.00, NULL),
(3078, 145, 70, 8.00, NULL),
(3079, 146, 49, 10.00, NULL),
(3080, 146, 50, 7.80, NULL),
(3081, 146, 51, 9.40, NULL),
(3082, 146, 52, 9.80, NULL),
(3083, 146, 53, 10.00, NULL),
(3084, 146, 54, 8.40, NULL),
(3085, 146, 55, 9.60, NULL),
(3086, 146, 56, 8.10, NULL),
(3087, 146, 57, 10.00, NULL),
(3088, 146, 58, 8.70, NULL),
(3089, 146, 59, 10.00, NULL),
(3090, 146, 60, 8.30, NULL),
(3091, 146, 61, 9.90, NULL),
(3092, 146, 62, 10.00, NULL),
(3093, 146, 63, 8.50, NULL),
(3094, 146, 64, 10.00, NULL),
(3095, 146, 65, 8.90, NULL),
(3096, 146, 66, 10.00, NULL),
(3097, 146, 67, 9.30, NULL),
(3098, 146, 68, 9.30, NULL),
(3099, 146, 69, 10.00, NULL),
(3100, 146, 70, 8.50, NULL),
(3101, 147, 49, 9.20, NULL),
(3102, 147, 50, 7.60, NULL),
(3103, 147, 51, 10.00, NULL),
(3104, 147, 52, 9.70, NULL),
(3105, 147, 53, 7.40, NULL),
(3106, 147, 54, 9.60, NULL),
(3107, 147, 55, 8.90, NULL),
(3108, 147, 56, 9.70, NULL),
(3109, 147, 57, 7.40, NULL),
(3110, 147, 58, 9.30, NULL),
(3111, 147, 59, 7.90, NULL),
(3112, 147, 60, 8.00, NULL),
(3113, 147, 61, 7.70, NULL),
(3114, 147, 62, 9.30, NULL),
(3115, 147, 63, 8.20, NULL),
(3116, 147, 64, 8.40, NULL),
(3117, 147, 65, 9.90, NULL),
(3118, 147, 66, 7.80, NULL),
(3119, 147, 67, 7.40, NULL),
(3120, 147, 68, 10.00, NULL),
(3121, 147, 69, 8.40, NULL),
(3122, 147, 70, 10.00, NULL),
(3123, 148, 49, 10.00, NULL),
(3124, 148, 50, 8.70, NULL),
(3125, 148, 51, 9.40, NULL),
(3126, 148, 52, 8.60, NULL),
(3127, 148, 53, 9.70, NULL),
(3128, 148, 54, 10.00, NULL),
(3129, 148, 55, 8.80, NULL),
(3130, 148, 56, 10.00, NULL),
(3131, 148, 57, 8.50, NULL),
(3132, 148, 58, 10.00, NULL),
(3133, 148, 59, 9.70, NULL),
(3134, 148, 60, 10.00, NULL),
(3135, 148, 61, 10.00, NULL),
(3136, 148, 62, 8.20, NULL),
(3137, 148, 63, 9.40, NULL),
(3138, 148, 64, 10.00, NULL),
(3139, 148, 65, 10.00, NULL),
(3140, 148, 66, 9.00, NULL),
(3141, 148, 67, 10.00, NULL),
(3142, 148, 68, 10.00, NULL),
(3143, 148, 69, 10.00, NULL),
(3144, 148, 70, 10.00, NULL),
(3145, 149, 49, 8.60, NULL),
(3146, 149, 50, 10.00, NULL),
(3147, 149, 51, 10.00, NULL),
(3148, 149, 52, 9.00, NULL),
(3149, 149, 53, 10.00, NULL),
(3150, 149, 54, 10.00, NULL),
(3151, 149, 55, 10.00, NULL),
(3152, 149, 56, 8.40, NULL),
(3153, 149, 57, 8.60, NULL),
(3154, 149, 58, 10.00, NULL),
(3155, 149, 59, 10.00, NULL),
(3156, 149, 60, 10.00, NULL),
(3157, 149, 61, 10.00, NULL),
(3158, 149, 62, 10.00, NULL),
(3159, 149, 63, 8.80, NULL),
(3160, 149, 64, 9.10, NULL),
(3161, 149, 65, 9.60, NULL),
(3162, 149, 66, 9.00, NULL),
(3163, 149, 67, 8.50, NULL),
(3164, 149, 68, 10.00, NULL),
(3165, 149, 69, 8.50, NULL),
(3166, 149, 70, 9.40, NULL),
(3167, 150, 49, 10.00, NULL),
(3168, 150, 50, 10.00, NULL),
(3169, 150, 51, 10.00, NULL),
(3170, 150, 52, 8.70, NULL),
(3171, 150, 53, 10.00, NULL),
(3172, 150, 54, 10.00, NULL),
(3173, 150, 55, 10.00, NULL),
(3174, 150, 56, 8.90, NULL),
(3175, 150, 57, 10.00, NULL),
(3176, 150, 58, 10.00, NULL),
(3177, 150, 59, 9.80, NULL),
(3178, 150, 60, 9.40, NULL),
(3179, 150, 61, 9.10, NULL),
(3180, 150, 62, 10.00, NULL),
(3181, 150, 63, 9.90, NULL),
(3182, 150, 64, 10.00, NULL),
(3183, 150, 65, 9.30, NULL),
(3184, 150, 66, 10.00, NULL),
(3185, 150, 67, 10.00, NULL),
(3186, 150, 68, 9.40, NULL),
(3187, 150, 69, 10.00, NULL),
(3188, 150, 70, 9.10, NULL),
(3189, 151, 49, 9.00, NULL),
(3190, 151, 50, 10.00, NULL),
(3191, 151, 51, 10.00, NULL),
(3192, 151, 52, 9.20, NULL),
(3193, 151, 53, 9.90, NULL),
(3194, 151, 54, 8.10, NULL),
(3195, 151, 55, 8.10, NULL),
(3196, 151, 56, 10.00, NULL),
(3197, 151, 57, 8.20, NULL),
(3198, 151, 58, 10.00, NULL),
(3199, 151, 59, 8.50, NULL),
(3200, 151, 60, 9.00, NULL),
(3201, 151, 61, 9.90, NULL),
(3202, 151, 62, 10.00, NULL),
(3203, 151, 63, 10.00, NULL),
(3204, 151, 64, 10.00, NULL),
(3205, 151, 65, 10.00, NULL),
(3206, 151, 66, 10.00, NULL),
(3207, 151, 67, 8.90, NULL),
(3208, 151, 68, 8.20, NULL),
(3209, 151, 69, 9.30, NULL),
(3210, 151, 70, 8.70, NULL),
(3211, 152, 49, 8.90, NULL),
(3212, 152, 50, 10.00, NULL),
(3213, 152, 51, 8.80, NULL),
(3214, 152, 52, 9.80, NULL),
(3215, 152, 53, 10.00, NULL),
(3216, 152, 54, 10.00, NULL),
(3217, 152, 55, 10.00, NULL),
(3218, 152, 56, 9.30, NULL),
(3219, 152, 57, 10.00, NULL),
(3220, 152, 58, 10.00, NULL),
(3221, 152, 59, 10.00, NULL),
(3222, 152, 60, 10.00, NULL),
(3223, 152, 61, 10.00, NULL),
(3224, 152, 62, 8.50, NULL),
(3225, 152, 63, 10.00, NULL),
(3226, 152, 64, 10.00, NULL),
(3227, 152, 65, 10.00, NULL),
(3228, 152, 66, 10.00, NULL),
(3229, 152, 67, 10.00, NULL),
(3230, 152, 68, 10.00, NULL),
(3231, 152, 69, 8.60, NULL),
(3232, 152, 70, 10.00, NULL),
(3233, 153, 49, 9.10, NULL),
(3234, 153, 50, 8.00, NULL),
(3235, 153, 51, 8.10, NULL),
(3236, 153, 52, 10.00, NULL),
(3237, 153, 53, 8.80, NULL),
(3238, 153, 54, 10.00, NULL),
(3239, 153, 55, 9.70, NULL),
(3240, 153, 56, 9.20, NULL),
(3241, 153, 57, 9.70, NULL),
(3242, 153, 58, 9.80, NULL),
(3243, 153, 59, 9.80, NULL),
(3244, 153, 60, 9.70, NULL),
(3245, 153, 61, 8.00, NULL),
(3246, 153, 62, 10.00, NULL),
(3247, 153, 63, 10.00, NULL),
(3248, 153, 64, 8.20, NULL),
(3249, 153, 65, 9.20, NULL),
(3250, 153, 66, 8.60, NULL),
(3251, 153, 67, 8.20, NULL),
(3252, 153, 68, 10.00, NULL),
(3253, 153, 69, 8.20, NULL),
(3254, 153, 70, 10.00, NULL),
(3255, 154, 49, 10.00, NULL),
(3256, 154, 50, 9.40, NULL),
(3257, 154, 51, 7.50, NULL),
(3258, 154, 52, 10.00, NULL),
(3259, 154, 53, 8.20, NULL),
(3260, 154, 54, 9.10, NULL),
(3261, 154, 55, 8.60, NULL),
(3262, 154, 56, 9.50, NULL),
(3263, 154, 57, 8.20, NULL),
(3264, 154, 58, 8.00, NULL),
(3265, 154, 59, 8.50, NULL),
(3266, 154, 60, 10.00, NULL),
(3267, 154, 61, 7.70, NULL),
(3268, 154, 62, 9.10, NULL),
(3269, 154, 63, 8.10, NULL),
(3270, 154, 64, 8.70, NULL),
(3271, 154, 65, 7.50, NULL),
(3272, 154, 66, 8.30, NULL),
(3273, 154, 67, 10.00, NULL),
(3274, 154, 68, 8.80, NULL),
(3275, 154, 69, 7.70, NULL),
(3276, 154, 70, 8.30, NULL),
(3277, 155, 49, 9.50, NULL),
(3278, 155, 50, 9.90, NULL),
(3279, 155, 51, 10.00, NULL),
(3280, 155, 52, 8.40, NULL),
(3281, 155, 53, 10.00, NULL),
(3282, 155, 54, 8.50, NULL),
(3283, 155, 55, 10.00, NULL),
(3284, 155, 56, 10.00, NULL),
(3285, 155, 57, 9.10, NULL),
(3286, 155, 58, 8.50, NULL),
(3287, 155, 59, 10.00, NULL),
(3288, 155, 60, 10.00, NULL),
(3289, 155, 61, 8.40, NULL),
(3290, 155, 62, 10.00, NULL),
(3291, 155, 63, 10.00, NULL),
(3292, 155, 64, 10.00, NULL),
(3293, 155, 65, 10.00, NULL),
(3294, 155, 66, 8.70, NULL),
(3295, 155, 67, 10.00, NULL),
(3296, 155, 68, 8.80, NULL),
(3297, 155, 69, 10.00, NULL),
(3298, 155, 70, 9.00, NULL),
(3299, 156, 49, 9.80, NULL),
(3300, 156, 50, 9.40, NULL),
(3301, 156, 51, 10.00, NULL),
(3302, 156, 52, 10.00, NULL),
(3303, 156, 53, 8.90, NULL),
(3304, 156, 54, 10.00, NULL),
(3305, 156, 55, 10.00, NULL),
(3306, 156, 56, 10.00, NULL),
(3307, 156, 57, 9.10, NULL),
(3308, 156, 58, 8.80, NULL),
(3309, 156, 59, 10.00, NULL),
(3310, 156, 60, 9.30, NULL),
(3311, 156, 61, 10.00, NULL),
(3312, 156, 62, 10.00, NULL),
(3313, 156, 63, 9.60, NULL),
(3314, 156, 64, 10.00, NULL),
(3315, 156, 65, 8.60, NULL),
(3316, 156, 66, 8.40, NULL),
(3317, 156, 67, 8.50, NULL),
(3318, 156, 68, 10.00, NULL),
(3319, 156, 69, 10.00, NULL),
(3320, 156, 70, 10.00, NULL),
(3321, 157, 49, 10.00, NULL),
(3322, 157, 50, 10.00, NULL),
(3323, 157, 51, 9.60, NULL),
(3324, 157, 52, 10.00, NULL),
(3325, 157, 53, 8.10, NULL),
(3326, 157, 54, 8.60, NULL),
(3327, 157, 55, 10.00, NULL),
(3328, 157, 56, 9.80, NULL),
(3329, 157, 57, 10.00, NULL),
(3330, 157, 58, 8.70, NULL),
(3331, 157, 59, 7.90, NULL),
(3332, 157, 60, 8.80, NULL),
(3333, 157, 61, 10.00, NULL),
(3334, 157, 62, 10.00, NULL),
(3335, 157, 63, 8.80, NULL),
(3336, 157, 64, 9.60, NULL),
(3337, 157, 65, 10.00, NULL),
(3338, 157, 66, 9.50, NULL),
(3339, 157, 67, 10.00, NULL),
(3340, 157, 68, 10.00, NULL),
(3341, 157, 69, 10.00, NULL),
(3342, 157, 70, 10.00, NULL),
(3343, 158, 49, 10.00, NULL),
(3344, 158, 50, 8.80, NULL),
(3345, 158, 51, 10.00, NULL),
(3346, 158, 52, 8.90, NULL),
(3347, 158, 53, 9.40, NULL),
(3348, 158, 54, 9.40, NULL),
(3349, 158, 55, 8.90, NULL),
(3350, 158, 56, 10.00, NULL),
(3351, 158, 57, 8.50, NULL),
(3352, 158, 58, 10.00, NULL),
(3353, 158, 59, 10.00, NULL),
(3354, 158, 60, 8.80, NULL),
(3355, 158, 61, 10.00, NULL),
(3356, 158, 62, 9.20, NULL),
(3357, 158, 63, 10.00, NULL),
(3358, 158, 64, 9.20, NULL),
(3359, 158, 65, 9.90, NULL),
(3360, 158, 66, 10.00, NULL),
(3361, 158, 67, 9.50, NULL),
(3362, 158, 68, 9.80, NULL),
(3363, 158, 69, 10.00, NULL),
(3364, 158, 70, 10.00, NULL),
(3365, 159, 49, 9.10, NULL),
(3366, 159, 50, 9.20, NULL),
(3367, 159, 51, 10.00, NULL),
(3368, 159, 52, 10.00, NULL),
(3369, 159, 53, 10.00, NULL),
(3370, 159, 54, 10.00, NULL),
(3371, 159, 55, 10.00, NULL),
(3372, 159, 56, 10.00, NULL),
(3373, 159, 57, 10.00, NULL),
(3374, 159, 58, 9.60, NULL),
(3375, 159, 59, 10.00, NULL),
(3376, 159, 60, 10.00, NULL),
(3377, 159, 61, 10.00, NULL),
(3378, 159, 62, 9.00, NULL),
(3379, 159, 63, 9.10, NULL),
(3380, 159, 64, 8.70, NULL),
(3381, 159, 65, 10.00, NULL),
(3382, 159, 66, 9.80, NULL),
(3383, 159, 67, 8.90, NULL),
(3384, 159, 68, 10.00, NULL),
(3385, 159, 69, 8.40, NULL),
(3386, 159, 70, 10.00, NULL),
(3387, 160, 49, 10.00, NULL),
(3388, 160, 50, 9.80, NULL),
(3389, 160, 51, 10.00, NULL),
(3390, 160, 52, 9.50, NULL),
(3391, 160, 53, 9.30, NULL),
(3392, 160, 54, 9.70, NULL),
(3393, 160, 55, 10.00, NULL),
(3394, 160, 56, 8.20, NULL),
(3395, 160, 57, 9.90, NULL),
(3396, 160, 58, 9.50, NULL),
(3397, 160, 59, 8.40, NULL),
(3398, 160, 60, 9.60, NULL),
(3399, 160, 61, 8.40, NULL),
(3400, 160, 62, 9.30, NULL),
(3401, 160, 63, 8.50, NULL),
(3402, 160, 64, 10.00, NULL),
(3403, 160, 65, 10.00, NULL),
(3404, 160, 66, 9.20, NULL),
(3405, 160, 67, 10.00, NULL),
(3406, 160, 68, 9.20, NULL),
(3407, 160, 69, 8.20, NULL),
(3408, 160, 70, 9.70, NULL),
(3409, 161, 49, 10.00, NULL),
(3410, 161, 50, 10.00, NULL),
(3411, 161, 51, 9.40, NULL),
(3412, 161, 52, 9.40, NULL),
(3413, 161, 53, 10.00, NULL),
(3414, 161, 54, 10.00, NULL),
(3415, 161, 55, 10.00, NULL),
(3416, 161, 56, 10.00, NULL),
(3417, 161, 57, 8.50, NULL),
(3418, 161, 58, 9.30, NULL),
(3419, 161, 59, 10.00, NULL),
(3420, 161, 60, 10.00, NULL),
(3421, 161, 61, 10.00, NULL),
(3422, 161, 62, 10.00, NULL),
(3423, 161, 63, 10.00, NULL),
(3424, 161, 64, 10.00, NULL),
(3425, 161, 65, 10.00, NULL),
(3426, 161, 66, 9.40, NULL),
(3427, 161, 67, 10.00, NULL),
(3428, 161, 68, 8.70, NULL),
(3429, 161, 69, 10.00, NULL),
(3430, 161, 70, 9.70, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_evaluation_statuses`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_evaluation_statuses`;
CREATE TABLE `gooyaacc_kpi_evaluation_statuses` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_evaluation_statuses`
--

INSERT IGNORE INTO `gooyaacc_kpi_evaluation_statuses` (`id`, `name`) VALUES
(1, 'پیش‌نویس'),
(2, 'ثبت‌شده'),
(3, 'نهایی');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_evaluator_weights`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_evaluator_weights`;
CREATE TABLE `gooyaacc_kpi_evaluator_weights` (
  `id` int(11) NOT NULL,
  `target_role_id` int(11) DEFAULT NULL,
  `target_user_id` int(11) DEFAULT NULL,
  `target_team_id` int(11) DEFAULT NULL,
  `evaluator_role_id` int(11) DEFAULT NULL,
  `evaluator_user_id` int(11) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL,
  `weight_percentage` decimal(5,2) NOT NULL DEFAULT 0.00,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_evaluator_weights`
--

INSERT IGNORE INTO `gooyaacc_kpi_evaluator_weights` (`id`, `target_role_id`, `target_user_id`, `target_team_id`, `evaluator_role_id`, `evaluator_user_id`, `label`, `weight_percentage`, `is_active`, `created_at`) VALUES
(6, 5, NULL, 0, 4, NULL, 'ارزیابی سرپرست مستقیم', 50.00, 1, '2026-06-23 15:51:52'),
(7, 5, NULL, 0, 3, NULL, 'ارزیابی مدیر واحد', 30.00, 1, '2026-06-23 15:51:52'),
(8, 5, NULL, 0, 2, NULL, 'ارزیابی مدیرعامل', 20.00, 1, '2026-06-23 15:51:52'),
(9, 4, NULL, 0, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(10, 4, NULL, 0, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52'),
(11, 0, NULL, 13, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(12, 0, NULL, 13, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52'),
(13, 0, NULL, 14, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(14, 0, NULL, 14, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52'),
(15, 0, NULL, 15, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(16, 0, NULL, 15, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52'),
(17, 0, NULL, 16, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(18, 0, NULL, 16, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52'),
(19, 0, NULL, 17, 3, NULL, 'ارزیابی مدیر واحد', 60.00, 1, '2026-06-23 15:51:52'),
(20, 0, NULL, 17, 2, NULL, 'ارزیابی مدیرعامل', 40.00, 1, '2026-06-23 15:51:52');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_factor_weights`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_factor_weights`;
CREATE TABLE `gooyaacc_kpi_factor_weights` (
  `id` int(11) NOT NULL,
  `factor_key` varchar(100) NOT NULL,
  `description` varchar(255) DEFAULT NULL,
  `weight_percentage` decimal(5,2) NOT NULL DEFAULT 0.00,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `evaluator_role_id` int(11) DEFAULT NULL,
  `evaluated_entity_type` varchar(20) DEFAULT NULL,
  `weight_target_role_id` int(11) DEFAULT NULL,
  `source_evaluator_role_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_license`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_license`;
CREATE TABLE `gooyaacc_kpi_license` (
  `id` int(11) NOT NULL,
  `license_key` varchar(255) NOT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `max_users` int(11) NOT NULL DEFAULT 10,
  `plan_type` varchar(30) DEFAULT NULL,
  `activation_date` datetime DEFAULT NULL,
  `expiry_date` datetime DEFAULT NULL,
  `status` enum('active','disabled') NOT NULL DEFAULT 'active',
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_license`
--

INSERT IGNORE INTO `gooyaacc_kpi_license` (`id`, `license_key`, `company_name`, `email`, `max_users`, `plan_type`, `activation_date`, `expiry_date`, `status`, `created_at`) VALUES
(1, 'GOOYA-KPI-2026', 'شرکت گویا حساب', 'info@gooyaacc.com', 50, '1_year', '2026-06-23 13:40:51', '2027-03-20 23:59:59', 'active', '2026-06-23 13:09:13');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_license_logs`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_license_logs`;
CREATE TABLE `gooyaacc_kpi_license_logs` (
  `id` int(11) NOT NULL,
  `license_id` int(11) DEFAULT NULL,
  `action` varchar(50) DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `details` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_license_logs`
--

INSERT IGNORE INTO `gooyaacc_kpi_license_logs` (`id`, `license_id`, `action`, `ip_address`, `details`, `created_at`) VALUES
(1, 1, 'activation', '::1', 'فعال‌سازی توسط حسین فغان پور', '2026-06-23 13:09:35'),
(2, 1, 'activation', '::1', 'فعال‌سازی توسط حسین فغان پور', '2026-06-23 13:39:45'),
(3, 1, 'activation', '::1', 'فعال‌سازی توسط حسین فغان پور', '2026-06-23 13:40:51');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_permissions`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_permissions`;
CREATE TABLE `gooyaacc_kpi_permissions` (
  `user_id` int(11) NOT NULL,
  `allowed_sections` text DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooyaacc_kpi_permissions`
--

INSERT IGNORE INTO `gooyaacc_kpi_permissions` (`user_id`, `allowed_sections`, `updated_by`, `updated_at`) VALUES
(2, 'dashboard,history', 1, '2026-06-23 15:31:45'),
(4, 'dashboard', 1, '2026-06-23 14:12:03'),
(5, 'dashboard', 1, '2026-06-23 14:10:48');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_roles`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_roles`;
CREATE TABLE `gooyaacc_kpi_roles` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_roles`
--

INSERT IGNORE INTO `gooyaacc_kpi_roles` (`id`, `name`) VALUES
(1, 'ادمین'),
(2, 'مدیرعامل'),
(3, 'مدیر'),
(4, 'سرپرست'),
(5, 'کاربر سامانه عملکرد');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_saved_filters`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_saved_filters`;
CREATE TABLE `gooyaacc_kpi_saved_filters` (
  `id` int(11) NOT NULL,
  `supervisor_id` int(11) NOT NULL,
  `title` varchar(120) NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payload`)),
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_settings`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_settings`;
CREATE TABLE `gooyaacc_kpi_settings` (
  `setting_key` varchar(100) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_settings`
--

INSERT IGNORE INTO `gooyaacc_kpi_settings` (`setting_key`, `setting_value`, `updated_at`) VALUES
('active_license_key', 'GOOYA-KPI-2026', '2026-06-23 13:40:51');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_supervisor_notes`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_supervisor_notes`;
CREATE TABLE `gooyaacc_kpi_supervisor_notes` (
  `id` int(11) NOT NULL,
  `supervisor_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `definition_id` int(11) DEFAULT NULL,
  `note` text NOT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_target_evaluators`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_target_evaluators`;
CREATE TABLE `gooyaacc_kpi_target_evaluators` (
  `id` int(11) NOT NULL,
  `kpi_definition_id` int(11) NOT NULL,
  `evaluator_role_id` int(11) DEFAULT NULL,
  `evaluator_user_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`evaluator_user_ids`)),
  `evaluated_entity_type` enum('user','team') NOT NULL DEFAULT 'user'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_teams`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_teams`;
CREATE TABLE `gooyaacc_kpi_teams` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `supervisor_id` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `modified_at` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `modified_by` int(11) DEFAULT NULL,
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_teams`
--

INSERT IGNORE INTO `gooyaacc_kpi_teams` (`id`, `name`, `description`, `supervisor_id`, `created_at`, `modified_at`, `created_by`, `modified_by`, `deleted`, `updated_at`) VALUES
(13, 'تیم فروش', NULL, 7, '2026-06-23 15:51:51', '2026-06-23 15:51:51', NULL, NULL, 0, '2026-07-25 05:51:52'),
(14, 'تیم پشتیبانی', NULL, 11, '2026-06-23 15:51:51', '2026-06-23 15:51:51', NULL, NULL, 0, '2026-07-25 05:51:52'),
(15, 'تیم فنی', NULL, 15, '2026-06-23 15:51:52', '2026-06-23 15:51:52', NULL, NULL, 0, '2026-07-25 05:51:52'),
(16, 'تیم مالی', NULL, 19, '2026-06-23 15:51:52', '2026-06-23 15:51:52', NULL, NULL, 0, '2026-07-25 05:51:52'),
(17, 'تیم بازاریابی', NULL, 23, '2026-06-23 15:51:52', '2026-06-23 15:51:52', NULL, NULL, 0, '2026-07-25 05:51:52'),
(18, 'ff', NULL, NULL, '2026-07-15 01:22:10', '2026-07-15 01:22:10', NULL, NULL, 0, '2026-07-25 05:51:52'),
(19, 'تیم فروش نمونه (قابل حذف)', 'نمونه واقعی برای بررسی ایجاد، ویرایش، اعضا و تاریخچه تیم', 1, '2026-07-23 03:12:21', '2026-08-01 12:21:37', 1, 1, 0, '2026-08-01 12:21:37'),
(25, 'تیم نمونه عملکرد گویا', NULL, 1, '2026-07-25 07:12:22', '2026-07-25 07:12:22', NULL, NULL, 0, '2026-08-01 12:21:37'),
(27, 'تیم نمونه طرح گویا', 'نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا', 24, '2026-08-01 12:23:13', '2026-08-01 12:33:05', 1, 1, 0, '2026-08-01 12:33:05');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_team_members`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_team_members`;
CREATE TABLE `gooyaacc_kpi_team_members` (
  `id` int(11) NOT NULL,
  `team_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_team_members`
--

INSERT IGNORE INTO `gooyaacc_kpi_team_members` (`id`, `team_id`, `user_id`) VALUES
(41, 13, 7),
(42, 13, 8),
(43, 13, 9),
(44, 13, 10),
(45, 14, 11),
(46, 14, 12),
(47, 14, 13),
(48, 14, 14),
(49, 15, 15),
(50, 15, 16),
(51, 15, 17),
(52, 15, 18),
(53, 16, 19),
(54, 16, 20),
(55, 16, 21),
(56, 16, 22),
(57, 17, 23),
(58, 17, 24),
(59, 17, 25),
(60, 17, 26),
(77, 19, 1),
(74, 25, 1),
(75, 25, 2),
(76, 25, 3),
(81, 27, 1),
(82, 27, 14),
(83, 27, 24);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_kpi_user_profile`
--

DROP TABLE IF EXISTS `gooyaacc_kpi_user_profile`;
CREATE TABLE `gooyaacc_kpi_user_profile` (
  `user_id` int(11) NOT NULL,
  `kpi_role_id` int(11) NOT NULL DEFAULT 5,
  `team_id` int(11) DEFAULT NULL,
  `supervisor_id` int(11) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_kpi_user_profile`
--

INSERT IGNORE INTO `gooyaacc_kpi_user_profile` (`user_id`, `kpi_role_id`, `team_id`, `supervisor_id`, `is_active`) VALUES
(1, 2, 27, NULL, 1),
(2, 5, 25, 1, 1),
(3, 5, 25, 1, 1),
(6, 3, NULL, 1, 1),
(7, 4, 13, 6, 1),
(8, 5, 13, 7, 1),
(9, 5, 13, 7, 1),
(10, 5, 13, 7, 1),
(11, 4, 14, 6, 1),
(12, 5, 14, 11, 1),
(13, 5, 14, 11, 1),
(14, 5, 27, 11, 1),
(15, 4, 15, 6, 1),
(16, 5, 15, 15, 1),
(17, 5, 15, 15, 1),
(18, 5, 15, 15, 1),
(19, 4, 16, 6, 1),
(20, 5, 16, 19, 1),
(21, 5, 16, 19, 1),
(22, 5, 16, 19, 1),
(23, 4, 17, 6, 1),
(24, 5, 27, 23, 1),
(25, 5, 17, 23, 1),
(26, 5, 17, 23, 1);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_notes`
--

DROP TABLE IF EXISTS `gooyaacc_notes`;
CREATE TABLE `gooyaacc_notes` (
  `id` int(11) NOT NULL,
  `note_title` varchar(255) NOT NULL,
  `related_to` varchar(255) DEFAULT NULL,
  `note_content` text DEFAULT NULL,
  `assigned_user_id` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `parent_id` int(11) DEFAULT NULL,
  `rel_module` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_notes`
--

INSERT IGNORE INTO `gooyaacc_notes` (`id`, `note_title`, `related_to`, `note_content`, `assigned_user_id`, `created_at`, `updated_at`, `parent_id`, `rel_module`) VALUES
(1, 'یادداشت تست — پیگیری مشتری', 'شرکت گویا حساب', '', 1, '2026-06-29 05:06:46', '2026-06-29 05:06:46', NULL, NULL),
(2, 'یادداشت تست پرونده [GOOYA-TEST]', 'مهندس تست سرنخ گویا', 'متن آزمایشی یادداشت متصل به سرنخ.', 1, '2026-07-19 07:28:48', '2026-07-19 07:28:48', 2063, 'Leads'),
(3, 'یادداشت تست پرونده فرد [GOOYA-TEST]', 'بهرام اکبری', 'متن آزمایشی یادداشت متصل به فرد.', 1, '2026-07-19 08:19:48', '2026-07-19 08:19:48', 2247, 'Contacts'),
(4, 'تست عملی نمایش یادداشت - ۱۴۰۵/۰۵/۱۷', 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]', 'این یادداشت برای کنترل عملی نمایش صحیح عنوان، ارتباط با حساب، متن یادداشت، کاربر مسئول و نتیجه ذخیره‌سازی ایجاد شده است.', 1, '2026-08-08 11:07:31', '2026-08-08 11:07:31', 2221, 'Accounts');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_note_attachments`
--

DROP TABLE IF EXISTS `gooyaacc_note_attachments`;
CREATE TABLE `gooyaacc_note_attachments` (
  `id` int(11) NOT NULL,
  `note_id` int(11) NOT NULL,
  `filename` varchar(255) NOT NULL,
  `filepath` varchar(255) DEFAULT NULL,
  `filetype` varchar(120) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `attachment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_pay`
--

DROP TABLE IF EXISTS `gooyaacc_pay`;
CREATE TABLE `gooyaacc_pay` (
  `id` int(11) NOT NULL,
  `pay_no` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `direction` varchar(20) NOT NULL DEFAULT 'ورودی',
  `status` varchar(30) NOT NULL DEFAULT 'پرداخت شده',
  `accountid` int(11) NOT NULL DEFAULT 0,
  `contactid` int(11) NOT NULL DEFAULT 0,
  `expected_date` date DEFAULT NULL,
  `done_date` date DEFAULT NULL,
  `amount` decimal(25,2) NOT NULL DEFAULT 0.00,
  `currency` varchar(10) NOT NULL DEFAULT 'IRR',
  `pay_type` varchar(60) DEFAULT NULL,
  `pay_method` varchar(40) DEFAULT NULL,
  `ref_no` varchar(60) DEFAULT NULL,
  `branch` varchar(60) DEFAULT NULL,
  `cashbox` varchar(60) DEFAULT NULL,
  `pay_company` varchar(60) DEFAULT NULL,
  `sms_reminder` varchar(60) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `assigned_user_id` int(11) NOT NULL DEFAULT 1,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gooyaacc_pay`
--

INSERT IGNORE INTO `gooyaacc_pay` (`id`, `pay_no`, `name`, `direction`, `status`, `accountid`, `contactid`, `expected_date`, `done_date`, `amount`, `currency`, `pay_type`, `pay_method`, `ref_no`, `branch`, `cashbox`, `pay_company`, `sms_reminder`, `description`, `assigned_user_id`, `created_at`, `updated_at`) VALUES
(1, 2, 'پرداخت (مثال)', 'ورودی', 'پرداخت شده', 0, 0, '2026-06-21', '2026-06-21', 50000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(2, 6, 'پیشگامان صنعت داده (مثال) - پرداخت', 'ورودی', 'پرداخت شده', 21, 0, '2026-06-21', NULL, 200000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(3, 7, 'اورنگ (مثال) - پرداخت', 'ورودی', 'پرداخت شده', 24, 0, '2026-06-14', NULL, 58000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(4, 1, 'پرداخت قسط اول (مثال)', 'ورودی', 'پرداخت شده', 20, 0, '2026-06-14', '2026-06-14', 80000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(5, 8, 'کیان (مثال) - پرداخت', 'ورودی', 'پرداخت شده', 25, 0, '2026-06-12', '2026-06-12', 20000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(6, 4, 'فرایند گستران شرق (مثال) - پرداخت', 'ورودی', 'پرداخت شده', 22, 0, '2026-06-08', NULL, 100000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(7, 5, 'فرایند گستران شرق (مثال) - پرداخت', 'ورودی', 'پرداخت شده', 22, 0, '2026-06-02', NULL, 60000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', NULL, NULL, NULL, NULL, NULL, NULL, 1, '2026-07-04 06:40:43', '2026-07-04 06:40:43'),
(8, 9, 'تست پرداخت - الکترونیک گستر', 'ورودی', 'پرداخت شده', 23, 0, '2026-07-04', '2026-07-04', 100000000.00, 'IRR', 'پرداخت وجه فاکتور فروش', 'نقدی', '', '', '', '', '', 'جابجایی تخصیص تست', 1, '2026-07-04 06:54:21', '2026-07-05 05:37:26');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_payments`
--

DROP TABLE IF EXISTS `gooyaacc_payments`;
CREATE TABLE `gooyaacc_payments` (
  `id` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `amount` decimal(18,2) DEFAULT NULL,
  `pay_date` varchar(255) DEFAULT NULL,
  `method` varchar(255) DEFAULT NULL,
  `related_to` varchar(255) DEFAULT NULL,
  `ref_no` varchar(255) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `assigned_user_id` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

--
-- Dumping data for table `gooyaacc_payments`
--

INSERT IGNORE INTO `gooyaacc_payments` (`id`, `title`, `amount`, `pay_date`, `method`, `related_to`, `ref_no`, `notes`, `assigned_user_id`, `created_at`, `updated_at`) VALUES
(1, 'پرداخت تست — فاکتور ۱۰۲۷', 5000000.00, '', '', '', '', '', 1, '2026-06-29 16:19:13', '2026-06-29 16:19:13');

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_pay_alloc`
--

DROP TABLE IF EXISTS `gooyaacc_pay_alloc`;
CREATE TABLE `gooyaacc_pay_alloc` (
  `id` int(11) NOT NULL,
  `pay_id` int(11) NOT NULL,
  `invoiceid` int(11) NOT NULL,
  `amount` decimal(25,2) NOT NULL DEFAULT 0.00,
  `note` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gooyaacc_pay_alloc`
--

INSERT IGNORE INTO `gooyaacc_pay_alloc` (`id`, `pay_id`, `invoiceid`, `amount`, `note`) VALUES
(1, 1, 1032, 50000000.00, NULL),
(2, 2, 1029, 100000000.00, NULL),
(3, 2, 1028, 100000000.00, NULL),
(4, 3, 1033, 58000000.00, NULL),
(5, 4, 1027, 80000000.00, NULL),
(6, 5, 1034, 20000000.00, NULL),
(7, 6, 1031, 100000000.00, NULL),
(8, 7, 1030, 60000000.00, NULL),
(10, 8, 1033, 40100000.00, NULL),
(11, 8, 2054, 59900000.00, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `gooyaacc_pdf_templates`
--

DROP TABLE IF EXISTS `gooyaacc_pdf_templates`;
CREATE TABLE `gooyaacc_pdf_templates` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `module` varchar(255) DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `assigned_user_id` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gooya_account_email`
--

DROP TABLE IF EXISTS `gooya_account_email`;
CREATE TABLE `gooya_account_email` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `accountid` int(19) NOT NULL,
  `email_address` varchar(190) NOT NULL,
  `email_type` varchar(50) DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_email` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `createdtime` datetime NOT NULL DEFAULT current_timestamp(),
  `modifiedtime` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_account_email`
--

INSERT IGNORE INTO `gooya_account_email` (`id`, `accountid`, `email_address`, `email_type`, `is_primary`, `can_email`, `sort_order`, `createdtime`, `modifiedtime`) VALUES
(3, 2034, 'azarmehr@test.com', 'اصلی', 1, 1, 0, '2026-07-15 03:24:19', '2026-07-15 03:24:19');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_account_phone`
--

DROP TABLE IF EXISTS `gooya_account_phone`;
CREATE TABLE `gooya_account_phone` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `accountid` int(19) NOT NULL,
  `phone_number` varchar(80) NOT NULL,
  `country_code` varchar(8) NOT NULL DEFAULT '+98',
  `phone_type` varchar(50) DEFAULT NULL,
  `extension` varchar(20) DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_sms` tinyint(1) NOT NULL DEFAULT 0,
  `can_fax` tinyint(1) NOT NULL DEFAULT 0,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `createdtime` datetime NOT NULL DEFAULT current_timestamp(),
  `modifiedtime` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_account_phone`
--

INSERT IGNORE INTO `gooya_account_phone` (`id`, `accountid`, `phone_number`, `country_code`, `phone_type`, `extension`, `is_primary`, `can_sms`, `can_fax`, `sort_order`, `createdtime`, `modifiedtime`) VALUES
(3, 2034, '910 000 0000', '+98', 'دفتر', '', 1, 0, 0, 0, '2026-07-15 03:24:19', '2026-07-15 03:24:19');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_account_timeline`
--

DROP TABLE IF EXISTS `gooya_account_timeline`;
CREATE TABLE `gooya_account_timeline` (
  `timeline_id` bigint(20) UNSIGNED NOT NULL,
  `accountid` int(19) NOT NULL,
  `occurred_at` datetime NOT NULL,
  `category` varchar(32) NOT NULL,
  `event_type` varchar(64) NOT NULL,
  `source_module` varchar(64) NOT NULL,
  `source_crmid` int(19) DEFAULT NULL,
  `subject_module` varchar(64) DEFAULT NULL,
  `subject_crmid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `actor_id` int(19) DEFAULT NULL,
  `status` varchar(128) DEFAULT NULL,
  `direction` varchar(32) DEFAULT NULL,
  `summary` varchar(500) NOT NULL DEFAULT '',
  `payload_json` longtext DEFAULT NULL,
  `visibility` varchar(16) NOT NULL DEFAULT 'public',
  `relation_state` varchar(16) NOT NULL DEFAULT 'current',
  `source_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `dedupe_key` char(64) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_account_timeline`
--

INSERT IGNORE INTO `gooya_account_timeline` (`timeline_id`, `accountid`, `occurred_at`, `category`, `event_type`, `source_module`, `source_crmid`, `subject_module`, `subject_crmid`, `contactid`, `actor_id`, `status`, `direction`, `summary`, `payload_json`, `visibility`, `relation_state`, `source_deleted`, `dedupe_key`, `created_at`, `updated_at`) VALUES
(1, 2036, '2026-07-15 22:04:29', 'crm', 'create', 'Invoice', 2147, 'Accounts', 2036, 0, 1, 'Approved', '', 'تست واقعی فاکتور خرده‌فروشی - حساب ۲۰۳۶ [Gouya-PHASE01]', '{\"scope_path\":[\"Invoice:2147\",\"Accounts:2036\"]}', 'public', 'current', 0, '9db712629bdb0c92dc3fc9a2c8957b73a8991f1ac281516644f345fdc5911c29', '2026-07-15 22:04:30', '2026-07-23 07:59:34'),
(2, 2036, '2026-07-16 00:38:10', 'crm', 'create', 'HelpDesk', 2149, 'Contacts', 2107, 2107, 1, 'In Progress', '', 'سرویس نصب و راه‌اندازی پکیج پیشرفته (نمونه فاز ۲)', '{\"scope_path\":[\"HelpDesk:2149\",\"Accounts:2036\",\"Contacts:2107\"]}', 'public', 'current', 0, 'adf1e1d0f4287ade9c24c7736eee606cd1086529a432deed470f31fc06018e14', '2026-07-16 00:38:10', '2026-07-16 00:38:10'),
(3, 2036, '2026-07-28 10:59:29', 'crm', 'update', 'PurchaseOrder', 2150, 'Contacts', 2107, 2107, 1, 'Approved', '', 'سفارش خرید پکیج پیشرفته حساب کامران دادجو (نمونه فاز ۲)', '{\"scope_path\":[\"PurchaseOrder:2150\",\"Accounts:2036\",\"Contacts:2107\"]}', 'public', 'current', 0, 'ea9a05a4c039e6272cfc3afbe4f6ac2aa4b6bfe066184bf14c6bd9ae0f08420e', '2026-07-16 00:38:10', '2026-07-28 10:59:29'),
(63, 2036, '2026-07-18 01:04:54', 'crm', 'create', 'SarvParticipations', 2151, 'Contacts', 2107, 2107, 1, 'Active', '', 'مشارکت واقعی حساب ۲۰۳۶ [Gouya-PHASE03]', '{\"scope_path\":[\"SarvParticipations:2151\",\"Accounts:2036\",\"Contacts:2107\"]}', 'public', 'current', 0, '75e4ef04c06578d16fa473ac704eeb1a082641644cdc1968039b1cc611410248', '2026-07-18 01:04:54', '2026-07-23 07:59:34'),
(64, 2036, '2026-07-18 01:04:54', 'crm', 'relate', 'Accounts', 2036, 'Accounts', 2036, 0, 1, '', '', 'آقای کامران دادجو (مثال)', '{\"scope_path\":[\"Accounts:2036\"]}', 'public', 'current', 0, '3a3f493e8280eb0045738324234168779c7adff84c492203654c35bfeaec3f2f', '2026-07-18 01:04:54', '2026-07-18 01:04:54'),
(65, 2036, '2026-07-18 01:04:54', 'crm', 'relate', 'Leads', 2152, 'Accounts', 2036, 0, 1, 'Pre Qualified', '', 'سرنخ مشارکت حساب ۲۰۳۶ [Gouya-PHASE03]', '{\"scope_path\":[\"Accounts:2036\"]}', 'public', 'current', 0, 'd7da38f65fa6430c41eb5a912d18a554b8ed7ce57023417d13b599e9a1946af1', '2026-07-18 01:04:54', '2026-07-23 07:59:34'),
(83, 2036, '2026-07-18 03:03:33', 'crm', 'create', 'SarvSurveyResponses', 2153, 'Contacts', 2107, 2107, 1, 'Submitted', '', 'سنجش رضایت از فرایند فروش', '{\"scope_path\":[\"SarvSurveyResponses:2153\",\"Accounts:2036\",\"Contacts:2107\"]}', 'public', 'current', 0, '491322bfb506a4f5170e9e670edc91b2c576643fe79a80af7f06d697fe9b446f', '2026-07-18 03:03:33', '2026-07-18 03:03:33'),
(84, 2036, '2026-07-18 03:03:33', 'crm', 'create', 'SarvSalesContracts', 2154, 'Contacts', 2107, 2107, 1, 'Active', '', 'قرارداد فروش واقعی حساب 2036 [Gouya-PHASE04]', '{\"scope_path\":[\"SarvSalesContracts:2154\",\"Accounts:2036\",\"Contacts:2107\"]}', 'public', 'current', 0, 'af49c6f57c8ff87dd40d31602656600c6cf6a16373d0af3aa7100b989fe2583b', '2026-07-18 03:03:33', '2026-07-23 07:59:34'),
(134, 2166, '2026-07-18 04:04:07', 'crm', 'delete', 'Accounts', 2166, 'Accounts', 2166, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718040406-5955', '{\"scope_path\":[\"Accounts:2166\"]}', 'public', 'current', 1, 'dc2cf60373abb3dee5f23ece02e6afc1283daaac410fe3392b4fc5a42eff6a88', '2026-07-18 04:04:07', '2026-07-23 07:59:34'),
(135, 2166, '2026-07-18 04:04:07', 'crm', 'delete', 'Contacts', 2167, 'Contacts', 2167, 2167, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2167\",\"Accounts:2166\"]}', 'public', 'current', 1, 'aefa0c85d56f7ec0ed0cbfc1878128a22fbcd43173300b403e06517d4fb806e8', '2026-07-18 04:04:07', '2026-07-18 04:04:07'),
(136, 2166, '2026-07-18 10:00:00', 'activity', 'delete', 'Calendar', 2165, 'Contacts', 2167, 2167, 1, 'Not Started', '', 'Gouya-LEAD-SMOKE-20260718040406-5955-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-07-18 00:00:00\",\"scope_path\":[\"Accounts:2166\",\"Contacts:2167\"]}', 'public', 'current', 1, 'd21b929acecf5afea5bf69056649366b50eb7c7732d43afcf90372d8521e4b3c', '2026-07-18 04:04:07', '2026-07-23 07:59:34'),
(137, 2166, '2026-07-18 04:04:06', 'document', 'delete', 'Documents', 2163, 'Accounts', 2166, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718040406-5955.txt', '{\"scope_path\":[\"Accounts:2166\"]}', 'public', 'current', 1, 'a304c4a2275f3dc0fb6ecea568ceebc2e7381e3ca7b3808190129bfae530a410', '2026-07-18 04:04:07', '2026-07-23 07:59:34'),
(140, 2198, '2026-07-18 04:33:37', 'crm', 'delete', 'Accounts', 2198, 'Accounts', 2198, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043336-8174', '{\"scope_path\":[\"Accounts:2198\"]}', 'public', 'current', 1, 'ce58dd4d5c7c64e4dd1d779ce564f1c1f084ac49f5b444c2447809d396b85d8e', '2026-07-18 04:33:37', '2026-07-23 07:59:34'),
(141, 2198, '2026-07-18 04:33:37', 'crm', 'delete', 'Contacts', 2199, 'Contacts', 2199, 2199, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2199\",\"Accounts:2198\"]}', 'public', 'current', 1, '7856598217ced1b2e912c179f9ec6cf34026aab519521b4149c7ac8cefb95be0', '2026-07-18 04:33:37', '2026-07-18 04:33:38'),
(142, 2198, '2026-07-18 10:00:00', 'activity', 'delete', 'Calendar', 2196, 'Contacts', 2199, 2199, 1, 'Not Started', '', 'Gouya-LEAD-SMOKE-20260718043336-8174-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-07-18 00:00:00\",\"scope_path\":[\"Accounts:2198\",\"Contacts:2199\"]}', 'public', 'current', 1, '9d9f1ffa2b6646c55a3227c0044e80256ce6d4f0f7621efcd116540b1762af88', '2026-07-18 04:33:38', '2026-07-23 07:59:34'),
(143, 2198, '2026-07-18 04:33:36', 'document', 'delete', 'Documents', 2194, 'Accounts', 2198, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043336-8174.txt', '{\"scope_path\":[\"Accounts:2198\"]}', 'public', 'current', 1, 'ecd621f6ea2bac705eae9a3a3f0317c633f4bda171bf8cc0e6cab4baa2684a3b', '2026-07-18 04:33:38', '2026-07-23 07:59:34'),
(146, 2206, '2026-07-18 04:34:59', 'crm', 'delete', 'Accounts', 2206, 'Accounts', 2206, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043458-8234', '{\"scope_path\":[\"Accounts:2206\"]}', 'public', 'current', 1, 'af252ce8674262ce9a87ab3f392f0942e591538fe09d0360f77958db960b599f', '2026-07-18 04:34:59', '2026-07-23 07:59:34'),
(147, 2206, '2026-07-18 04:34:59', 'crm', 'delete', 'Contacts', 2207, 'Contacts', 2207, 2207, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2207\",\"Accounts:2206\"]}', 'public', 'current', 1, 'b5d09c851bb99a6e9e4471b2009cdf81cdc20d7731450b80a41e370d7310829e', '2026-07-18 04:34:59', '2026-07-18 04:34:59'),
(148, 2206, '2026-07-18 10:00:00', 'activity', 'delete', 'Calendar', 2204, 'Contacts', 2207, 2207, 1, 'Not Started', '', 'Gouya-LEAD-SMOKE-20260718043458-8234-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-07-18 00:00:00\",\"scope_path\":[\"Accounts:2206\",\"Contacts:2207\"]}', 'public', 'current', 1, 'e883e7ed49d00d2588e5dd11f4262b1eb65c1414ce08544d6e5cf69ea77d84d2', '2026-07-18 04:34:59', '2026-07-23 07:59:34'),
(149, 2206, '2026-07-18 04:34:58', 'document', 'delete', 'Documents', 2202, 'Accounts', 2206, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043458-8234.txt', '{\"scope_path\":[\"Accounts:2206\"]}', 'public', 'current', 1, 'f8588626b4d328f932c93c8f4b1dc18e61a9bdf3cd61c93ab92ecf01c7ac434e', '2026-07-18 04:34:59', '2026-07-23 07:59:34'),
(152, 2214, '2026-07-18 04:35:56', 'crm', 'delete', 'Accounts', 2214, 'Accounts', 2214, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043554-3440', '{\"scope_path\":[\"Accounts:2214\"]}', 'public', 'current', 1, '447b13c3017c62c4afbc2d1708024e721240db8804d2d34ba37548b44b101a45', '2026-07-18 04:35:56', '2026-07-23 07:59:34'),
(153, 2214, '2026-07-18 04:35:56', 'crm', 'delete', 'Contacts', 2215, 'Contacts', 2215, 2215, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2215\",\"Accounts:2214\"]}', 'public', 'current', 1, 'ea0e60155d353bd3c3a52500b0bc9eebe9506eba63cd9cdf1c675571042df9f1', '2026-07-18 04:35:56', '2026-07-18 04:35:56'),
(154, 2214, '2026-07-18 10:00:00', 'activity', 'delete', 'Calendar', 2212, 'Contacts', 2215, 2215, 1, 'Not Started', '', 'Gouya-LEAD-SMOKE-20260718043554-3440-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-07-18 00:00:00\",\"scope_path\":[\"Accounts:2214\",\"Contacts:2215\"]}', 'public', 'current', 1, 'f4432fdae27c536fb02abc7501b211e62b1d6ca5725934e322e759b5fc14c3ca', '2026-07-18 04:35:56', '2026-07-23 07:59:34'),
(155, 2214, '2026-07-18 04:35:55', 'document', 'delete', 'Documents', 2210, 'Accounts', 2214, 0, 1, '', '', 'Gouya-LEAD-SMOKE-20260718043554-3440.txt', '{\"scope_path\":[\"Accounts:2214\"]}', 'public', 'current', 1, '6a5a4a7c81e936dba558e624581fbfabccbd819a1679a0963cc6b121e63e2976', '2026-07-18 04:35:56', '2026-07-23 07:59:34'),
(158, 2221, '2026-07-18 07:46:05', 'crm', 'create', 'Accounts', 2221, 'Accounts', 2221, 0, 1, '', '', 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]', '{\"scope_path\":[\"Accounts:2221\"]}', 'public', 'current', 0, '781d2fcadcf825830b933bbb63d9497157ebcedadd3a39f1856ac296cc0e4e15', '2026-07-18 07:46:06', '2026-07-23 07:59:34'),
(270, 2036, '2026-07-18 22:26:34', 'comment', 'create', 'ModComments', 2234, 'Accounts', 2036, 0, 1, '', '', 'فعالیت خصوصی', '{\"scope_path\":[\"ModComments:2234\",\"Accounts:2036\"]}', 'private', 'current', 0, 'b7dbe220d146d773a803a28a84d9f90210f0d8d945ab471d1ac36f599f79c44b', '2026-07-18 22:26:35', '2026-07-18 22:26:35'),
(345, 20, '2026-07-29 12:55:23', 'crm', 'create', 'PurchaseOrder', 2268, 'Contacts', 2096, 2096, 1, 'Created', '', 'سفارش خرید نمونه عملی کامل - ۱۴۰۵/۰۵/۰۷', '{\"scope_path\":[\"PurchaseOrder:2268\",\"Accounts:20\",\"Contacts:2096\"]}', 'public', 'current', 0, 'd06435c1328f5df44797e6233b02c4c0bd963dec5ca92490433ed20276749f41', '2026-07-29 12:55:23', '2026-07-29 12:55:23'),
(346, 2275, '2026-07-30 06:36:02', 'crm', 'delete', 'Accounts', 2275, 'Accounts', 2275, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260730063600-5929', '{\"scope_path\":[\"Accounts:2275\"]}', 'public', 'current', 1, 'aa758a4d7299abecc3034cda2fc22be5aa4541ddceacc5185898c9f88f9e16ff', '2026-07-30 06:36:02', '2026-07-30 06:36:03'),
(347, 2275, '2026-07-30 06:36:02', 'crm', 'delete', 'Contacts', 2276, 'Contacts', 2276, 2276, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2276\",\"Accounts:2275\"]}', 'public', 'current', 1, '69d6584708742723d867348568ae117bef1fde0a6abad988cc9606f488c4028f', '2026-07-30 06:36:02', '2026-07-30 06:36:02'),
(348, 2275, '2026-07-30 10:00:00', 'activity', 'delete', 'Calendar', 2273, 'Contacts', 2276, 2276, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260730063600-5929-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-07-30 00:00:00\",\"scope_path\":[\"Accounts:2275\",\"Contacts:2276\"]}', 'public', 'current', 1, '3e8bcd567cc37880215cac14ac4be787bb641d82426245cbcf23fdf9110153ae', '2026-07-30 06:36:02', '2026-07-30 06:36:02'),
(351, 2037, '2026-07-30 08:50:27', 'crm', 'update', 'Quotes', 2277, 'Accounts', 2037, 0, 1, 'Created', '', 'پیش فاکتور نمونه طرح گویا ۱۴۰۵/۰۵/۰۸', '{\"scope_path\":[\"Quotes:2277\",\"Accounts:2037\"]}', 'public', 'current', 0, 'b2fcc7d24b27088d5eea60f44f91b8845b12565f731cfe2bf82133121d75b235', '2026-07-30 08:40:26', '2026-07-30 08:50:27'),
(353, 20, '2026-08-02 06:19:46', 'crm', 'delete', 'Contacts', 2280, 'Contacts', 2280, 2280, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802061945-5541', '{\"scope_path\":[\"Contacts:2280\",\"Accounts:20\"]}', 'public', 'current', 1, 'f1c10066622e54c5d1e0a8505f0395d1eaf721deca3c9196a99566af976bd1af', '2026-08-02 06:19:46', '2026-08-02 06:19:46'),
(356, 20, '2026-08-02 06:52:07', 'crm', 'delete', 'Contacts', 2281, 'Contacts', 2281, 2281, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802065207-9882', '{\"scope_path\":[\"Contacts:2281\",\"Accounts:20\"]}', 'public', 'current', 1, 'ded67bb7d03ef3a1a0dd9b58258803fa64ac36d2b3d57150e0e4ac02200899db', '2026-08-02 06:52:07', '2026-08-02 06:52:07'),
(359, 20, '2026-08-02 07:16:42', 'crm', 'delete', 'Contacts', 2282, 'Contacts', 2282, 2282, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802071642-5628', '{\"scope_path\":[\"Contacts:2282\",\"Accounts:20\"]}', 'public', 'current', 1, '47134379bfb7ee3c180c6fd6e95b4d4478193ccd29cbe210cea2963336387ae5', '2026-08-02 07:16:42', '2026-08-02 07:16:42'),
(362, 20, '2026-08-02 07:25:36', 'crm', 'delete', 'Contacts', 2283, 'Contacts', 2283, 2283, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802072535-4912', '{\"scope_path\":[\"Contacts:2283\",\"Accounts:20\"]}', 'public', 'current', 1, '8eb3b7391977dab3cdb3c64d49122c817943f98922ef242fb9d019c060e4a989', '2026-08-02 07:25:36', '2026-08-02 07:25:36'),
(365, 20, '2026-08-02 08:06:31', 'crm', 'delete', 'Contacts', 2284, 'Contacts', 2284, 2284, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802080631-6166', '{\"scope_path\":[\"Contacts:2284\",\"Accounts:20\"]}', 'public', 'current', 1, '5cf33fd631b002eda4018b8273e9881c52306e82fa62a52509237e3d3cb2cc97', '2026-08-02 08:06:31', '2026-08-02 08:06:31'),
(368, 20, '2026-08-02 17:02:59', 'crm', 'delete', 'Contacts', 2285, 'Contacts', 2285, 2285, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802170258-4182', '{\"scope_path\":[\"Contacts:2285\",\"Accounts:20\"]}', 'public', 'current', 1, 'dbfee18691200201411a4fe7c599fb0b4f8a506db42e3e8f6c004dc0fa3f233b', '2026-08-02 17:02:59', '2026-08-02 17:02:59'),
(371, 20, '2026-08-02 17:30:56', 'crm', 'delete', 'Contacts', 2287, 'Contacts', 2287, 2287, 1, '', '', 'Gouya GOUYA-CONTACT-SMOKE-20260802173055-1807', '{\"scope_path\":[\"Contacts:2287\",\"Accounts:20\"]}', 'public', 'current', 1, '3b4a3ba9df7cecfa0420778e0c6af1e9ad18bfbfd9883173173fcd452502ba28', '2026-08-02 17:30:56', '2026-08-02 17:30:57'),
(374, 2312, '2026-08-09 06:13:46', 'crm', 'delete', 'Accounts', 2312, 'Accounts', 2312, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809061344-4881', '{\"scope_path\":[\"Accounts:2312\"]}', 'public', 'current', 1, 'bc6538419e51355f7e3a9d26412cbffe2c004067324f242b4a652348f17acfe3', '2026-08-09 06:13:47', '2026-08-09 06:13:48'),
(375, 2312, '2026-08-09 06:13:47', 'crm', 'delete', 'Contacts', 2313, 'Contacts', 2313, 2313, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2313\",\"Accounts:2312\"]}', 'public', 'current', 1, '981b25644512ab660a6932f24dee3851eddb63d3a5b440e84cc301b5325eff98', '2026-08-09 06:13:47', '2026-08-09 06:13:47'),
(376, 2312, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2310, 'Contacts', 2313, 2313, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809061344-4881-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2312\",\"Contacts:2313\"]}', 'public', 'current', 1, '44d6601df3f1c42f12d5a1ced3a0bade2b1189f36ddc9329df41055b275fd9c3', '2026-08-09 06:13:47', '2026-08-09 06:13:47'),
(377, 2312, '2026-08-09 06:13:45', 'document', 'delete', 'Documents', 2308, 'Accounts', 2312, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809061344-4881.txt', '{\"scope_path\":[\"Accounts:2312\"]}', 'public', 'current', 1, 'e6950d99f97e3569d08f72efc829b8e6eb9876ec82af75a253127debbd939e92', '2026-08-09 06:13:47', '2026-08-09 06:13:47'),
(380, 2320, '2026-08-09 06:20:45', 'crm', 'delete', 'Accounts', 2320, 'Accounts', 2320, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062044-1209', '{\"scope_path\":[\"Accounts:2320\"]}', 'public', 'current', 1, '458c745ab5ce61b5391017d4cfe2dd5d1ae77afa666bfd8ceb2cf229fceae5ab', '2026-08-09 06:20:45', '2026-08-09 06:20:46'),
(381, 2320, '2026-08-09 06:20:45', 'crm', 'delete', 'Contacts', 2321, 'Contacts', 2321, 2321, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2321\",\"Accounts:2320\"]}', 'public', 'current', 1, 'ef5c0393a8f5b5a3d75dbe07670e7b5fb92d472a5fe5daa207571ec42fba75ec', '2026-08-09 06:20:45', '2026-08-09 06:20:45'),
(382, 2320, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2318, 'Contacts', 2321, 2321, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809062044-1209-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2320\",\"Contacts:2321\"]}', 'public', 'current', 1, '8317882b0ebd152eecdc6a4587769263d357225c7f0c7737e828fc47a8258309', '2026-08-09 06:20:45', '2026-08-09 06:20:45'),
(383, 2320, '2026-08-09 06:20:44', 'document', 'delete', 'Documents', 2316, 'Accounts', 2320, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062044-1209.txt', '{\"scope_path\":[\"Accounts:2320\"]}', 'public', 'current', 1, '97e9aebccb621fb9634f188c8f0a3a0511e822b59448cffd8b63abc3ab6c84b2', '2026-08-09 06:20:45', '2026-08-09 06:20:45'),
(386, 2328, '2026-08-09 06:22:21', 'crm', 'delete', 'Accounts', 2328, 'Accounts', 2328, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062220-7570', '{\"scope_path\":[\"Accounts:2328\"]}', 'public', 'current', 1, 'd696dc3e508d57257f0ca405191b1e24897a433a0ea4eb875b11e8074efd4b13', '2026-08-09 06:22:21', '2026-08-09 06:22:22'),
(387, 2328, '2026-08-09 06:22:21', 'crm', 'delete', 'Contacts', 2329, 'Contacts', 2329, 2329, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2329\",\"Accounts:2328\"]}', 'public', 'current', 1, 'd644dcb81439fba4ed2f47c1280a5e9f457c0e467e9103ad3683612220449225', '2026-08-09 06:22:22', '2026-08-09 06:22:22'),
(388, 2328, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2326, 'Contacts', 2329, 2329, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809062220-7570-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2328\",\"Contacts:2329\"]}', 'public', 'current', 1, 'b926f3d492296107e600af80ad1600dc91aa96379d2df976857125e851c9cf5e', '2026-08-09 06:22:22', '2026-08-09 06:22:22'),
(389, 2328, '2026-08-09 06:22:21', 'document', 'delete', 'Documents', 2324, 'Accounts', 2328, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062220-7570.txt', '{\"scope_path\":[\"Accounts:2328\"]}', 'public', 'current', 1, 'e11879e7223edcaf062aeba2a202605cc087a2902fea3014b800dd87e60da855', '2026-08-09 06:22:22', '2026-08-09 06:22:22'),
(392, 2336, '2026-08-09 06:27:06', 'crm', 'delete', 'Accounts', 2336, 'Accounts', 2336, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062704-6866', '{\"scope_path\":[\"Accounts:2336\"]}', 'public', 'current', 1, '752bd02dde99706a38d55e30d7cec3d1c31ef57c4d7c197043aab54f88f16224', '2026-08-09 06:27:06', '2026-08-09 06:27:06'),
(393, 2336, '2026-08-09 06:27:06', 'crm', 'delete', 'Contacts', 2337, 'Contacts', 2337, 2337, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2337\",\"Accounts:2336\"]}', 'public', 'current', 1, '225d72cf2a2fabe55c62ff99fa02df39eb59ca70d14c473ca244c039f913cf12', '2026-08-09 06:27:06', '2026-08-09 06:27:06'),
(394, 2336, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2334, 'Contacts', 2337, 2337, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809062704-6866-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2336\",\"Contacts:2337\"]}', 'public', 'current', 1, '8093c1a66bfdff26911d45baa9240069b578d79e1c7f193f09988b8d1afd4b82', '2026-08-09 06:27:06', '2026-08-09 06:27:06'),
(395, 2336, '2026-08-09 06:27:05', 'document', 'delete', 'Documents', 2332, 'Accounts', 2336, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809062704-6866.txt', '{\"scope_path\":[\"Accounts:2336\"]}', 'public', 'current', 1, 'b97103e6cc8392289e00bab3e4b0fdaf39916e5b289754129cfae4a6f9e4d175', '2026-08-09 06:27:06', '2026-08-09 06:27:06'),
(398, 2344, '2026-08-09 06:30:38', 'crm', 'delete', 'Accounts', 2344, 'Accounts', 2344, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809063037-9459', '{\"scope_path\":[\"Accounts:2344\"]}', 'public', 'current', 1, '9453c20aeb0d9a8dc57d0242a371fd0f92d5a31b21694ae8f7fbb113cd09b10d', '2026-08-09 06:30:38', '2026-08-09 06:30:39'),
(399, 2344, '2026-08-09 06:30:38', 'crm', 'delete', 'Contacts', 2345, 'Contacts', 2345, 2345, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2345\",\"Accounts:2344\"]}', 'public', 'current', 1, '067a4ca31141efbeeb7f5a53a83dd2d4a6ad59ff27d545c5ae147285347e2389', '2026-08-09 06:30:39', '2026-08-09 06:30:39'),
(400, 2344, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2342, 'Contacts', 2345, 2345, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809063037-9459-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2344\",\"Contacts:2345\"]}', 'public', 'current', 1, '205d07b27eb080ff9da6290a8db29da467d7a6dc0059e11a85cef55d51904606', '2026-08-09 06:30:39', '2026-08-09 06:30:39'),
(401, 2344, '2026-08-09 06:30:38', 'document', 'delete', 'Documents', 2340, 'Accounts', 2344, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809063037-9459.txt', '{\"scope_path\":[\"Accounts:2344\"]}', 'public', 'current', 1, '4c9d55f1fbd001b261213c81fa51d4399b25b0db5a67079c3b8efdaa751ec254', '2026-08-09 06:30:39', '2026-08-09 06:30:39'),
(404, 2352, '2026-08-09 06:31:24', 'crm', 'delete', 'Accounts', 2352, 'Accounts', 2352, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809063122-8988', '{\"scope_path\":[\"Accounts:2352\"]}', 'public', 'current', 1, '1377839ed8c0d314e9a357590997b6d8df04cd278992bc521752754cff1fa03b', '2026-08-09 06:31:24', '2026-08-09 06:31:25'),
(405, 2352, '2026-08-09 06:31:24', 'crm', 'delete', 'Contacts', 2353, 'Contacts', 2353, 2353, 1, '', '', 'آزمون یکپارچگی سرنخ', '{\"scope_path\":[\"Contacts:2353\",\"Accounts:2352\"]}', 'public', 'current', 1, 'c3f391df50d985aa8b855bba77b59ddccb4533c91edc0e2a7f7810dcbb62798d', '2026-08-09 06:31:24', '2026-08-09 06:31:24'),
(406, 2352, '2026-08-09 10:00:00', 'activity', 'delete', 'Calendar', 2350, 'Contacts', 2353, 2353, 1, 'Not Started', '', 'SARV-LEAD-SMOKE-20260809063122-8988-Task', '{\"activity_type\":\"Task\",\"due_at\":\"2026-08-09 00:00:00\",\"scope_path\":[\"Accounts:2352\",\"Contacts:2353\"]}', 'public', 'current', 1, '093d25c38336608b1b85287c216dba69b808d02d69af94b3b4bf7059aa12d8a1', '2026-08-09 06:31:24', '2026-08-09 06:31:24'),
(407, 2352, '2026-08-09 06:31:23', 'document', 'delete', 'Documents', 2348, 'Accounts', 2352, 0, 1, '', '', 'SARV-LEAD-SMOKE-20260809063122-8988.txt', '{\"scope_path\":[\"Accounts:2352\"]}', 'public', 'current', 1, 'c77b402e0455ba31cb617baec1b66758665999fadd2f00ac0df26fad5042d787', '2026-08-09 06:31:24', '2026-08-09 06:31:24'),
(411, 20, '2026-08-10 07:22:31', 'crm', 'create', 'Potentials', 2528, 'Accounts', 20, 0, 1, '۳.ارائه پیشنهاد/پیش فاکتور', '', 'آزمون فرم فرصت گویا 20260810072231-589', '{\"scope_path\":[\"Potentials:2528\",\"Accounts:20\"]}', 'public', 'current', 0, 'ce3eae391fa3fb2299c159b9361a23ec78cf264e4538e07fde074ab9babf9c9b', '2026-08-10 07:22:31', '2026-08-10 07:22:31'),
(412, 20, '2026-08-10 07:24:30', 'crm', 'delete', 'Potentials', 2530, 'Accounts', 20, 0, 1, '۳.ارائه پیشنهاد/پیش فاکتور', '', 'آزمون عملی فرم فرصت گویا 1786346601193', '{\"scope_path\":[\"Potentials:2530\",\"Accounts:20\"]}', 'public', 'current', 1, 'aa91c20ff1e6e5d245ff75c178f36417005fbaa681311f45deb7b17b62dd7d22', '2026-08-10 07:24:30', '2026-08-10 07:24:46'),
(414, 20, '2026-08-10 07:27:58', 'crm', 'create', 'Potentials', 2531, 'Accounts', 20, 0, 1, '۳.ارائه پیشنهاد/پیش فاکتور', '', 'آزمون فرم فرصت گویا 20260810072758-870', '{\"scope_path\":[\"Potentials:2531\",\"Accounts:20\"]}', 'public', 'current', 0, 'ddbdb44cda9315a187c5614747b34832800e23820fc8cdc2c4c6436d1ea1cd60', '2026-08-10 07:27:58', '2026-08-10 07:27:58'),
(415, 20, '2026-08-10 07:40:49', 'crm', 'create', 'Potentials', 2534, 'Accounts', 20, 0, 1, 'Closed Won', '', 'Gouya Forecast Smoke 20260810074049-797', '{\"scope_path\":[\"Potentials:2534\",\"Accounts:20\"]}', 'public', 'current', 0, '604c3b4da5f73f97de783d2e19353e2e795104c20c9d6655906de90e0509e799', '2026-08-10 07:40:49', '2026-08-10 07:40:49'),
(416, 20, '2026-08-10 07:41:13', 'crm', 'create', 'Potentials', 2535, 'Accounts', 20, 0, 1, 'Closed Won', '', 'Gouya Forecast Smoke 20260810074113-128', '{\"scope_path\":[\"Potentials:2535\",\"Accounts:20\"]}', 'public', 'current', 0, '2372c00a8930ff441749883d52de901682350caa8d7c48466e1205bfa1e27e4d', '2026-08-10 07:41:13', '2026-08-10 07:41:13'),
(417, 20, '2026-08-10 07:45:54', 'crm', 'create', 'Potentials', 2536, 'Accounts', 20, 0, 1, 'Closed Won', '', 'Gouya Forecast Smoke 20260810074554-681', '{\"scope_path\":[\"Potentials:2536\",\"Accounts:20\"]}', 'public', 'current', 0, 'b089e9518c5e62c76b6bca02b83347e016f07abfbedbd56c160c94bd466aa31a', '2026-08-10 07:45:54', '2026-08-10 07:45:54');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_attachment_storage`
--

DROP TABLE IF EXISTS `gooya_attachment_storage`;
CREATE TABLE `gooya_attachment_storage` (
  `attachment_id` bigint(20) UNSIGNED NOT NULL,
  `driver` varchar(20) NOT NULL DEFAULT 'local',
  `bucket` varchar(128) NOT NULL DEFAULT '',
  `object_key` varchar(700) NOT NULL DEFAULT '',
  `local_path` varchar(500) NOT NULL DEFAULT '',
  `stored_name` varchar(255) NOT NULL DEFAULT '',
  `original_name` varchar(255) NOT NULL DEFAULT '',
  `mime_type` varchar(150) NOT NULL DEFAULT 'application/octet-stream',
  `size_bytes` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `checksum_sha256` char(64) NOT NULL DEFAULT '',
  `storage_status` varchar(30) NOT NULL DEFAULT 'ready',
  `source_module` varchar(80) NOT NULL DEFAULT '',
  `source_record_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `created_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_attachment_storage`
--

INSERT IGNORE INTO `gooya_attachment_storage` (`attachment_id`, `driver`, `bucket`, `object_key`, `local_path`, `stored_name`, `original_name`, `mime_type`, `size_bytes`, `checksum_sha256`, `storage_status`, `source_module`, `source_record_id`, `created_by`, `created_at`, `updated_at`) VALUES
(2550, 'local', '', 'storage/2026/August/week2/2550_3cd0ef7646041e8a8451652b15e6e29c.zip', 'storage/2026/August/week2/', '3cd0ef7646041e8a8451652b15e6e29c.zip', 'gooyachat-archive-1-20260811-075923.zip', 'application/zip', 4420, 'fdebce7a8c1b076ebbf3a16f712b35ce984fe8170615d35dec8f69c2fb093dc6', 'deleted', 'GooyaCloud', 114, 1, '2026-08-11 07:59:23', '2026-08-11 07:59:25'),
(2560, 'local', '', 'storage/2026/August/week2/2560_775a3ad6df6cda817c96b34473a506ea.zip', 'storage/2026/August/week2/', '775a3ad6df6cda817c96b34473a506ea.zip', 'gooyachat-archive-7-20260811-082641.zip', 'application/zip', 4420, 'eaff99c75d9cad08e13fcfee2ca0f40cecf571a1b9ebf75cfd7bda29ad685ee3', 'deleted', 'GooyaCloud', 115, 1, '2026-08-11 08:26:42', '2026-08-11 08:26:44'),
(2561, 'local', '', 'storage/2026/August/week2/2561_40510db1ce29d0d0e870525fabfc56d7.zip', 'storage/2026/August/week2/', '40510db1ce29d0d0e870525fabfc56d7.zip', 'gooyachat-archive-8-20260811-082643.zip', 'application/zip', 4420, 'cbad4f5d5f11aeb2b55334f811d22dc88b73eb1095926727ca163807279331c1', 'deleted', 'GooyaCloud', 116, 1, '2026-08-11 08:26:43', '2026-08-11 08:26:43'),
(2566, 'local', '', 'storage/2026/August/week2/2566_32d54d3f58339212fbc9a4c7ec6676b7.zip', 'storage/2026/August/week2/', '32d54d3f58339212fbc9a4c7ec6676b7.zip', 'gooyachat-archive-9-20260811-082707.zip', 'application/zip', 4420, '588588d78b4325d4fdcf31ab6a39151fe6e3ead533b8ae126113f7cae04bd181', 'deleted', 'GooyaCloud', 117, 1, '2026-08-11 08:27:07', '2026-08-11 08:27:09'),
(2567, 'local', '', 'storage/2026/August/week2/2567_e6673b7a5963551be1976d02af40beea.zip', 'storage/2026/August/week2/', 'e6673b7a5963551be1976d02af40beea.zip', 'gooyachat-archive-10-20260811-082708.zip', 'application/zip', 4423, '68b3f303abc6415e24aff2dd17f08d9c0de2a66791dfca4414e3cf36b1065d93', 'deleted', 'GooyaCloud', 118, 1, '2026-08-11 08:27:08', '2026-08-11 08:27:09'),
(2569, 'local', '', 'storage/2026/August/week2/2569_60dd4832fc2ff9ef5395c1cadb392e19.webm', 'storage/2026/August/week2/', '60dd4832fc2ff9ef5395c1cadb392e19.webm', 'voice-1786437748206.webm', 'video/webm', 162737, 'bed146fcc639b657c990b79f0b72d1cda716c81c198e6b25b8b7d60c373c2e7b', 'ready', 'GooyaChat', 102, 1, '2026-08-11 08:42:28', '2026-08-11 08:42:28'),
(2581, 'local', '', 'storage/2026/August/week2/2581_495e464e3faca9ac6d545254d879189b.zip', 'storage/2026/August/week2/', '495e464e3faca9ac6d545254d879189b.zip', 'gooyanegar-recovery-1.zip', 'application/zip', 1443, '3875e23fc8cbc8bf071dac7fb073792c27d9a3d1a94b6f5bf4b4253951ce86eb', 'deleted', 'GooyaCloud', 119, 1, '2026-08-12 09:54:36', '2026-08-12 09:54:39'),
(2588, 'local', '', 'storage/2026/August/week2/2588_218a30ed75edb36ef7403c421fd4d122.zip', 'storage/2026/August/week2/', '218a30ed75edb36ef7403c421fd4d122.zip', 'gooyanegar-recovery-2.zip', 'application/zip', 1414, 'aa37ba8f935be6df603a99f1e981b1dde69f7628016ca075ebc13f204fa9bf3a', 'deleted', 'GooyaCloud', 120, 1, '2026-08-12 10:27:15', '2026-08-12 10:27:21'),
(2589, 'local', '', 'storage/2026/August/week2/2589_f69c63893b9d8fe7c4132106518cabeb.zip', 'storage/2026/August/week2/', 'f69c63893b9d8fe7c4132106518cabeb.zip', 'gooyanegar-recovery-3.zip', 'application/zip', 1414, '57632015a9a58e72e32cb0f726b9b100143996912331a215acb68885b057ece3', 'deleted', 'GooyaCloud', 121, 1, '2026-08-12 10:27:18', '2026-08-12 10:27:21'),
(2592, 'local', '', 'storage/2026/August/week2/2592_4a45200291ce1ffea8e3a2fc955ced8a.zip', 'storage/2026/August/week2/', '4a45200291ce1ffea8e3a2fc955ced8a.zip', 'gooyanegar-recovery-5.zip', 'application/zip', 1414, '0609dfe4222d528ff3c3faad51a62a2cfaae33fc560fc3ea717c16fb68e9c5c6', 'deleted', 'GooyaCloud', 122, 1, '2026-08-12 10:28:09', '2026-08-12 10:28:16'),
(2593, 'local', '', 'storage/2026/August/week2/2593_689a6a01e6a3e50f0db04b47470342d0.zip', 'storage/2026/August/week2/', '689a6a01e6a3e50f0db04b47470342d0.zip', 'gooyanegar-recovery-6.zip', 'application/zip', 1414, '16ae033e6f06c09fd68e1467bc7f7c5a9b348fe29a20431c80b978cbbe71cfda', 'deleted', 'GooyaCloud', 123, 1, '2026-08-12 10:28:13', '2026-08-12 10:28:15'),
(2623, 'local', '', 'storage/2026/August/week2/2623_1fb841e6739c014abddf7b9bb13e228c.zip', 'storage/2026/August/week2/', '1fb841e6739c014abddf7b9bb13e228c.zip', 'gooyanegar-recovery-8.zip', 'application/zip', 1444, '24bb52240f2d74ddddecb503ad6870000f35f5166482ab3cec17a6340ea53318', 'deleted', 'GooyaCloud', 124, 1, '2026-08-13 09:11:28', '2026-08-13 09:11:29'),
(2626, 'local', '', 'storage/2026/August/week2/2626_0dd7557ab00ba95510c5b1a4a211acbb.zip', 'storage/2026/August/week2/', '0dd7557ab00ba95510c5b1a4a211acbb.zip', 'gooyanegar-recovery-9.zip', 'application/zip', 1415, 'e04fb4ced06f7832f70b3e845bd3f03c2f1ed691da379f71e22639619ebf4b57', 'deleted', 'GooyaCloud', 125, 1, '2026-08-13 09:11:34', '2026-08-13 09:11:37'),
(2627, 'local', '', 'storage/2026/August/week2/2627_8556d178863aec9d8ce47aaf94916454.zip', 'storage/2026/August/week2/', '8556d178863aec9d8ce47aaf94916454.zip', 'gooyanegar-recovery-10.zip', 'application/zip', 1416, '5c01a055dd86e9bd1a21c924ec1a50a031d63462cbdfde1c385f73a9df27bf11', 'deleted', 'GooyaCloud', 126, 1, '2026-08-13 09:11:35', '2026-08-13 09:11:37'),
(2636, 'local', '', 'storage/2026/August/week2/2636_17e3cd78b7377cdae65b48db51f4c5af.zip', 'storage/2026/August/week2/', '17e3cd78b7377cdae65b48db51f4c5af.zip', 'gooyanegar-recovery-12.zip', 'application/zip', 1416, '902078579a8bdf60ad4f873986172f2e706ff5343640924f61931b2a60f62c0d', 'deleted', 'GooyaCloud', 127, 1, '2026-08-13 09:39:57', '2026-08-13 09:40:00'),
(2637, 'local', '', 'storage/2026/August/week2/2637_7b88bd0a9498031e3500d286d1ccdfde.zip', 'storage/2026/August/week2/', '7b88bd0a9498031e3500d286d1ccdfde.zip', 'gooyanegar-recovery-13.zip', 'application/zip', 1416, '106d1acafcc93e33a5bf4b8f76db251629dfdf67354d0273b54f1c7559a3b9f8', 'deleted', 'GooyaCloud', 128, 1, '2026-08-13 09:39:59', '2026-08-13 09:40:00'),
(2642, 'local', '', 'storage/2026/August/week2/2642_67ac28278536d4a64ada3d4d68cb0956.zip', 'storage/2026/August/week2/', '67ac28278536d4a64ada3d4d68cb0956.zip', 'gooyanegar-recovery-15.zip', 'application/zip', 1416, '9d74514d1bb791c38d26048d4870fbce322a5ef9cefd58d289adbe005744bb20', 'deleted', 'GooyaCloud', 129, 1, '2026-08-13 09:41:12', '2026-08-13 09:41:18'),
(2643, 'local', '', 'storage/2026/August/week2/2643_1a97a80e1056682ed5d0fe7df23501a2.zip', 'storage/2026/August/week2/', '1a97a80e1056682ed5d0fe7df23501a2.zip', 'gooyanegar-recovery-16.zip', 'application/zip', 1416, '58ee4ea041f56229c4e9b17cdb9fea0f10c2e55c1d092cdd114e824d899f2094', 'deleted', 'GooyaCloud', 130, 1, '2026-08-13 09:41:14', '2026-08-13 09:41:18'),
(2644, 'local', '', 'storage/2026/August/week2/2644_eff12bf91916cf36a112664469f0fade.zip', 'storage/2026/August/week2/', 'eff12bf91916cf36a112664469f0fade.zip', 'gooyanegar-recovery-17.zip', 'application/zip', 1416, 'cf219355a91e24ddcd62e797ee31220f2a7fe137e76324549781ab8661e867fa', 'deleted', 'GooyaCloud', 131, 1, '2026-08-13 09:41:15', '2026-08-13 09:41:17'),
(2645, 'local', '', 'storage/2026/August/week2/2645_41057c661dc4520ef17ba666574c49f8.zip', 'storage/2026/August/week2/', '41057c661dc4520ef17ba666574c49f8.zip', 'gooyanegar-recovery-18.zip', 'application/zip', 1416, 'fb6c45e64a59416bae75b49a7e670457fc0c8918671e427402234c789bb04223', 'deleted', 'GooyaCloud', 132, 1, '2026-08-13 09:41:16', '2026-08-13 09:41:17'),
(2659, 'local', '', 'storage/2026/August/week2/2659_eccb00e4a9f0f3e98b9a2c3d6abadf41.zip', 'storage/2026/August/week2/', 'eccb00e4a9f0f3e98b9a2c3d6abadf41.zip', 'gooyanegar-recovery-20.zip', 'application/zip', 1445, 'a9248ef6da47ab53e1afaee095bbafe12bb2921ddd9506bda1d80830fc745db7', 'deleted', 'GooyaCloud', 133, 1, '2026-08-13 09:55:03', '2026-08-13 09:55:04'),
(2664, 'local', '', 'storage/2026/August/week2/2664_de3d66ba8f872d011e9b66f54bbc82dc.zip', 'storage/2026/August/week2/', 'de3d66ba8f872d011e9b66f54bbc82dc.zip', 'gooyanegar-recovery-21.zip', 'application/zip', 1416, 'b8404c74be958978e39df8acdbc2c5fb16c073f6ccb8bfed4aa207651129653e', 'deleted', 'GooyaCloud', 134, 1, '2026-08-13 09:55:09', '2026-08-13 09:55:14'),
(2665, 'local', '', 'storage/2026/August/week2/2665_1b347b43336fc0b0ac8e6116627616a7.zip', 'storage/2026/August/week2/', '1b347b43336fc0b0ac8e6116627616a7.zip', 'gooyanegar-recovery-22.zip', 'application/zip', 1416, '47d2b0624a50f750b621334c6867095fe202b16ad8937d790c63169d53805fe7', 'deleted', 'GooyaCloud', 135, 1, '2026-08-13 09:55:11', '2026-08-13 09:55:14'),
(2666, 'local', '', 'storage/2026/August/week2/2666_725c1b6f6872f4f421da09630305a661.zip', 'storage/2026/August/week2/', '725c1b6f6872f4f421da09630305a661.zip', 'gooyanegar-recovery-23.zip', 'application/zip', 1416, '4d3429f095cbfe9102844c1869e4666af9bd25da6fcc455370c437463d494b87', 'deleted', 'GooyaCloud', 136, 1, '2026-08-13 09:55:12', '2026-08-13 09:55:14'),
(2667, 'local', '', 'storage/2026/August/week2/2667_dae4ce93065fb9bc95596e0bc9e8213c.zip', 'storage/2026/August/week2/', 'dae4ce93065fb9bc95596e0bc9e8213c.zip', 'gooyanegar-recovery-24.zip', 'application/zip', 1416, '8281349c61d5291bdb0de90e743da0e37bf34034ebfc225c27b50547aa22c182', 'deleted', 'GooyaCloud', 137, 1, '2026-08-13 09:55:13', '2026-08-13 09:55:14'),
(2689, 'local', '', 'storage/2026/August/week3/2689_7b498128602ff11cff3febb1b43fb4c6.zip', 'storage/2026/August/week3/', '7b498128602ff11cff3febb1b43fb4c6.zip', 'gooyanegar-recovery-26.zip', 'application/zip', 1446, '786554ca686eea6c26a0410dbec48cbd916e48e34ed3b798f2f64953460c0e85', 'deleted', 'GooyaCloud', 138, 1, '2026-08-15 07:10:04', '2026-08-15 07:10:05'),
(2694, 'local', '', 'storage/2026/August/week3/2694_b9cefa00f56ab9f26569319a6ef2b7bd.zip', 'storage/2026/August/week3/', 'b9cefa00f56ab9f26569319a6ef2b7bd.zip', 'gooyanegar-recovery-27.zip', 'application/zip', 1417, '6d10f9933d181e3e30bba5339f90d3411be38023765d7b3473b9cee72231eb8a', 'deleted', 'GooyaCloud', 139, 1, '2026-08-15 07:10:10', '2026-08-15 07:10:16'),
(2695, 'local', '', 'storage/2026/August/week3/2695_825430e53d179fbe2ca3f37b044905f1.zip', 'storage/2026/August/week3/', '825430e53d179fbe2ca3f37b044905f1.zip', 'gooyanegar-recovery-28.zip', 'application/zip', 1417, 'ad42f1462cfb551482b756e2db085090697c6c77b882d7bda27fe49e3b1c56ed', 'deleted', 'GooyaCloud', 140, 1, '2026-08-15 07:10:12', '2026-08-15 07:10:16'),
(2696, 'local', '', 'storage/2026/August/week3/2696_3c5f83021eebd20f9313ee03665ad151.zip', 'storage/2026/August/week3/', '3c5f83021eebd20f9313ee03665ad151.zip', 'gooyanegar-recovery-29.zip', 'application/zip', 1417, '5244af89ee1e0cceb3df4d5a6a9d3f2b58bed3b056a379b3dc36d9bc37ceb900', 'deleted', 'GooyaCloud', 141, 1, '2026-08-15 07:10:13', '2026-08-15 07:10:15'),
(2697, 'local', '', 'storage/2026/August/week3/2697_6649f54a91a9b83a5b5346a4a8aa48be.zip', 'storage/2026/August/week3/', '6649f54a91a9b83a5b5346a4a8aa48be.zip', 'gooyanegar-recovery-30.zip', 'application/zip', 1419, 'b8af13459ba51fb4bf8a5bed91dab777eb5921266381e38f6de392e7b8cd1b8d', 'deleted', 'GooyaCloud', 142, 1, '2026-08-15 07:10:14', '2026-08-15 07:10:15'),
(2699, 'local', '', 'storage/2026/August/week3/2699_59863574e042e5afed2b3f851fe18b4b.png', 'storage/2026/August/week3/', '59863574e042e5afed2b3f851fe18b4b.png', 'signature-u6-20260815072724.png', 'image/png', 1701, '9cf6793740d9b53764b0393e1db65f3e33440408ba1a72455c0d5e9712640779', 'ready', 'GooyaNegar', 33, 6, '2026-08-15 07:27:24', '2026-08-15 07:27:24'),
(2700, 'local', '', 'storage/2026/August/week3/2700_df5927bc859646f47d815222aa8f022d.pdf', 'storage/2026/August/week3/', 'df5927bc859646f47d815222aa8f022d.pdf', 'official-GNT-1405-000001.pdf', 'application/pdf', 129557, '3be3cd442e2be50de77e94fe301ef352fc20f71014b008f6728b1d13acefed22', 'ready', 'GooyaNegar', 74, 6, '2026-08-15 07:27:25', '2026-08-15 07:27:25'),
(2701, 'local', '', 'storage/2026/August/week3/2701_89dd3b7bb3e28013add5f2fb55e3e8c6.pdf', 'storage/2026/August/week3/', '89dd3b7bb3e28013add5f2fb55e3e8c6.pdf', 'registry-GNT-1405-000001.pdf', 'application/pdf', 130709, 'da73b4ad8f4b5b13f14565c07d59a4c75db43e6b1cc290436f8406ee4553d4c2', 'ready', 'GooyaNegar', 75, 6, '2026-08-15 07:27:25', '2026-08-15 07:27:25'),
(2702, 'local', '', 'storage/2026/August/week3/2702_ff5096539a6a2692c9f7181643b8c0d2.pdf', 'storage/2026/August/week3/', 'ff5096539a6a2692c9f7181643b8c0d2.pdf', 'official-GNT-1405-000002.pdf', 'application/pdf', 128980, '3af060413a62adcdc2a100a349de8fbeef11159fb3f60141820d49f609542fef', 'ready', 'GooyaNegar', 76, 6, '2026-08-15 07:27:26', '2026-08-15 07:27:26'),
(2703, 'local', '', 'storage/2026/August/week3/2703_3741e7a7a07dd82706d1fb68f5ef9c7c.pdf', 'storage/2026/August/week3/', '3741e7a7a07dd82706d1fb68f5ef9c7c.pdf', 'registry-GNT-1405-000002.pdf', 'application/pdf', 129776, 'b9708296490b6487bf83c2163880061dc69d11b74197ca3b1409fb78adfc462e', 'ready', 'GooyaNegar', 77, 6, '2026-08-15 07:27:26', '2026-08-15 07:27:26'),
(2704, 'local', '', 'storage/2026/August/week3/2704_cb3237b3d783f206fba33c4e7e00d2b8.txt', 'storage/2026/August/week3/', 'cb3237b3d783f206fba33c4e7e00d2b8.txt', 'پیوست-آزمایشی-گویانگار.txt', 'text/plain', 80, 'd850c79103b2fb0dffc3b1512e0bae1e5e5acd17a6d2a05248f5c774ea64ddf8', 'ready', 'GooyaNegar', 78, 1, '2026-08-15 07:27:26', '2026-08-15 07:27:27'),
(2714, 'local', '', 'storage/2026/August/week3/2714_764cd3bd2332a9b0de9b0e5dba618215.webm', 'storage/2026/August/week3/', '764cd3bd2332a9b0de9b0e5dba618215.webm', 'voice-1786962651679.webm', 'video/webm', 67893, 'cb1d8980229345f533233ed70a7032c2dd25a2d873788ce58f67acfed9d507e8', 'ready', 'GooyaChat', 106, 1, '2026-08-17 10:30:52', '2026-08-17 10:30:52'),
(2715, 'local', '', 'storage/2026/August/week3/2715_eaabe30dce4e30be216335fd9dee5632.pdf', 'storage/2026/August/week3/', 'eaabe30dce4e30be216335fd9dee5632.pdf', 'Book1_(2).pdf', 'application/pdf', 65836, 'bb24ac42acb3d2959b1e39d9a22a77c41d6ff0054e5c9997bd4952d751d505a2', 'ready', 'GooyaCloud', 143, 1, '2026-08-17 10:36:23', '2026-08-17 10:36:23'),
(2716, 'local', '', 'storage/2026/August/week3/2716_a328d932718f14fd6742d1a68122279d.png', 'storage/2026/August/week3/', 'a328d932718f14fd6742d1a68122279d.png', 'signature-u1-20260817103937.png', 'image/png', 13101, 'c0d3d67c84871e19ea43668806c39fa6c80f5db5d602f0388704fb51ff97626a', 'ready', 'GooyaNegar', 39, 1, '2026-08-17 10:39:37', '2026-08-17 10:39:37');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_contact_account_rel`
--

DROP TABLE IF EXISTS `gooya_contact_account_rel`;
CREATE TABLE `gooya_contact_account_rel` (
  `relation_id` bigint(20) UNSIGNED NOT NULL,
  `contactid` int(19) NOT NULL,
  `accountid` int(19) NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `relationship_role` varchar(100) DEFAULT NULL,
  `relationship_status` varchar(32) NOT NULL DEFAULT 'Active',
  `started_on` date DEFAULT NULL,
  `ended_on` date DEFAULT NULL,
  `createdby` int(19) DEFAULT NULL,
  `createdtime` datetime NOT NULL,
  `modifiedtime` datetime NOT NULL,
  `primary_contactid` int(19) GENERATED ALWAYS AS (case when `is_primary` = 1 then `contactid` else NULL end) STORED
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `gooya_contact_account_rel`
--

INSERT IGNORE INTO `gooya_contact_account_rel` (`relation_id`, `contactid`, `accountid`, `is_primary`, `relationship_role`, `relationship_status`, `started_on`, `ended_on`, `createdby`, `createdtime`, `modifiedtime`) VALUES
(1, 2096, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:28', '2026-07-11 15:47:28'),
(2, 2122, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:56', '2026-07-11 15:47:56'),
(3, 2102, 21, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:38', '2026-07-11 15:47:38'),
(4, 2105, 21, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:42', '2026-07-11 15:47:42'),
(5, 2091, 22, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:07', '2026-07-11 15:47:07'),
(6, 2123, 22, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:57', '2026-07-11 15:47:57'),
(7, 2093, 23, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:25', '2026-07-11 15:47:25'),
(8, 2108, 23, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:45', '2026-07-11 15:47:45'),
(9, 2116, 24, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:51', '2026-07-11 15:47:51'),
(10, 2113, 25, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:49', '2026-07-11 15:47:49'),
(11, 2125, 2028, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:57', '2026-07-11 15:47:57'),
(12, 2103, 2029, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:41', '2026-07-11 15:47:41'),
(13, 2120, 2030, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:55', '2026-07-11 15:47:55'),
(14, 2121, 2031, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:56', '2026-07-11 15:47:56'),
(15, 2098, 2032, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:31', '2026-07-11 15:47:31'),
(16, 2114, 2033, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:50', '2026-07-11 15:47:50'),
(17, 2095, 2034, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:26', '2026-07-11 15:47:26'),
(18, 2117, 2035, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:54', '2026-07-11 15:47:54'),
(19, 2107, 2036, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:44', '2026-07-11 15:47:44'),
(20, 2100, 2037, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-11 15:47:35', '2026-07-11 15:47:35'),
(21, 2236, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(22, 2237, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(23, 2238, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(24, 2239, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(25, 2240, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(26, 2241, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(27, 2242, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(28, 2243, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(29, 2244, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(30, 2245, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(31, 2246, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(32, 2247, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(33, 2248, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(34, 2249, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(35, 2250, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(36, 2251, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(37, 2252, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(38, 2253, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(39, 2254, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(40, 2255, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(41, 2256, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(42, 2257, 2235, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-19 04:17:33', '2026-07-19 04:17:57'),
(77, 2276, 2275, 1, NULL, 'Active', NULL, NULL, 1, '2026-07-30 06:36:02', '2026-07-30 06:36:02'),
(78, 2280, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 06:19:46', '2026-08-02 06:19:46'),
(80, 2281, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 06:52:07', '2026-08-02 06:52:07'),
(82, 2282, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 07:16:42', '2026-08-02 07:16:42'),
(84, 2283, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 07:25:36', '2026-08-02 07:25:36'),
(86, 2284, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 08:06:31', '2026-08-02 08:06:31'),
(88, 2285, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 17:02:59', '2026-08-02 17:02:59'),
(90, 2287, 20, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-02 17:30:56', '2026-08-02 17:30:57'),
(92, 2313, 2312, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:13:47', '2026-08-09 06:13:47'),
(93, 2321, 2320, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:20:45', '2026-08-09 06:20:45'),
(94, 2329, 2328, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:22:22', '2026-08-09 06:22:22'),
(95, 2337, 2336, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:27:06', '2026-08-09 06:27:06'),
(96, 2345, 2344, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:30:39', '2026-08-09 06:30:39'),
(97, 2353, 2352, 1, NULL, 'Active', NULL, NULL, 1, '2026-08-09 06:31:24', '2026-08-09 06:31:24');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_contact_email`
--

DROP TABLE IF EXISTS `gooya_contact_email`;
CREATE TABLE `gooya_contact_email` (
  `id` int(10) UNSIGNED NOT NULL,
  `contactid` int(11) NOT NULL,
  `email_address` varchar(190) NOT NULL,
  `email_type` varchar(40) NOT NULL DEFAULT 'سایر',
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_email` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_contact_email`
--

INSERT IGNORE INTO `gooya_contact_email` (`id`, `contactid`, `email_address`, `email_type`, `is_primary`, `can_email`, `sort_order`) VALUES
(22, 2286, 'gouya.contact.ui@example.test', 'Primary', 1, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `gooya_contact_phone`
--

DROP TABLE IF EXISTS `gooya_contact_phone`;
CREATE TABLE `gooya_contact_phone` (
  `id` int(10) UNSIGNED NOT NULL,
  `contactid` int(11) NOT NULL,
  `phone_number` varchar(80) NOT NULL,
  `country_code` varchar(8) NOT NULL DEFAULT '+98',
  `extension` varchar(20) NOT NULL DEFAULT '',
  `phone_type` varchar(40) NOT NULL DEFAULT 'سایر',
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_sms` tinyint(1) NOT NULL DEFAULT 0,
  `can_fax` tinyint(1) NOT NULL DEFAULT 0,
  `sort_order` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_contact_phone`
--

INSERT IGNORE INTO `gooya_contact_phone` (`id`, `contactid`, `phone_number`, `country_code`, `extension`, `phone_type`, `is_primary`, `can_sms`, `can_fax`, `sort_order`) VALUES
(36, 2286, '9121234567', '+98', '', 'Mobile', 1, 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `gooya_lead_email`
--

DROP TABLE IF EXISTS `gooya_lead_email`;
CREATE TABLE `gooya_lead_email` (
  `id` int(19) NOT NULL,
  `leadid` int(19) NOT NULL,
  `email_address` varchar(190) NOT NULL,
  `email_type` varchar(50) DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_email` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gooya_lead_email`
--

INSERT IGNORE INTO `gooya_lead_email` (`id`, `leadid`, `email_address`, `email_type`, `is_primary`, `can_email`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, 2, 'lead186@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(2, 1000, 'lead843@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(3, 1001, 'lead281@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(4, 1002, 'lead508@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(5, 1003, 'lead912@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(6, 1004, 'lead108@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(7, 1005, 'lead280@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(8, 1006, 'lead925@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(9, 1007, 'lead868@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(10, 1008, 'lead416@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(11, 1009, 'lead670@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(12, 1010, 'lead369@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(13, 1011, 'lead902@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(14, 1012, 'lead315@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(15, 1013, 'lead787@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(16, 1014, 'lead245@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(17, 2055, 'lead595@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(18, 2056, 'lead4@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(19, 2057, 'lead381@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(20, 2058, 'lead516@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(21, 2059, 'lead243@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(22, 2060, 'lead776@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(23, 2063, 'lead-test@gooya.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(24, 2064, 'l1@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(25, 2065, 'l2@test.com', 'اصلی', 1, 1, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_lead_phone`
--

DROP TABLE IF EXISTS `gooya_lead_phone`;
CREATE TABLE `gooya_lead_phone` (
  `id` int(19) NOT NULL,
  `leadid` int(19) NOT NULL,
  `phone_number` varchar(80) NOT NULL,
  `country_code` varchar(8) DEFAULT '+98',
  `extension` varchar(20) DEFAULT NULL,
  `phone_type` varchar(50) DEFAULT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `can_sms` tinyint(1) NOT NULL DEFAULT 0,
  `can_fax` tinyint(1) NOT NULL DEFAULT 0,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gooya_lead_phone`
--

INSERT IGNORE INTO `gooya_lead_phone` (`id`, `leadid`, `phone_number`, `country_code`, `extension`, `phone_type`, `is_primary`, `can_sms`, `can_fax`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, 2, '915 555 5555', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(2, 2, '09119090378', '+98', '', 'همراه', 0, 1, 0, 1, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(3, 1000, '21 2222 2222', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(4, 1001, '35 2020 2525', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(5, 1002, '912 202 2234', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(6, 1003, '935 202 2253', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(7, 1004, '912 202 0202', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(8, 1005, '41 2020 0202', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(9, 1006, '98352 0202252', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(10, 1007, '935 202 0203', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(11, 1008, '912 202 0204', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(12, 1009, '13 2020 0205', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(13, 1010, '58 2020 0206', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(14, 1011, '41 2020 0207', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(15, 1012, '13 2020 0208', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(16, 1013, '(102) 2222 2232 98+', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(17, 1014, '(123) 1010 1010 98+', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(18, 2055, '910 000 0000', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(19, 2056, '21 2222 2223', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(20, 2057, '35 2020 2559', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(21, 2058, '81 2222 2224', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(22, 2059, '71 2222 2225', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(23, 2060, '35 2020 2558', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(24, 2063, '021-55554444', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(25, 2063, '0912-0000000', '+98', '', 'همراه', 0, 1, 0, 1, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(26, 2064, '031-1111111', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06'),
(27, 2065, '021-2222222', '+98', '', 'دفتر', 1, 0, 0, 0, '2026-07-18 07:01:06', '2026-07-18 07:01:06');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_storage_settings`
--

DROP TABLE IF EXISTS `gooya_storage_settings`;
CREATE TABLE `gooya_storage_settings` (
  `setting_id` int(10) UNSIGNED NOT NULL,
  `server_name` varchar(100) NOT NULL DEFAULT 'سرور گویا',
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `driver` varchar(20) NOT NULL DEFAULT 'local',
  `endpoint` varchar(255) NOT NULL DEFAULT '',
  `bucket` varchar(128) NOT NULL DEFAULT '',
  `region` varchar(80) NOT NULL DEFAULT 'us-east-1',
  `access_key` varchar(255) NOT NULL DEFAULT '',
  `secret_key_enc` text DEFAULT NULL,
  `object_prefix` varchar(180) NOT NULL DEFAULT 'attachments',
  `max_file_size_mb` int(10) UNSIGNED NOT NULL DEFAULT 100,
  `allowed_extensions` text DEFAULT NULL,
  `signed_url_ttl` int(10) UNSIGNED NOT NULL DEFAULT 180,
  `force_path_style` tinyint(1) NOT NULL DEFAULT 1,
  `verify_tls` tinyint(1) NOT NULL DEFAULT 1,
  `last_test_status` varchar(30) NOT NULL DEFAULT 'not_tested',
  `last_test_message` varchar(500) NOT NULL DEFAULT 'اتصال هنوز آزمایش نشده است.',
  `last_test_at` datetime DEFAULT NULL,
  `updated_by` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gooya_storage_settings`
--

INSERT IGNORE INTO `gooya_storage_settings` (`setting_id`, `server_name`, `enabled`, `driver`, `endpoint`, `bucket`, `region`, `access_key`, `secret_key_enc`, `object_prefix`, `max_file_size_mb`, `allowed_extensions`, `signed_url_ttl`, `force_path_style`, `verify_tls`, `last_test_status`, `last_test_message`, `last_test_at`, `updated_by`, `updated_at`) VALUES
(1, 'سرور گویا', 1, 'local', '', '', 'us-east-1', '', NULL, 'attachments', 100, NULL, 180, 1, 1, 'success', 'فضای محلی فعال و قابل نوشتن است.', '2026-08-10 07:27:59', 1, '2026-08-09 08:15:22');

-- --------------------------------------------------------

--
-- Table structure for table `gooya_upload_session`
--

DROP TABLE IF EXISTS `gooya_upload_session`;
CREATE TABLE `gooya_upload_session` (
  `upload_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `target_module` varchar(80) NOT NULL,
  `target_record_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `original_name` varchar(255) NOT NULL,
  `object_key` varchar(700) NOT NULL DEFAULT '',
  `expected_size` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `actual_size` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `mime_type` varchar(150) NOT NULL DEFAULT '',
  `checksum_sha256` char(64) NOT NULL DEFAULT '',
  `upload_status` varchar(30) NOT NULL DEFAULT 'initiated',
  `attachment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `expires_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gouya_role_favorites`
--

DROP TABLE IF EXISTS `gouya_role_favorites`;
CREATE TABLE `gouya_role_favorites` (
  `owner_user_id` int(19) NOT NULL,
  `target_role_id` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gouya_topbar_favorites`
--

DROP TABLE IF EXISTS `gouya_topbar_favorites`;
CREATE TABLE `gouya_topbar_favorites` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `route_key` char(64) NOT NULL,
  `module_name` varchar(64) NOT NULL,
  `view_name` varchar(64) NOT NULL DEFAULT '',
  `record_id` varchar(64) NOT NULL DEFAULT '',
  `parent_name` varchar(64) NOT NULL DEFAULT '',
  `app_name` varchar(64) NOT NULL DEFAULT '',
  `label` varchar(255) NOT NULL,
  `target_url` varchar(700) NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gouya_topbar_favorites`
--

INSERT IGNORE INTO `gouya_topbar_favorites` (`id`, `user_id`, `route_key`, `module_name`, `view_name`, `record_id`, `parent_name`, `app_name`, `label`, `target_url`, `created_at`, `updated_at`) VALUES
(3, 1, '41cb68dcedcd48a500eb886d504f74c0b0b161b1c2ed0b1a7d85824269f6ba04', 'Contacts', 'Detail', '2123', '', 'MARKETING', 'آقای منوچهر انصاری (مثال)', 'index.php?module=Contacts&view=Detail&record=2123&app=MARKETING', '2026-08-02 19:19:03', '2026-08-02 19:19:03');

-- --------------------------------------------------------

--
-- Table structure for table `gouya_topbar_state`
--

DROP TABLE IF EXISTS `gouya_topbar_state`;
CREATE TABLE `gouya_topbar_state` (
  `user_id` int(11) NOT NULL,
  `notifications_read_before` datetime DEFAULT NULL,
  `onboarding_hidden` tinyint(1) NOT NULL DEFAULT 0,
  `onboarding_help_seen` tinyint(1) NOT NULL DEFAULT 0,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `gouya_topbar_state`
--

INSERT IGNORE INTO `gouya_topbar_state` (`user_id`, `notifications_read_before`, `onboarding_hidden`, `onboarding_help_seen`, `updated_at`) VALUES
(1, '2026-08-10 05:57:35', 0, 0, '2026-08-10 09:27:35');

-- --------------------------------------------------------

--
-- Table structure for table `gouya_user_favorites`
--

DROP TABLE IF EXISTS `gouya_user_favorites`;
CREATE TABLE `gouya_user_favorites` (
  `owner_user_id` int(19) NOT NULL,
  `target_user_id` int(19) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `goya_dashboard_widgets`
--

DROP TABLE IF EXISTS `goya_dashboard_widgets`;
CREATE TABLE `goya_dashboard_widgets` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `widget_key` varchar(50) NOT NULL,
  `title` varchar(150) DEFAULT NULL,
  `position` int(11) DEFAULT 0,
  `width` varchar(10) DEFAULT '50',
  `visible` tinyint(4) DEFAULT 1,
  `settings` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `goya_dashboard_widgets`
--

INSERT IGNORE INTO `goya_dashboard_widgets` (`id`, `userid`, `widget_key`, `title`, `position`, `width`, `visible`, `settings`, `created_at`) VALUES
(1, 1, 'leads_by_source', 'منبع سرنخ‌ها', 0, '50', 1, NULL, '2026-06-21 22:15:02'),
(2, 1, 'conversion_rate', 'نرخ تبدیل سرنخ‌ها و فرصت‌ها', 1, '50', 1, NULL, '2026-06-21 22:15:02'),
(3, 1, 'service_by_status', 'سرویس‌ها بر اساس وضعیت', 2, '50', 1, NULL, '2026-06-21 22:15:02'),
(4, 1, 'potential_by_user', 'مبلغ فرصت‌ها به تفکیک کاربران', 3, '50', 1, NULL, '2026-06-21 22:15:02'),
(5, 1, 'activity_stats', 'آمار کلی فعالیت‌های تیم', 4, '50', 1, NULL, '2026-06-21 22:15:02'),
(6, 1, 'calls', 'تماس‌هایی که باید بگیرم', 5, '50', 1, NULL, '2026-06-21 22:15:02'),
(7, 1, 'meetings', 'جلساتی که دارم', 6, '50', 1, NULL, '2026-06-21 22:15:02'),
(8, 1, 'tasks', 'وظایفی که باید انجام دهم', 7, '50', 1, NULL, '2026-06-21 22:15:02'),
(9, 1, 'quotes', 'پیش‌فاکتورهای من', 8, '50', 1, NULL, '2026-06-21 22:15:02'),
(10, 1, 'unpaid_invoices', 'فاکتورهای پرداخت‌نشده', 9, '50', 1, NULL, '2026-06-21 22:15:02'),
(11, 1, 'user_activity_chart', 'نمودار فعالیت کاربران', 10, '50', 1, NULL, '2026-06-21 22:15:02'),
(12, 1, 'sales_funnel', 'قیف فروش', 11, '50', 1, NULL, '2026-06-21 22:15:02');

-- --------------------------------------------------------

--
-- Table structure for table `goya_onboarding`
--

DROP TABLE IF EXISTS `goya_onboarding`;
CREATE TABLE `goya_onboarding` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `step_key` varchar(50) NOT NULL,
  `step_label` varchar(150) DEFAULT NULL,
  `done` tinyint(4) DEFAULT 0,
  `seq` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `goya_onboarding`
--

INSERT IGNORE INTO `goya_onboarding` (`id`, `userid`, `step_key`, `step_label`, `done`, `seq`) VALUES
(1, 1, 'add_company', 'افزودن اطلاعات شرکت', 0, 0),
(2, 1, 'add_users', 'افزودن کاربران', 0, 1),
(3, 1, 'add_leads', 'ثبت اولین سرنخ', 0, 2),
(4, 1, 'add_potential', 'ثبت اولین فرصت', 0, 3),
(5, 1, 'add_invoice', 'صدور اولین فاکتور', 0, 4),
(6, 1, 'setup_email', 'تنظیم ایمیل', 0, 5);

-- --------------------------------------------------------

--
-- Table structure for table `sarv_communications_migration_manifest`
--

DROP TABLE IF EXISTS `sarv_communications_migration_manifest`;
CREATE TABLE `sarv_communications_migration_manifest` (
  `source_table` varchar(100) NOT NULL,
  `source_id` int(19) NOT NULL,
  `communicationsid` int(19) NOT NULL,
  `migrated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_communications_migration_manifest`
--

INSERT IGNORE INTO `sarv_communications_migration_manifest` (`source_table`, `source_id`, `communicationsid`, `migrated_at`) VALUES
('codex_sample', 1, 2288, '2026-08-02 21:24:56');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_field_acl_audit`
--

DROP TABLE IF EXISTS `sarv_field_acl_audit`;
CREATE TABLE `sarv_field_acl_audit` (
  `audit_id` bigint(20) UNSIGNED NOT NULL,
  `rule_id` bigint(20) UNSIGNED DEFAULT NULL,
  `action_name` varchar(40) NOT NULL,
  `before_json` longtext DEFAULT NULL,
  `after_json` longtext DEFAULT NULL,
  `actor_id` int(19) DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_field_acl_rules`
--

DROP TABLE IF EXISTS `sarv_field_acl_rules`;
CREATE TABLE `sarv_field_acl_rules` (
  `rule_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` varchar(255) NOT NULL,
  `tab_id` int(10) NOT NULL,
  `field_id` int(19) NOT NULL,
  `access_mode` varchar(20) NOT NULL,
  `baseline_json` longtext NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `created_by` int(19) DEFAULT NULL,
  `updated_by` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_geographic_regions`
--

DROP TABLE IF EXISTS `sarv_geographic_regions`;
CREATE TABLE `sarv_geographic_regions` (
  `id` int(10) UNSIGNED NOT NULL,
  `parent_id` int(10) UNSIGNED DEFAULT NULL,
  `region_code` varchar(32) NOT NULL,
  `region_type` varchar(20) NOT NULL,
  `name` varchar(120) NOT NULL,
  `latitude` decimal(10,7) DEFAULT NULL,
  `longitude` decimal(10,7) DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_geographic_regions`
--

INSERT IGNORE INTO `sarv_geographic_regions` (`id`, `parent_id`, `region_code`, `region_type`, `name`, `latitude`, `longitude`, `is_active`, `sort_order`, `created_at`, `updated_at`) VALUES
(1, NULL, 'IR', 'country', 'ایران', 32.4279000, 53.6880000, 1, 1, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(2, 1, 'IR-01', 'province', 'آذربایجان شرقی', 38.0800000, 46.2919000, 1, 100, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(3, 2, 'IR-01-CAP', 'city', 'تبریز', 38.0800000, 46.2919000, 1, 101, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(4, 1, 'IR-02', 'province', 'آذربایجان غربی', 37.5527000, 45.0761000, 1, 200, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(5, 4, 'IR-02-CAP', 'city', 'ارومیه', 37.5527000, 45.0761000, 1, 201, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(6, 1, 'IR-03', 'province', 'اردبیل', 38.2498000, 48.2933000, 1, 300, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(7, 6, 'IR-03-CAP', 'city', 'اردبیل', 38.2498000, 48.2933000, 1, 301, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(8, 1, 'IR-04', 'province', 'اصفهان', 32.6546000, 51.6680000, 1, 400, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(9, 8, 'IR-04-CAP', 'city', 'اصفهان', 32.6546000, 51.6680000, 1, 401, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(10, 1, 'IR-05', 'province', 'البرز', 35.8400000, 50.9391000, 1, 500, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(11, 10, 'IR-05-CAP', 'city', 'کرج', 35.8400000, 50.9391000, 1, 501, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(12, 1, 'IR-06', 'province', 'ایلام', 33.6374000, 46.4227000, 1, 600, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(13, 12, 'IR-06-CAP', 'city', 'ایلام', 33.6374000, 46.4227000, 1, 601, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(14, 1, 'IR-07', 'province', 'بوشهر', 28.9234000, 50.8203000, 1, 700, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(15, 14, 'IR-07-CAP', 'city', 'بوشهر', 28.9234000, 50.8203000, 1, 701, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(16, 1, 'IR-08', 'province', 'تهران', 35.6892000, 51.3890000, 1, 800, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(17, 16, 'IR-08-CAP', 'city', 'تهران', 35.6892000, 51.3890000, 1, 801, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(18, 1, 'IR-09', 'province', 'چهارمحال و بختیاری', 32.3256000, 50.8644000, 1, 900, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(19, 18, 'IR-09-CAP', 'city', 'شهرکرد', 32.3256000, 50.8644000, 1, 901, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(20, 1, 'IR-10', 'province', 'خراسان جنوبی', 32.8663000, 59.2211000, 1, 1000, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(21, 20, 'IR-10-CAP', 'city', 'بیرجند', 32.8663000, 59.2211000, 1, 1001, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(22, 1, 'IR-11', 'province', 'خراسان رضوی', 36.2605000, 59.6168000, 1, 1100, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(23, 22, 'IR-11-CAP', 'city', 'مشهد', 36.2605000, 59.6168000, 1, 1101, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(24, 1, 'IR-12', 'province', 'خراسان شمالی', 37.4747000, 57.3290000, 1, 1200, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(25, 24, 'IR-12-CAP', 'city', 'بجنورد', 37.4747000, 57.3290000, 1, 1201, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(26, 1, 'IR-13', 'province', 'خوزستان', 31.3183000, 48.6706000, 1, 1300, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(27, 26, 'IR-13-CAP', 'city', 'اهواز', 31.3183000, 48.6706000, 1, 1301, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(28, 1, 'IR-14', 'province', 'زنجان', 36.6736000, 48.4787000, 1, 1400, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(29, 28, 'IR-14-CAP', 'city', 'زنجان', 36.6736000, 48.4787000, 1, 1401, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(30, 1, 'IR-15', 'province', 'سمنان', 35.5769000, 53.3921000, 1, 1500, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(31, 30, 'IR-15-CAP', 'city', 'سمنان', 35.5769000, 53.3921000, 1, 1501, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(32, 1, 'IR-16', 'province', 'سیستان و بلوچستان', 29.4963000, 60.8629000, 1, 1600, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(33, 32, 'IR-16-CAP', 'city', 'زاهدان', 29.4963000, 60.8629000, 1, 1601, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(34, 1, 'IR-17', 'province', 'فارس', 29.5918000, 52.5837000, 1, 1700, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(35, 34, 'IR-17-CAP', 'city', 'شیراز', 29.5918000, 52.5837000, 1, 1701, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(36, 1, 'IR-18', 'province', 'قزوین', 36.2688000, 50.0041000, 1, 1800, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(37, 36, 'IR-18-CAP', 'city', 'قزوین', 36.2688000, 50.0041000, 1, 1801, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(38, 1, 'IR-19', 'province', 'قم', 34.6416000, 50.8746000, 1, 1900, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(39, 38, 'IR-19-CAP', 'city', 'قم', 34.6416000, 50.8746000, 1, 1901, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(40, 1, 'IR-20', 'province', 'کردستان', 35.3219000, 46.9862000, 1, 2000, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(41, 40, 'IR-20-CAP', 'city', 'سنندج', 35.3219000, 46.9862000, 1, 2001, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(42, 1, 'IR-21', 'province', 'کرمان', 30.2839000, 57.0834000, 1, 2100, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(43, 42, 'IR-21-CAP', 'city', 'کرمان', 30.2839000, 57.0834000, 1, 2101, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(44, 1, 'IR-22', 'province', 'کرمانشاه', 34.3142000, 47.0650000, 1, 2200, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(45, 44, 'IR-22-CAP', 'city', 'کرمانشاه', 34.3142000, 47.0650000, 1, 2201, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(46, 1, 'IR-23', 'province', 'کهگیلویه و بویراحمد', 30.6684000, 51.5880000, 1, 2300, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(47, 46, 'IR-23-CAP', 'city', 'یاسوج', 30.6684000, 51.5880000, 1, 2301, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(48, 1, 'IR-24', 'province', 'گلستان', 36.8456000, 54.4393000, 1, 2400, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(49, 48, 'IR-24-CAP', 'city', 'گرگان', 36.8456000, 54.4393000, 1, 2401, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(50, 1, 'IR-25', 'province', 'گیلان', 37.2808000, 49.5832000, 1, 2500, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(51, 50, 'IR-25-CAP', 'city', 'رشت', 37.2808000, 49.5832000, 1, 2501, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(52, 1, 'IR-26', 'province', 'لرستان', 33.4878000, 48.3558000, 1, 2600, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(53, 52, 'IR-26-CAP', 'city', 'خرم‌آباد', 33.4878000, 48.3558000, 1, 2601, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(54, 1, 'IR-27', 'province', 'مازندران', 36.5633000, 53.0601000, 1, 2700, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(55, 54, 'IR-27-CAP', 'city', 'ساری', 36.5633000, 53.0601000, 1, 2701, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(56, 1, 'IR-28', 'province', 'مرکزی', 34.0917000, 49.6892000, 1, 2800, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(57, 56, 'IR-28-CAP', 'city', 'اراک', 34.0917000, 49.6892000, 1, 2801, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(58, 1, 'IR-29', 'province', 'هرمزگان', 27.1832000, 56.2666000, 1, 2900, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(59, 58, 'IR-29-CAP', 'city', 'بندرعباس', 27.1832000, 56.2666000, 1, 2901, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(60, 1, 'IR-30', 'province', 'همدان', 34.7992000, 48.5146000, 1, 3000, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(61, 60, 'IR-30-CAP', 'city', 'همدان', 34.7992000, 48.5146000, 1, 3001, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(62, 1, 'IR-31', 'province', 'یزد', 31.8974000, 54.3569000, 1, 3100, '2026-07-21 07:20:03', '2026-07-21 07:29:03'),
(63, 62, 'IR-31-CAP', 'city', 'یزد', 31.8974000, 54.3569000, 1, 3101, '2026-07-21 07:20:03', '2026-07-21 07:29:03');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_module_manager_config`
--

DROP TABLE IF EXISTS `sarv_module_manager_config`;
CREATE TABLE `sarv_module_manager_config` (
  `id` tinyint(3) UNSIGNED NOT NULL,
  `allow_user_customization` tinyint(1) NOT NULL DEFAULT 1,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_module_manager_config`
--

INSERT IGNORE INTO `sarv_module_manager_config` (`id`, `allow_user_customization`, `updated_by`, `updated_at`) VALUES
(1, 1, 1, '2026-07-23 05:24:00');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_module_visibility`
--

DROP TABLE IF EXISTS `sarv_module_visibility`;
CREATE TABLE `sarv_module_visibility` (
  `module_name` varchar(100) NOT NULL,
  `tabid` int(19) NOT NULL,
  `is_visible` tinyint(1) NOT NULL DEFAULT 1,
  `position` int(11) NOT NULL DEFAULT 0,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_module_visibility`
--

INSERT IGNORE INTO `sarv_module_visibility` (`module_name`, `tabid`, `is_visible`, `position`, `updated_by`, `updated_at`) VALUES
('Accounts', 6, 1, 3, 1, '2026-07-23 05:24:00'),
('Assets', 38, 1, 34, 1, '2026-07-23 05:24:00'),
('Calendar', 9, 1, 7, 1, '2026-07-23 05:24:00'),
('Campaigns', 26, 1, 17, 1, '2026-07-23 05:24:00'),
('Contacts', 4, 1, 4, 1, '2026-07-23 05:24:00'),
('Dashboard', 1, 0, 48, 1, '2026-07-23 05:24:00'),
('Documents', 8, 1, 24, 1, '2026-07-23 05:24:00'),
('Emails', 10, 1, 8, 1, '2026-07-23 05:24:00'),
('EmailTemplates', 40, 1, 35, 1, '2026-07-23 05:24:00'),
('Faq', 15, 1, 27, 1, '2026-07-23 05:24:00'),
('Google', 41, 1, 20, 1, '2026-07-23 05:24:00'),
('GooyaKanban', 51, 1, 39, 1, '2026-07-23 05:24:00'),
('GooyaReports', 50, 1, 18, 1, '2026-07-23 05:24:00'),
('HelpDesk', 13, 1, 23, 1, '2026-07-23 05:24:00'),
('Home', 3, 1, 1, 1, '2026-07-23 05:24:00'),
('Invoice', 23, 1, 15, 1, '2026-07-23 05:24:00'),
('Leads', 7, 1, 2, 1, '2026-07-23 05:24:00'),
('MailManager', 31, 1, 26, 1, '2026-07-23 05:24:00'),
('PBXManager', 34, 1, 32, 1, '2026-07-23 05:24:00'),
('Portal', 27, 1, 31, 1, '2026-07-23 05:24:00'),
('Potentials', 2, 1, 5, 1, '2026-07-23 05:24:00'),
('PriceBooks', 19, 1, 28, 1, '2026-07-23 05:24:00'),
('Products', 14, 1, 21, 1, '2026-07-23 05:24:00'),
('Project', 45, 1, 10, 1, '2026-07-23 05:24:00'),
('ProjectMilestone', 43, 1, 36, 1, '2026-07-23 05:24:00'),
('ProjectTask', 44, 1, 37, 1, '2026-07-23 05:24:00'),
('PurchaseOrder', 21, 1, 14, 1, '2026-07-23 05:24:00'),
('Quotes', 20, 1, 6, 1, '2026-07-23 05:24:00'),
('RecycleBin', 46, 1, 38, 1, '2026-07-23 05:24:00'),
('Reports', 25, 1, 25, 1, '2026-07-23 05:24:00'),
('Rss', 24, 1, 30, 1, '2026-07-23 05:24:00'),
('SalesOrder', 22, 1, 29, 1, '2026-07-23 05:24:00'),
('SarvAccessGrants', 63, 1, 47, 1, '2026-07-23 05:24:00'),
('SarvBankAccounts', 57, 1, 42, 1, '2026-07-23 05:24:00'),
('SarvBusinessLocations', 59, 1, 43, 1, '2026-07-23 05:24:00'),
('SarvDeposits', 58, 1, 19, 1, '2026-07-23 05:24:00'),
('SarvGifts', 61, 1, 45, 1, '2026-07-23 05:24:00'),
('SarvParticipations', 53, 1, 40, 1, '2026-07-23 05:24:00'),
('SarvPayments', 52, 1, 9, 1, '2026-07-23 05:24:00'),
('SarvProductSamples', 62, 1, 46, 1, '2026-07-23 05:24:00'),
('SarvSalesContracts', 55, 1, 16, 1, '2026-07-23 05:24:00'),
('SarvSurveyResponses', 54, 1, 22, 1, '2026-07-23 05:24:00'),
('SarvTargetLists', 56, 1, 41, 1, '2026-07-23 05:24:00'),
('SarvTimeReservations', 60, 1, 44, 1, '2026-07-23 05:24:00'),
('ServiceContracts', 35, 1, 33, 1, '2026-07-23 05:24:00'),
('Services', 36, 1, 13, 1, '2026-07-23 05:24:00'),
('SMSNotifier', 47, 1, 11, 1, '2026-07-23 05:24:00'),
('Vendors', 18, 1, 12, 1, '2026-07-23 05:24:00'),
('Webmails', 28, 0, 49, 1, '2026-07-23 05:24:00');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_module_visibility_audit`
--

DROP TABLE IF EXISTS `sarv_module_visibility_audit`;
CREATE TABLE `sarv_module_visibility_audit` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `changed_by` int(11) DEFAULT NULL,
  `before_json` longtext NOT NULL,
  `after_json` longtext NOT NULL,
  `allow_user_customization` tinyint(1) NOT NULL,
  `changed_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_module_visibility_audit`
--

INSERT IGNORE INTO `sarv_module_visibility_audit` (`id`, `changed_by`, `before_json`, `after_json`, `allow_user_customization`, `changed_at`) VALUES
(1, 1, '[\"Home\",\"Leads\",\"Accounts\",\"Contacts\",\"Potentials\",\"Quotes\",\"Calendar\",\"Emails\",\"SarvPayments\",\"Project\",\"SMSNotifier\",\"Vendors\",\"Services\",\"PurchaseOrder\",\"Invoice\",\"SarvSalesContracts\",\"Campaigns\",\"GooyaReports\",\"SarvDeposits\",\"Google\",\"Products\",\"SarvSurveyResponses\",\"HelpDesk\",\"Documents\",\"Reports\",\"MailManager\",\"Faq\",\"PriceBooks\",\"SalesOrder\",\"Rss\",\"Portal\",\"PBXManager\",\"ServiceContracts\",\"Assets\",\"EmailTemplates\",\"ProjectMilestone\",\"ProjectTask\",\"RecycleBin\",\"GooyaKanban\",\"SarvParticipations\",\"SarvTargetLists\",\"SarvBankAccounts\",\"SarvBusinessLocations\",\"SarvTimeReservations\",\"SarvGifts\",\"SarvProductSamples\",\"SarvAccessGrants\"]', '[\"Home\",\"Accounts\",\"Contacts\",\"Potentials\",\"Quotes\",\"Calendar\",\"Emails\",\"SarvPayments\",\"Project\",\"SMSNotifier\",\"Vendors\",\"Services\",\"PurchaseOrder\",\"Invoice\",\"SarvSalesContracts\",\"Campaigns\",\"GooyaReports\",\"SarvDeposits\",\"Google\",\"Products\",\"SarvSurveyResponses\",\"HelpDesk\",\"Documents\",\"Reports\",\"MailManager\",\"Faq\",\"PriceBooks\",\"SalesOrder\",\"Rss\",\"Portal\",\"PBXManager\",\"ServiceContracts\",\"Assets\",\"EmailTemplates\",\"ProjectMilestone\",\"ProjectTask\",\"RecycleBin\",\"GooyaKanban\",\"SarvParticipations\",\"SarvTargetLists\",\"SarvBankAccounts\",\"SarvBusinessLocations\",\"SarvTimeReservations\",\"SarvGifts\",\"SarvProductSamples\",\"SarvAccessGrants\"]', 1, '2026-07-23 05:24:00'),
(2, 1, '[\"Home\",\"Accounts\",\"Contacts\",\"Potentials\",\"Quotes\",\"Calendar\",\"Emails\",\"SarvPayments\",\"Project\",\"SMSNotifier\",\"Vendors\",\"Services\",\"PurchaseOrder\",\"Invoice\",\"SarvSalesContracts\",\"Campaigns\",\"GooyaReports\",\"SarvDeposits\",\"Google\",\"Products\",\"SarvSurveyResponses\",\"HelpDesk\",\"Documents\",\"Reports\",\"MailManager\",\"Faq\",\"PriceBooks\",\"SalesOrder\",\"Rss\",\"Portal\",\"PBXManager\",\"ServiceContracts\",\"Assets\",\"EmailTemplates\",\"ProjectMilestone\",\"ProjectTask\",\"RecycleBin\",\"GooyaKanban\",\"SarvParticipations\",\"SarvTargetLists\",\"SarvBankAccounts\",\"SarvBusinessLocations\",\"SarvTimeReservations\",\"SarvGifts\",\"SarvProductSamples\",\"SarvAccessGrants\"]', '[\"Home\",\"Leads\",\"Accounts\",\"Contacts\",\"Potentials\",\"Quotes\",\"Calendar\",\"Emails\",\"SarvPayments\",\"Project\",\"SMSNotifier\",\"Vendors\",\"Services\",\"PurchaseOrder\",\"Invoice\",\"SarvSalesContracts\",\"Campaigns\",\"GooyaReports\",\"SarvDeposits\",\"Google\",\"Products\",\"SarvSurveyResponses\",\"HelpDesk\",\"Documents\",\"Reports\",\"MailManager\",\"Faq\",\"PriceBooks\",\"SalesOrder\",\"Rss\",\"Portal\",\"PBXManager\",\"ServiceContracts\",\"Assets\",\"EmailTemplates\",\"ProjectMilestone\",\"ProjectTask\",\"RecycleBin\",\"GooyaKanban\",\"SarvParticipations\",\"SarvTargetLists\",\"SarvBankAccounts\",\"SarvBusinessLocations\",\"SarvTimeReservations\",\"SarvGifts\",\"SarvProductSamples\",\"SarvAccessGrants\"]', 1, '2026-07-23 05:24:00');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_password_policy`
--

DROP TABLE IF EXISTS `sarv_password_policy`;
CREATE TABLE `sarv_password_policy` (
  `policy_id` tinyint(3) UNSIGNED NOT NULL,
  `periodic_change_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `periodic_days` smallint(5) UNSIGNED NOT NULL DEFAULT 90,
  `system_generated_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `forgot_password_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `reset_link_expiry_enabled` tinyint(1) NOT NULL DEFAULT 1,
  `reset_link_ttl_minutes` int(10) UNSIGNED NOT NULL DEFAULT 30,
  `recaptcha_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `recaptcha_site_key` varchar(255) DEFAULT NULL,
  `recaptcha_secret_key` varchar(255) DEFAULT NULL,
  `system_template_id` int(11) DEFAULT NULL,
  `forgot_template_id` int(11) DEFAULT NULL,
  `ldap_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `modified_at` datetime NOT NULL,
  `modified_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_password_policy`
--

INSERT IGNORE INTO `sarv_password_policy` (`policy_id`, `periodic_change_enabled`, `periodic_days`, `system_generated_enabled`, `forgot_password_enabled`, `reset_link_expiry_enabled`, `reset_link_ttl_minutes`, `recaptcha_enabled`, `recaptcha_site_key`, `recaptcha_secret_key`, `system_template_id`, `forgot_template_id`, `ldap_enabled`, `created_at`, `modified_at`, `modified_by`) VALUES
(1, 0, 90, 0, 1, 1, 30, 0, '', '', 17, 18, 0, '2026-07-23 03:46:14', '2026-08-01 13:19:41', 1);

-- --------------------------------------------------------

--
-- Table structure for table `sarv_password_policy_audit`
--

DROP TABLE IF EXISTS `sarv_password_policy_audit`;
CREATE TABLE `sarv_password_policy_audit` (
  `audit_id` bigint(20) UNSIGNED NOT NULL,
  `actor_id` int(11) DEFAULT NULL,
  `before_json` longtext NOT NULL,
  `after_json` longtext NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_password_policy_audit`
--

INSERT IGNORE INTO `sarv_password_policy_audit` (`audit_id`, `actor_id`, `before_json`, `after_json`, `created_at`) VALUES
(17, 1, '{\"periodic_change_enabled\":0,\"periodic_days\":90,\"system_generated_enabled\":0,\"forgot_password_enabled\":1,\"reset_link_expiry_enabled\":1,\"reset_link_ttl_minutes\":30,\"recaptcha_enabled\":0,\"recaptcha_site_key\":\"\",\"recaptcha_secret_key\":\"\",\"system_template_id\":17,\"forgot_template_id\":18,\"ldap_enabled\":0,\"modified_at\":\"2026-07-23 03:55:48\",\"modified_by\":1,\"0\":\"1\",\"policy_id\":\"1\",\"1\":\"0\",\"2\":\"90\",\"3\":\"0\",\"4\":\"1\",\"5\":\"1\",\"6\":\"30\",\"7\":\"0\",\"8\":\"\",\"9\":\"\",\"10\":\"17\",\"11\":\"18\",\"12\":\"0\",\"13\":\"2026-07-23 03:46:14\",\"created_at\":\"2026-07-23 03:46:14\",\"14\":\"2026-07-23 03:55:48\",\"15\":\"1\"}', '{\"periodic_change_enabled\":0,\"periodic_days\":90,\"system_generated_enabled\":0,\"forgot_password_enabled\":1,\"reset_link_expiry_enabled\":1,\"reset_link_ttl_minutes\":31,\"recaptcha_enabled\":0,\"recaptcha_site_key\":\"\",\"recaptcha_secret_key\":\"\",\"system_template_id\":17,\"forgot_template_id\":18,\"ldap_enabled\":0,\"modified_at\":\"2026-08-01 13:18:42\",\"modified_by\":1,\"0\":\"1\",\"policy_id\":\"1\",\"1\":\"0\",\"2\":\"90\",\"3\":\"0\",\"4\":\"1\",\"5\":\"1\",\"6\":\"31\",\"7\":\"0\",\"8\":\"\",\"9\":\"\",\"10\":\"17\",\"11\":\"18\",\"12\":\"0\",\"13\":\"2026-07-23 03:46:14\",\"created_at\":\"2026-07-23 03:46:14\",\"14\":\"2026-08-01 13:18:42\",\"15\":\"1\"}', '2026-08-01 13:18:42'),
(18, 1, '{\"periodic_change_enabled\":0,\"periodic_days\":90,\"system_generated_enabled\":0,\"forgot_password_enabled\":1,\"reset_link_expiry_enabled\":1,\"reset_link_ttl_minutes\":31,\"recaptcha_enabled\":0,\"recaptcha_site_key\":\"\",\"recaptcha_secret_key\":\"\",\"system_template_id\":17,\"forgot_template_id\":18,\"ldap_enabled\":0,\"modified_at\":\"2026-08-01 13:18:42\",\"modified_by\":1,\"0\":\"1\",\"policy_id\":\"1\",\"1\":\"0\",\"2\":\"90\",\"3\":\"0\",\"4\":\"1\",\"5\":\"1\",\"6\":\"31\",\"7\":\"0\",\"8\":\"\",\"9\":\"\",\"10\":\"17\",\"11\":\"18\",\"12\":\"0\",\"13\":\"2026-07-23 03:46:14\",\"created_at\":\"2026-07-23 03:46:14\",\"14\":\"2026-08-01 13:18:42\",\"15\":\"1\"}', '{\"periodic_change_enabled\":0,\"periodic_days\":90,\"system_generated_enabled\":0,\"forgot_password_enabled\":1,\"reset_link_expiry_enabled\":1,\"reset_link_ttl_minutes\":30,\"recaptcha_enabled\":0,\"recaptcha_site_key\":\"\",\"recaptcha_secret_key\":\"\",\"system_template_id\":17,\"forgot_template_id\":18,\"ldap_enabled\":0,\"modified_at\":\"2026-08-01 13:19:41\",\"modified_by\":1,\"0\":\"1\",\"policy_id\":\"1\",\"1\":\"0\",\"2\":\"90\",\"3\":\"0\",\"4\":\"1\",\"5\":\"1\",\"6\":\"30\",\"7\":\"0\",\"8\":\"\",\"9\":\"\",\"10\":\"17\",\"11\":\"18\",\"12\":\"0\",\"13\":\"2026-07-23 03:46:14\",\"created_at\":\"2026-07-23 03:46:14\",\"14\":\"2026-08-01 13:19:41\",\"15\":\"1\"}', '2026-08-01 13:19:41');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_payment_allocation_history`
--

DROP TABLE IF EXISTS `sarv_payment_allocation_history`;
CREATE TABLE `sarv_payment_allocation_history` (
  `historyid` bigint(20) UNSIGNED NOT NULL,
  `paymentid` int(19) NOT NULL,
  `invoiceid` int(19) NOT NULL,
  `action` varchar(20) NOT NULL,
  `old_amount` decimal(25,8) DEFAULT NULL,
  `new_amount` decimal(25,8) DEFAULT NULL,
  `old_note` varchar(255) DEFAULT NULL,
  `new_note` varchar(255) DEFAULT NULL,
  `changedby` int(19) NOT NULL DEFAULT 0,
  `legacy_alloc_id` int(19) DEFAULT NULL,
  `old_exception_reason` varchar(255) DEFAULT NULL,
  `new_exception_reason` varchar(255) DEFAULT NULL,
  `changedat` datetime NOT NULL,
  `correlation_id` char(32) NOT NULL,
  `source` varchar(30) NOT NULL DEFAULT 'Application'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `sarv_payment_allocation_history`
--

INSERT IGNORE INTO `sarv_payment_allocation_history` (`historyid`, `paymentid`, `invoiceid`, `action`, `old_amount`, `new_amount`, `old_note`, `new_note`, `changedby`, `legacy_alloc_id`, `old_exception_reason`, `new_exception_reason`, `changedat`, `correlation_id`, `source`) VALUES
(1, 2139, 1032, 'Migrated', NULL, 50000000.00000000, NULL, NULL, 1, 1, NULL, 'Account mismatch; Currency mismatch', '2026-07-16 01:19:45', '5a2107afd4ce30abcee98da0ec8bfa61', 'Migration'),
(2, 2140, 1028, 'Migrated', NULL, 100000000.00000000, NULL, NULL, 1, 3, NULL, NULL, '2026-07-16 01:19:45', 'd81e89a3e6231d585482661b4ede11c2', 'Migration'),
(3, 2140, 1029, 'Migrated', NULL, 100000000.00000000, NULL, NULL, 1, 2, NULL, NULL, '2026-07-16 01:19:45', 'e5387ee770d717b9b779f5c3d26a87a9', 'Migration'),
(4, 2141, 1033, 'Migrated', NULL, 58000000.00000000, NULL, NULL, 1, 4, NULL, NULL, '2026-07-16 01:19:45', '1b0a1e65395be1ded0970ad82918e595', 'Migration'),
(5, 2142, 1027, 'Migrated', NULL, 80000000.00000000, NULL, NULL, 1, 5, NULL, NULL, '2026-07-16 01:19:45', '6146ae7829e47b36f618ccd45160ca21', 'Migration'),
(6, 2143, 1034, 'Migrated', NULL, 20000000.00000000, NULL, NULL, 1, 6, NULL, NULL, '2026-07-16 01:19:45', 'ee18a2a81debd7760366c9e63b7b9d5f', 'Migration'),
(7, 2144, 1031, 'Migrated', NULL, 100000000.00000000, NULL, NULL, 1, 7, NULL, NULL, '2026-07-16 01:19:45', 'a2dbf1ef15f1eb6d51dc58d51b2a6983', 'Migration'),
(8, 2145, 1030, 'Migrated', NULL, 60000000.00000000, NULL, NULL, 1, 8, NULL, NULL, '2026-07-16 01:19:45', '327dd4585a4dc8ea14b7adbac83c463f', 'Migration'),
(9, 2146, 1033, 'Migrated', NULL, 40100000.00000000, NULL, NULL, 1, 10, NULL, 'Account mismatch; Currency mismatch', '2026-07-16 01:19:45', '8bbd31c97ccc36089d8b0cacefee2344', 'Migration'),
(10, 2146, 2054, 'Migrated', NULL, 59900000.00000000, NULL, NULL, 1, 11, NULL, NULL, '2026-07-16 01:19:45', '1d34f89f5502874ed496ac7a4e1cb166', 'Migration'),
(11, 2148, 2147, 'Baseline', NULL, 5000000.00000000, NULL, 'Gouya phase 01 end-to-end allocation', 1, NULL, NULL, NULL, '2026-07-16 01:34:30', '34143964ab2397c567121472fea7a11a', 'Repair');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_payment_allocation_migration_manifest`
--

DROP TABLE IF EXISTS `sarv_payment_allocation_migration_manifest`;
CREATE TABLE `sarv_payment_allocation_migration_manifest` (
  `legacy_table` varchar(64) NOT NULL,
  `legacy_id` int(19) NOT NULL,
  `paymentid` int(19) NOT NULL,
  `invoiceid` int(19) NOT NULL,
  `checksum` char(64) NOT NULL,
  `status` varchar(30) NOT NULL,
  `notes` varchar(255) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `sarv_payment_allocation_migration_manifest`
--

INSERT IGNORE INTO `sarv_payment_allocation_migration_manifest` (`legacy_table`, `legacy_id`, `paymentid`, `invoiceid`, `checksum`, `status`, `notes`, `created_at`, `updated_at`) VALUES
('gooyaacc_pay_alloc', 1, 2139, 1032, '2f000fe613dcdf7fcd3e1001a72f7fc8c023cab63e61eb5c5fc2545390c01cc1', 'Migrated', 'Account mismatch; Currency mismatch', '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 2, 2140, 1029, 'a3353ed49fbb2641a7fc82b9987f76886b48a30ee0ce7887adf758204a26dc04', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 3, 2140, 1028, '893167fc6508865120742af81f3a8bdc92554af28b9e0cf915723b150e4378f3', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 4, 2141, 1033, '900a3fc56e613d978dcf21d4120fad35950d39e52884390fbfa4904179151ec9', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 5, 2142, 1027, 'c61e1eddcc9848bac4b096d4cca7debb48b3ac27e636eb86d73eead17a959732', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 6, 2143, 1034, '1f07d6d974069832b151641417f39b27ed2c5cfee5f721ec16eadf09bb97257d', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 7, 2144, 1031, '0f15566b26045223b629606fb5b0ba986a4eecb636450a39cb08e12c0d0b24f0', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 8, 2145, 1030, 'c322d7f2f86e4fa7c32d3051f3c65f4eca45ad38043d77c502890352907cdf7a', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 10, 2146, 1033, 'c5e06fcd54f5cb9e6735031b952a7589aaa2795bcfabc6ed0ed68c1a8894e5e1', 'Migrated', 'Account mismatch; Currency mismatch', '2026-07-16 02:59:02', '2026-07-16 02:59:02'),
('gooyaacc_pay_alloc', 11, 2146, 2054, '2bc87df877b2b092f742b2365236bb71fcb68fae14a32e32daca49fcd90324f9', 'Migrated', NULL, '2026-07-16 02:59:02', '2026-07-16 02:59:02');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_payment_invoice_rel`
--

DROP TABLE IF EXISTS `sarv_payment_invoice_rel`;
CREATE TABLE `sarv_payment_invoice_rel` (
  `paymentid` int(19) NOT NULL,
  `invoiceid` int(19) NOT NULL,
  `allocated_amount` decimal(25,8) NOT NULL,
  `note` varchar(255) DEFAULT NULL,
  `legacy_alloc_id` int(19) DEFAULT NULL,
  `migration_exception` tinyint(1) NOT NULL DEFAULT 0,
  `exception_reason` varchar(255) DEFAULT NULL,
  `createdtime` datetime NOT NULL,
  `modifiedtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `sarv_payment_invoice_rel`
--

INSERT IGNORE INTO `sarv_payment_invoice_rel` (`paymentid`, `invoiceid`, `allocated_amount`, `note`, `legacy_alloc_id`, `migration_exception`, `exception_reason`, `createdtime`, `modifiedtime`) VALUES
(2139, 1032, 50000000.00000000, NULL, 1, 1, 'Account mismatch; Currency mismatch', '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2140, 1028, 100000000.00000000, NULL, 3, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2140, 1029, 100000000.00000000, NULL, 2, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2141, 1033, 58000000.00000000, NULL, 4, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2142, 1027, 80000000.00000000, NULL, 5, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2143, 1034, 20000000.00000000, NULL, 6, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2144, 1031, 100000000.00000000, NULL, 7, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2145, 1030, 60000000.00000000, NULL, 8, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2146, 1033, 40100000.00000000, NULL, 10, 1, 'Account mismatch; Currency mismatch', '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2146, 2054, 59900000.00000000, NULL, 11, 0, NULL, '2026-07-16 01:19:45', '2026-07-16 01:31:52'),
(2148, 2147, 5000000.00000000, 'Gouya phase 01 end-to-end allocation', NULL, 0, NULL, '2026-07-16 01:34:30', '2026-07-16 01:34:30');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_payment_migration_manifest`
--

DROP TABLE IF EXISTS `sarv_payment_migration_manifest`;
CREATE TABLE `sarv_payment_migration_manifest` (
  `legacy_table` varchar(64) NOT NULL,
  `legacy_id` int(19) NOT NULL,
  `paymentid` int(19) NOT NULL,
  `checksum` char(64) NOT NULL,
  `status` varchar(30) NOT NULL,
  `notes` varchar(255) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `sarv_payment_migration_manifest`
--

INSERT IGNORE INTO `sarv_payment_migration_manifest` (`legacy_table`, `legacy_id`, `paymentid`, `checksum`, `status`, `notes`, `created_at`, `updated_at`) VALUES
('gooyaacc_pay', 1, 2139, '43789827e23777e74767d2095d5d1ec5d9a31779bcf1e684e302573499cf6f42', 'Migrated', NULL, '2026-07-16 01:19:44', '2026-07-16 01:19:44'),
('gooyaacc_pay', 2, 2140, '7e620b55e7de71de3af56c8786e9cd6cde1a8a3c100f922bd2c9121d10d59487', 'Migrated', NULL, '2026-07-16 01:19:44', '2026-07-16 01:19:44'),
('gooyaacc_pay', 3, 2141, '55d7b65639d1f94cc7912f34dff7b5f9bfc48f9b68ebef71c734797e5a271e0a', 'Migrated', NULL, '2026-07-16 01:19:44', '2026-07-16 01:19:44'),
('gooyaacc_pay', 4, 2142, 'a75833cc40ee844345fa2b8090afd1d727f6b502f20f97bc67e16c9fae657958', 'Migrated', NULL, '2026-07-16 01:19:44', '2026-07-16 01:19:44'),
('gooyaacc_pay', 5, 2143, '705b77275113d345b2f1cf3c26ac886c96c95ea27a6d39824733093ac8313d15', 'Migrated', NULL, '2026-07-16 01:19:44', '2026-07-16 01:19:44'),
('gooyaacc_pay', 6, 2144, '7529422045a39658c047dd90b140ca5ed933754aaaeadb78e72a2f7fd09b959f', 'Migrated', NULL, '2026-07-16 01:19:45', '2026-07-16 01:19:45'),
('gooyaacc_pay', 7, 2145, '2d56ce0efb022323a84f56db28eebad142ae8c4f850630f8bb837b7357e7e2d3', 'Migrated', NULL, '2026-07-16 01:19:45', '2026-07-16 01:19:45'),
('gooyaacc_pay', 8, 2146, '6606cee9e57e019f24c5bd6ddbc93e8daa180cf14a4c162f27ac3a9abe125843', 'Migrated', NULL, '2026-07-16 01:19:45', '2026-07-16 01:19:45');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase02_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase02_sample_manifest`;
CREATE TABLE `sarv_phase02_sample_manifest` (
  `sample_key` varchar(80) NOT NULL,
  `module` varchar(50) NOT NULL,
  `crmid` int(19) NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `sarv_phase02_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase02_sample_manifest` (`sample_key`, `module`, `crmid`, `created_at`) VALUES
('purchase-order-account-2036', 'PurchaseOrder', 2150, '2026-07-16 00:38:10'),
('service-account-2036', 'HelpDesk', 2149, '2026-07-16 00:38:10');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase03_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase03_sample_manifest`;
CREATE TABLE `sarv_phase03_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase03_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase03_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('lead-account-2036', 'Leads', 2152, '2026-07-18 04:34:54'),
('participation-account-2036', 'SarvParticipations', 2151, '2026-07-18 04:34:54');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase04_legacy_survey_audit`
--

DROP TABLE IF EXISTS `sarv_phase04_legacy_survey_audit`;
CREATE TABLE `sarv_phase04_legacy_survey_audit` (
  `legacy_id` int(11) NOT NULL,
  `legacy_hash` char(64) NOT NULL,
  `disposition` varchar(40) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `inspected_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase04_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase04_sample_manifest`;
CREATE TABLE `sarv_phase04_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase04_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase04_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('sales-contract-account-2036', 'SarvSalesContracts', 2154, '2026-07-18 06:33:33'),
('survey-response-account-2036', 'SarvSurveyResponses', 2153, '2026-07-18 06:33:33');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase05_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase05_sample_manifest`;
CREATE TABLE `sarv_phase05_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase05_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase05_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('bank-account-account-2036', 'SarvBankAccounts', 2218, '2026-07-18 08:27:31'),
('target-list-account-2036', 'SarvTargetLists', 2216, '2026-07-18 08:26:10');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase06_legacy_deposit_audit`
--

DROP TABLE IF EXISTS `sarv_phase06_legacy_deposit_audit`;
CREATE TABLE `sarv_phase06_legacy_deposit_audit` (
  `legacy_id` int(11) NOT NULL,
  `legacy_hash` char(64) NOT NULL,
  `disposition` varchar(40) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `inspected_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase06_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase06_sample_manifest`;
CREATE TABLE `sarv_phase06_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase06_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase06_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('child-account-2036', 'Accounts', 2221, '2026-07-18 11:16:06'),
('deposit-account-2036', 'SarvDeposits', 2220, '2026-07-18 11:16:05'),
('deposit-payment-account-2036', 'SarvPayments', 2219, '2026-07-18 11:16:05');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase07_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase07_sample_manifest`;
CREATE TABLE `sarv_phase07_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase07_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase07_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('branch-account-2036', 'SarvBusinessLocations', 2222, '2026-07-18 11:51:37'),
('service-center-account-2036', 'SarvBusinessLocations', 2223, '2026-07-18 11:51:37');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase08_legacy_timesheet_audit`
--

DROP TABLE IF EXISTS `sarv_phase08_legacy_timesheet_audit`;
CREATE TABLE `sarv_phase08_legacy_timesheet_audit` (
  `legacy_id` int(11) NOT NULL,
  `legacy_hash` char(64) NOT NULL,
  `disposition` varchar(40) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `inspected_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase08_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase08_sample_manifest`;
CREATE TABLE `sarv_phase08_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase08_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase08_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('sales-center-account-2036', 'SarvBusinessLocations', 2224, '2026-07-18 12:15:43'),
('time-reservation-account-2036', 'SarvTimeReservations', 2225, '2026-07-18 12:15:43');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase09_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase09_sample_manifest`;
CREATE TABLE `sarv_phase09_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase09_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase09_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('gift-account-2036', 'SarvGifts', 2226, '2026-07-18 12:36:00'),
('product-sample-account-2036', 'SarvProductSamples', 2227, '2026-07-18 12:36:00');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_phase10_sample_manifest`
--

DROP TABLE IF EXISTS `sarv_phase10_sample_manifest`;
CREATE TABLE `sarv_phase10_sample_manifest` (
  `sample_key` varchar(100) NOT NULL,
  `module` varchar(100) NOT NULL,
  `crmid` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_phase10_sample_manifest`
--

INSERT IGNORE INTO `sarv_phase10_sample_manifest` (`sample_key`, `module`, `crmid`, `createdtime`) VALUES
('access-grant-account-2036-team-selling', 'SarvAccessGrants', 2228, '2026-07-18 13:10:14');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_purchaseorder_stock_ledger`
--

DROP TABLE IF EXISTS `sarv_purchaseorder_stock_ledger`;
CREATE TABLE `sarv_purchaseorder_stock_ledger` (
  `purchaseorderid` int(19) NOT NULL,
  `productid` int(19) NOT NULL,
  `quantity` decimal(25,8) NOT NULL DEFAULT 0.00000000,
  `modifiedtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_role_audit`
--

DROP TABLE IF EXISTS `sarv_role_audit`;
CREATE TABLE `sarv_role_audit` (
  `audit_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` varchar(255) DEFAULT NULL,
  `action_name` varchar(40) NOT NULL,
  `before_json` longtext DEFAULT NULL,
  `after_json` longtext DEFAULT NULL,
  `actor_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_role_audit`
--

INSERT IGNORE INTO `sarv_role_audit` (`audit_id`, `role_id`, `action_name`, `before_json`, `after_json`, `actor_id`, `created_at`) VALUES
(36, 'H29', 'create', '[]', '{\"roleid\":\"H29\",\"rolename\":\"آزمون گویا - مجاز - 20260801-073004\",\"parentrole\":\"H1::H29\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"32\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow\",\"permission_states\":{\"6\":{\"module\":\"allow\",\"actions\":{\"3\":\"allow\",\"4\":\"allow\"}},\"7\":{\"module\":\"allow\",\"actions\":{\"3\":\"allow\",\"4\":\"allow\"}}},\"virtual_permission_states\":{\"KPI\":\"allow\"}}', 1, '2026-08-01 11:00:07'),
(37, 'H30', 'create', '[]', '{\"roleid\":\"H30\",\"rolename\":\"آزمون گویا - ارث&zwnj;بری - 20260801-073004\",\"parentrole\":\"H1::H30\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"33\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit\",\"permission_states\":{\"6\":{\"module\":\"inherit\",\"actions\":{\"3\":\"inherit\",\"4\":\"inherit\"}},\"7\":{\"module\":\"inherit\",\"actions\":{\"3\":\"inherit\",\"4\":\"inherit\"}}},\"virtual_permission_states\":{\"KPI\":\"inherit\"}}', 1, '2026-08-01 11:00:10'),
(38, 'H31', 'create', '[]', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"6\":{\"module\":\"deny\",\"actions\":{\"3\":\"deny\",\"4\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"3\":\"deny\",\"4\":\"deny\"}}},\"virtual_permission_states\":{\"KPI\":\"deny\"}}', 1, '2026-08-01 11:00:14'),
(39, 'H29', 'repair_test_role_acl', '{\"roleid\":\"H29\",\"rolename\":\"آزمون گویا - مجاز - 20260801-073004\",\"parentrole\":\"H1::H29\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"32\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow\",\"permission_states\":{\"6\":{\"module\":\"allow\",\"actions\":{\"3\":\"allow\",\"4\":\"allow\"}},\"7\":{\"module\":\"allow\",\"actions\":{\"3\":\"allow\",\"4\":\"allow\"}}}}', '{\"roleid\":\"H29\",\"rolename\":\"آزمون گویا - مجاز - 20260801-073004\",\"parentrole\":\"H1::H29\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"32\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:07:02'),
(40, 'H30', 'repair_test_role_acl', '{\"roleid\":\"H30\",\"rolename\":\"آزمون گویا - ارث&zwnj;بری - 20260801-073004\",\"parentrole\":\"H1::H30\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"33\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit\",\"permission_states\":{\"6\":{\"module\":\"inherit\",\"actions\":{\"3\":\"inherit\",\"4\":\"inherit\"}},\"7\":{\"module\":\"inherit\",\"actions\":{\"3\":\"inherit\",\"4\":\"inherit\"}}}}', '{\"roleid\":\"H30\",\"rolename\":\"آزمون گویا - ارث&zwnj;بری - 20260801-073004\",\"parentrole\":\"H1::H30\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"33\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:07:03'),
(41, 'H31', 'repair_test_role_acl', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"6\":{\"module\":\"deny\",\"actions\":{\"3\":\"deny\",\"4\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"3\":\"deny\",\"4\":\"deny\"}}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:07:03'),
(44, 'H31', 'harden_limited_test_role', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:15:01'),
(45, 'H31', 'harden_limited_test_role', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:16:48');
INSERT IGNORE INTO `sarv_role_audit` (`audit_id`, `role_id`, `action_name`, `before_json`, `after_json`, `actor_id`, `created_at`) VALUES
(46, 'H31', 'update', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}},\"virtual_permission_states\":{\"KPI\":\"deny\"}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}},\"virtual_permission_states\":{\"KPI\":\"inherit\"}}', 1, '2026-08-01 11:20:05'),
(47, 'H31', 'harden_limited_test_role', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', 1, '2026-08-01 11:22:31'),
(48, 'H31', 'update', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}},\"virtual_permission_states\":{\"KPI\":\"deny\"}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}},\"virtual_permission_states\":{\"KPI\":\"inherit\"}}', 1, '2026-08-01 11:23:09'),
(49, 'H31', 'harden_limited_test_role', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', 1, '2026-08-01 11:24:41'),
(50, 'H31', 'harden_limited_test_role', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', 1, '2026-08-01 11:25:30');
INSERT IGNORE INTO `sarv_role_audit` (`audit_id`, `role_id`, `action_name`, `before_json`, `after_json`, `actor_id`, `created_at`) VALUES
(51, 'H29', 'repair_test_role_acl', '{\"roleid\":\"H29\",\"rolename\":\"آزمون گویا - مجاز - 20260801-073004\",\"parentrole\":\"H1::H29\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"32\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', '{\"roleid\":\"H29\",\"rolename\":\"آزمون گویا - مجاز - 20260801-073004\",\"parentrole\":\"H1::H29\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"32\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"allow\",\"actions\":{\"2\":\"inherit\",\"3\":\"allow\",\"4\":\"allow\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:31:51'),
(52, 'H30', 'repair_test_role_acl', '{\"roleid\":\"H30\",\"rolename\":\"آزمون گویا - ارث&zwnj;بری - 20260801-073004\",\"parentrole\":\"H1::H30\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"33\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', '{\"roleid\":\"H30\",\"rolename\":\"آزمون گویا - ارث&zwnj;بری - 20260801-073004\",\"parentrole\":\"H1::H30\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"33\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"38\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"40\":{\"module\":\"inherit\"},\"41\":{\"module\":\"inherit\"},\"42\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"43\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"44\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"45\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"46\":{\"module\":\"inherit\"},\"47\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"48\":{\"module\":\"inherit\"},\"50\":{\"module\":\"inherit\"},\"51\":{\"module\":\"inherit\"},\"52\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"53\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"54\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"55\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"56\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"57\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"58\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"59\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"60\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"61\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"62\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"63\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"64\":{\"module\":\"inherit\"}}}', 1, '2026-08-01 11:31:52'),
(53, 'H31', 'repair_test_role_acl', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"7\":\"inherit\"}}}}', '{\"roleid\":\"H31\",\"rolename\":\"آزمون گویا - محدود - 20260801-073004\",\"parentrole\":\"H1::H31\",\"depth\":1,\"allowassignedrecordsto\":\"3\",\"profile_ids\":[\"34\"],\"description\":\"نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny\",\"permission_states\":{\"1\":{\"module\":\"inherit\"},\"2\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"4\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"6\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"7\":{\"module\":\"deny\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"8\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"9\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"10\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"13\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"14\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"15\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"16\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"18\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"19\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"20\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"21\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"22\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"23\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"24\":{\"module\":\"inherit\"},\"25\":{\"module\":\"inherit\",\"actions\":{\"6\":\"inherit\"}},\"26\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"7\":\"inherit\"}},\"27\":{\"module\":\"inherit\"},\"31\":{\"module\":\"inherit\"},\"34\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"35\":{\"module\":\"inherit\",\"actions\":{\"1\":\"inherit\",\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"inherit\",\"5\":\"inherit\",\"6\":\"inherit\",\"7\":\"inherit\"}},\"36\":{\"module\":\"inherit\",\"actions\":{\"2\":\"inherit\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"inherit\"}},\"38\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"40\":{\"module\":\"deny\"},\"41\":{\"module\":\"deny\"},\"42\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"7\":\"deny\"}},\"43\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"44\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"45\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"46\":{\"module\":\"deny\"},\"47\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"7\":\"deny\"}},\"48\":{\"module\":\"deny\"},\"50\":{\"module\":\"deny\"},\"51\":{\"module\":\"deny\"},\"52\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"53\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"54\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"55\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"56\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"57\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"58\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"59\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"60\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"61\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"62\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"63\":{\"module\":\"deny\",\"actions\":{\"2\":\"deny\",\"3\":\"deny\",\"4\":\"deny\",\"5\":\"deny\",\"6\":\"deny\",\"7\":\"deny\"}},\"64\":{\"module\":\"deny\"}}}', 1, '2026-08-01 11:31:52'),
(62, 'H1', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(63, 'H2', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(64, 'H29', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(65, 'H3', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(66, 'H30', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(67, 'H31', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(68, 'H4', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36'),
(69, 'H5', 'virtual_module_migration', NULL, '{\"module_key\":\"GOOYACALL\",\"permission_state\":\"inherit\",\"source\":\"module_install\"}', 1, '2026-08-03 10:05:36');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_role_meta`
--

DROP TABLE IF EXISTS `sarv_role_meta`;
CREATE TABLE `sarv_role_meta` (
  `role_id` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `permission_model_version` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_role_meta`
--

INSERT IGNORE INTO `sarv_role_meta` (`role_id`, `description`, `created_at`, `updated_at`, `created_by`, `updated_by`, `permission_model_version`) VALUES
('H2', 'سطح دسترسی سازمانی «CEO»؛ مجوزها فقط از پنل نقش‌ها مدیریت می‌شوند.', '2026-07-22 01:42:49', '2026-07-22 04:38:57', 1, 1, 2),
('H29', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow', '2026-08-01 11:00:07', '2026-08-01 11:00:07', 1, 1, 0),
('H3', 'سطح دسترسی سازمانی «Vice President»؛ مجوزها فقط از پنل نقش‌ها مدیریت می‌شوند.', '2026-07-22 01:42:50', '2026-07-22 04:38:57', 1, 1, 2),
('H30', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit', '2026-08-01 11:00:10', '2026-08-01 11:00:10', 1, 1, 0),
('H31', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny', '2026-08-01 11:00:13', '2026-08-01 11:23:08', 1, 1, 0),
('H4', 'سطح دسترسی سازمانی «Sales Manager»؛ مجوزها فقط از پنل نقش‌ها مدیریت می‌شوند.', '2026-07-22 01:42:50', '2026-07-22 04:38:57', 1, 1, 2),
('H5', 'سطح دسترسی سازمانی «Sales Person»؛ مجوزها فقط از پنل نقش‌ها مدیریت می‌شوند.', '2026-07-22 01:42:50', '2026-07-22 04:38:57', 1, 1, 2);

-- --------------------------------------------------------

--
-- Table structure for table `sarv_role_permission_override`
--

DROP TABLE IF EXISTS `sarv_role_permission_override`;
CREATE TABLE `sarv_role_permission_override` (
  `role_id` varchar(255) NOT NULL,
  `tab_id` int(11) NOT NULL,
  `operation_id` int(11) NOT NULL DEFAULT 0,
  `permission_state` varchar(12) NOT NULL DEFAULT 'inherit',
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_role_permission_override`
--

INSERT IGNORE INTO `sarv_role_permission_override` (`role_id`, `tab_id`, `operation_id`, `permission_state`, `updated_by`, `updated_at`) VALUES
('H2', 1, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 1, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 1, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 2, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 2, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 3, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 3, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 3, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 4, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 4, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 6, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 7, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 8, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 8, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 9, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 10, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 10, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 10, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 10, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H2', 10, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 10, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 10, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 10, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 13, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 13, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 14, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 15, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 15, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 15, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 16, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 16, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 16, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 18, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 19, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 19, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 19, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 20, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 21, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 22, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 23, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 24, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 24, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 24, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 25, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 25, 1, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 25, 2, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 25, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 25, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 25, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 25, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 25, 7, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 26, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 26, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 26, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 26, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 26, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 26, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 26, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 26, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 27, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 27, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 27, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 30, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 30, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 31, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 31, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 32, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 32, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 33, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 33, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 34, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 34, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 34, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 34, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 34, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 34, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 34, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 34, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 35, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 36, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 37, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 37, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 37, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 38, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 38, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 38, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 38, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 38, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 38, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 38, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 38, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 39, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 39, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 39, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 40, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 40, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 41, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 41, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 42, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 42, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 42, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 42, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 42, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 42, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 42, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 42, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 43, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 43, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H2', 43, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 44, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 45, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 46, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 46, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 46, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 47, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 47, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 47, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 47, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 47, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 47, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 47, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 47, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 48, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 48, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 48, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 49, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 49, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 50, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 50, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 51, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 51, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 52, 0, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 1, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 2, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 3, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 4, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 5, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 6, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 52, 7, 'inherit', 1, '2026-07-22 02:32:39'),
('H2', 53, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 53, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 54, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 55, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 56, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 57, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 58, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 59, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 60, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 61, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 62, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 63, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 64, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H2', 64, 1, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 2, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 3, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 4, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 5, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 6, 'deny', 1, '2026-07-22 02:35:23'),
('H2', 64, 7, 'deny', 1, '2026-07-22 02:35:23'),
('H29', 1, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 2, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 4, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 6, 0, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 6, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 6, 3, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 6, 4, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 6, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 6, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 6, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 7, 0, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 7, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 7, 3, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 7, 4, 'allow', 1, '2026-08-01 11:31:50'),
('H29', 7, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 7, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 7, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 8, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 9, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 10, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 10, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 10, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 10, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 10, 7, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 0, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 2, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 3, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 4, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 5, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 6, 'inherit', 1, '2026-08-01 11:31:50'),
('H29', 13, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 14, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 15, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 15, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 15, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 15, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 15, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 16, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 18, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 19, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 20, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 21, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 22, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 23, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 24, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 25, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 25, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 26, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 26, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 26, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 26, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 26, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 27, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 31, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 34, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 34, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 34, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 34, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 34, 5, 'deny', 1, '2026-08-01 11:31:51'),
('H29', 34, 6, 'deny', 1, '2026-08-01 11:31:51'),
('H29', 34, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 35, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 36, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 38, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 38, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 38, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 38, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 38, 5, 'deny', 1, '2026-08-01 11:31:51'),
('H29', 38, 6, 'deny', 1, '2026-08-01 11:31:51'),
('H29', 38, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 40, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 41, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 42, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 42, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 42, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 42, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 42, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 43, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 44, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 45, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 46, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 47, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 47, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 47, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 47, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 47, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 48, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 50, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 51, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 52, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 53, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 54, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 55, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 56, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 57, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 58, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 59, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 60, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 61, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 62, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 63, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H29', 64, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H3', 1, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 1, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 1, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 2, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 2, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 2, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 2, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 2, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 2, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 2, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 2, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 3, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 3, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 3, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 4, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 4, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 4, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 4, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 4, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 4, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 4, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 4, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 6, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 6, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 6, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 7, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 7, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 7, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 8, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 8, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 8, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 9, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 10, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 10, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 10, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 10, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 10, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 10, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 10, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 10, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 13, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 13, 1, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 13, 2, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 13, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 13, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 13, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 13, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 13, 7, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 14, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 14, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 14, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 14, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 14, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 14, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 14, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 14, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 15, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 15, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 15, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 16, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 16, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 16, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 18, 5, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 18, 6, 'deny', 1, '2026-07-22 02:28:50'),
('H3', 18, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 19, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 19, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 19, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 20, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 21, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 22, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 23, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 24, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 24, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 24, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 25, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 25, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 25, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 25, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 25, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 25, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 25, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 25, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 26, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 26, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 26, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 26, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 26, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 26, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 26, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 26, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 27, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 27, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 27, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 30, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 30, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 31, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 31, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 32, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 32, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 33, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 33, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 34, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 34, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 34, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 34, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 34, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 34, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 34, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 34, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 35, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 36, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 37, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 37, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 37, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 38, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 38, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 38, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 38, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 38, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 38, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 38, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 38, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 39, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 39, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 39, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 40, 1, 'inherit', 1, '2026-07-22 02:35:23');
INSERT IGNORE INTO `sarv_role_permission_override` (`role_id`, `tab_id`, `operation_id`, `permission_state`, `updated_by`, `updated_at`) VALUES
('H3', 40, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 40, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 41, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 41, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 42, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 42, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 42, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 42, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 42, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 42, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 42, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 42, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 43, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 43, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 43, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 44, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 45, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 46, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 46, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 46, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 47, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 47, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 47, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 47, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 47, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 47, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 47, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 47, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 48, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 48, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 48, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 49, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 49, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 50, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 50, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 51, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 51, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 52, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 52, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 53, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 54, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 55, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 56, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 57, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 58, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 59, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 60, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 61, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 62, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 63, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 64, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H3', 64, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H3', 64, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H30', 1, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 2, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 4, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 6, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 7, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 8, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 9, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 10, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 10, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 10, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 10, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 10, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 13, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 14, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 15, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 15, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 15, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 15, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 15, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 16, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 18, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 19, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 20, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 21, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 22, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 23, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 24, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 25, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 25, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 26, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 26, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 26, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 26, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 26, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 27, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 31, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 34, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 34, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 34, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 34, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 34, 5, 'deny', 1, '2026-08-01 11:31:51'),
('H30', 34, 6, 'deny', 1, '2026-08-01 11:31:51'),
('H30', 34, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 35, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 36, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 38, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 38, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 38, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 38, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 38, 5, 'deny', 1, '2026-08-01 11:31:51'),
('H30', 38, 6, 'deny', 1, '2026-08-01 11:31:51'),
('H30', 38, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 40, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 41, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 42, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 42, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 42, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 42, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 42, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 43, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 44, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 2, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 3, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 4, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 5, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 6, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 45, 7, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 46, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 47, 0, 'inherit', 1, '2026-08-01 11:31:51'),
('H30', 47, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 47, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 47, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 47, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 48, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 50, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 51, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 52, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 53, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 54, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 55, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 56, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 57, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 58, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 59, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 60, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 61, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 62, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 3, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 63, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H30', 64, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 1, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 2, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 2, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 4, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 4, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 6, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 6, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 6, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 6, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 6, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 6, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 6, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 6, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 7, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 7, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 7, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 7, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 7, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 7, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 7, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 7, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 8, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 8, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 9, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 9, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 10, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 10, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 10, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 10, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 10, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 10, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 13, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 13, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 14, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 14, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 15, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 15, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 15, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 15, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 15, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 15, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 16, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 16, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 18, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 18, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 19, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 19, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 20, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 20, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 21, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 21, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 22, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 22, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 23, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 23, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 24, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 25, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 25, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 26, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 26, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 26, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 26, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 26, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 26, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 27, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 31, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 34, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 34, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 1, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 35, 4, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 5, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 6, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 35, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 36, 0, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 36, 2, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 36, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 36, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 36, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 36, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 36, 7, 'inherit', 1, '2026-08-01 11:31:52'),
('H31', 38, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 38, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 40, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 41, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 42, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 42, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 42, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 42, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 42, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 43, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 44, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 45, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 46, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 47, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 47, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 47, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 47, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 47, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 48, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 50, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 51, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 52, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 53, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 54, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 55, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 56, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 57, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 58, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 59, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 60, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 61, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 62, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 2, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 3, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 4, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 5, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 6, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 63, 7, 'deny', 1, '2026-08-01 11:31:52'),
('H31', 64, 0, 'deny', 1, '2026-08-01 11:31:52'),
('H4', 1, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 1, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 1, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 2, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 2, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 2, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 2, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 2, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 2, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 2, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 2, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 3, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 3, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 3, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 4, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 4, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 4, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 4, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 4, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 4, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 4, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 4, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 6, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 6, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 6, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 7, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 7, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 7, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 8, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 8, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 8, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 9, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 10, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 10, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 10, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 10, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 10, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 10, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 10, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 10, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 13, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 13, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 13, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 13, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 13, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 13, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 13, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 13, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 14, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 14, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 14, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 14, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 14, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 14, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 14, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 14, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 15, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 15, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 15, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 16, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 16, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 16, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 18, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 18, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 18, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 19, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 19, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 19, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 20, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 21, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 22, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 5, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 23, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 24, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 24, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 24, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 25, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 25, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 25, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 25, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 25, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 25, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 25, 6, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 25, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 26, 0, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 26, 1, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 26, 2, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 26, 3, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 26, 4, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 26, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 26, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 26, 7, 'inherit', 1, '2026-07-22 02:32:40'),
('H4', 27, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 27, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 27, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 30, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 30, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 31, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 31, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 32, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 2, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 3, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 4, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 5, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 6, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 32, 7, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 33, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 33, 1, 'inherit', 1, '2026-07-22 02:35:23'),
('H4', 33, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 33, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 33, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 33, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 33, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 33, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 34, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 34, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 34, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 34, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 34, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 34, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 34, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 34, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 35, 6, 'inherit', 1, '2026-07-22 02:32:41');
INSERT IGNORE INTO `sarv_role_permission_override` (`role_id`, `tab_id`, `operation_id`, `permission_state`, `updated_by`, `updated_at`) VALUES
('H4', 35, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 36, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 37, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 37, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 37, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 38, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 38, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 38, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 38, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 38, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 38, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 38, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 38, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 39, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 39, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 39, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 40, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 40, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 41, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 41, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 42, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 42, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 42, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 42, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 42, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 42, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 42, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 42, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 43, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 43, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 43, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 44, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 45, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 46, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 46, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 46, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 47, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 47, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 47, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 47, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 47, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 47, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 47, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 47, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 48, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 48, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 48, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 49, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 49, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 50, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 50, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 51, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 51, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 52, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 52, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 53, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 54, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 55, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 56, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 57, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 58, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 59, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 60, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 61, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 62, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 63, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 64, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H4', 64, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H4', 64, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 1, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 1, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 2, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 2, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 2, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 2, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 2, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 2, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 2, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 2, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 3, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 3, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 3, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 4, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 4, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 4, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 4, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 4, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 4, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 4, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 4, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 6, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 6, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 6, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 7, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 7, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 7, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 8, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 8, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 8, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 9, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 10, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 10, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 10, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 10, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 10, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 10, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 10, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 10, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 13, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 13, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 13, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 13, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 13, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 13, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 13, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 13, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 14, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 14, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 14, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 14, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 14, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 14, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 14, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 14, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 15, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 15, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 15, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 16, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 16, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 16, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 18, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 18, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 18, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 19, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 19, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 19, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 20, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 21, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 22, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 23, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 24, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 24, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 24, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 25, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 25, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 25, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 25, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 25, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 25, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 25, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 25, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 26, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 26, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 26, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 26, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 26, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 26, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 26, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 26, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 27, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 27, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 27, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 30, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 30, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 31, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 31, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 32, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 32, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 33, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 33, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 34, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 34, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 34, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 34, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 34, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 34, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 34, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 34, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 35, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 36, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 37, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 37, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 37, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 38, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 38, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 38, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 38, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 38, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 38, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 38, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 38, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 39, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 39, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 39, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 40, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 40, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 41, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 41, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 42, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 42, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 42, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 42, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 42, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 42, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 42, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 42, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 43, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 43, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 43, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 44, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 45, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 46, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 46, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 46, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 47, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 47, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 47, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 47, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 47, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 47, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 47, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 47, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 48, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 48, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 48, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 49, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 49, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 50, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 50, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 51, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 51, 7, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 52, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 52, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 53, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 54, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 55, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 56, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 57, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 58, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 59, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 60, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 61, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 62, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 1, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 2, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 3, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 4, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 5, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 6, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 63, 7, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 64, 0, 'inherit', 1, '2026-07-22 02:32:41'),
('H5', 64, 1, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 2, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 3, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 4, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 5, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 6, 'inherit', 1, '2026-07-22 02:35:24'),
('H5', 64, 7, 'inherit', 1, '2026-07-22 02:35:24');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_role_virtual_module_permission`
--

DROP TABLE IF EXISTS `sarv_role_virtual_module_permission`;
CREATE TABLE `sarv_role_virtual_module_permission` (
  `role_id` varchar(50) NOT NULL,
  `module_key` varchar(64) NOT NULL,
  `permission_state` varchar(16) NOT NULL DEFAULT 'inherit',
  `updated_by` int(19) NOT NULL DEFAULT 0,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_role_virtual_module_permission`
--

INSERT IGNORE INTO `sarv_role_virtual_module_permission` (`role_id`, `module_key`, `permission_state`, `updated_by`, `updated_at`) VALUES
('H1', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H2', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H29', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H29', 'KPI', 'allow', 1, '2026-08-01 11:00:07'),
('H3', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H30', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H30', 'KPI', 'inherit', 1, '2026-08-01 11:00:10'),
('H31', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H31', 'KPI', 'deny', 1, '2026-08-01 11:25:30'),
('H4', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36'),
('H5', 'GOOYACALL', 'inherit', 1, '2026-08-03 10:05:36');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_security_group_audit`
--

DROP TABLE IF EXISTS `sarv_security_group_audit`;
CREATE TABLE `sarv_security_group_audit` (
  `audit_id` bigint(20) UNSIGNED NOT NULL,
  `group_id` int(19) DEFAULT NULL,
  `action_name` varchar(40) NOT NULL,
  `before_json` longtext DEFAULT NULL,
  `after_json` longtext DEFAULT NULL,
  `actor_id` int(19) DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_security_group_meta`
--

DROP TABLE IF EXISTS `sarv_security_group_meta`;
CREATE TABLE `sarv_security_group_meta` (
  `group_id` int(19) NOT NULL,
  `not_inheritable` tinyint(1) NOT NULL DEFAULT 0,
  `assigned_user_id` int(19) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `created_by` int(19) DEFAULT NULL,
  `updated_by` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_security_group_meta`
--

INSERT IGNORE INTO `sarv_security_group_meta` (`group_id`, `not_inheritable`, `assigned_user_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(2, 0, NULL, '2026-07-23 02:46:25', '2026-07-23 02:46:25', 1, 1),
(3, 0, NULL, '2026-07-23 02:46:25', '2026-07-23 02:46:25', 1, 1),
(4, 0, NULL, '2026-07-23 02:46:25', '2026-07-23 02:46:25', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `sarv_stock_movement_ledger`
--

DROP TABLE IF EXISTS `sarv_stock_movement_ledger`;
CREATE TABLE `sarv_stock_movement_ledger` (
  `movement_id` bigint(20) UNSIGNED NOT NULL,
  `source_module` varchar(100) NOT NULL,
  `source_record_id` int(19) NOT NULL,
  `productid` int(19) NOT NULL,
  `movement_code` varchar(30) NOT NULL,
  `quantity_delta` decimal(25,3) NOT NULL,
  `from_status` varchar(50) NOT NULL,
  `to_status` varchar(50) NOT NULL,
  `createdby` int(19) NOT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `sarv_stock_movement_ledger`
--

INSERT IGNORE INTO `sarv_stock_movement_ledger` (`movement_id`, `source_module`, `source_record_id`, `productid`, `movement_code`, `quantity_delta`, `from_status`, `to_status`, `createdby`, `createdtime`) VALUES
(1, 'SarvGifts', 2226, 26, 'dispatch', -1.000, 'Approved', 'Dispatched', 1, '2026-07-18 12:36:00'),
(2, 'SarvProductSamples', 2227, 26, 'dispatch', -2.000, 'Approved', 'Dispatched', 1, '2026-07-18 12:36:01'),
(3, 'SarvProductSamples', 2227, 26, 'return', 2.000, 'Delivered', 'Returned', 1, '2026-07-18 12:36:01');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_subpanel_visibility`
--

DROP TABLE IF EXISTS `sarv_subpanel_visibility`;
CREATE TABLE `sarv_subpanel_visibility` (
  `panel_key` varchar(80) NOT NULL,
  `relation_id` int(19) DEFAULT NULL,
  `is_visible` tinyint(1) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL DEFAULT 0,
  `updated_by` int(19) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_subpanel_visibility`
--

INSERT IGNORE INTO `sarv_subpanel_visibility` (`panel_key`, `relation_id`, `is_visible`, `position`, `updated_by`, `updated_at`) VALUES
('approvals', NULL, 0, 35, 1, '2026-07-23 06:07:20'),
('bank_accounts', 184, 1, 17, 1, '2026-07-23 06:07:20'),
('branches', 187, 1, 20, 1, '2026-07-23 06:07:20'),
('bugs', NULL, 0, 27, 1, '2026-07-23 06:07:20'),
('campaigns', 87, 1, 12, 1, '2026-07-23 06:07:20'),
('checklist_results', NULL, 0, 31, 1, '2026-07-23 06:07:20'),
('child_accounts', 186, 1, 19, 1, '2026-07-23 06:07:20'),
('collections', NULL, 0, 48, 1, '2026-07-23 06:07:20'),
('competitors', NULL, 0, 30, 1, '2026-07-23 06:07:20'),
('contacts', 1, 1, 1, 1, '2026-07-23 06:07:20'),
('deposits', 185, 1, 18, 1, '2026-07-23 06:07:20'),
('device_types', NULL, 0, 40, 1, '2026-07-23 06:07:20'),
('documents', 9, 1, 16, 1, '2026-07-23 06:07:20'),
('evaluation_responses', NULL, 0, 28, 1, '2026-07-23 06:07:20'),
('geo_regions', NULL, 0, 29, 1, '2026-07-23 06:07:20'),
('gifts', 189, 1, 24, 1, '2026-07-23 06:07:20'),
('invoices', 5, 1, 4, 1, '2026-07-23 06:07:20'),
('knowledge_base', NULL, 0, 43, 1, '2026-07-23 06:07:20'),
('knowledge_categories', NULL, 0, 42, 1, '2026-07-23 06:07:20'),
('leads', 180, 1, 11, 1, '2026-07-23 06:07:20'),
('participations', 179, 1, 10, 1, '2026-07-23 06:07:20'),
('payments', 177, 1, 6, 1, '2026-07-23 06:07:20'),
('potentials', 2, 1, 2, 1, '2026-07-23 06:07:20'),
('product_categories', NULL, 0, 36, 1, '2026-07-23 06:07:20'),
('product_features', NULL, 0, 38, 1, '2026-07-23 06:07:20'),
('product_samples', 190, 1, 25, 1, '2026-07-23 06:07:20'),
('products', 11, 1, 26, 1, '2026-07-23 06:07:20'),
('project_tasks', NULL, 0, 39, 1, '2026-07-23 06:07:20'),
('projects', 131, 1, 9, 1, '2026-07-23 06:07:20'),
('purchase_orders', 178, 1, 8, 1, '2026-07-23 06:07:20'),
('quotes', 3, 1, 3, 1, '2026-07-23 06:07:20'),
('required_parts', NULL, 0, 46, 1, '2026-07-23 06:07:20'),
('required_products', NULL, 0, 41, 1, '2026-07-23 06:07:20'),
('retail_invoices', 5, 1, 5, 1, '2026-07-23 06:07:20'),
('sales_centers', 187, 1, 22, 1, '2026-07-23 06:07:20'),
('sales_contracts', 182, 1, 15, 1, '2026-07-23 06:07:20'),
('service_centers', 187, 1, 21, 1, '2026-07-23 06:07:20'),
('service_contract_items', NULL, 0, 45, 1, '2026-07-23 06:07:20'),
('service_contracts', 95, 1, 14, 1, '2026-07-23 06:07:20'),
('services', 10, 1, 7, 1, '2026-07-23 06:07:20'),
('surveys', 181, 1, 13, 1, '2026-07-23 06:07:20'),
('tariffs', NULL, 0, 47, 1, '2026-07-23 06:07:20'),
('terminals', NULL, 0, 33, 1, '2026-07-23 06:07:20'),
('time_reservation_items', NULL, 0, 44, 1, '2026-07-23 06:07:20'),
('time_reservations', 188, 1, 23, 1, '2026-07-23 06:07:20'),
('timesheets', NULL, 0, 32, 1, '2026-07-23 06:07:20'),
('tree_fields', NULL, 0, 34, 1, '2026-07-23 06:07:20'),
('vendors', NULL, 0, 37, 1, '2026-07-23 06:07:20');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_subpanel_visibility_audit`
--

DROP TABLE IF EXISTS `sarv_subpanel_visibility_audit`;
CREATE TABLE `sarv_subpanel_visibility_audit` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `changed_by` int(19) DEFAULT NULL,
  `before_json` longtext NOT NULL,
  `after_json` longtext NOT NULL,
  `changed_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sarv_team_audit`
--

DROP TABLE IF EXISTS `sarv_team_audit`;
CREATE TABLE `sarv_team_audit` (
  `audit_id` bigint(20) UNSIGNED NOT NULL,
  `team_id` int(11) DEFAULT NULL,
  `action_name` varchar(40) NOT NULL,
  `before_json` longtext DEFAULT NULL,
  `after_json` longtext DEFAULT NULL,
  `actor_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_team_audit`
--

INSERT IGNORE INTO `sarv_team_audit` (`audit_id`, `team_id`, `action_name`, `before_json`, `after_json`, `actor_id`, `created_at`) VALUES
(1, 19, 'seed', '{}', '{\"name\":\"تیم فروش نمونه (قابل حذف)\"}', 1, '2026-07-23 03:12:21'),
(18, 27, 'create', '[]', '{\"0\":\"27\",\"id\":27,\"1\":\"تیم نمونه طرح گویا\",\"name\":\"تیم نمونه طرح گویا\",\"2\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"description\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"3\":\"1\",\"supervisor_id\":1,\"4\":\"2026-08-01 12:23:13\",\"created_at\":\"2026-08-01 12:23:13\",\"5\":\"2026-08-01 12:23:13\",\"modified_at\":\"2026-08-01 12:23:13\",\"6\":\"1\",\"created_by\":\"1\",\"7\":\"1\",\"modified_by\":\"1\",\"8\":\"0\",\"deleted\":\"0\",\"9\":\"2026-08-01 12:23:13\",\"updated_at\":\"2026-08-01 12:23:13\",\"10\":\"حسین فغان پور\",\"leader_label\":\"حسین فغان پور\",\"11\":\"admin\",\"leader_username\":\"admin\",\"members\":[1],\"member_count\":1,\"created_at_display\":\"08-01-2026 15:53:13\",\"modified_at_display\":\"08-01-2026 15:53:13\"}', 1, '2026-08-01 12:23:13'),
(19, 27, 'update', '{\"0\":\"27\",\"id\":27,\"1\":\"تیم نمونه طرح گویا\",\"name\":\"تیم نمونه طرح گویا\",\"2\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"description\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"3\":\"1\",\"supervisor_id\":1,\"4\":\"2026-08-01 12:23:13\",\"created_at\":\"2026-08-01 12:23:13\",\"5\":\"2026-08-01 12:23:13\",\"modified_at\":\"2026-08-01 12:23:13\",\"6\":\"1\",\"created_by\":\"1\",\"7\":\"1\",\"modified_by\":\"1\",\"8\":\"0\",\"deleted\":\"0\",\"9\":\"2026-08-01 12:23:13\",\"updated_at\":\"2026-08-01 12:23:13\",\"10\":\"حسین فغان پور\",\"leader_label\":\"حسین فغان پور\",\"11\":\"admin\",\"leader_username\":\"admin\",\"members\":[1],\"member_count\":1,\"created_at_display\":\"08-01-2026 15:53:13\",\"modified_at_display\":\"08-01-2026 15:53:13\"}', '{\"0\":\"27\",\"id\":27,\"1\":\"تیم نمونه طرح گویا\",\"name\":\"تیم نمونه طرح گویا\",\"2\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"description\":\"نمونه عملی برای آزمون ذخیره، بازخوانی، اعضا و هماهنگی دیتابیس در طرح گویا\",\"3\":\"24\",\"supervisor_id\":24,\"4\":\"2026-08-01 12:23:13\",\"created_at\":\"2026-08-01 12:23:13\",\"5\":\"2026-08-01 12:33:05\",\"modified_at\":\"2026-08-01 12:33:05\",\"6\":\"1\",\"created_by\":\"1\",\"7\":\"1\",\"modified_by\":\"1\",\"8\":\"0\",\"deleted\":\"0\",\"9\":\"2026-08-01 12:33:05\",\"updated_at\":\"2026-08-01 12:33:05\",\"10\":\"آرش فلاحی\",\"leader_label\":\"آرش فلاحی\",\"11\":\"kpiseed_emp13\",\"leader_username\":\"kpiseed_emp13\",\"members\":[1,14,24],\"member_count\":3,\"created_at_display\":\"08-01-2026 15:53:13\",\"modified_at_display\":\"08-01-2026 16:03:05\"}', 1, '2026-08-01 12:33:05');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_emails`
--

DROP TABLE IF EXISTS `sarv_user_emails`;
CREATE TABLE `sarv_user_emails` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `email_address` varchar(190) NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_user_emails`
--

INSERT IGNORE INTO `sarv_user_emails` (`id`, `user_id`, `email_address`, `is_primary`, `position`, `created_at`, `updated_at`) VALUES
(2, 5, 'a@gmail.com', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(4, 7, 'kpiseed_sup1@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(5, 8, 'kpiseed_emp1@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(6, 9, 'kpiseed_emp2@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(7, 10, 'kpiseed_emp3@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(8, 11, 'kpiseed_sup2@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(9, 12, 'kpiseed_emp4@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(10, 13, 'kpiseed_emp5@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(11, 14, 'kpiseed_emp6@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(12, 15, 'kpiseed_sup3@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(13, 16, 'kpiseed_emp7@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(14, 17, 'kpiseed_emp8@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(15, 18, 'kpiseed_emp9@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(16, 19, 'kpiseed_sup4@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(17, 20, 'kpiseed_emp10@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(18, 21, 'kpiseed_emp11@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(19, 22, 'kpiseed_emp12@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(20, 23, 'kpiseed_sup5@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(21, 24, 'kpiseed_emp13@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(22, 25, 'kpiseed_emp14@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(23, 26, 'kpiseed_emp15@example.local', 1, 1, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(44, 6, 'kpiseed_mgr@example.local', 1, 1, '2026-07-21 06:07:11', '2026-07-21 06:07:11'),
(53, 1, 'hossein.fgh@gmail.com', 1, 1, '2026-07-21 07:29:14', '2026-07-21 07:29:14');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_module_layout`
--

DROP TABLE IF EXISTS `sarv_user_module_layout`;
CREATE TABLE `sarv_user_module_layout` (
  `user_id` int(11) NOT NULL,
  `layout_key` varchar(64) NOT NULL,
  `module_name` varchar(100) NOT NULL,
  `tabid` int(19) DEFAULT NULL,
  `is_visible` tinyint(1) NOT NULL DEFAULT 1,
  `position` int(11) NOT NULL DEFAULT 0,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_user_module_layout`
--

INSERT IGNORE INTO `sarv_user_module_layout` (`user_id`, `layout_key`, `module_name`, `tabid`, `is_visible`, `position`, `updated_by`, `updated_at`) VALUES
(6, 'Accounts', 'Accounts', 6, 1, 3, 1, '2026-07-21 06:00:53'),
(6, 'Calendar', 'Calendar', 9, 1, 8, 1, '2026-07-21 06:00:53'),
(6, 'CalendarCal', 'Calendar', 9, 1, 7, 1, '2026-07-21 06:00:53'),
(6, 'Campaigns', 'Campaigns', 26, 1, 27, 1, '2026-07-21 06:00:53'),
(6, 'Communications', 'GooyaCommunications', NULL, 1, 9, 1, '2026-07-21 06:00:53'),
(6, 'Contacts', 'Contacts', 4, 1, 4, 1, '2026-07-21 06:00:53'),
(6, 'Emails', 'Emails', 10, 1, 11, 1, '2026-07-21 06:00:53'),
(6, 'Google', 'Google', 41, 0, 30, 1, '2026-07-21 06:00:53'),
(6, 'GooyaApprovals', 'GooyaApprovals', NULL, 1, 17, 1, '2026-07-21 06:00:53'),
(6, 'GooyaCompetitors', 'GooyaCompetitors', NULL, 1, 21, 1, '2026-07-21 06:00:53'),
(6, 'GooyaDropbox', 'GooyaDropbox', NULL, 0, 19, 1, '2026-07-21 06:00:53'),
(6, 'GooyaGoals', 'GooyaGoals', NULL, 1, 10, 1, '2026-07-21 06:00:53'),
(6, 'GooyaPdfTpl', 'GooyaPdfTpl', NULL, 1, 25, 1, '2026-07-21 06:00:53'),
(6, 'GooyaProductCat', 'GooyaProductCat', NULL, 1, 20, 1, '2026-07-21 06:00:53'),
(6, 'GooyaReports', 'GooyaReports', 50, 1, 28, 1, '2026-07-21 06:00:53'),
(6, 'GooyaTimesheet', 'GooyaTimesheet', NULL, 0, 16, 1, '2026-07-21 06:00:53'),
(6, 'Home', 'Home', 3, 1, 1, 1, '2026-07-21 06:00:53'),
(6, 'Invoice', 'Invoice', 23, 1, 24, 1, '2026-07-21 06:00:53'),
(6, 'KPI', 'KPI', NULL, 1, 18, 1, '2026-07-21 06:00:53'),
(6, 'Leads', 'Leads', 7, 1, 2, 1, '2026-07-21 06:00:53'),
(6, 'Potentials', 'Potentials', 2, 1, 5, 1, '2026-07-21 06:00:53'),
(6, 'Products', 'Products', 14, 1, 31, 1, '2026-07-21 06:00:53'),
(6, 'Project', 'Project', 45, 1, 13, 1, '2026-07-21 06:00:53'),
(6, 'PurchaseOrder', 'PurchaseOrder', 21, 1, 23, 1, '2026-07-21 06:00:53'),
(6, 'Quotes', 'Quotes', 20, 1, 6, 1, '2026-07-21 06:00:53'),
(6, 'SarvDeposits', 'SarvDeposits', 58, 1, 29, 1, '2026-07-21 06:00:53'),
(6, 'SarvPayments', 'SarvPayments', 52, 1, 12, 1, '2026-07-21 06:00:53'),
(6, 'SarvSalesContracts', 'SarvSalesContracts', 55, 1, 26, 1, '2026-07-21 06:00:53'),
(6, 'SarvSurveyResponses', 'SarvSurveyResponses', 54, 1, 32, 1, '2026-07-21 06:00:53'),
(6, 'Services', 'Services', 36, 1, 22, 1, '2026-07-21 06:00:53'),
(6, 'SMSNotifier', 'SMSNotifier', 47, 1, 14, 1, '2026-07-21 06:00:53'),
(6, 'Vendors', 'Vendors', 18, 1, 15, 1, '2026-07-21 06:00:53');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_password_state`
--

DROP TABLE IF EXISTS `sarv_user_password_state`;
CREATE TABLE `sarv_user_password_state` (
  `user_id` int(11) NOT NULL,
  `password_changed_at` datetime NOT NULL,
  `must_change` tinyint(1) NOT NULL DEFAULT 0,
  `modified_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `sarv_user_password_state`
--

INSERT IGNORE INTO `sarv_user_password_state` (`user_id`, `password_changed_at`, `must_change`, `modified_at`) VALUES
(1, '2026-06-24 03:06:52', 0, '2026-07-23 03:46:14'),
(2, '2026-06-22 08:43:41', 0, '2026-07-23 03:46:14'),
(3, '2026-06-22 08:43:41', 0, '2026-07-23 03:46:14'),
(4, '2026-06-22 08:43:41', 0, '2026-07-23 03:46:14'),
(5, '2026-06-23 08:19:35', 0, '2026-07-23 03:46:14'),
(6, '2026-07-21 06:06:20', 0, '2026-07-23 03:46:14'),
(7, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(8, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(9, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(10, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(11, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(12, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(13, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(14, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(15, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(16, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(17, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(18, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(19, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(20, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(21, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(22, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(23, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(24, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(25, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14'),
(26, '2026-06-23 22:41:46', 0, '2026-07-23 03:46:14');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_phones`
--

DROP TABLE IF EXISTS `sarv_user_phones`;
CREATE TABLE `sarv_user_phones` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `phone_type` varchar(20) NOT NULL DEFAULT 'Office',
  `country_code` varchar(8) NOT NULL DEFAULT '+98',
  `phone_number` varchar(50) NOT NULL,
  `is_internal` tinyint(1) NOT NULL DEFAULT 0,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `allow_fax` tinyint(1) NOT NULL DEFAULT 0,
  `allow_sms` tinyint(1) NOT NULL DEFAULT 0,
  `position` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_user_phones`
--

INSERT IGNORE INTO `sarv_user_phones` (`id`, `user_id`, `phone_type`, `country_code`, `phone_number`, `is_internal`, `is_primary`, `allow_fax`, `allow_sms`, `position`, `created_at`, `updated_at`) VALUES
(2, 5, 'Mobile', '+98', '09119220020', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(4, 7, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(5, 8, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(6, 9, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(7, 10, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(8, 11, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(9, 12, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(10, 13, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(11, 14, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(12, 15, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(13, 16, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(14, 17, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(15, 18, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(16, 19, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(17, 20, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(18, 21, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(19, 22, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(20, 23, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(21, 24, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(22, 25, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(23, 26, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 2, '2026-07-21 05:46:30', '2026-07-21 05:46:30'),
(42, 6, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 1, '2026-07-21 06:07:11', '2026-07-21 06:07:11'),
(50, 6, 'Office', '+98', '+98 09119090378', 0, 0, 1, 0, 1, '2026-07-21 07:29:03', '2026-07-21 07:29:03'),
(51, 6, 'Mobile', '+98', '+98 09119090378', 0, 0, 0, 1, 2, '2026-07-21 07:29:03', '2026-07-21 07:29:03'),
(52, 1, 'Mobile', '+98', '09119090378', 0, 1, 0, 1, 1, '2026-07-21 07:29:14', '2026-07-21 07:29:14');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_profile`
--

DROP TABLE IF EXISTS `sarv_user_profile`;
CREATE TABLE `sarv_user_profile` (
  `user_id` int(11) NOT NULL,
  `employee_status` varchar(30) NOT NULL DEFAULT 'Active',
  `job_position` varchar(100) DEFAULT NULL,
  `employment_start_date` date DEFAULT NULL,
  `position_change_date` date DEFAULT NULL,
  `geo_region` varchar(150) DEFAULT NULL,
  `geo_region_id` int(10) UNSIGNED DEFAULT NULL,
  `latitude` decimal(10,7) DEFAULT NULL,
  `longitude` decimal(10,7) DEFAULT NULL,
  `export_charset` varchar(20) NOT NULL DEFAULT 'UTF-8',
  `show_full_name` tinyint(1) NOT NULL DEFAULT 1,
  `name_format` varchar(30) NOT NULL DEFAULT 's f l',
  `notify_assignments` tinyint(1) NOT NULL DEFAULT 1,
  `default_sales_process` varchar(100) NOT NULL DEFAULT 'Default',
  `portal_support_access` tinyint(1) NOT NULL DEFAULT 0,
  `signature_original_name` varchar(255) DEFAULT NULL,
  `signature_stored_name` varchar(255) DEFAULT NULL,
  `signature_mime` varchar(100) DEFAULT NULL,
  `signature_size` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `signature_updated_at` datetime DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_user_profile`
--

INSERT IGNORE INTO `sarv_user_profile` (`user_id`, `employee_status`, `job_position`, `employment_start_date`, `position_change_date`, `geo_region`, `geo_region_id`, `latitude`, `longitude`, `export_charset`, `show_full_name`, `name_format`, `notify_assignments`, `default_sales_process`, `portal_support_access`, `signature_original_name`, `signature_stored_name`, `signature_mime`, `signature_size`, `signature_updated_at`, `updated_by`, `updated_at`) VALUES
(1, 'Active', '', NULL, NULL, '', NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, '', '', '', 0, NULL, 1, '2026-07-21 07:29:14'),
(2, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(3, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(4, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(5, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(6, 'Active', '', NULL, NULL, '', NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, '', '', '', 0, NULL, 1, '2026-07-21 06:07:11'),
(7, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(8, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(9, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(10, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(11, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(12, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(13, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(14, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(15, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(16, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(17, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(18, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(19, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(20, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(21, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(22, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(23, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(24, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(25, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30'),
(26, 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UTF-8', 1, 's f l', 1, 'Default', 0, NULL, NULL, NULL, 0, NULL, 1, '2026-07-21 05:46:30');

-- --------------------------------------------------------

--
-- Table structure for table `sarv_user_profile_audit`
--

DROP TABLE IF EXISTS `sarv_user_profile_audit`;
CREATE TABLE `sarv_user_profile_audit` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `changed_by` int(11) DEFAULT NULL,
  `before_json` longtext DEFAULT NULL,
  `after_json` longtext NOT NULL,
  `changed_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sarv_user_profile_audit`
--

INSERT IGNORE INTO `sarv_user_profile_audit` (`id`, `user_id`, `changed_by`, `before_json`, `after_json`, `changed_at`) VALUES
(1, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 05:52:16'),
(2, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 05:59:19'),
(3, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"logo.png\",\"signature_stored_name\":\"0dbf5cc9551e2e970eebc6231f09cb0b394e259c.png\",\"signature_mime\":\"image\\/png\",\"signature_size\":\"13070\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:00:04'),
(4, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"logo.png\",\"signature_stored_name\":\"0dbf5cc9551e2e970eebc6231f09cb0b394e259c.png\",\"signature_mime\":\"image\\/png\",\"signature_size\":\"13070\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:00:27'),
(5, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:00:53'),
(6, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:01:29'),
(7, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:04:03'),
(8, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:05:31'),
(9, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:06:20'),
(10, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"logo.png\",\"signature_stored_name\":\"f99804f5c03fcfccf123b263cd3919eb0118e9ff.png\",\"signature_mime\":\"image\\/png\",\"signature_size\":\"13070\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:07:09'),
(11, 6, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"logo.png\",\"signature_stored_name\":\"f99804f5c03fcfccf123b263cd3919eb0118e9ff.png\",\"signature_mime\":\"image\\/png\",\"signature_size\":\"13070\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"kpiseed_mgr@example.local\",\"primary\":1}]}', '2026-07-21 06:07:11'),
(12, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:07:58'),
(13, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:23:37'),
(14, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:28:28'),
(15, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:52:20'),
(16, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 06:57:21'),
(17, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 07:00:18'),
(18, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"geo_region_id\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"geo_region_id\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 07:21:01'),
(19, 1, 1, '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"geo_region_id\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '{\"profile\":{\"employee_status\":\"Active\",\"job_position\":\"\",\"employment_start_date\":\"\",\"position_change_date\":\"\",\"geo_region\":\"\",\"geo_region_id\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"export_charset\":\"UTF-8\",\"show_full_name\":\"1\",\"name_format\":\"s f l\",\"notify_assignments\":\"1\",\"default_sales_process\":\"Default\",\"portal_support_access\":\"0\",\"signature_original_name\":\"\",\"signature_stored_name\":\"\",\"signature_mime\":\"\",\"signature_size\":\"0\"},\"phones\":[{\"type\":\"Mobile\",\"country_code\":\"+98\",\"number\":\"09119090378\",\"internal\":0,\"primary\":1,\"fax\":0,\"sms\":1}],\"emails\":[{\"email\":\"hossein.fgh@gmail.com\",\"primary\":1}]}', '2026-07-21 07:29:14');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_access_level`
--

DROP TABLE IF EXISTS `vtiger_access_level`;
CREATE TABLE `vtiger_access_level` (
  `access_levelid` int(11) NOT NULL,
  `access_level` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_access_level`
--

INSERT IGNORE INTO `vtiger_access_level` (`access_levelid`, `access_level`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Read', 1, 464, 1, NULL),
(2, 'Write', 1, 465, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_access_level_seq`
--

DROP TABLE IF EXISTS `vtiger_access_level_seq`;
CREATE TABLE `vtiger_access_level_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_access_level_seq`
--

INSERT IGNORE INTO `vtiger_access_level_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_account`
--

DROP TABLE IF EXISTS `vtiger_account`;
CREATE TABLE `vtiger_account` (
  `accountid` int(19) NOT NULL DEFAULT 0,
  `account_no` varchar(100) NOT NULL,
  `accountname` varchar(100) NOT NULL,
  `parentid` int(19) DEFAULT 0,
  `account_type` varchar(200) DEFAULT NULL,
  `industry` varchar(200) DEFAULT NULL,
  `annualrevenue` decimal(25,8) DEFAULT NULL,
  `rating` varchar(200) DEFAULT NULL,
  `ownership` varchar(50) DEFAULT NULL,
  `siccode` varchar(50) DEFAULT NULL,
  `tickersymbol` varchar(30) DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `otherphone` varchar(30) DEFAULT NULL,
  `email1` varchar(100) DEFAULT NULL,
  `email2` varchar(100) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `fax` varchar(30) DEFAULT NULL,
  `employees` int(10) DEFAULT 0,
  `emailoptout` varchar(3) DEFAULT '0',
  `notify_owner` varchar(3) DEFAULT '0',
  `isconvertedfromlead` varchar(3) DEFAULT '0',
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_account`
--

INSERT IGNORE INTO `vtiger_account` (`accountid`, `account_no`, `accountname`, `parentid`, `account_type`, `industry`, `annualrevenue`, `rating`, `ownership`, `siccode`, `tickersymbol`, `phone`, `otherphone`, `email1`, `email2`, `website`, `fax`, `employees`, `emailoptout`, `notify_owner`, `isconvertedfromlead`, `tags`) VALUES
(20, 'ACC20', 'فرایند سازان ایران فردا (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(21, 'ACC21', 'پیشگامان صنعت داده (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(22, 'ACC22', 'فرایند گستران شرق (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(23, 'ACC23', 'الکترونیک گستر (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(24, 'ACC24', 'اورنگ (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(25, 'ACC25', 'کیان (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2028, 'ACC2028', 'هایتک (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2029, 'ACC2029', 'لیما (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2030, 'ACC2030', 'رایتل (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2031, 'ACC2031', 'سبزیاران (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2032, 'ACC2032', 'طلایه داران (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2033, 'ACC2033', 'شباهنگ (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2034, 'ACC2034', 'آذر مهر (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '+98 910 000 0000', NULL, 'azarmehr@test.com', NULL, 'www.test.com', NULL, 0, '0', '0', '0', NULL),
(2035, 'ACC2035', 'نیروی ماهواره ای کوچک (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2036, 'ACC2036', 'آقای کامران دادجو (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2037, 'ACC2037', 'زامیاد (مثال)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '0', '0', '0', NULL),
(2166, 'ACC3', 'Gouya-LEAD-SMOKE-20260718040406-5955', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2198, 'ACC4', 'Gouya-LEAD-SMOKE-20260718043336-8174', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2206, 'ACC5', 'Gouya-LEAD-SMOKE-20260718043458-8234', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2214, 'ACC6', 'Gouya-LEAD-SMOKE-20260718043554-3440', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2221, 'ACC7', 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]', 2036, NULL, NULL, 0.00000000, NULL, '', '', '', '02100002036', '', 'branch2036@example.test', '', '', '', 0, '0', '0', '0', ''),
(2235, 'ACC8', 'گویا حساب', 0, '', '', 0.00000000, '', '', '', '', '', '', '', '', '', '', 0, '0', '0', '0', NULL),
(2275, 'ACC9', 'SARV-LEAD-SMOKE-20260730063600-5929', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2312, 'ACC10', 'SARV-LEAD-SMOKE-20260809061344-4881', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2320, 'ACC11', 'SARV-LEAD-SMOKE-20260809062044-1209', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2328, 'ACC12', 'SARV-LEAD-SMOKE-20260809062220-7570', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2336, 'ACC13', 'SARV-LEAD-SMOKE-20260809062704-6866', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2344, 'ACC14', 'SARV-LEAD-SMOKE-20260809063037-9459', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', ''),
(2352, 'ACC15', 'SARV-LEAD-SMOKE-20260809063122-8988', 0, '', 'خدماتی', 0.00000000, 'زیاد', '', '', '', '+989129998877', '', 'lead-updated@example.test', '', 'https://example.test', '02166554433', 0, '0', '0', '1', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accountbillads`
--

DROP TABLE IF EXISTS `vtiger_accountbillads`;
CREATE TABLE `vtiger_accountbillads` (
  `accountaddressid` int(19) NOT NULL DEFAULT 0,
  `bill_city` varchar(30) DEFAULT NULL,
  `bill_code` varchar(30) DEFAULT NULL,
  `bill_country` varchar(30) DEFAULT NULL,
  `bill_state` varchar(30) DEFAULT NULL,
  `bill_street` varchar(250) DEFAULT NULL,
  `bill_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_accountbillads`
--

INSERT IGNORE INTO `vtiger_accountbillads` (`accountaddressid`, `bill_city`, `bill_code`, `bill_country`, `bill_state`, `bill_street`, `bill_pobox`) VALUES
(20, 'تهران', NULL, NULL, NULL, NULL, NULL),
(21, 'اصفهان', NULL, NULL, NULL, NULL, NULL),
(22, 'مشهد', NULL, NULL, NULL, NULL, NULL),
(23, 'شیراز', NULL, NULL, NULL, NULL, NULL),
(24, 'تبریز', NULL, NULL, NULL, NULL, NULL),
(25, 'کرج', NULL, NULL, NULL, NULL, NULL),
(2028, 'اهواز', NULL, NULL, NULL, NULL, NULL),
(2029, 'رشت', NULL, NULL, NULL, NULL, NULL),
(2030, 'یزد', NULL, NULL, NULL, NULL, NULL),
(2031, 'قم', NULL, NULL, NULL, NULL, NULL),
(2032, 'کرمان', NULL, NULL, NULL, NULL, NULL),
(2033, 'همدان', NULL, NULL, NULL, NULL, NULL),
(2034, 'تهران', NULL, 'ایران', 'تهران', NULL, NULL),
(2035, 'تهران', NULL, NULL, NULL, NULL, NULL),
(2036, 'اصفهان', NULL, NULL, NULL, NULL, NULL),
(2037, 'مشهد', NULL, NULL, NULL, NULL, NULL),
(2166, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2198, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2206, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2214, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2221, '', '', '', '', '', ''),
(2235, '', '', '', '', '', ''),
(2275, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2312, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2320, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2328, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2336, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2344, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', ''),
(2352, 'تهران', '1111111111', 'ایران', 'تهران', 'آدرس اصلی تست', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accountrating`
--

DROP TABLE IF EXISTS `vtiger_accountrating`;
CREATE TABLE `vtiger_accountrating` (
  `accountratingid` int(19) NOT NULL,
  `rating` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accountscf`
--

DROP TABLE IF EXISTS `vtiger_accountscf`;
CREATE TABLE `vtiger_accountscf` (
  `accountid` int(19) NOT NULL DEFAULT 0,
  `cf_party_type` varchar(200) DEFAULT NULL,
  `cf_customer_code` varchar(100) DEFAULT NULL,
  `cf_first_name` varchar(100) DEFAULT NULL,
  `cf_last_name` varchar(100) DEFAULT NULL,
  `cf_alternate_name` varchar(255) DEFAULT NULL,
  `cf_sub_industry` varchar(200) DEFAULT NULL,
  `cf_portal_visible` varchar(3) DEFAULT NULL,
  `cf_national_code` varchar(20) DEFAULT NULL,
  `cf_identity_no` varchar(50) DEFAULT NULL,
  `cf_birth_date` date DEFAULT NULL,
  `cf_registration_no` varchar(100) DEFAULT NULL,
  `cf_national_id` varchar(20) DEFAULT NULL,
  `cf_economic_code` varchar(30) DEFAULT NULL,
  `cf_registration_date` date DEFAULT NULL,
  `cf_foreign_national` varchar(3) DEFAULT NULL,
  `cf_universal_code` varchar(100) DEFAULT NULL,
  `cf_bill_region` varchar(150) DEFAULT NULL,
  `cf_ship_region` varchar(150) DEFAULT NULL,
  `cf_bill_lat` decimal(10,7) DEFAULT NULL,
  `cf_bill_lng` decimal(10,7) DEFAULT NULL,
  `cf_ship_lat` decimal(10,7) DEFAULT NULL,
  `cf_ship_lng` decimal(10,7) DEFAULT NULL,
  `cf_credit_status` varchar(100) DEFAULT NULL,
  `cf_credit_type` varchar(100) DEFAULT NULL,
  `cf_credit_source` varchar(255) DEFAULT NULL,
  `cf_credit_expiry` date DEFAULT NULL,
  `cf_credit_amount` decimal(25,8) DEFAULT NULL,
  `cf_credit_limit` decimal(25,8) DEFAULT NULL,
  `cf_credit_notes` text DEFAULT NULL,
  `cf_sales_discount` decimal(7,3) DEFAULT NULL,
  `cf_linkedin` varchar(255) DEFAULT NULL,
  `cf_instagram` varchar(255) DEFAULT NULL,
  `cf_facebook` varchar(255) DEFAULT NULL,
  `cf_twitter` varchar(255) DEFAULT NULL,
  `cf_blog` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_accountscf`
--

INSERT IGNORE INTO `vtiger_accountscf` (`accountid`, `cf_party_type`, `cf_customer_code`, `cf_first_name`, `cf_last_name`, `cf_alternate_name`, `cf_sub_industry`, `cf_portal_visible`, `cf_national_code`, `cf_identity_no`, `cf_birth_date`, `cf_registration_no`, `cf_national_id`, `cf_economic_code`, `cf_registration_date`, `cf_foreign_national`, `cf_universal_code`, `cf_bill_region`, `cf_ship_region`, `cf_bill_lat`, `cf_bill_lng`, `cf_ship_lat`, `cf_ship_lng`, `cf_credit_status`, `cf_credit_type`, `cf_credit_source`, `cf_credit_expiry`, `cf_credit_amount`, `cf_credit_limit`, `cf_credit_notes`, `cf_sales_discount`, `cf_linkedin`, `cf_instagram`, `cf_facebook`, `cf_twitter`, `cf_blog`) VALUES
(20, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(21, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(22, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(23, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(24, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(25, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2028, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2029, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2030, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2031, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2032, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2033, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2034, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2035, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2036, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2037, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2166, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2198, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2206, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2214, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2221, NULL, '', '', '', '', '', '0', '', '', NULL, '', '', '', NULL, '0', '', '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000, NULL, NULL, NULL, NULL, 0.00000000, 0.00000000, '', 0.000, '', '', '', '', ''),
(2235, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2275, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2312, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2320, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2328, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2336, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2344, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', ''),
(2352, 'حقوقی', '', 'آزمون', 'یکپارچگی سرنخ', '', '', '1', '', '', NULL, '98765', '10101010101', '411111111111', NULL, '0', '', 'منطقه یک', 'منطقه دو', 35.6900000, 51.3900000, 35.8400000, 50.9400000, '', '', '', NULL, 0.00000000, 0.00000000, '', 0.000, 'https://linkedin.com/company/example', 'https://instagram.com/example', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accountshipads`
--

DROP TABLE IF EXISTS `vtiger_accountshipads`;
CREATE TABLE `vtiger_accountshipads` (
  `accountaddressid` int(19) NOT NULL DEFAULT 0,
  `ship_city` varchar(30) DEFAULT NULL,
  `ship_code` varchar(30) DEFAULT NULL,
  `ship_country` varchar(30) DEFAULT NULL,
  `ship_state` varchar(30) DEFAULT NULL,
  `ship_pobox` varchar(30) DEFAULT NULL,
  `ship_street` varchar(250) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_accountshipads`
--

INSERT IGNORE INTO `vtiger_accountshipads` (`accountaddressid`, `ship_city`, `ship_code`, `ship_country`, `ship_state`, `ship_pobox`, `ship_street`) VALUES
(20, NULL, NULL, NULL, NULL, NULL, NULL),
(21, NULL, NULL, NULL, NULL, NULL, NULL),
(22, NULL, NULL, NULL, NULL, NULL, NULL),
(23, NULL, NULL, NULL, NULL, NULL, NULL),
(24, NULL, NULL, NULL, NULL, NULL, NULL),
(25, NULL, NULL, NULL, NULL, NULL, NULL),
(2028, NULL, NULL, NULL, NULL, NULL, NULL),
(2029, NULL, NULL, NULL, NULL, NULL, NULL),
(2030, NULL, NULL, NULL, NULL, NULL, NULL),
(2031, NULL, NULL, NULL, NULL, NULL, NULL),
(2032, NULL, NULL, NULL, NULL, NULL, NULL),
(2033, NULL, NULL, NULL, NULL, NULL, NULL),
(2034, NULL, NULL, NULL, NULL, NULL, NULL),
(2035, NULL, NULL, NULL, NULL, NULL, NULL),
(2036, NULL, NULL, NULL, NULL, NULL, NULL),
(2037, NULL, NULL, NULL, NULL, NULL, NULL),
(2166, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2198, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2206, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2214, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2221, '', '', '', '', '', ''),
(2235, '', '', '', '', '', ''),
(2275, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2312, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2320, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2328, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2336, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2344, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست'),
(2352, 'کرج', '2222222222', 'ایران', 'البرز', '', 'آدرس دوم تست');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accounttype`
--

DROP TABLE IF EXISTS `vtiger_accounttype`;
CREATE TABLE `vtiger_accounttype` (
  `accounttypeid` int(19) NOT NULL,
  `accounttype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_accounttype`
--

INSERT IGNORE INTO `vtiger_accounttype` (`accounttypeid`, `accounttype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Analyst', 1, 2, 1, NULL),
(3, 'Competitor', 1, 3, 2, NULL),
(4, 'Customer', 1, 4, 3, NULL),
(5, 'Integrator', 1, 5, 4, NULL),
(6, 'Investor', 1, 6, 5, NULL),
(7, 'Partner', 1, 7, 6, NULL),
(8, 'Press', 1, 8, 7, NULL),
(9, 'Prospect', 1, 9, 8, NULL),
(10, 'Reseller', 1, 10, 9, NULL),
(11, 'Other', 1, 11, 10, NULL),
(12, 'حقوقی', 1, 341, 11, NULL),
(13, 'حقیقی', 1, 342, 12, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_accounttype_seq`
--

DROP TABLE IF EXISTS `vtiger_accounttype_seq`;
CREATE TABLE `vtiger_accounttype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_accounttype_seq`
--

INSERT IGNORE INTO `vtiger_accounttype_seq` (`id`) VALUES
(13);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_account_status`
--

DROP TABLE IF EXISTS `vtiger_account_status`;
CREATE TABLE `vtiger_account_status` (
  `account_statusid` int(11) NOT NULL,
  `account_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_account_status`
--

INSERT IGNORE INTO `vtiger_account_status` (`account_statusid`, `account_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Pending', 1, 418, 1, NULL),
(2, 'Verified', 1, 419, 2, NULL),
(3, 'Active', 1, 420, 3, NULL),
(4, 'Inactive', 1, 421, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_account_status_seq`
--

DROP TABLE IF EXISTS `vtiger_account_status_seq`;
CREATE TABLE `vtiger_account_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_account_status_seq`
--

INSERT IGNORE INTO `vtiger_account_status_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_account_type`
--

DROP TABLE IF EXISTS `vtiger_account_type`;
CREATE TABLE `vtiger_account_type` (
  `account_typeid` int(11) NOT NULL,
  `account_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_account_type`
--

INSERT IGNORE INTO `vtiger_account_type` (`account_typeid`, `account_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Current', 1, 414, 1, NULL),
(2, 'Savings', 1, 415, 2, NULL),
(3, 'Card', 1, 416, 3, NULL),
(4, 'Other', 1, 417, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_account_type_seq`
--

DROP TABLE IF EXISTS `vtiger_account_type_seq`;
CREATE TABLE `vtiger_account_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_account_type_seq`
--

INSERT IGNORE INTO `vtiger_account_type_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_actionmapping`
--

DROP TABLE IF EXISTS `vtiger_actionmapping`;
CREATE TABLE `vtiger_actionmapping` (
  `actionid` int(19) NOT NULL,
  `actionname` varchar(200) NOT NULL,
  `securitycheck` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_actionmapping`
--

INSERT IGNORE INTO `vtiger_actionmapping` (`actionid`, `actionname`, `securitycheck`) VALUES
(0, 'Save', 0),
(0, 'SavePriceBook', 1),
(0, 'SaveVendor', 1),
(1, 'DetailViewAjax', 1),
(1, 'EditView', 0),
(1, 'PriceBookEditView', 1),
(1, 'QuickCreate', 1),
(1, 'VendorEditView', 1),
(2, 'Delete', 0),
(2, 'DeletePriceBook', 1),
(2, 'DeleteVendor', 1),
(3, 'index', 0),
(3, 'Popup', 1),
(4, 'DetailView', 0),
(4, 'PriceBookDetailView', 1),
(4, 'TagCloud', 1),
(4, 'VendorDetailView', 1),
(5, 'Import', 0),
(6, 'Export', 0),
(7, 'CreateView', 0),
(8, 'Merge', 0),
(9, 'ConvertLead', 0),
(10, 'DuplicatesHandling', 0),
(11, 'ReceiveIncomingCalls', 0),
(12, 'MakeOutgoingCalls', 0),
(13, 'Print', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity`
--

DROP TABLE IF EXISTS `vtiger_activity`;
CREATE TABLE `vtiger_activity` (
  `activityid` int(19) NOT NULL DEFAULT 0,
  `subject` varchar(255) DEFAULT NULL,
  `semodule` varchar(20) DEFAULT NULL,
  `activitytype` varchar(200) NOT NULL,
  `date_start` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `time_start` varchar(50) DEFAULT NULL,
  `time_end` varchar(50) DEFAULT NULL,
  `sendnotification` varchar(3) NOT NULL DEFAULT '0',
  `duration_hours` varchar(200) DEFAULT NULL,
  `duration_minutes` varchar(200) DEFAULT NULL,
  `status` varchar(200) DEFAULT NULL,
  `eventstatus` varchar(200) DEFAULT NULL,
  `priority` varchar(200) DEFAULT NULL,
  `location` varchar(150) DEFAULT NULL,
  `notime` varchar(3) NOT NULL DEFAULT '0',
  `visibility` varchar(50) NOT NULL DEFAULT 'all',
  `recurringtype` varchar(200) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activity`
--

INSERT IGNORE INTO `vtiger_activity` (`activityid`, `subject`, `semodule`, `activitytype`, `date_start`, `due_date`, `time_start`, `time_end`, `sendnotification`, `duration_hours`, `duration_minutes`, `status`, `eventstatus`, `priority`, `location`, `notime`, `visibility`, `recurringtype`, `tags`) VALUES
(9, 'تست', NULL, 'Task', '2026-07-09', '2026-07-10', '10:23:00', '', '0', '34', '7', 'In Progress', '', '', '', '0', 'Private', '', ''),
(10, 'بیبیب', NULL, 'Task', '2026-06-22', '2026-06-22', '10:36:00', '', '0', '9', '54', 'In Progress', '', '', '', '0', 'Private', '', ''),
(14, 'تماس', NULL, 'Call', '2026-06-29', '2026-06-29', '18:00', '18:15', '0', '0', '15', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(15, 'تماس ساعت ۱۰', NULL, 'Call', '2026-06-29', '2026-06-29', '06:30', '06:45', '0', '0', '15', NULL, 'Not Held', '', '', '0', 'Public', '', ''),
(16, 'تماس آزمایشی مرتبط با سرنخ', NULL, 'Call', '2026-06-30', '2026-06-30', '01:30', '01:45', '0', '0', '15', NULL, 'Not Held', '', '', '0', 'Public', '', ''),
(17, 'جلسهٔ آزمایشی مرتبط', NULL, 'Meeting', '2026-06-30', '2026-06-30', '05:30', '05:45', '0', '0', '15', NULL, 'Planned', '', 'اتاق جلسات شمارهٔ ۲', '0', 'Public', '', ''),
(18, 'جلسه آزمایشی مرتبط با سرنخ', NULL, 'Meeting', '2026-06-30', '2026-06-30', '08:30', '08:45', '0', '0', '15', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(19, 'وظیفه آزمایشی مرتبط با سرنخ', NULL, 'Task', '2026-06-30', '2026-06-30', '09:30', '', '0', '11', '0', 'In Progress', '', 'Medium', '', '0', 'Public', '', ''),
(1035, 'Call نمونه 1', NULL, 'Call', '2026-06-15', '2026-06-15', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1036, 'Call نمونه 2', NULL, 'Call', '2026-06-13', '2026-06-13', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Not Held', NULL, NULL, '0', 'all', NULL, NULL),
(1037, 'Call نمونه 3', NULL, 'Call', '2026-06-21', '2026-06-21', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Planned', NULL, NULL, '0', 'all', NULL, NULL),
(1038, 'Call نمونه 4', NULL, 'Call', '2026-06-01', '2026-06-01', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1039, 'Call نمونه 5', NULL, 'Call', '2026-06-01', '2026-06-01', '10:00:00', '11:00:00', '0', '1', '0', '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1040, 'Call نمونه 6', NULL, 'Call', '2026-06-08', '2026-06-08', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Planned', NULL, NULL, '0', 'all', NULL, NULL),
(1041, 'Call نمونه 7', NULL, 'Call', '2026-06-16', '2026-06-16', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1042, 'Call نمونه 8', NULL, 'Call', '2026-06-11', '2026-06-11', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Not Held', NULL, NULL, '0', 'all', NULL, NULL),
(1043, 'Task نمونه 1', NULL, 'Task', '2026-06-17', '2026-06-17', '10:00:00', '11:00:00', '0', NULL, NULL, 'In Progress', '', NULL, NULL, '0', 'all', NULL, NULL),
(1044, 'Task نمونه 2', NULL, 'Task', '2026-06-17', '2026-06-17', '10:00:00', '11:00:00', '0', NULL, NULL, 'Completed', '', NULL, NULL, '0', 'all', NULL, NULL),
(1045, 'Task نمونه 3', NULL, 'Task', '2026-06-09', '2026-06-09', '10:00:00', '11:00:00', '0', NULL, NULL, 'Deferred', '', NULL, NULL, '0', 'all', NULL, NULL),
(1046, 'Task نمونه 4', NULL, 'Task', '2026-06-06', '2026-06-06', '10:00:00', '11:00:00', '0', NULL, NULL, 'Not Started', '', NULL, NULL, '0', 'all', NULL, NULL),
(1047, 'Task نمونه 5', NULL, 'Task', '2026-06-08', '2026-06-08', '10:00:00', '11:00:00', '0', NULL, NULL, 'In Progress', '', NULL, NULL, '0', 'all', NULL, NULL),
(1048, 'Task نمونه 6', NULL, 'Task', '2026-06-11', '2026-06-11', '10:00:00', '11:00:00', '0', NULL, NULL, 'Completed', '', NULL, NULL, '0', 'all', NULL, NULL),
(1049, 'Task نمونه 7', NULL, 'Task', '2026-06-07', '2026-06-07', '10:00:00', '11:00:00', '0', NULL, NULL, 'Deferred', '', NULL, NULL, '0', 'all', NULL, NULL),
(1050, 'Task نمونه 8', NULL, 'Task', '2026-06-19', '2026-06-19', '10:00:00', '11:00:00', '0', '1', '0', 'Pending Input', '', NULL, NULL, '0', 'all', NULL, NULL),
(1051, 'Meeting نمونه 1', NULL, 'Meeting', '2026-06-14', '2026-06-14', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1052, 'Meeting نمونه 2', NULL, 'Meeting', '2026-06-06', '2026-06-06', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Not Held', NULL, NULL, '0', 'all', NULL, NULL),
(1053, 'Meeting نمونه 3', NULL, 'Meeting', '2026-06-16', '2026-06-16', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Planned', NULL, NULL, '0', 'all', NULL, NULL),
(1054, 'Meeting نمونه 4', NULL, 'Meeting', '2026-06-12', '2026-06-12', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1055, 'Meeting نمونه 5', NULL, 'Meeting', '2026-06-13', '2026-06-13', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Not Held', NULL, NULL, '0', 'all', NULL, NULL),
(1056, 'Meeting نمونه 6', NULL, 'Meeting', '2026-06-05', '2026-06-05', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Planned', NULL, NULL, '0', 'all', NULL, NULL),
(1057, 'Meeting نمونه 7', NULL, 'Meeting', '2026-06-18', '2026-06-18', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Held', NULL, NULL, '0', 'all', NULL, NULL),
(1058, 'Meeting نمونه 8', NULL, 'Meeting', '2026-06-04', '2026-06-04', '10:00:00', '11:00:00', '0', NULL, NULL, '', 'Not Held', NULL, NULL, '0', 'all', NULL, NULL),
(2061, 'تماس پیگیری سرنخ', 'Leads', 'Call', '2026-07-08', '2026-07-08', '10:00', '10:30', '0', '0', '30', NULL, 'Not Held', NULL, NULL, '0', 'Public', NULL, NULL),
(2062, 'جلسه معارفه انجام شده', 'Leads', 'Call', '2026-07-03', '2026-07-03', '10:00', '10:30', '0', '0', NULL, NULL, 'Held', NULL, NULL, '0', 'Public', NULL, NULL),
(2112, 'وظیفه ارسال مستندات (مثال)', NULL, 'Task', '2026-07-13', '2026-07-14', '10:00', '11:00', '0', '25', '0', 'Pending Input', NULL, 'Normal', '', '0', 'Public', NULL, ''),
(2115, 'پیگیری تاییدیه مشتری (مثال)', NULL, 'Task', '2026-07-15', '2026-07-16', '10:00', '11:00', '0', '25', '0', 'Pending Input', NULL, 'Normal', '', '0', 'Public', NULL, ''),
(2132, 'جلسه', NULL, 'Meeting', '2026-07-14', '2026-07-14', '08:30', '08:45', '0', '0', '15', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2133, 'وظیفه', NULL, 'Task', '2026-07-14', '2026-07-14', '12:30', '', '0', '8', '0', 'Not Started', '', 'Medium', '', '0', 'Public', '', ''),
(2134, 'جلسه', NULL, 'Meeting', '2026-07-14', '2026-07-14', '12:30', '12:45', '0', '0', '15', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2160, 'Gouya-LEAD-SMOKE-20260718040333-5938-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2165, 'Gouya-LEAD-SMOKE-20260718040406-5955-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2172, 'Gouya-LEAD-SMOKE-20260718040648-8253-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2178, 'Gouya-LEAD-SMOKE-20260718040939-3209-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2184, 'Gouya-LEAD-SMOKE-20260718043251-9053-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2190, 'Gouya-LEAD-SMOKE-20260718043314-6749-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2196, 'Gouya-LEAD-SMOKE-20260718043336-8174-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2204, 'Gouya-LEAD-SMOKE-20260718043458-8234-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2212, 'Gouya-LEAD-SMOKE-20260718043554-3440-Task', NULL, 'Task', '2026-07-18', '2026-07-18', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2229, 'پیگیری تلفنی پیشنهاد قیمت [GOOYA-TEST]', 'Leads', 'Task', '2026-07-19', '2026-07-19', '09:00:00', '09:30:00', '0', '0', '0', 'In Progress', '', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2230, 'جلسه دمو محصول گویا [GOOYA-TEST]', 'Leads', 'Meeting', '2026-07-21', '2026-07-21', '11:00:00', '12:00:00', '0', '0', '0', '', 'Planned', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2231, 'تماس اولیه معارفه [GOOYA-TEST]', 'Leads', 'Call', '2026-07-16', '2026-07-16', '10:00:00', '10:15:00', '0', '0', '0', '', 'Held', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2258, 'پیگیری مدارک پرسنلی [GOOYA-TEST]', 'Contacts', 'Task', '2026-07-20', '2026-07-20', '10:00:00', '10:30:00', '0', '0', '0', 'In Progress', '', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2259, 'جلسه هماهنگی داخلی [GOOYA-TEST]', 'Contacts', 'Meeting', '2026-07-21', '2026-07-21', '14:00:00', '15:00:00', '0', '0', '0', '', 'Planned', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2260, 'تماس آزمایشی داخلی [GOOYA-TEST]', 'Contacts', 'Call', '2026-07-18', '2026-07-18', '09:00:00', '09:15:00', '0', '0', '0', '', 'Held', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2263, 'پیگیری پیشنهاد فرصت [GOOYA-TEST]', 'Potentials', 'Task', '2026-07-21', '2026-07-21', '10:00:00', '10:30:00', '0', '0', '0', 'In Progress', '', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2264, 'جلسه ارائه پکیج [GOOYA-TEST]', 'Potentials', 'Meeting', '2026-07-22', '2026-07-22', '13:00:00', '14:00:00', '0', '0', '0', '', 'Planned', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2265, 'تماس نیازسنجی [GOOYA-TEST]', 'Potentials', 'Call', '2026-07-19', '2026-07-19', '09:00:00', '09:20:00', '0', '0', '0', '', 'Held', 'Normal', 'دفتر مرکزی', '0', 'Public', NULL, NULL),
(2273, 'SARV-LEAD-SMOKE-20260730063600-5929-Task', NULL, 'Task', '2026-07-30', '2026-07-30', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2290, 'تماس آزمایشی عملی طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-03', '2026-08-03', '07:00', '07:30', '0', '0', '30', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2291, 'تماس نمونه نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-03', '2026-08-03', '07:00', '07:30', '0', '0', '30', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2292, 'تماس نهایی تأییدشده طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-03', '2026-08-03', '07:00', '07:30', '0', '0', '30', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2293, 'تماس عملی نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-03', '2026-08-03', '07:00', '07:30', '0', '0', '30', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2294, 'تماس تست نهایی موفق طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-03', '2026-08-03', '07:00', '07:30', '0', '0', '30', NULL, 'Planned', '', '', '0', 'Public', '', ''),
(2295, 'تماس نهایی تأیید دیتابیس طرح گویا - ۱۴۰۵/۰۵/۱۳', NULL, 'Call', '2026-08-04', '2026-08-04', '07:00', '07:30', '0', '0', '30', NULL, 'Not Held', '', '', '0', 'Public', '', ''),
(2300, 'SARV-LEAD-SMOKE-20260809060946-7013-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2305, 'SARV-LEAD-SMOKE-20260809061248-2728-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2310, 'SARV-LEAD-SMOKE-20260809061344-4881-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2318, 'SARV-LEAD-SMOKE-20260809062044-1209-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2326, 'SARV-LEAD-SMOKE-20260809062220-7570-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2334, 'SARV-LEAD-SMOKE-20260809062704-6866-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2342, 'SARV-LEAD-SMOKE-20260809063037-9459-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2350, 'SARV-LEAD-SMOKE-20260809063122-8988-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, ''),
(2366, 'SARV-LEAD-SMOKE-20260809084321-3905-Task', NULL, 'Task', '2026-08-09', '2026-08-09', '10:00', '', '0', '10', '30', 'Not Started', NULL, 'Medium', '', '0', 'Public', NULL, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activitycf`
--

DROP TABLE IF EXISTS `vtiger_activitycf`;
CREATE TABLE `vtiger_activitycf` (
  `activityid` int(19) NOT NULL DEFAULT 0,
  `sms_remind_user` varchar(60) DEFAULT NULL,
  `sms_remind_invitees` varchar(60) DEFAULT NULL,
  `send_sms_invite` varchar(3) DEFAULT NULL,
  `pbx_system_id` varchar(100) DEFAULT NULL,
  `notify_group` varchar(100) DEFAULT NULL,
  `call_direction` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activitycf`
--

INSERT IGNORE INTO `vtiger_activitycf` (`activityid`, `sms_remind_user`, `sms_remind_invitees`, `send_sms_invite`, `pbx_system_id`, `notify_group`, `call_direction`) VALUES
(9, NULL, NULL, NULL, NULL, NULL, NULL),
(10, NULL, NULL, NULL, NULL, NULL, NULL),
(14, 'بدون', 'بدون', '0', '', NULL, 'خروجی'),
(15, 'بدون', 'بدون', '0', '', NULL, 'خروجی'),
(16, 'بدون', 'بدون', '1', '', NULL, 'خروجی'),
(17, 'بدون', 'بدون', '0', '', NULL, ''),
(18, 'بدون', 'بدون', '1', '', NULL, ''),
(19, 'بدون', NULL, NULL, NULL, '', NULL),
(1039, '', '', '0', '', NULL, ''),
(1050, '', NULL, NULL, NULL, '', NULL),
(2061, '', '', '0', '', NULL, ''),
(2112, NULL, NULL, NULL, NULL, '', NULL),
(2115, NULL, NULL, NULL, NULL, '', NULL),
(2132, 'بدون', 'بدون', '0', '', NULL, ''),
(2133, 'بدون', NULL, NULL, NULL, '', NULL),
(2134, 'بدون', 'بدون', '0', '', NULL, ''),
(2160, NULL, NULL, NULL, NULL, '', NULL),
(2165, NULL, NULL, NULL, NULL, '', NULL),
(2172, NULL, NULL, NULL, NULL, '', NULL),
(2178, NULL, NULL, NULL, NULL, '', NULL),
(2184, NULL, NULL, NULL, NULL, '', NULL),
(2190, NULL, NULL, NULL, NULL, '', NULL),
(2196, NULL, NULL, NULL, NULL, '', NULL),
(2204, NULL, NULL, NULL, NULL, '', NULL),
(2212, NULL, NULL, NULL, NULL, '', NULL),
(2273, NULL, NULL, NULL, NULL, '', NULL),
(2290, 'بدون', 'بدون', '0', 'GOUYA-CALL-TEST-14050513', NULL, 'خروجی'),
(2291, 'بدون', 'بدون', '0', 'GOUYA-CALL-FINAL-14050513', NULL, 'خروجی'),
(2292, 'بدون', 'بدون', '0', 'GOUYA-CALL-VERIFIED-14050513', NULL, 'خروجی'),
(2293, 'بدون', 'بدون', '0', 'GOUYA-CALL-PASS-14050513', NULL, 'خروجی'),
(2294, 'بدون', 'بدون', '0', 'GOUYA-CALL-FINAL-PASS-14050513', NULL, 'خروجی'),
(2295, 'بدون', 'بدون', '0', 'GOUYA-CALL-DB-VERIFIED-14050513', NULL, 'خروجی'),
(2300, NULL, NULL, NULL, NULL, '', NULL),
(2305, NULL, NULL, NULL, NULL, '', NULL),
(2310, NULL, NULL, NULL, NULL, '', NULL),
(2318, NULL, NULL, NULL, NULL, '', NULL),
(2326, NULL, NULL, NULL, NULL, '', NULL),
(2334, NULL, NULL, NULL, NULL, '', NULL),
(2342, NULL, NULL, NULL, NULL, '', NULL),
(2350, NULL, NULL, NULL, NULL, '', NULL),
(2366, NULL, NULL, NULL, NULL, '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activityproductrel`
--

DROP TABLE IF EXISTS `vtiger_activityproductrel`;
CREATE TABLE `vtiger_activityproductrel` (
  `activityid` int(19) NOT NULL DEFAULT 0,
  `productid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activitytype`
--

DROP TABLE IF EXISTS `vtiger_activitytype`;
CREATE TABLE `vtiger_activitytype` (
  `activitytypeid` int(19) NOT NULL,
  `activitytype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activitytype`
--

INSERT IGNORE INTO `vtiger_activitytype` (`activitytypeid`, `activitytype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Call', 0, 12, 0, NULL),
(2, 'Meeting', 0, 13, 1, NULL),
(3, 'Mobile Call', 0, 295, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activitytype_seq`
--

DROP TABLE IF EXISTS `vtiger_activitytype_seq`;
CREATE TABLE `vtiger_activitytype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_activitytype_seq`
--

INSERT IGNORE INTO `vtiger_activitytype_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity_recurring_info`
--

DROP TABLE IF EXISTS `vtiger_activity_recurring_info`;
CREATE TABLE `vtiger_activity_recurring_info` (
  `activityid` int(19) NOT NULL,
  `recurrenceid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity_reminder`
--

DROP TABLE IF EXISTS `vtiger_activity_reminder`;
CREATE TABLE `vtiger_activity_reminder` (
  `activity_id` int(11) NOT NULL,
  `reminder_time` int(11) NOT NULL,
  `reminder_sent` int(2) NOT NULL,
  `recurringid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activity_reminder`
--

INSERT IGNORE INTO `vtiger_activity_reminder` (`activity_id`, `reminder_time`, `reminder_sent`, `recurringid`) VALUES
(9, 0, 0, 0),
(10, 0, 0, 0),
(2290, 900, 0, 0),
(2291, 900, 0, 0),
(2292, 900, 0, 0),
(2293, 900, 0, 0),
(2294, 900, 0, 0),
(2295, 900, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity_reminder_popup`
--

DROP TABLE IF EXISTS `vtiger_activity_reminder_popup`;
CREATE TABLE `vtiger_activity_reminder_popup` (
  `reminderid` int(19) NOT NULL,
  `semodule` varchar(100) NOT NULL,
  `recordid` int(19) NOT NULL,
  `date_start` date NOT NULL,
  `time_start` varchar(100) NOT NULL,
  `status` int(2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activity_reminder_popup`
--

INSERT IGNORE INTO `vtiger_activity_reminder_popup` (`reminderid`, `semodule`, `recordid`, `date_start`, `time_start`, `status`) VALUES
(1, 'Calendar', 9, '2026-07-09', '10:23:00', 1),
(2, 'Calendar', 2112, '2026-07-13', '10:00', 0),
(3, 'Calendar', 2115, '2026-07-15', '10:00', 0),
(4, 'Calendar', 2160, '2026-07-18', '10:00', 0),
(5, 'Calendar', 2165, '2026-07-18', '10:00', 0),
(6, 'Calendar', 2172, '2026-07-18', '10:00', 0),
(7, 'Calendar', 2178, '2026-07-18', '10:00', 0),
(8, 'Calendar', 2184, '2026-07-18', '10:00', 0),
(9, 'Calendar', 2190, '2026-07-18', '10:00', 0),
(10, 'Calendar', 2196, '2026-07-18', '10:00', 0),
(11, 'Calendar', 2204, '2026-07-18', '10:00', 0),
(12, 'Calendar', 2212, '2026-07-18', '10:00', 0),
(13, 'Calendar', 2273, '2026-07-30', '10:00', 0),
(14, 'Events', 2290, '2026-08-03', '07:00', 1),
(15, 'Events', 2291, '2026-08-03', '07:00', 1),
(16, 'Events', 2292, '2026-08-03', '07:00', 1),
(17, 'Events', 2293, '2026-08-03', '07:00', 1),
(18, 'Events', 2295, '2026-08-04', '07:00', 1),
(19, 'Calendar', 2300, '2026-08-09', '10:00', 0),
(20, 'Calendar', 2305, '2026-08-09', '10:00', 0),
(21, 'Calendar', 2310, '2026-08-09', '10:00', 0),
(22, 'Calendar', 2318, '2026-08-09', '10:00', 0),
(23, 'Calendar', 2326, '2026-08-09', '10:00', 0),
(24, 'Calendar', 2334, '2026-08-09', '10:00', 0),
(25, 'Calendar', 2342, '2026-08-09', '10:00', 0),
(26, 'Calendar', 2350, '2026-08-09', '10:00', 0),
(27, 'Calendar', 2354, '2026-08-09', '07:35', 0),
(28, 'Calendar', 2355, '2026-08-09', '07:35', 0),
(29, 'Calendar', 2356, '2026-08-09', '07:35', 0),
(30, 'Calendar', 2357, '2026-08-09', '07:35', 0),
(31, 'Calendar', 2358, '2026-08-09', '07:35', 0),
(32, 'Calendar', 2359, '2026-08-09', '07:35', 0),
(33, 'Calendar', 2366, '2026-08-09', '10:00', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity_view`
--

DROP TABLE IF EXISTS `vtiger_activity_view`;
CREATE TABLE `vtiger_activity_view` (
  `activity_viewid` int(19) NOT NULL,
  `activity_view` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_activity_view`
--

INSERT IGNORE INTO `vtiger_activity_view` (`activity_viewid`, `activity_view`, `sortorderid`, `presence`) VALUES
(1, 'Today', 0, 1),
(2, 'This Week', 1, 1),
(3, 'This Month', 2, 1),
(4, 'This Year', 3, 1),
(5, 'Agenda', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_activity_view_seq`
--

DROP TABLE IF EXISTS `vtiger_activity_view_seq`;
CREATE TABLE `vtiger_activity_view_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_activity_view_seq`
--

INSERT IGNORE INTO `vtiger_activity_view_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_announcement`
--

DROP TABLE IF EXISTS `vtiger_announcement`;
CREATE TABLE `vtiger_announcement` (
  `creatorid` int(19) NOT NULL,
  `announcement` text DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_app2tab`
--

DROP TABLE IF EXISTS `vtiger_app2tab`;
CREATE TABLE `vtiger_app2tab` (
  `tabid` int(11) DEFAULT NULL,
  `appname` varchar(20) DEFAULT NULL,
  `sequence` int(19) DEFAULT NULL,
  `visible` int(3) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_app2tab`
--

INSERT IGNORE INTO `vtiger_app2tab` (`tabid`, `appname`, `sequence`, `visible`) VALUES
(34, 'TOOLS', 5, 1),
(35, 'SUPPORT', 3, 1),
(36, 'INVENTORY', 2, 1),
(40, 'TOOLS', 1, 1),
(46, 'TOOLS', 4, 1),
(49, 'SETTINGS', 1, 1),
(2, 'SALES', 1, 1),
(20, 'SALES', 2, 1),
(4, 'SALES', 6, 1),
(6, 'SALES', 7, 1),
(14, 'SALES', 3, 1),
(36, 'SALES', 4, 1),
(4, 'MARKETING', 3, 1),
(6, 'MARKETING', 4, 1),
(7, 'MARKETING', 2, 1),
(26, 'MARKETING', 1, 1),
(4, 'INVENTORY', 8, 1),
(6, 'INVENTORY', 9, 1),
(22, 'INVENTORY', 5, 1),
(23, 'INVENTORY', 4, 1),
(14, 'INVENTORY', 1, 1),
(18, 'INVENTORY', 7, 1),
(19, 'INVENTORY', 3, 1),
(21, 'INVENTORY', 6, 1),
(4, 'SUPPORT', 6, 1),
(6, 'SUPPORT', 7, 1),
(13, 'SUPPORT', 1, 1),
(15, 'SUPPORT', 2, 1),
(38, 'SUPPORT', 4, 1),
(45, 'PROJECT', 1, 1),
(44, 'PROJECT', 2, 1),
(43, 'PROJECT', 3, 1),
(4, 'PROJECT', 4, 1),
(6, 'PROJECT', 5, 1),
(47, 'SALES', 5, 1),
(47, 'SUPPORT', 5, 1),
(24, 'TOOLS', 2, 1),
(27, 'TOOLS', 3, 1),
(50, 'TOOLS', 6, 1),
(51, 'TOOLS', 7, 1),
(52, 'SALES', 8, 1),
(53, 'SALES', 9, 1),
(54, 'SALES', 10, 1),
(55, 'SALES', 11, 1),
(56, 'SALES', 12, 1),
(57, 'SALES', 13, 1),
(58, 'SALES', 14, 1),
(59, 'SALES', 15, 1),
(60, 'SALES', 16, 1),
(61, 'SALES', 17, 1),
(62, 'SALES', 18, 1),
(63, 'SALES', 19, 1),
(65, 'MARKETING', 5, 1),
(66, 'TOOLS', 8, 1),
(67, 'TOOLS', 9, 1),
(68, 'TOOLS', 10, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_assets`
--

DROP TABLE IF EXISTS `vtiger_assets`;
CREATE TABLE `vtiger_assets` (
  `assetsid` int(11) NOT NULL,
  `asset_no` varchar(30) NOT NULL,
  `account` int(19) DEFAULT NULL,
  `product` int(19) NOT NULL,
  `serialnumber` varchar(200) DEFAULT NULL,
  `datesold` date DEFAULT NULL,
  `dateinservice` date DEFAULT NULL,
  `assetstatus` varchar(200) DEFAULT 'In Service',
  `tagnumber` varchar(300) DEFAULT NULL,
  `invoiceid` int(19) DEFAULT NULL,
  `shippingmethod` varchar(200) DEFAULT NULL,
  `shippingtrackingnumber` varchar(200) DEFAULT NULL,
  `assetname` varchar(100) DEFAULT NULL,
  `contact` int(19) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_assetscf`
--

DROP TABLE IF EXISTS `vtiger_assetscf`;
CREATE TABLE `vtiger_assetscf` (
  `assetsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_assetstatus`
--

DROP TABLE IF EXISTS `vtiger_assetstatus`;
CREATE TABLE `vtiger_assetstatus` (
  `assetstatusid` int(11) NOT NULL,
  `assetstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_assetstatus`
--

INSERT IGNORE INTO `vtiger_assetstatus` (`assetstatusid`, `assetstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'In Service', 1, 235, 1, NULL),
(2, 'Out-of-service', 1, 236, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_assetstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_assetstatus_seq`;
CREATE TABLE `vtiger_assetstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_assetstatus_seq`
--

INSERT IGNORE INTO `vtiger_assetstatus_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_asterisk`
--

DROP TABLE IF EXISTS `vtiger_asterisk`;
CREATE TABLE `vtiger_asterisk` (
  `server` varchar(30) DEFAULT NULL,
  `port` varchar(30) DEFAULT NULL,
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(50) DEFAULT NULL,
  `version` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_asteriskextensions`
--

DROP TABLE IF EXISTS `vtiger_asteriskextensions`;
CREATE TABLE `vtiger_asteriskextensions` (
  `userid` int(11) DEFAULT NULL,
  `asterisk_extension` varchar(50) DEFAULT NULL,
  `use_asterisk` varchar(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_asteriskextensions`
--

INSERT IGNORE INTO `vtiger_asteriskextensions` (`userid`, `asterisk_extension`, `use_asterisk`) VALUES
(1, NULL, NULL),
(5, NULL, NULL),
(6, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_asteriskincomingcalls`
--

DROP TABLE IF EXISTS `vtiger_asteriskincomingcalls`;
CREATE TABLE `vtiger_asteriskincomingcalls` (
  `from_number` varchar(50) DEFAULT NULL,
  `from_name` varchar(50) DEFAULT NULL,
  `to_number` varchar(50) DEFAULT NULL,
  `callertype` varchar(30) DEFAULT NULL,
  `flag` int(19) DEFAULT NULL,
  `timer` int(19) DEFAULT NULL,
  `refuid` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_asteriskincomingevents`
--

DROP TABLE IF EXISTS `vtiger_asteriskincomingevents`;
CREATE TABLE `vtiger_asteriskincomingevents` (
  `uid` varchar(255) NOT NULL,
  `channel` varchar(100) DEFAULT NULL,
  `from_number` bigint(20) DEFAULT NULL,
  `from_name` varchar(100) DEFAULT NULL,
  `to_number` bigint(20) DEFAULT NULL,
  `callertype` varchar(100) DEFAULT NULL,
  `timer` int(20) DEFAULT NULL,
  `flag` varchar(3) DEFAULT NULL,
  `pbxrecordid` int(19) DEFAULT NULL,
  `relcrmid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_attachments`
--

DROP TABLE IF EXISTS `vtiger_attachments`;
CREATE TABLE `vtiger_attachments` (
  `attachmentsid` int(19) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `path` text DEFAULT NULL,
  `storedname` varchar(255) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_attachments`
--

INSERT IGNORE INTO `vtiger_attachments` (`attachmentsid`, `name`, `description`, `type`, `path`, `storedname`, `subject`) VALUES
(13, 'logo_psd_JUICE2.jpg', '', 'image/jpeg', 'storage/2026/June/week4/', 'ba2722f16b39f4aff128ddd06e7a47ab.jpg', NULL),
(2159, 'Gouya-LEAD-SMOKE-20260718040333-5938.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '714dfd1ce2f004a036eda7f339984fdc.txt', NULL),
(2164, 'Gouya-LEAD-SMOKE-20260718040406-5955.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '2cc65fcc3adb93089f6019304874e228.txt', NULL),
(2171, 'Gouya-LEAD-SMOKE-20260718040648-8253.txt', NULL, 'text/plain', 'storage/2026/July/week3/', 'c071cceaca1943e5606fefa4eecb66fc.txt', NULL),
(2177, 'Gouya-LEAD-SMOKE-20260718040939-3209.txt', NULL, 'text/plain', 'storage/2026/July/week3/', 'e8378acaff6cb66116e301d079f64a39.txt', NULL),
(2183, 'Gouya-LEAD-SMOKE-20260718043251-9053.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '6dc49a2671972619c3af5d9b8ef4334b.txt', NULL),
(2189, 'Gouya-LEAD-SMOKE-20260718043314-6749.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '28fa5f8e7c2a71b89d838430bf8e396e.txt', NULL),
(2195, 'Gouya-LEAD-SMOKE-20260718043336-8174.txt', NULL, 'text/plain', 'storage/2026/July/week3/', 'f636749fd261dfd622f09df2dd9ed743.txt', NULL),
(2203, 'Gouya-LEAD-SMOKE-20260718043458-8234.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '5045631230ef189e04c6d5292ff4f642.txt', NULL),
(2211, 'Gouya-LEAD-SMOKE-20260718043554-3440.txt', NULL, 'text/plain', 'storage/2026/July/week3/', '9ecde9732833b4f938e12c129b20800b.txt', NULL),
(2278, 'quote-sample-attachment.txt', 'SARV_TYPE:Invoice', 'text/plain', 'storage/2026/July/week5/', NULL, NULL),
(2299, 'SARV-LEAD-SMOKE-20260809060946-7013.txt', NULL, 'text/plain', 'storage/2026/August/week2/', '721650ffa1d570fb456f1ec8b9f20229.txt', NULL),
(2304, 'SARV-LEAD-SMOKE-20260809061248-2728.txt', NULL, 'text/plain', 'storage/2026/August/week2/', 'f2dafc89500fc0b85d0a3e4d09591b69.txt', NULL),
(2309, 'SARV-LEAD-SMOKE-20260809061344-4881.txt', NULL, 'text/plain', 'storage/2026/August/week2/', '1b5eaa0955f99c0bcddb215724066d91.txt', NULL),
(2317, 'SARV-LEAD-SMOKE-20260809062044-1209.txt', NULL, 'text/plain', 'storage/2026/August/week2/', 'b30ac274fde443f8f3c57ae724cfd5a1.txt', NULL),
(2325, 'SARV-LEAD-SMOKE-20260809062220-7570.txt', NULL, 'text/plain', 'storage/2026/August/week2/', '80985599cfe0cf851d00310e87390b1c.txt', NULL),
(2333, 'SARV-LEAD-SMOKE-20260809062704-6866.txt', NULL, 'text/plain', 'storage/2026/August/week2/', 'f04378bf3587eefd548fcb930a74df94.txt', NULL),
(2341, 'SARV-LEAD-SMOKE-20260809063037-9459.txt', NULL, 'text/plain', 'storage/2026/August/week2/', '9c900a2d461e424a20a45c4a333979f4.txt', NULL),
(2349, 'SARV-LEAD-SMOKE-20260809063122-8988.txt', NULL, 'text/plain', 'storage/2026/August/week2/', '2ac3abbf8e8fac445c318f6c3fb5305f.txt', NULL),
(2550, 'gooyachat-archive-1-20260811-075923.zip', 'gooyachat-archive-1-20260811-075923.zip', 'application/zip', 'storage/2026/August/week2/', '3cd0ef7646041e8a8451652b15e6e29c.zip', NULL),
(2560, 'gooyachat-archive-7-20260811-082641.zip', 'gooyachat-archive-7-20260811-082641.zip', 'application/zip', 'storage/2026/August/week2/', '775a3ad6df6cda817c96b34473a506ea.zip', NULL),
(2561, 'gooyachat-archive-8-20260811-082643.zip', 'gooyachat-archive-8-20260811-082643.zip', 'application/zip', 'storage/2026/August/week2/', '40510db1ce29d0d0e870525fabfc56d7.zip', NULL),
(2566, 'gooyachat-archive-9-20260811-082707.zip', 'gooyachat-archive-9-20260811-082707.zip', 'application/zip', 'storage/2026/August/week2/', '32d54d3f58339212fbc9a4c7ec6676b7.zip', NULL),
(2567, 'gooyachat-archive-10-20260811-082708.zip', 'gooyachat-archive-10-20260811-082708.zip', 'application/zip', 'storage/2026/August/week2/', 'e6673b7a5963551be1976d02af40beea.zip', NULL),
(2569, 'voice-1786437748206.webm', 'voice-1786437748206.webm', 'video/webm', 'storage/2026/August/week2/', '60dd4832fc2ff9ef5395c1cadb392e19.webm', NULL),
(2581, 'gooyanegar-recovery-1.zip', 'gooyanegar-recovery-1.zip', 'application/zip', 'storage/2026/August/week2/', '495e464e3faca9ac6d545254d879189b.zip', NULL),
(2588, 'gooyanegar-recovery-2.zip', 'gooyanegar-recovery-2.zip', 'application/zip', 'storage/2026/August/week2/', '218a30ed75edb36ef7403c421fd4d122.zip', NULL),
(2589, 'gooyanegar-recovery-3.zip', 'gooyanegar-recovery-3.zip', 'application/zip', 'storage/2026/August/week2/', 'f69c63893b9d8fe7c4132106518cabeb.zip', NULL),
(2592, 'gooyanegar-recovery-5.zip', 'gooyanegar-recovery-5.zip', 'application/zip', 'storage/2026/August/week2/', '4a45200291ce1ffea8e3a2fc955ced8a.zip', NULL),
(2593, 'gooyanegar-recovery-6.zip', 'gooyanegar-recovery-6.zip', 'application/zip', 'storage/2026/August/week2/', '689a6a01e6a3e50f0db04b47470342d0.zip', NULL),
(2623, 'gooyanegar-recovery-8.zip', 'gooyanegar-recovery-8.zip', 'application/zip', 'storage/2026/August/week2/', '1fb841e6739c014abddf7b9bb13e228c.zip', NULL),
(2626, 'gooyanegar-recovery-9.zip', 'gooyanegar-recovery-9.zip', 'application/zip', 'storage/2026/August/week2/', '0dd7557ab00ba95510c5b1a4a211acbb.zip', NULL),
(2627, 'gooyanegar-recovery-10.zip', 'gooyanegar-recovery-10.zip', 'application/zip', 'storage/2026/August/week2/', '8556d178863aec9d8ce47aaf94916454.zip', NULL),
(2636, 'gooyanegar-recovery-12.zip', 'gooyanegar-recovery-12.zip', 'application/zip', 'storage/2026/August/week2/', '17e3cd78b7377cdae65b48db51f4c5af.zip', NULL),
(2637, 'gooyanegar-recovery-13.zip', 'gooyanegar-recovery-13.zip', 'application/zip', 'storage/2026/August/week2/', '7b88bd0a9498031e3500d286d1ccdfde.zip', NULL),
(2642, 'gooyanegar-recovery-15.zip', 'gooyanegar-recovery-15.zip', 'application/zip', 'storage/2026/August/week2/', '67ac28278536d4a64ada3d4d68cb0956.zip', NULL),
(2643, 'gooyanegar-recovery-16.zip', 'gooyanegar-recovery-16.zip', 'application/zip', 'storage/2026/August/week2/', '1a97a80e1056682ed5d0fe7df23501a2.zip', NULL),
(2644, 'gooyanegar-recovery-17.zip', 'gooyanegar-recovery-17.zip', 'application/zip', 'storage/2026/August/week2/', 'eff12bf91916cf36a112664469f0fade.zip', NULL),
(2645, 'gooyanegar-recovery-18.zip', 'gooyanegar-recovery-18.zip', 'application/zip', 'storage/2026/August/week2/', '41057c661dc4520ef17ba666574c49f8.zip', NULL),
(2659, 'gooyanegar-recovery-20.zip', 'gooyanegar-recovery-20.zip', 'application/zip', 'storage/2026/August/week2/', 'eccb00e4a9f0f3e98b9a2c3d6abadf41.zip', NULL),
(2664, 'gooyanegar-recovery-21.zip', 'gooyanegar-recovery-21.zip', 'application/zip', 'storage/2026/August/week2/', 'de3d66ba8f872d011e9b66f54bbc82dc.zip', NULL),
(2665, 'gooyanegar-recovery-22.zip', 'gooyanegar-recovery-22.zip', 'application/zip', 'storage/2026/August/week2/', '1b347b43336fc0b0ac8e6116627616a7.zip', NULL),
(2666, 'gooyanegar-recovery-23.zip', 'gooyanegar-recovery-23.zip', 'application/zip', 'storage/2026/August/week2/', '725c1b6f6872f4f421da09630305a661.zip', NULL),
(2667, 'gooyanegar-recovery-24.zip', 'gooyanegar-recovery-24.zip', 'application/zip', 'storage/2026/August/week2/', 'dae4ce93065fb9bc95596e0bc9e8213c.zip', NULL),
(2689, 'gooyanegar-recovery-26.zip', 'gooyanegar-recovery-26.zip', 'application/zip', 'storage/2026/August/week3/', '7b498128602ff11cff3febb1b43fb4c6.zip', NULL),
(2694, 'gooyanegar-recovery-27.zip', 'gooyanegar-recovery-27.zip', 'application/zip', 'storage/2026/August/week3/', 'b9cefa00f56ab9f26569319a6ef2b7bd.zip', NULL),
(2695, 'gooyanegar-recovery-28.zip', 'gooyanegar-recovery-28.zip', 'application/zip', 'storage/2026/August/week3/', '825430e53d179fbe2ca3f37b044905f1.zip', NULL),
(2696, 'gooyanegar-recovery-29.zip', 'gooyanegar-recovery-29.zip', 'application/zip', 'storage/2026/August/week3/', '3c5f83021eebd20f9313ee03665ad151.zip', NULL),
(2697, 'gooyanegar-recovery-30.zip', 'gooyanegar-recovery-30.zip', 'application/zip', 'storage/2026/August/week3/', '6649f54a91a9b83a5b5346a4a8aa48be.zip', NULL),
(2699, 'signature-u6-20260815072724.png', 'نسخه امضای شخصی گویانگار', 'image/png', 'storage/2026/August/week3/', '59863574e042e5afed2b3f851fe18b4b.png', NULL),
(2700, 'official-GNT-1405-000001.pdf', 'PDF رسمی و تغییرناپذیر گویانگار', 'application/pdf', 'storage/2026/August/week3/', 'df5927bc859646f47d815222aa8f022d.pdf', NULL),
(2701, 'registry-GNT-1405-000001.pdf', 'PDF رسمی و تغییرناپذیر گویانگار', 'application/pdf', 'storage/2026/August/week3/', '89dd3b7bb3e28013add5f2fb55e3e8c6.pdf', NULL),
(2702, 'official-GNT-1405-000002.pdf', 'PDF رسمی و تغییرناپذیر گویانگار', 'application/pdf', 'storage/2026/August/week3/', 'ff5096539a6a2692c9f7181643b8c0d2.pdf', NULL),
(2703, 'registry-GNT-1405-000002.pdf', 'PDF رسمی و تغییرناپذیر گویانگار', 'application/pdf', 'storage/2026/August/week3/', '3741e7a7a07dd82706d1fb68f5ef9c7c.pdf', NULL),
(2704, 'پیوست-آزمایشی-گویانگار.txt', 'پیوست-آزمایشی-گویانگار.txt', 'text/plain', 'storage/2026/August/week3/', 'cb3237b3d783f206fba33c4e7e00d2b8.txt', NULL),
(2714, 'voice-1786962651679.webm', 'voice-1786962651679.webm', 'video/webm', 'storage/2026/August/week3/', '764cd3bd2332a9b0de9b0e5dba618215.webm', NULL),
(2715, 'Book1_(2).pdf', 'Book1 (2).pdf', 'application/pdf', 'storage/2026/August/week3/', 'eaabe30dce4e30be216335fd9dee5632.pdf', NULL),
(2716, 'signature-u1-20260817103937.png', 'نسخه امضای شخصی گویانگار', 'image/png', 'storage/2026/August/week3/', 'a328d932718f14fd6742d1a68122279d.png', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_attachmentsfolder`
--

DROP TABLE IF EXISTS `vtiger_attachmentsfolder`;
CREATE TABLE `vtiger_attachmentsfolder` (
  `folderid` int(19) NOT NULL,
  `foldername` varchar(200) NOT NULL,
  `description` varchar(250) DEFAULT NULL,
  `createdby` int(19) NOT NULL,
  `sequence` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_attachmentsfolder`
--

INSERT IGNORE INTO `vtiger_attachmentsfolder` (`folderid`, `foldername`, `description`, `createdby`, `sequence`) VALUES
(1, 'Default', 'This is a Default Folder', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_attachmentsfolder_seq`
--

DROP TABLE IF EXISTS `vtiger_attachmentsfolder_seq`;
CREATE TABLE `vtiger_attachmentsfolder_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_attachmentsfolder_seq`
--

INSERT IGNORE INTO `vtiger_attachmentsfolder_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_audit_trial`
--

DROP TABLE IF EXISTS `vtiger_audit_trial`;
CREATE TABLE `vtiger_audit_trial` (
  `auditid` int(19) NOT NULL,
  `userid` int(19) DEFAULT NULL,
  `module` varchar(255) DEFAULT NULL,
  `action` varchar(255) DEFAULT NULL,
  `recordid` varchar(20) DEFAULT NULL,
  `actiondate` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_blocks`
--

DROP TABLE IF EXISTS `vtiger_blocks`;
CREATE TABLE `vtiger_blocks` (
  `blockid` int(19) NOT NULL,
  `tabid` int(19) NOT NULL,
  `blocklabel` varchar(100) NOT NULL,
  `sequence` int(10) DEFAULT NULL,
  `show_title` int(2) DEFAULT NULL,
  `visible` int(2) NOT NULL DEFAULT 0,
  `create_view` int(2) NOT NULL DEFAULT 0,
  `edit_view` int(2) NOT NULL DEFAULT 0,
  `detail_view` int(2) NOT NULL DEFAULT 0,
  `display_status` int(1) NOT NULL DEFAULT 1,
  `iscustom` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_blocks`
--

INSERT IGNORE INTO `vtiger_blocks` (`blockid`, `tabid`, `blocklabel`, `sequence`, `show_title`, `visible`, `create_view`, `edit_view`, `detail_view`, `display_status`, `iscustom`) VALUES
(1, 2, 'LBL_OPPORTUNITY_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(2, 2, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(3, 2, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(4, 4, 'LBL_CONTACT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(5, 4, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(6, 4, 'LBL_CUSTOMER_PORTAL_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(7, 4, 'LBL_ADDRESS_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(8, 4, 'LBL_DESCRIPTION_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(9, 6, 'LBL_ACCOUNT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(10, 6, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(11, 6, 'LBL_ADDRESS_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(12, 6, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(13, 7, 'LBL_LEAD_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(14, 7, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(15, 7, 'LBL_ADDRESS_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(16, 7, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(17, 8, 'LBL_NOTE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(18, 8, 'LBL_FILE_INFORMATION', 3, 1, 0, 0, 0, 0, 1, 0),
(19, 9, 'LBL_TASK_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(20, 9, 'LBL_DESCRIPTION_INFORMATION', 3, 1, 0, 0, 0, 0, 1, 0),
(21, 10, 'LBL_EMAIL_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(22, 10, 'Emails_Block1', 2, 1, 0, 0, 0, 0, 1, 0),
(23, 10, 'Emails_Block2', 3, 1, 0, 0, 0, 0, 1, 0),
(24, 10, 'Emails_Block3', 4, 1, 0, 0, 0, 0, 1, 0),
(25, 13, 'LBL_TICKET_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(26, 13, '', 2, 1, 0, 0, 0, 0, 1, 0),
(27, 13, 'LBL_CUSTOM_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(28, 13, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(29, 13, 'LBL_TICKET_RESOLUTION', 5, 0, 0, 1, 0, 0, 1, 0),
(30, 13, 'LBL_COMMENTS', 6, 0, 0, 1, 0, 0, 1, 0),
(31, 14, 'LBL_PRODUCT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(32, 14, 'LBL_PRICING_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(33, 14, 'LBL_STOCK_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(34, 14, 'LBL_CUSTOM_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(35, 14, 'LBL_IMAGE_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(36, 14, 'LBL_DESCRIPTION_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(37, 15, 'LBL_FAQ_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(38, 15, 'LBL_COMMENT_INFORMATION', 4, 0, 0, 1, 0, 0, 1, 0),
(39, 16, 'LBL_EVENT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(40, 16, 'LBL_REMINDER_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(41, 16, 'LBL_DESCRIPTION_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(42, 18, 'LBL_VENDOR_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(43, 18, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(44, 18, 'LBL_VENDOR_ADDRESS_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(45, 18, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(46, 19, 'LBL_PRICEBOOK_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(47, 19, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(48, 19, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(49, 20, 'LBL_QUOTE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(50, 20, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(51, 20, 'LBL_ADDRESS_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(52, 20, 'LBL_RELATED_PRODUCTS', 4, 0, 0, 0, 0, 0, 1, 0),
(53, 20, 'LBL_TERMS_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(54, 20, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(55, 21, 'LBL_PO_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(56, 21, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(57, 21, 'LBL_ADDRESS_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(58, 21, 'LBL_RELATED_PRODUCTS', 4, 0, 0, 0, 0, 0, 1, 0),
(59, 21, 'LBL_TERMS_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(60, 21, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(61, 22, 'LBL_SO_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(62, 22, 'LBL_CUSTOM_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(63, 22, 'LBL_ADDRESS_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(64, 22, 'LBL_RELATED_PRODUCTS', 5, 0, 0, 0, 0, 0, 1, 0),
(65, 22, 'LBL_TERMS_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(66, 22, 'LBL_DESCRIPTION_INFORMATION', 7, 0, 0, 0, 0, 0, 1, 0),
(67, 23, 'LBL_INVOICE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(68, 23, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(69, 23, 'LBL_ADDRESS_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(70, 23, 'LBL_RELATED_PRODUCTS', 4, 0, 0, 0, 0, 0, 1, 0),
(71, 23, 'LBL_TERMS_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(72, 23, 'LBL_DESCRIPTION_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(73, 4, 'LBL_IMAGE_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(74, 26, 'LBL_CAMPAIGN_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(75, 26, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(76, 26, 'LBL_EXPECTATIONS_AND_ACTUALS', 3, 0, 0, 0, 0, 0, 1, 0),
(77, 29, 'LBL_USERLOGIN_ROLE', 1, 0, 0, 0, 0, 0, 1, 0),
(78, 29, 'LBL_CURRENCY_CONFIGURATION', 3, 0, 0, 0, 0, 0, 1, 0),
(79, 29, 'LBL_MORE_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(80, 29, 'LBL_ADDRESS_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(81, 26, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(82, 29, 'LBL_USER_IMAGE_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(83, 29, 'LBL_USER_ADV_OPTIONS', 6, 0, 0, 0, 0, 0, 1, 0),
(84, 8, 'LBL_DESCRIPTION', 2, 0, 0, 0, 0, 0, 1, 0),
(85, 22, 'Recurring Invoice Information', 2, 0, 0, 0, 0, 0, 1, 0),
(86, 9, 'LBL_CUSTOM_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(87, 16, 'LBL_CUSTOM_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 0),
(88, 34, 'LBL_PBXMANAGER_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(89, 35, 'LBL_SERVICE_CONTRACT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(90, 35, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(91, 36, 'LBL_SERVICE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(92, 36, 'LBL_PRICING_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(93, 36, 'LBL_CUSTOM_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(94, 36, 'LBL_DESCRIPTION_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(95, 38, 'LBL_ASSET_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(96, 38, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(97, 38, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(98, 42, 'LBL_MODCOMMENTS_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(99, 42, 'LBL_OTHER_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(100, 42, 'LBL_CUSTOM_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(101, 43, 'LBL_PROJECT_MILESTONE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(102, 43, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(103, 43, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(104, 44, 'LBL_PROJECT_TASK_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(105, 44, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(106, 44, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(107, 45, 'LBL_PROJECT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(108, 45, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(109, 45, 'LBL_DESCRIPTION_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(110, 47, 'LBL_SMSNOTIFIER_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(111, 47, 'LBL_CUSTOM_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(112, 47, 'StatusInformation', 3, 0, 0, 0, 0, 0, 1, 0),
(113, 23, 'LBL_ITEM_DETAILS', 5, 0, 0, 0, 0, 0, 1, 0),
(114, 22, 'LBL_ITEM_DETAILS', 5, 0, 0, 0, 0, 0, 1, 0),
(115, 21, 'LBL_ITEM_DETAILS', 5, 0, 0, 0, 0, 0, 1, 0),
(116, 20, 'LBL_ITEM_DETAILS', 5, 0, 0, 0, 0, 0, 1, 0),
(117, 16, 'LBL_RECURRENCE_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(118, 29, 'LBL_CALENDAR_SETTINGS', 2, 0, 0, 0, 0, 0, 1, 0),
(119, 16, 'LBL_RELATED_TO', 4, 0, 0, 0, 0, 0, 1, 0),
(120, 9, 'LBL_REMINDER_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(122, 6, 'LBL_MORE_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 1),
(123, 6, 'LBL_CREDIT_INFORMATION', 6, 0, 0, 0, 0, 0, 1, 1),
(124, 6, 'LBL_SOCIAL_INFORMATION', 7, 0, 0, 0, 0, 0, 1, 1),
(125, 52, 'LBL_SARV_PAYMENT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(126, 52, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(127, 53, 'LBL_SARV_PARTICIPATION_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(128, 53, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(129, 54, 'LBL_SARV_SURVEY_RESPONSE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(130, 54, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(131, 55, 'LBL_SARV_SALES_CONTRACT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(132, 55, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(133, 7, 'LBL_SARV_MORE_INFORMATION', 3, 0, 0, 0, 0, 0, 1, 0),
(134, 7, 'LBL_SARV_ADDRESS_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0),
(135, 7, 'LBL_SOCIAL_INFORMATION', 5, 0, 0, 0, 0, 0, 1, 0),
(136, 56, 'LBL_SARV_TARGET_LIST_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(137, 56, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(138, 57, 'LBL_SARV_BANK_ACCOUNT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(139, 57, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(140, 58, 'LBL_SARV_DEPOSIT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(141, 58, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(142, 59, 'LBL_SARV_BUSINESS_LOCATION_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(143, 59, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(144, 60, 'LBL_SARV_TIME_RESERVATION_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(145, 60, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(146, 61, 'LBL_SARV_GIFT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(147, 61, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(148, 62, 'LBL_SARV_PRODUCT_SAMPLE_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(149, 62, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(150, 63, 'LBL_ACCESS_GRANT_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(151, 63, 'LBL_DESCRIPTION_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(152, 4, 'LBL_SOCIAL_INFORMATION', 7, 0, 0, 0, 0, 0, 1, 1),
(153, 21, 'LBL_SARV_PO_MORE_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(154, 20, 'LBL_SARV_QUOTE_VALIDATION', 6, 0, 0, 0, 0, 0, 1, 0),
(155, 65, 'LBL_COMMUNICATION_INFORMATION', 1, 0, 0, 0, 0, 0, 1, 0),
(156, 65, 'LBL_SEND_INFORMATION', 2, 0, 0, 0, 0, 0, 1, 0),
(157, 2, 'LBL_GOOYA_OPPORTUNITY_MORE_INFORMATION', 4, 0, 0, 0, 0, 0, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_blocks_seq`
--

DROP TABLE IF EXISTS `vtiger_blocks_seq`;
CREATE TABLE `vtiger_blocks_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_blocks_seq`
--

INSERT IGNORE INTO `vtiger_blocks_seq` (`id`) VALUES
(157);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendarsharedtype`
--

DROP TABLE IF EXISTS `vtiger_calendarsharedtype`;
CREATE TABLE `vtiger_calendarsharedtype` (
  `calendarsharedtypeid` int(11) NOT NULL,
  `calendarsharedtype` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_calendarsharedtype`
--

INSERT IGNORE INTO `vtiger_calendarsharedtype` (`calendarsharedtypeid`, `calendarsharedtype`, `sortorderid`, `presence`) VALUES
(1, 'public', 0, 1),
(2, 'private', 1, 1),
(3, 'seletedusers', 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendarsharedtype_seq`
--

DROP TABLE IF EXISTS `vtiger_calendarsharedtype_seq`;
CREATE TABLE `vtiger_calendarsharedtype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_calendarsharedtype_seq`
--

INSERT IGNORE INTO `vtiger_calendarsharedtype_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendar_default_activitytypes`
--

DROP TABLE IF EXISTS `vtiger_calendar_default_activitytypes`;
CREATE TABLE `vtiger_calendar_default_activitytypes` (
  `id` int(19) NOT NULL,
  `module` varchar(50) DEFAULT NULL,
  `fieldname` varchar(50) DEFAULT NULL,
  `defaultcolor` varchar(50) DEFAULT NULL,
  `isdefault` int(11) DEFAULT 1,
  `conditions` varchar(255) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_calendar_default_activitytypes`
--

INSERT IGNORE INTO `vtiger_calendar_default_activitytypes` (`id`, `module`, `fieldname`, `defaultcolor`, `isdefault`, `conditions`) VALUES
(1, 'Events', '[\"date_start\",\"due_date\"]', '#17309A', 1, ''),
(2, 'Calendar', '[\"date_start\",\"due_date\"]', '#3A87AD', 1, ''),
(3, 'Potentials', '[\"closingdate\"]', '#AA6705', 1, ''),
(4, 'Contacts', '[\"support_end_date\"]', '#953B39', 1, ''),
(5, 'Contacts', '[\"birthday\"]', '#545252', 1, ''),
(6, 'Invoice', '[\"duedate\"]', '#87865D', 1, ''),
(7, 'Project', '[\"startdate\",\"targetenddate\"]', '#C71585', 1, ''),
(8, 'ProjectTask', '[\"startdate\",\"enddate\"]', '#006400', 1, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendar_default_activitytypes_seq`
--

DROP TABLE IF EXISTS `vtiger_calendar_default_activitytypes_seq`;
CREATE TABLE `vtiger_calendar_default_activitytypes_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_calendar_default_activitytypes_seq`
--

INSERT IGNORE INTO `vtiger_calendar_default_activitytypes_seq` (`id`) VALUES
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendar_user_activitytypes`
--

DROP TABLE IF EXISTS `vtiger_calendar_user_activitytypes`;
CREATE TABLE `vtiger_calendar_user_activitytypes` (
  `id` int(19) NOT NULL,
  `defaultid` int(19) DEFAULT NULL,
  `userid` int(19) DEFAULT NULL,
  `color` varchar(50) DEFAULT NULL,
  `visible` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_calendar_user_activitytypes`
--

INSERT IGNORE INTO `vtiger_calendar_user_activitytypes` (`id`, `defaultid`, `userid`, `color`, `visible`) VALUES
(1, 1, 1, '#17309A', 1),
(2, 2, 1, '#54b2de', 1),
(3, 3, 1, '#AA6705', 1),
(4, 4, 1, '#953B39', 1),
(5, 5, 1, '#545252', 1),
(6, 6, 1, '#87865D', 1),
(7, 7, 1, '#C71585', 1),
(8, 8, 1, '#006400', 1),
(9, 1, 5, '#17309A', 1),
(10, 2, 5, '#3A87AD', 1),
(11, 3, 5, '#AA6705', 1),
(12, 4, 5, '#953B39', 1),
(13, 5, 5, '#545252', 1),
(14, 6, 5, '#87865D', 1),
(15, 7, 5, '#C71585', 1),
(16, 8, 5, '#006400', 1),
(17, 1, 6, '#17309A', 1),
(18, 2, 6, '#3A87AD', 1),
(19, 3, 6, '#AA6705', 1),
(20, 4, 6, '#953B39', 1),
(21, 5, 6, '#545252', 1),
(22, 6, 6, '#87865D', 1),
(23, 7, 6, '#C71585', 1),
(24, 8, 6, '#006400', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_calendar_user_activitytypes_seq`
--

DROP TABLE IF EXISTS `vtiger_calendar_user_activitytypes_seq`;
CREATE TABLE `vtiger_calendar_user_activitytypes_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_calendar_user_activitytypes_seq`
--

INSERT IGNORE INTO `vtiger_calendar_user_activitytypes_seq` (`id`) VALUES
(24);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_callduration`
--

DROP TABLE IF EXISTS `vtiger_callduration`;
CREATE TABLE `vtiger_callduration` (
  `calldurationid` int(11) NOT NULL,
  `callduration` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_callduration`
--

INSERT IGNORE INTO `vtiger_callduration` (`calldurationid`, `callduration`, `sortorderid`, `presence`) VALUES
(1, '5', 0, 1),
(2, '10', 1, 1),
(3, '30', 2, 1),
(4, '60', 3, 1),
(5, '120', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_callduration_seq`
--

DROP TABLE IF EXISTS `vtiger_callduration_seq`;
CREATE TABLE `vtiger_callduration_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_callduration_seq`
--

INSERT IGNORE INTO `vtiger_callduration_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_call_direction`
--

DROP TABLE IF EXISTS `vtiger_call_direction`;
CREATE TABLE `vtiger_call_direction` (
  `call_directionid` int(11) NOT NULL,
  `call_direction` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_call_direction`
--

INSERT IGNORE INTO `vtiger_call_direction` (`call_directionid`, `call_direction`, `sortorderid`, `presence`, `color`) VALUES
(1, 'خروجی', 0, 1, NULL),
(2, 'ورودی', 1, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_call_direction_seq`
--

DROP TABLE IF EXISTS `vtiger_call_direction_seq`;
CREATE TABLE `vtiger_call_direction_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_call_direction_seq`
--

INSERT IGNORE INTO `vtiger_call_direction_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaign`
--

DROP TABLE IF EXISTS `vtiger_campaign`;
CREATE TABLE `vtiger_campaign` (
  `campaign_no` varchar(100) NOT NULL,
  `campaignname` varchar(255) DEFAULT NULL,
  `campaigntype` varchar(200) DEFAULT NULL,
  `campaignstatus` varchar(200) DEFAULT NULL,
  `expectedrevenue` decimal(25,8) DEFAULT NULL,
  `budgetcost` decimal(25,8) DEFAULT NULL,
  `actualcost` decimal(25,8) DEFAULT NULL,
  `expectedresponse` varchar(200) DEFAULT NULL,
  `numsent` decimal(11,0) DEFAULT NULL,
  `product_id` int(19) DEFAULT NULL,
  `sponsor` varchar(255) DEFAULT NULL,
  `targetaudience` varchar(255) DEFAULT NULL,
  `targetsize` int(19) DEFAULT NULL,
  `expectedresponsecount` int(19) DEFAULT NULL,
  `expectedsalescount` int(19) DEFAULT NULL,
  `expectedroi` decimal(25,8) DEFAULT NULL,
  `actualresponsecount` int(19) DEFAULT NULL,
  `actualsalescount` int(19) DEFAULT NULL,
  `actualroi` decimal(25,8) DEFAULT NULL,
  `campaignid` int(19) NOT NULL,
  `closingdate` date DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_campaign`
--

INSERT IGNORE INTO `vtiger_campaign` (`campaign_no`, `campaignname`, `campaigntype`, `campaignstatus`, `expectedrevenue`, `budgetcost`, `actualcost`, `expectedresponse`, `numsent`, `product_id`, `sponsor`, `targetaudience`, `targetsize`, `expectedresponsecount`, `expectedsalescount`, `expectedroi`, `actualresponsecount`, `actualsalescount`, `actualroi`, `campaignid`, `closingdate`, `tags`) VALUES
('CAM1', 'Gouya-LEAD-SMOKE-20260718040300-4657-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2155, NULL, ''),
('CAM2', 'Gouya-LEAD-SMOKE-20260718040333-5938-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2156, NULL, ''),
('CAM3', 'Gouya-LEAD-SMOKE-20260718040406-5955-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2161, NULL, ''),
('CAM4', 'Gouya-LEAD-SMOKE-20260718040648-8253-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2168, NULL, ''),
('CAM5', 'Gouya-LEAD-SMOKE-20260718040939-3209-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2174, NULL, ''),
('CAM6', 'Gouya-LEAD-SMOKE-20260718043251-9053-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2180, NULL, ''),
('CAM7', 'Gouya-LEAD-SMOKE-20260718043314-6749-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2186, NULL, ''),
('CAM8', 'Gouya-LEAD-SMOKE-20260718043336-8174-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2192, NULL, ''),
('CAM9', 'Gouya-LEAD-SMOKE-20260718043458-8234-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2200, NULL, ''),
('CAM10', 'Gouya-LEAD-SMOKE-20260718043554-3440-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2208, NULL, ''),
('CAM11', 'SARV-LEAD-SMOKE-20260730063115-5303-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2269, NULL, ''),
('CAM12', 'SARV-LEAD-SMOKE-20260730063303-9027-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2270, NULL, ''),
('CAM13', 'SARV-LEAD-SMOKE-20260730063600-5929-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2271, NULL, ''),
('CAM14', 'SARV-LEAD-SMOKE-20260809060946-7013-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2296, NULL, ''),
('CAM15', 'SARV-LEAD-SMOKE-20260809061248-2728-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2301, NULL, ''),
('CAM16', 'SARV-LEAD-SMOKE-20260809061344-4881-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2306, NULL, ''),
('CAM17', 'SARV-LEAD-SMOKE-20260809062044-1209-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2314, NULL, ''),
('CAM18', 'SARV-LEAD-SMOKE-20260809062220-7570-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2322, NULL, ''),
('CAM19', 'SARV-LEAD-SMOKE-20260809062704-6866-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2330, NULL, ''),
('CAM20', 'SARV-LEAD-SMOKE-20260809063037-9459-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2338, NULL, ''),
('CAM21', 'SARV-LEAD-SMOKE-20260809063122-8988-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2346, NULL, ''),
('CAM22', 'SARV-LEAD-SMOKE-20260809084307-7449-Campaign', NULL, 'Planning', 0.00000000, 0.00000000, 0.00000000, NULL, 0, 0, '', '', 0, 0, 0, 0.00000000, 0, 0, 0.00000000, 2362, NULL, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignaccountrel`
--

DROP TABLE IF EXISTS `vtiger_campaignaccountrel`;
CREATE TABLE `vtiger_campaignaccountrel` (
  `campaignid` int(19) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `campaignrelstatusid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaigncontrel`
--

DROP TABLE IF EXISTS `vtiger_campaigncontrel`;
CREATE TABLE `vtiger_campaigncontrel` (
  `campaignid` int(19) NOT NULL DEFAULT 0,
  `contactid` int(19) NOT NULL DEFAULT 0,
  `campaignrelstatusid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignleadrel`
--

DROP TABLE IF EXISTS `vtiger_campaignleadrel`;
CREATE TABLE `vtiger_campaignleadrel` (
  `campaignid` int(19) NOT NULL DEFAULT 0,
  `leadid` int(19) NOT NULL DEFAULT 0,
  `campaignrelstatusid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignrelstatus`
--

DROP TABLE IF EXISTS `vtiger_campaignrelstatus`;
CREATE TABLE `vtiger_campaignrelstatus` (
  `campaignrelstatusid` int(19) DEFAULT NULL,
  `campaignrelstatus` varchar(256) DEFAULT NULL,
  `sortorderid` int(19) DEFAULT NULL,
  `presence` int(19) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_campaignrelstatus`
--

INSERT IGNORE INTO `vtiger_campaignrelstatus` (`campaignrelstatusid`, `campaignrelstatus`, `sortorderid`, `presence`, `color`) VALUES
(2, 'Contacted - Successful', 1, 1, NULL),
(3, 'Contacted - Unsuccessful', 2, 1, NULL),
(4, 'Contacted - Never Contact Again', 3, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignrelstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_campaignrelstatus_seq`;
CREATE TABLE `vtiger_campaignrelstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_campaignrelstatus_seq`
--

INSERT IGNORE INTO `vtiger_campaignrelstatus_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignscf`
--

DROP TABLE IF EXISTS `vtiger_campaignscf`;
CREATE TABLE `vtiger_campaignscf` (
  `campaignid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_campaignscf`
--

INSERT IGNORE INTO `vtiger_campaignscf` (`campaignid`) VALUES
(2155),
(2156),
(2161),
(2168),
(2174),
(2180),
(2186),
(2192),
(2200),
(2208),
(2269),
(2270),
(2271),
(2296),
(2301),
(2306),
(2314),
(2322),
(2330),
(2338),
(2346),
(2362);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignstatus`
--

DROP TABLE IF EXISTS `vtiger_campaignstatus`;
CREATE TABLE `vtiger_campaignstatus` (
  `campaignstatusid` int(19) NOT NULL,
  `campaignstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_campaignstatus`
--

INSERT IGNORE INTO `vtiger_campaignstatus` (`campaignstatusid`, `campaignstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Planning', 1, 15, 1, NULL),
(3, 'Active', 1, 16, 2, NULL),
(4, 'Inactive', 1, 17, 3, NULL),
(5, 'Completed', 1, 18, 4, NULL),
(6, 'Cancelled', 1, 19, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaignstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_campaignstatus_seq`;
CREATE TABLE `vtiger_campaignstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_campaignstatus_seq`
--

INSERT IGNORE INTO `vtiger_campaignstatus_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaigntype`
--

DROP TABLE IF EXISTS `vtiger_campaigntype`;
CREATE TABLE `vtiger_campaigntype` (
  `campaigntypeid` int(19) NOT NULL,
  `campaigntype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_campaigntype`
--

INSERT IGNORE INTO `vtiger_campaigntype` (`campaigntypeid`, `campaigntype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Conference', 1, 21, 1, NULL),
(3, 'Webinar', 1, 22, 2, NULL),
(4, 'Trade Show', 1, 23, 3, NULL),
(5, 'Public Relations', 1, 24, 4, NULL),
(6, 'Partners', 1, 25, 5, NULL),
(7, 'Referral Program', 1, 26, 6, NULL),
(8, 'Advertisement', 1, 27, 7, NULL),
(9, 'Banner Ads', 1, 28, 8, NULL),
(10, 'Direct Mail', 1, 29, 9, NULL),
(11, 'Email', 1, 30, 10, NULL),
(12, 'Telemarketing', 1, 31, 11, NULL),
(13, 'Others', 1, 32, 12, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_campaigntype_seq`
--

DROP TABLE IF EXISTS `vtiger_campaigntype_seq`;
CREATE TABLE `vtiger_campaigntype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_campaigntype_seq`
--

INSERT IGNORE INTO `vtiger_campaigntype_seq` (`id`) VALUES
(13);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_carrier`
--

DROP TABLE IF EXISTS `vtiger_carrier`;
CREATE TABLE `vtiger_carrier` (
  `carrierid` int(19) NOT NULL,
  `carrier` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_carrier`
--

INSERT IGNORE INTO `vtiger_carrier` (`carrierid`, `carrier`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'FedEx', 1, 33, 0, NULL),
(2, 'UPS', 1, 34, 1, NULL),
(3, 'USPS', 1, 35, 2, NULL),
(4, 'DHL', 1, 36, 3, NULL),
(5, 'BlueDart', 1, 37, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_carrier_seq`
--

DROP TABLE IF EXISTS `vtiger_carrier_seq`;
CREATE TABLE `vtiger_carrier_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_carrier_seq`
--

INSERT IGNORE INTO `vtiger_carrier_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_source`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_source`;
CREATE TABLE `vtiger_cf_credit_source` (
  `cf_credit_sourceid` int(11) NOT NULL,
  `cf_credit_source` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_credit_source`
--

INSERT IGNORE INTO `vtiger_cf_credit_source` (`cf_credit_sourceid`, `cf_credit_source`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'داخلی', 1, 353, 1, NULL),
(2, 'بانک', 1, 354, 2, NULL),
(3, 'اعتبارسنجی', 1, 355, 3, NULL),
(4, 'سایر', 1, 356, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_source_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_source_seq`;
CREATE TABLE `vtiger_cf_credit_source_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_credit_source_seq`
--

INSERT IGNORE INTO `vtiger_cf_credit_source_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_status`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_status`;
CREATE TABLE `vtiger_cf_credit_status` (
  `cf_credit_statusid` int(11) NOT NULL,
  `cf_credit_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_credit_status`
--

INSERT IGNORE INTO `vtiger_cf_credit_status` (`cf_credit_statusid`, `cf_credit_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'فعال', 1, 345, 1, NULL),
(2, 'غیرفعال', 1, 346, 2, NULL),
(3, 'منقضی', 1, 347, 3, NULL),
(4, 'در انتظار بررسی', 1, 348, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_status_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_status_seq`;
CREATE TABLE `vtiger_cf_credit_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_credit_status_seq`
--

INSERT IGNORE INTO `vtiger_cf_credit_status_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_type`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_type`;
CREATE TABLE `vtiger_cf_credit_type` (
  `cf_credit_typeid` int(11) NOT NULL,
  `cf_credit_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_credit_type`
--

INSERT IGNORE INTO `vtiger_cf_credit_type` (`cf_credit_typeid`, `cf_credit_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'نقدی', 1, 349, 1, NULL),
(2, 'اعتباری', 1, 350, 2, NULL),
(3, 'تضمینی', 1, 351, 3, NULL),
(4, 'سایر', 1, 352, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_credit_type_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_credit_type_seq`;
CREATE TABLE `vtiger_cf_credit_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_credit_type_seq`
--

INSERT IGNORE INTO `vtiger_cf_credit_type_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_forecast_category`
--

DROP TABLE IF EXISTS `vtiger_cf_forecast_category`;
CREATE TABLE `vtiger_cf_forecast_category` (
  `cf_forecast_categoryid` int(11) NOT NULL,
  `cf_forecast_category` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_forecast_category`
--

INSERT IGNORE INTO `vtiger_cf_forecast_category` (`cf_forecast_categoryid`, `cf_forecast_category`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'اعمال', 1, 510, 1, NULL),
(2, 'بهترین حالت', 1, 511, 2, NULL),
(3, 'در دست پیگیری', 1, 512, 3, NULL),
(4, 'حذف از پیش‌بینی', 1, 513, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_forecast_category_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_forecast_category_seq`;
CREATE TABLE `vtiger_cf_forecast_category_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_forecast_category_seq`
--

INSERT IGNORE INTO `vtiger_cf_forecast_category_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_grouping1`
--

DROP TABLE IF EXISTS `vtiger_cf_grouping1`;
CREATE TABLE `vtiger_cf_grouping1` (
  `cf_grouping1id` int(11) NOT NULL,
  `cf_grouping1` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_grouping1`
--

INSERT IGNORE INTO `vtiger_cf_grouping1` (`cf_grouping1id`, `cf_grouping1`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Category 1', 1, 494, 1, NULL),
(2, 'Category 2', 1, 495, 2, NULL),
(3, 'Category 3', 1, 496, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_grouping1_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_grouping1_seq`;
CREATE TABLE `vtiger_cf_grouping1_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_grouping1_seq`
--

INSERT IGNORE INTO `vtiger_cf_grouping1_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_grouping2`
--

DROP TABLE IF EXISTS `vtiger_cf_grouping2`;
CREATE TABLE `vtiger_cf_grouping2` (
  `cf_grouping2id` int(11) NOT NULL,
  `cf_grouping2` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_grouping2`
--

INSERT IGNORE INTO `vtiger_cf_grouping2` (`cf_grouping2id`, `cf_grouping2`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Category 1', 1, 497, 1, NULL),
(2, 'Category 2', 1, 498, 2, NULL),
(3, 'Category 3', 1, 499, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_grouping2_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_grouping2_seq`;
CREATE TABLE `vtiger_cf_grouping2_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_grouping2_seq`
--

INSERT IGNORE INTO `vtiger_cf_grouping2_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_invoice_cycles`
--

DROP TABLE IF EXISTS `vtiger_cf_invoice_cycles`;
CREATE TABLE `vtiger_cf_invoice_cycles` (
  `cf_invoice_cyclesid` int(11) NOT NULL,
  `cf_invoice_cycles` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_invoice_cycles`
--

INSERT IGNORE INTO `vtiger_cf_invoice_cycles` (`cf_invoice_cyclesid`, `cf_invoice_cycles`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'بدون تکرار', 1, 514, 1, NULL),
(2, 'ماهانه', 1, 515, 2, NULL),
(3, 'سه‌ماهه', 1, 516, 3, NULL),
(4, 'شش‌ماهه', 1, 517, 4, NULL),
(5, 'سالانه', 1, 518, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_invoice_cycles_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_invoice_cycles_seq`;
CREATE TABLE `vtiger_cf_invoice_cycles_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_invoice_cycles_seq`
--

INSERT IGNORE INTO `vtiger_cf_invoice_cycles_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_invoice_kind`
--

DROP TABLE IF EXISTS `vtiger_cf_invoice_kind`;
CREATE TABLE `vtiger_cf_invoice_kind` (
  `cf_invoice_kindid` int(11) NOT NULL,
  `cf_invoice_kind` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_invoice_kind`
--

INSERT IGNORE INTO `vtiger_cf_invoice_kind` (`cf_invoice_kindid`, `cf_invoice_kind`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Standard', 1, 357, 1, NULL),
(2, 'Retail', 1, 358, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_invoice_kind_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_invoice_kind_seq`;
CREATE TABLE `vtiger_cf_invoice_kind_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_invoice_kind_seq`
--

INSERT IGNORE INTO `vtiger_cf_invoice_kind_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_lead_party_type`
--

DROP TABLE IF EXISTS `vtiger_cf_lead_party_type`;
CREATE TABLE `vtiger_cf_lead_party_type` (
  `cf_lead_party_typeid` int(11) NOT NULL,
  `cf_lead_party_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_lead_party_type`
--

INSERT IGNORE INTO `vtiger_cf_lead_party_type` (`cf_lead_party_typeid`, `cf_lead_party_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'حقوقی', 1, 407, 1, NULL),
(2, 'حقیقی', 1, 408, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_lead_party_type_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_lead_party_type_seq`;
CREATE TABLE `vtiger_cf_lead_party_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_lead_party_type_seq`
--

INSERT IGNORE INTO `vtiger_cf_lead_party_type_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_loss_reason`
--

DROP TABLE IF EXISTS `vtiger_cf_loss_reason`;
CREATE TABLE `vtiger_cf_loss_reason` (
  `cf_loss_reasonid` int(11) NOT NULL,
  `cf_loss_reason` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_loss_reason`
--

INSERT IGNORE INTO `vtiger_cf_loss_reason` (`cf_loss_reasonid`, `cf_loss_reason`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'قیمت', 1, 505, 1, NULL),
(2, 'رقیب', 1, 506, 2, NULL),
(3, 'عدم نیاز', 1, 507, 3, NULL),
(4, 'عدم پاسخ', 1, 508, 4, NULL),
(5, 'سایر', 1, 509, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_loss_reason_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_loss_reason_seq`;
CREATE TABLE `vtiger_cf_loss_reason_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_loss_reason_seq`
--

INSERT IGNORE INTO `vtiger_cf_loss_reason_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_opportunity_currency`
--

DROP TABLE IF EXISTS `vtiger_cf_opportunity_currency`;
CREATE TABLE `vtiger_cf_opportunity_currency` (
  `cf_opportunity_currencyid` int(11) NOT NULL,
  `cf_opportunity_currency` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_opportunity_currency`
--

INSERT IGNORE INTO `vtiger_cf_opportunity_currency` (`cf_opportunity_currencyid`, `cf_opportunity_currency`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Rial : ریال', 1, 500, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_opportunity_currency_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_opportunity_currency_seq`;
CREATE TABLE `vtiger_cf_opportunity_currency_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_opportunity_currency_seq`
--

INSERT IGNORE INTO `vtiger_cf_opportunity_currency_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_opportunity_priority`
--

DROP TABLE IF EXISTS `vtiger_cf_opportunity_priority`;
CREATE TABLE `vtiger_cf_opportunity_priority` (
  `cf_opportunity_priorityid` int(11) NOT NULL,
  `cf_opportunity_priority` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_opportunity_priority`
--

INSERT IGNORE INTO `vtiger_cf_opportunity_priority` (`cf_opportunity_priorityid`, `cf_opportunity_priority`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'پایین', 1, 502, 1, NULL),
(2, 'متوسط', 1, 503, 2, NULL),
(3, 'بالا', 1, 504, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_opportunity_priority_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_opportunity_priority_seq`;
CREATE TABLE `vtiger_cf_opportunity_priority_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_opportunity_priority_seq`
--

INSERT IGNORE INTO `vtiger_cf_opportunity_priority_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_party_type`
--

DROP TABLE IF EXISTS `vtiger_cf_party_type`;
CREATE TABLE `vtiger_cf_party_type` (
  `cf_party_typeid` int(11) NOT NULL,
  `cf_party_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_party_type`
--

INSERT IGNORE INTO `vtiger_cf_party_type` (`cf_party_typeid`, `cf_party_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'حقوقی', 1, 343, 1, NULL),
(2, 'حقیقی', 1, 344, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_party_type_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_party_type_seq`;
CREATE TABLE `vtiger_cf_party_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_party_type_seq`
--

INSERT IGNORE INTO `vtiger_cf_party_type_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_sales_process`
--

DROP TABLE IF EXISTS `vtiger_cf_sales_process`;
CREATE TABLE `vtiger_cf_sales_process` (
  `cf_sales_processid` int(11) NOT NULL,
  `cf_sales_process` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cf_sales_process`
--

INSERT IGNORE INTO `vtiger_cf_sales_process` (`cf_sales_processid`, `cf_sales_process`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'پیش فرض', 1, 501, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cf_sales_process_seq`
--

DROP TABLE IF EXISTS `vtiger_cf_sales_process_seq`;
CREATE TABLE `vtiger_cf_sales_process_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_cf_sales_process_seq`
--

INSERT IGNORE INTO `vtiger_cf_sales_process_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_channel`
--

DROP TABLE IF EXISTS `vtiger_channel`;
CREATE TABLE `vtiger_channel` (
  `channelid` int(11) NOT NULL,
  `channel` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_channel`
--

INSERT IGNORE INTO `vtiger_channel` (`channelid`, `channel`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Web', 1, 393, 1, NULL),
(2, 'Phone', 1, 394, 2, NULL),
(3, 'SMS', 1, 395, 3, NULL),
(4, 'Email', 1, 396, 4, NULL),
(5, 'InPerson', 1, 397, 5, NULL),
(6, 'Website', 1, 448, 1, NULL),
(7, 'CRM', 1, 449, 2, NULL),
(8, 'Other', 1, 450, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_channel_seq`
--

DROP TABLE IF EXISTS `vtiger_channel_seq`;
CREATE TABLE `vtiger_channel_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_channel_seq`
--

INSERT IGNORE INTO `vtiger_channel_seq` (`id`) VALUES
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cntactivityrel`
--

DROP TABLE IF EXISTS `vtiger_cntactivityrel`;
CREATE TABLE `vtiger_cntactivityrel` (
  `contactid` int(19) NOT NULL DEFAULT 0,
  `activityid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cntactivityrel`
--

INSERT IGNORE INTO `vtiger_cntactivityrel` (`contactid`, `activityid`) VALUES
(2247, 2258),
(2247, 2259),
(2247, 2260),
(2286, 2290),
(2286, 2291),
(2286, 2292),
(2286, 2293),
(2286, 2294),
(2286, 2295);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_communications`
--

DROP TABLE IF EXISTS `vtiger_communications`;
CREATE TABLE `vtiger_communications` (
  `communicationsid` int(19) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `enabled` varchar(3) DEFAULT NULL,
  `parent_type` varchar(100) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `condition_name` varchar(100) DEFAULT NULL,
  `condition_value` varchar(255) DEFAULT NULL,
  `sms_message_flag` varchar(3) DEFAULT NULL,
  `email_message_flag` varchar(3) DEFAULT NULL,
  `sms_title` varchar(255) DEFAULT NULL,
  `email_title` varchar(255) DEFAULT NULL,
  `template` varchar(255) DEFAULT NULL,
  `template_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_communications`
--

INSERT IGNORE INTO `vtiger_communications` (`communicationsid`, `name`, `enabled`, `parent_type`, `type`, `condition_name`, `condition_value`, `sms_message_flag`, `email_message_flag`, `sms_title`, `email_title`, `template`, `template_id`) VALUES
(2288, 'ارتباط آزمایشی طرح گویا', '1', 'Contacts', 'New_Records', 'email', '@', '0', '1', '', 'خوش‌آمدگویی ارتباط آزمایشی', '', 0),
(2289, 'ارتباط عملی طرح گویا ۱۴۰۵/۰۵/۱۱', '1', 'Contacts', 'New_Records', 'email', '@example.com', '0', '1', '', 'پیام خوش‌آمدگویی عملی', 'Accept Order', 5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_communicationscf`
--

DROP TABLE IF EXISTS `vtiger_communicationscf`;
CREATE TABLE `vtiger_communicationscf` (
  `communicationsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_communicationscf`
--

INSERT IGNORE INTO `vtiger_communicationscf` (`communicationsid`) VALUES
(2288),
(2289);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_communications_audit`
--

DROP TABLE IF EXISTS `vtiger_communications_audit`;
CREATE TABLE `vtiger_communications_audit` (
  `auditid` bigint(20) UNSIGNED NOT NULL,
  `communicationsid` int(19) NOT NULL,
  `event_name` varchar(32) NOT NULL,
  `actor_id` int(19) NOT NULL,
  `event_time` datetime NOT NULL,
  `payload` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_communications_audit`
--

INSERT IGNORE INTO `vtiger_communications_audit` (`auditid`, `communicationsid`, `event_name`, `actor_id`, `event_time`, `payload`) VALUES
(1, 2289, 'create', 1, '2026-08-02 18:01:25', '{\"parent_type\":\"Contacts\",\"type\":\"New_Records\",\"condition_name\":\"email\",\"enabled\":1,\"sms\":0,\"email\":1}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contactaddress`
--

DROP TABLE IF EXISTS `vtiger_contactaddress`;
CREATE TABLE `vtiger_contactaddress` (
  `contactaddressid` int(19) NOT NULL DEFAULT 0,
  `mailingcity` varchar(40) DEFAULT NULL,
  `mailingstreet` varchar(250) DEFAULT NULL,
  `mailingcountry` varchar(40) DEFAULT NULL,
  `othercountry` varchar(30) DEFAULT NULL,
  `mailingstate` varchar(30) DEFAULT NULL,
  `mailingpobox` varchar(30) DEFAULT NULL,
  `othercity` varchar(40) DEFAULT NULL,
  `otherstate` varchar(50) DEFAULT NULL,
  `mailingzip` varchar(30) DEFAULT NULL,
  `otherzip` varchar(30) DEFAULT NULL,
  `otherstreet` varchar(250) DEFAULT NULL,
  `otherpobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contactaddress`
--

INSERT IGNORE INTO `vtiger_contactaddress` (`contactaddressid`, `mailingcity`, `mailingstreet`, `mailingcountry`, `othercountry`, `mailingstate`, `mailingpobox`, `othercity`, `otherstate`, `mailingzip`, `otherzip`, `otherstreet`, `otherpobox`) VALUES
(11, '', '', '', '', '', '', '', '', '', '', '', ''),
(2066, '', '', '', '', '', '', '', '', '', '', '', ''),
(2067, '', '', '', '', '', '', '', '', '', '', '', ''),
(2068, '', '', '', '', '', '', '', '', '', '', '', ''),
(2069, '', '', '', '', '', '', '', '', '', '', '', ''),
(2070, '', '', '', '', '', '', '', '', '', '', '', ''),
(2071, '', '', '', '', '', '', '', '', '', '', '', ''),
(2072, '', '', '', '', '', '', '', '', '', '', '', ''),
(2073, '', '', '', '', '', '', '', '', '', '', '', ''),
(2074, '', '', '', '', '', '', '', '', '', '', '', ''),
(2075, '', '', '', '', '', '', '', '', '', '', '', ''),
(2076, '', '', '', '', '', '', '', '', '', '', '', ''),
(2077, '', '', '', '', '', '', '', '', '', '', '', ''),
(2078, '', '', '', '', '', '', '', '', '', '', '', ''),
(2079, '', '', '', '', '', '', '', '', '', '', '', ''),
(2080, '', '', '', '', '', '', '', '', '', '', '', ''),
(2081, '', '', '', '', '', '', '', '', '', '', '', ''),
(2082, '', '', '', '', '', '', '', '', '', '', '', ''),
(2083, '', '', '', '', '', '', '', '', '', '', '', ''),
(2084, '', '', '', '', '', '', '', '', '', '', '', ''),
(2085, '', '', '', '', '', '', '', '', '', '', '', ''),
(2086, '', '', '', '', '', '', '', '', '', '', '', ''),
(2087, '', '', '', '', '', '', '', '', '', '', '', ''),
(2088, '', '', '', '', '', '', '', '', '', '', '', ''),
(2089, '', '', '', '', '', '', '', '', '', '', '', ''),
(2090, '', '', '', '', '', '', '', '', '', '', '', ''),
(2091, '', '', '', '', '', '', '', '', '', '', '', ''),
(2093, '', '', '', '', '', '', '', '', '', '', '', ''),
(2095, '', '', '', '', '', '', '', '', '', '', '', ''),
(2096, '', '', '', '', '', '', '', '', '', '', '', ''),
(2098, '', '', '', '', '', '', '', '', '', '', '', ''),
(2100, '', '', '', '', '', '', '', '', '', '', '', ''),
(2102, '', '', '', '', '', '', '', '', '', '', '', ''),
(2103, '', '', '', '', '', '', '', '', '', '', '', ''),
(2105, '', '', '', '', '', '', '', '', '', '', '', ''),
(2107, '', '', '', '', '', '', '', '', '', '', '', ''),
(2108, '', '', '', '', '', '', '', '', '', '', '', ''),
(2110, '', '', '', '', '', '', '', '', '', '', '', ''),
(2111, '', '', '', '', '', '', '', '', '', '', '', ''),
(2113, '', '', '', '', '', '', '', '', '', '', '', ''),
(2114, '', '', '', '', '', '', '', '', '', '', '', ''),
(2116, '', '', '', '', '', '', '', '', '', '', '', ''),
(2117, '', '', '', '', '', '', '', '', '', '', '', ''),
(2118, '', '', '', '', '', '', '', '', '', '', '', ''),
(2119, '', '', '', '', '', '', '', '', '', '', '', ''),
(2120, '', '', '', '', '', '', '', '', '', '', '', ''),
(2121, '', '', '', '', '', '', '', '', '', '', '', ''),
(2122, '', '', '', '', '', '', '', '', '', '', '', ''),
(2123, '', '', '', '', '', '', '', '', '', '', '', ''),
(2124, '', '', '', '', '', '', '', '', '', '', '', ''),
(2125, '', '', '', '', '', '', '', '', '', '', '', ''),
(2167, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2199, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2207, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2215, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2236, '', '', '', '', '', '', '', '', '', '', '', ''),
(2237, '', '', '', '', '', '', '', '', '', '', '', ''),
(2238, '', '', '', '', '', '', '', '', '', '', '', ''),
(2239, '', '', '', '', '', '', '', '', '', '', '', ''),
(2240, '', '', '', '', '', '', '', '', '', '', '', ''),
(2241, '', '', '', '', '', '', '', '', '', '', '', ''),
(2242, '', '', '', '', '', '', '', '', '', '', '', ''),
(2243, '', '', '', '', '', '', '', '', '', '', '', ''),
(2244, '', '', '', '', '', '', '', '', '', '', '', ''),
(2245, '', '', '', '', '', '', '', '', '', '', '', ''),
(2246, '', '', '', '', '', '', '', '', '', '', '', ''),
(2247, '', '', '', '', '', '', '', '', '', '', '', ''),
(2248, '', '', '', '', '', '', '', '', '', '', '', ''),
(2249, '', '', '', '', '', '', '', '', '', '', '', ''),
(2250, '', '', '', '', '', '', '', '', '', '', '', ''),
(2251, '', '', '', '', '', '', '', '', '', '', '', ''),
(2252, '', '', '', '', '', '', '', '', '', '', '', ''),
(2253, '', '', '', '', '', '', '', '', '', '', '', ''),
(2254, '', '', '', '', '', '', '', '', '', '', '', ''),
(2255, '', '', '', '', '', '', '', '', '', '', '', ''),
(2256, '', '', '', '', '', '', '', '', '', '', '', ''),
(2257, '', '', '', '', '', '', '', '', '', '', '', ''),
(2276, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2279, '', '', '', '', '', '', '', '', '', '', '', ''),
(2280, '', '', '', '', '', '', '', '', '', '', '', ''),
(2281, '', '', '', '', '', '', '', '', '', '', '', ''),
(2282, '', '', '', '', '', '', '', '', '', '', '', ''),
(2283, '', '', '', '', '', '', '', '', '', '', '', ''),
(2284, '', '', '', '', '', '', '', '', '', '', '', ''),
(2285, 'تهران', 'خیابان تست طرح گویا', 'ایران', 'ایران', 'تهران', '', 'کرج', 'البرز', '1599911111', '3199911111', 'نشانی دوم تست طرح گویا', ''),
(2286, '', 'تهران، خیابان نمونه طرح گویا', 'ایران', 'ایران', '', '', '', '', '14357', '14357', 'تهران، خیابان نمونه طرح گویا', ''),
(2287, 'تهران', 'خیابان تست طرح گویا', 'ایران', 'ایران', 'تهران', '', 'کرج', 'البرز', '1599911111', '3199911111', 'نشانی دوم تست طرح گویا', ''),
(2313, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2321, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2329, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2337, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2345, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', ''),
(2353, 'تهران', 'آدرس اصلی تست', 'ایران', '', 'تهران', '', '', '', '', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contactdetails`
--

DROP TABLE IF EXISTS `vtiger_contactdetails`;
CREATE TABLE `vtiger_contactdetails` (
  `contactid` int(19) NOT NULL DEFAULT 0,
  `contact_no` varchar(100) NOT NULL,
  `accountid` int(19) DEFAULT NULL,
  `salutation` varchar(200) DEFAULT NULL,
  `firstname` varchar(40) DEFAULT NULL,
  `lastname` varchar(80) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `title` varchar(50) DEFAULT NULL,
  `department` varchar(30) DEFAULT NULL,
  `fax` varchar(50) DEFAULT NULL,
  `reportsto` varchar(30) DEFAULT NULL,
  `training` varchar(50) DEFAULT NULL,
  `usertype` varchar(50) DEFAULT NULL,
  `contacttype` varchar(50) DEFAULT NULL,
  `otheremail` varchar(100) DEFAULT NULL,
  `secondaryemail` varchar(100) DEFAULT NULL,
  `donotcall` varchar(3) DEFAULT NULL,
  `emailoptout` varchar(3) DEFAULT '0',
  `imagename` varchar(150) DEFAULT NULL,
  `reference` varchar(3) DEFAULT NULL,
  `notify_owner` varchar(3) DEFAULT '0',
  `isconvertedfromlead` varchar(3) DEFAULT '0',
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contactdetails`
--

INSERT IGNORE INTO `vtiger_contactdetails` (`contactid`, `contact_no`, `accountid`, `salutation`, `firstname`, `lastname`, `email`, `phone`, `mobile`, `title`, `department`, `fax`, `reportsto`, `training`, `usertype`, `contacttype`, `otheremail`, `secondaryemail`, `donotcall`, `emailoptout`, `imagename`, `reference`, `notify_owner`, `isconvertedfromlead`, `tags`) VALUES
(11, 'CON1', 0, 'Mr.', 'عیسی', 'زارع', '', '', '09119220020', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2066, 'CON2', 0, '', 'علی', 'محمدی', '', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2067, 'CON3', 0, '', 'سارا', 'احمدی', '', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2068, 'CON4', 0, '', 'رضا', 'کریمی', '', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2069, 'CON5', 0, '', 'رضا', 'محمدیان', 'kpiseed_mgr@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2070, 'CON6', 0, '', 'علی', 'کریمی', 'kpiseed_sup1@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2071, 'CON7', 0, '', 'نیما', 'قاسمی', 'kpiseed_emp1@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2072, 'CON8', 0, '', 'زهرا', 'مرادی', 'kpiseed_emp2@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2073, 'CON9', 0, '', 'امیر', 'صادقی', 'kpiseed_emp3@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2074, 'CON10', 0, '', 'فاطمه', 'کاظمی', 'kpiseed_emp4@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2075, 'CON11', 0, '', 'سینا', 'یوسفی', 'kpiseed_emp5@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2076, 'CON12', 0, '', 'الهام', 'جعفری', 'kpiseed_emp6@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2077, 'CON13', 0, '', 'حسن', 'رضایی', 'kpiseed_sup3@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2078, 'CON14', 0, '', 'بهرام', 'اکبری', 'kpiseed_emp7@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2079, 'CON15', 0, '', 'نگار', 'شریفی', 'kpiseed_emp8@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2080, 'CON16', 0, '', 'پیمان', 'بابایی', 'kpiseed_emp9@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2081, 'CON17', 0, '', 'مریم', 'حسینی', 'kpiseed_sup4@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2082, 'CON18', 0, '', 'مینا', 'رستمی', 'kpiseed_emp10@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2083, 'CON19', 0, '', 'کیان', 'عباسی', 'kpiseed_emp11@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2084, 'CON20', 0, '', 'رها', 'نادری', 'kpiseed_emp12@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2085, 'CON21', 0, '', 'کاوه', 'نوری', 'kpiseed_sup5@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2086, 'CON22', 0, '', 'آرش', 'فلاحی', 'kpiseed_emp13@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2087, 'CON23', 0, '', 'سحر', 'زارع', 'kpiseed_emp14@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2088, 'CON24', 0, '', 'وحید', 'محمودی', 'kpiseed_emp15@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2089, 'CON25', 0, '', 'حسین', 'فغان پور', 'hossein.fgh@gmail.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2090, 'CON26', 0, '', 'سارا', 'احمدی', 'kpiseed_sup2@example.local', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2091, 'CON27', 22, '', 'خانم افروز', 'محمدی (مثال)', 'afrooz@test.com', '', '', 'مدیرمالی', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2093, 'CON28', 23, '', 'خانم رویا', 'نیک رفتار (مثال)', 'roya@test.com', '', '', 'مدیر مالی', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2095, 'CON29', 2034, '', 'مهندس', 'قاضی (مثال)', 'ghazi@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2096, 'CON30', 20, '', 'آقای مهدی', 'فروزش (مثال)', 'forouzesh@test.com', '', '', 'مدیر فروش', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2098, 'CON31', 2032, '', 'آقای محمد', 'کابینی (مثال)', 'ayini@test.com', '', '', 'استراتژیست', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2100, 'CON32', 2037, '', 'مهندس', 'زامیاد (مثال)', 'zamyad@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2102, 'CON33', 21, '', 'آقای غلامعلی', 'عباسی (مثال)', 'abbasi@test.com', '', '', 'مدیرعامل', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2103, 'CON34', 2029, '', 'آقای', 'محمدآبادی (مثال)', 'mohammadabadi@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2105, 'CON35', 21, '', 'خانم لعیا', 'خسروآبادی (مثال)', 'laya@test.com', '', '', 'مدیر تدارکات', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2107, 'CON36', 2036, '', 'آقای کامران', 'دادجو (مثال)', 'dadjoo@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2108, 'CON37', 23, '', 'آقای علی', 'ملامحمدی (مثال)', 'ali@test.com', '', '', 'مدیر تدارکات', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2110, 'CON38', 0, '', 'آقای رضا', 'منوچهری (مثال)', 'reza@test.com', '', '', 'کارشناس فنی', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2111, 'CON39', 0, '', 'آقای محسن', 'غفاری (مثال)', '', '', '', 'مدیرعامل', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2113, 'CON40', 25, '', 'خانم', 'پورعلی (مثال)', 'pourali@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2114, 'CON41', 2033, '', 'خانم', 'خالقی (مثال)', 'khaleghi@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2116, 'CON42', 24, '', 'مهندس', 'توکلی (مثال)', 'tavakoli@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2117, 'CON43', 2035, '', 'خانم شایان', 'صادقی نژاد (مثال)', '', '', '', 'مدیر فروش', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2118, 'CON44', 0, '', 'خانم', 'شریف (مثال)', 'sharif@test.com', '', '', '', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2119, 'CON45', 0, '', 'خانم رقیه', 'کاظم زاده (مثال)', 'kazemzadeh@test.com', '', '', 'رئیس هیئت مدیره', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2120, 'CON46', 2030, '', 'آقای جواد', 'نیکتابیک (مثال)', '', '', '', 'کارمند خدمات', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2121, 'CON47', 2031, '', 'خانم ملیکا', 'زاهدی (مثال)', 'zahedi@test.com', '', '', 'منشی مدیرعامل', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2122, 'CON48', 20, '', 'آقای عباس', 'رعفتی (مثال)', 'alii@test.com', '', '', 'مدیرعامل', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2123, 'CON49', 22, '', 'آقای منوچهر', 'انصاری (مثال)', '', '', '', 'مدیر بازرگانی', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2124, 'CON50', 0, '', 'آقای صابر', 'احمدیان (مثال)', 'ahmadian@test.com', '', '', 'مدیر پروژه', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2125, 'CON51', 2028, '', 'آقای ابوالفضل', 'سلیمی (مثال)', 'salimi@test.com', '', '', 'نایب رئیس هیئت مدیره', '', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2167, 'CON52', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2199, 'CON53', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2207, 'CON54', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2215, 'CON55', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2236, 'CON56', 2235, '', 'حسین', 'فغان پور', 'hossein.fgh@gmail.com', '', '09119090378', 'مدیرعامل', 'مدیریت', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2237, 'CON57', 2235, '', 'رضا', 'محمدیان', 'kpiseed_mgr@example.local', '', '09119090378', 'مدیر', 'مدیریت', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2238, 'CON58', 2235, '', 'علی', 'کریمی', 'kpiseed_sup1@example.local', '', '09119090378', 'سرپرست تیم فروش', 'تیم فروش', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2239, 'CON59', 2235, '', 'نیما', 'قاسمی', 'kpiseed_emp1@example.local', '', '09119090378', 'پرسنل تیم فروش', 'تیم فروش', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2240, 'CON60', 2235, '', 'زهرا', 'مرادی', 'kpiseed_emp2@example.local', '', '09119090378', 'پرسنل تیم فروش', 'تیم فروش', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2241, 'CON61', 2235, '', 'امیر', 'صادقی', 'kpiseed_emp3@example.local', '', '09119090378', 'پرسنل تیم فروش', 'تیم فروش', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2242, 'CON62', 2235, '', 'سارا', 'احمدی', 'kpiseed_sup2@example.local', '', '09119090378', 'سرپرست تیم پشتیبانی', 'تیم پشتیبانی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2243, 'CON63', 2235, '', 'فاطمه', 'کاظمی', 'kpiseed_emp4@example.local', '', '09119090378', 'پرسنل تیم پشتیبانی', 'تیم پشتیبانی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2244, 'CON64', 2235, '', 'سینا', 'یوسفی', 'kpiseed_emp5@example.local', '', '09119090378', 'پرسنل تیم پشتیبانی', 'تیم پشتیبانی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2245, 'CON65', 2235, '', 'الهام', 'جعفری', 'kpiseed_emp6@example.local', '', '09119090378', 'پرسنل تیم پشتیبانی', 'تیم پشتیبانی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2246, 'CON66', 2235, '', 'حسن', 'رضایی', 'kpiseed_sup3@example.local', '', '09119090378', 'سرپرست تیم فنی', 'تیم فنی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2247, 'CON67', 2235, '', 'بهرام', 'اکبری', 'kpiseed_emp7@example.local', '', '09119090378', 'پرسنل تیم فنی', 'تیم فنی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2248, 'CON68', 2235, '', 'نگار', 'شریفی', 'kpiseed_emp8@example.local', '', '09119090378', 'پرسنل تیم فنی', 'تیم فنی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2249, 'CON69', 2235, '', 'پیمان', 'بابایی', 'kpiseed_emp9@example.local', '', '09119090378', 'پرسنل تیم فنی', 'تیم فنی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2250, 'CON70', 2235, '', 'مریم', 'حسینی', 'kpiseed_sup4@example.local', '', '09119090378', 'سرپرست تیم مالی', 'تیم مالی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2251, 'CON71', 2235, '', 'مینا', 'رستمی', 'kpiseed_emp10@example.local', '', '09119090378', 'پرسنل تیم مالی', 'تیم مالی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2252, 'CON72', 2235, '', 'کیان', 'عباسی', 'kpiseed_emp11@example.local', '', '09119090378', 'پرسنل تیم مالی', 'تیم مالی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2253, 'CON73', 2235, '', 'رها', 'نادری', 'kpiseed_emp12@example.local', '', '09119090378', 'پرسنل تیم مالی', 'تیم مالی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2254, 'CON74', 2235, '', 'کاوه', 'نوری', 'kpiseed_sup5@example.local', '', '09119090378', 'سرپرست تیم بازاریابی', 'تیم بازاریابی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2255, 'CON75', 2235, '', 'آرش', 'فلاحی', 'kpiseed_emp13@example.local', '', '09119090378', 'پرسنل تیم بازاریابی', 'تیم بازاریابی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2256, 'CON76', 2235, '', 'سحر', 'زارع', 'kpiseed_emp14@example.local', '', '09119090378', 'پرسنل تیم بازاریابی', 'تیم بازاریابی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2257, 'CON77', 2235, '', 'وحید', 'محمودی', 'kpiseed_emp15@example.local', '', '09119090378', 'پرسنل تیم بازاریابی', 'تیم بازاریابی', '', '', '', '', '', '', '', '0', '0', '', '0', '0', '0', NULL),
(2276, 'CON78', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2279, 'CON79', NULL, '', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260801180622-8131', 'contact-updated@example.test', '+989129998877', '', 'Integration Test Updated', 'Quality Assurance', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2280, 'CON80', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802061945-5541', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2281, 'CON81', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802065207-9882', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2282, 'CON82', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802071642-5628', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2283, 'CON83', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802072535-4912', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2284, 'CON84', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802080631-6166', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '11', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2285, 'CON85', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802170258-4182', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '11', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2286, 'CON86', NULL, 'Mr.', 'آزمایش', 'نمونه عملی طرح گویا', 'gouya.contact.ui@example.test', '+989121234567', '+989121234567', 'کارشناس تست فرم', 'کنترل کیفیت', '', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2287, 'CON87', 20, 'Mr.', 'Gouya', 'GOUYA-CONTACT-SMOKE-20260802173055-1807', 'contact-updated@example.test', '+989129998877', '+989129998877', 'Integration Test Updated', 'Quality Assurance', '02166554433', '11', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '0', ''),
(2313, 'CON88', 0, '', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2321, 'CON89', 0, 'Mr.', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2329, 'CON90', 0, 'Mr.', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2337, 'CON91', 0, 'Mr.', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2345, 'CON92', 0, 'Mr.', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', ''),
(2353, 'CON93', 0, 'Mr.', 'آزمون', 'یکپارچگی سرنخ', 'lead-updated@example.test', '+989129998877', '+989129998877', 'مدیر تست', '', '02166554433', '0', NULL, NULL, NULL, NULL, '', '0', '0', '', '0', '0', '1', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contactscf`
--

DROP TABLE IF EXISTS `vtiger_contactscf`;
CREATE TABLE `vtiger_contactscf` (
  `contactid` int(19) NOT NULL DEFAULT 0,
  `cf_national_code` varchar(255) DEFAULT NULL,
  `cf_grouping1` varchar(255) DEFAULT NULL,
  `cf_grouping2` varchar(255) DEFAULT NULL,
  `cf_website` varchar(255) DEFAULT NULL,
  `cf_linkedin` varchar(255) DEFAULT NULL,
  `cf_blog` varchar(255) DEFAULT NULL,
  `cf_twitter` varchar(255) DEFAULT NULL,
  `cf_instagram` varchar(255) DEFAULT NULL,
  `cf_facebook` varchar(255) DEFAULT NULL,
  `branch_id` int(19) DEFAULT NULL,
  `cf_primary_region` varchar(255) DEFAULT NULL,
  `cf_other_region` varchar(255) DEFAULT NULL,
  `cf_primary_lat` decimal(12,7) DEFAULT NULL,
  `cf_primary_lng` decimal(12,7) DEFAULT NULL,
  `cf_other_lat` decimal(12,7) DEFAULT NULL,
  `cf_other_lng` decimal(12,7) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contactscf`
--

INSERT IGNORE INTO `vtiger_contactscf` (`contactid`, `cf_national_code`, `cf_grouping1`, `cf_grouping2`, `cf_website`, `cf_linkedin`, `cf_blog`, `cf_twitter`, `cf_instagram`, `cf_facebook`, `branch_id`, `cf_primary_region`, `cf_other_region`, `cf_primary_lat`, `cf_primary_lng`, `cf_other_lat`, `cf_other_lng`) VALUES
(11, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2066, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2067, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2068, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2069, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2070, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2071, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2072, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2073, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2074, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2075, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2076, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2077, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2078, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2079, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2080, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2081, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2082, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2083, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2084, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2085, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2086, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2087, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2088, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2089, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2090, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2091, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2093, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2095, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2096, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2098, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2100, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2102, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2103, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2105, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2107, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2108, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2110, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2111, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2113, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2114, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2116, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2117, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2118, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2119, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2120, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2121, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2122, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2123, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2124, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2125, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2167, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2199, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2207, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2215, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2236, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2237, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2238, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2239, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2240, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2241, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2242, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2243, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2244, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2245, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2246, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2247, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2248, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2249, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2250, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2251, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2252, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2253, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2254, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2255, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2256, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2257, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2276, '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2279, '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2280, '', '', '', '', '', '', '', '', '', 2222, NULL, NULL, NULL, NULL, NULL, NULL),
(2281, '', '', '', '', '', '', '', '', '', 2222, NULL, NULL, NULL, NULL, NULL, NULL),
(2282, '', '', '', '', '', '', '', '', '', 2222, NULL, NULL, NULL, NULL, NULL, NULL),
(2283, '', '', '', '', '', '', '', '', '', 2222, NULL, NULL, NULL, NULL, NULL, NULL),
(2284, '0012345678', 'Category 1', 'Category 2', '', '', '', '', '', '', 2222, NULL, NULL, NULL, NULL, NULL, NULL),
(2285, '0012345678', 'Category 1', 'Category 2', 'https://example.test', 'gouya-test', 'https://example.test/blog', 'gouya_test', 'gouya_test', 'gouya.test', 2222, 'ایران / تهران / تهران', 'ایران / البرز / کرج', 35.6892000, 51.3890000, 35.8400000, 50.9391000),
(2286, '0013546789', 'Category 1', 'Category 2', 'https://gouya.example.test', 'https://linkedin.com/company/gouya-crm-test', '', '', 'https://instagram.com/gouya_crm_test', '', 0, 'ایران', 'ایران', 32.4279000, 53.6880000, 32.4279000, 53.6880000),
(2287, '0012345678', 'Category 1', 'Category 2', 'https://example.test', 'gouya-test', 'https://example.test/blog', 'gouya_test', 'gouya_test', 'gouya.test', 2222, 'ایران / تهران / تهران', 'ایران / البرز / کرج', 35.6892000, 51.3890000, 35.8400000, 50.9391000),
(2313, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000),
(2321, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000),
(2329, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000),
(2337, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000),
(2345, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000),
(2353, '', '', '', '', '', '', '', '', '', 0, '', '', 0.0000000, 0.0000000, 0.0000000, 0.0000000);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contactsubdetails`
--

DROP TABLE IF EXISTS `vtiger_contactsubdetails`;
CREATE TABLE `vtiger_contactsubdetails` (
  `contactsubscriptionid` int(19) NOT NULL DEFAULT 0,
  `homephone` varchar(50) DEFAULT NULL,
  `otherphone` varchar(50) DEFAULT NULL,
  `assistant` varchar(30) DEFAULT NULL,
  `assistantphone` varchar(50) DEFAULT NULL,
  `birthday` date DEFAULT NULL,
  `laststayintouchrequest` int(30) DEFAULT 0,
  `laststayintouchsavedate` int(19) DEFAULT 0,
  `leadsource` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contactsubdetails`
--

INSERT IGNORE INTO `vtiger_contactsubdetails` (`contactsubscriptionid`, `homephone`, `otherphone`, `assistant`, `assistantphone`, `birthday`, `laststayintouchrequest`, `laststayintouchsavedate`, `leadsource`) VALUES
(11, '', '', '', '', NULL, 0, 0, ''),
(2066, '', '', '', '', NULL, 0, 0, NULL),
(2067, '', '', '', '', NULL, 0, 0, NULL),
(2068, '', '', '', '', NULL, 0, 0, NULL),
(2069, '', '', '', '', NULL, 0, 0, NULL),
(2070, '', '', '', '', NULL, 0, 0, NULL),
(2071, '', '', '', '', NULL, 0, 0, NULL),
(2072, '', '', '', '', NULL, 0, 0, NULL),
(2073, '', '', '', '', NULL, 0, 0, NULL),
(2074, '', '', '', '', NULL, 0, 0, NULL),
(2075, '', '', '', '', NULL, 0, 0, NULL),
(2076, '', '', '', '', NULL, 0, 0, NULL),
(2077, '', '', '', '', NULL, 0, 0, NULL),
(2078, '', '', '', '', NULL, 0, 0, NULL),
(2079, '', '', '', '', NULL, 0, 0, NULL),
(2080, '', '', '', '', NULL, 0, 0, NULL),
(2081, '', '', '', '', NULL, 0, 0, NULL),
(2082, '', '', '', '', NULL, 0, 0, NULL),
(2083, '', '', '', '', NULL, 0, 0, NULL),
(2084, '', '', '', '', NULL, 0, 0, NULL),
(2085, '', '', '', '', NULL, 0, 0, NULL),
(2086, '', '', '', '', NULL, 0, 0, NULL),
(2087, '', '', '', '', NULL, 0, 0, NULL),
(2088, '', '', '', '', NULL, 0, 0, NULL),
(2089, '', '', '', '', NULL, 0, 0, NULL),
(2090, '', '', '', '', NULL, 0, 0, NULL),
(2091, '', '', '', '', NULL, 0, 0, NULL),
(2093, '', '', '', '', NULL, 0, 0, NULL),
(2095, '', '', '', '', NULL, 0, 0, NULL),
(2096, '', '', '', '', NULL, 0, 0, NULL),
(2098, '', '', '', '', NULL, 0, 0, NULL),
(2100, '', '', '', '', NULL, 0, 0, NULL),
(2102, '', '', '', '', NULL, 0, 0, NULL),
(2103, '', '', '', '', NULL, 0, 0, NULL),
(2105, '', '', '', '', NULL, 0, 0, NULL),
(2107, '', '', '', '', NULL, 0, 0, NULL),
(2108, '', '', '', '', NULL, 0, 0, NULL),
(2110, '', '', '', '', NULL, 0, 0, NULL),
(2111, '', '', '', '', NULL, 0, 0, NULL),
(2113, '', '', '', '', NULL, 0, 0, NULL),
(2114, '', '', '', '', NULL, 0, 0, NULL),
(2116, '', '', '', '', NULL, 0, 0, NULL),
(2117, '', '', '', '', NULL, 0, 0, NULL),
(2118, '', '', '', '', NULL, 0, 0, NULL),
(2119, '', '', '', '', NULL, 0, 0, NULL),
(2120, '', '', '', '', NULL, 0, 0, NULL),
(2121, '', '', '', '', NULL, 0, 0, NULL),
(2122, '', '', '', '', NULL, 0, 0, NULL),
(2123, '', '', '', '', NULL, 0, 0, NULL),
(2124, '', '', '', '', NULL, 0, 0, NULL),
(2125, '', '', '', '', NULL, 0, 0, NULL),
(2167, '', '', '', '', NULL, 0, 0, ''),
(2199, '', '', '', '', NULL, 0, 0, ''),
(2207, '', '', '', '', NULL, 0, 0, ''),
(2215, '', '', '', '', NULL, 0, 0, ''),
(2236, '', '', '', '', NULL, 0, 0, ''),
(2237, '', '', '', '', NULL, 0, 0, ''),
(2238, '', '', '', '', NULL, 0, 0, ''),
(2239, '', '', '', '', NULL, 0, 0, ''),
(2240, '', '', '', '', NULL, 0, 0, ''),
(2241, '', '', '', '', NULL, 0, 0, ''),
(2242, '', '', '', '', NULL, 0, 0, ''),
(2243, '', '', '', '', NULL, 0, 0, ''),
(2244, '', '', '', '', NULL, 0, 0, ''),
(2245, '', '', '', '', NULL, 0, 0, ''),
(2246, '', '', '', '', NULL, 0, 0, ''),
(2247, '', '', '', '', NULL, 0, 0, ''),
(2248, '', '', '', '', NULL, 0, 0, ''),
(2249, '', '', '', '', NULL, 0, 0, ''),
(2250, '', '', '', '', NULL, 0, 0, ''),
(2251, '', '', '', '', NULL, 0, 0, ''),
(2252, '', '', '', '', NULL, 0, 0, ''),
(2253, '', '', '', '', NULL, 0, 0, ''),
(2254, '', '', '', '', NULL, 0, 0, ''),
(2255, '', '', '', '', NULL, 0, 0, ''),
(2256, '', '', '', '', NULL, 0, 0, ''),
(2257, '', '', '', '', NULL, 0, 0, ''),
(2276, '', '', '', '', NULL, 0, 0, ''),
(2279, '', '02188776655', '', '', NULL, 0, 0, NULL),
(2280, '', '02188776655', '', '', NULL, 0, 0, 'Cold Call'),
(2281, '', '02188776655', '', '', NULL, 0, 0, 'Cold Call'),
(2282, '', '02188776655', '', '', NULL, 0, 0, 'Cold Call'),
(2283, '', '02188776655', '', '', NULL, 0, 0, 'Cold Call'),
(2284, '', '02188776655', 'Gouya Test Assistant Updated', '', '1990-05-15', 0, 0, 'Cold Call'),
(2285, '', '02188776655', 'Gouya Test Assistant Updated', '', '1990-05-15', 0, 0, 'Cold Call'),
(2286, '', '', 'منشی نمونه', '', NULL, 0, 0, 'Web Site'),
(2287, '', '02188776655', 'Gouya Test Assistant Updated', '', '1990-05-15', 0, 0, 'Cold Call'),
(2313, '', '', '', '', NULL, 0, 0, ''),
(2321, '', '', '', '', NULL, 0, 0, ''),
(2329, '', '', '', '', NULL, 0, 0, ''),
(2337, '', '', '', '', NULL, 0, 0, ''),
(2345, '', '', '', '', NULL, 0, 0, ''),
(2353, '', '', '', '', NULL, 0, 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contpotentialrel`
--

DROP TABLE IF EXISTS `vtiger_contpotentialrel`;
CREATE TABLE `vtiger_contpotentialrel` (
  `contactid` int(19) NOT NULL DEFAULT 0,
  `potentialid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_priority`
--

DROP TABLE IF EXISTS `vtiger_contract_priority`;
CREATE TABLE `vtiger_contract_priority` (
  `contract_priorityid` int(11) NOT NULL,
  `contract_priority` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contract_priority`
--

INSERT IGNORE INTO `vtiger_contract_priority` (`contract_priorityid`, `contract_priority`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Low', 1, 220, 1, NULL),
(2, 'Normal', 1, 221, 2, NULL),
(3, 'High', 1, 222, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_priority_seq`
--

DROP TABLE IF EXISTS `vtiger_contract_priority_seq`;
CREATE TABLE `vtiger_contract_priority_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_contract_priority_seq`
--

INSERT IGNORE INTO `vtiger_contract_priority_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_status`
--

DROP TABLE IF EXISTS `vtiger_contract_status`;
CREATE TABLE `vtiger_contract_status` (
  `contract_statusid` int(11) NOT NULL,
  `contract_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contract_status`
--

INSERT IGNORE INTO `vtiger_contract_status` (`contract_statusid`, `contract_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Undefined', 1, 214, 1, NULL),
(2, 'In Planning', 1, 215, 2, NULL),
(3, 'In Progress', 1, 216, 3, NULL),
(4, 'On Hold', 1, 217, 4, NULL),
(5, 'Complete', 0, 218, 5, NULL),
(6, 'Archived', 1, 219, 6, NULL),
(7, 'Draft', 1, 398, 1, NULL),
(8, 'PendingApproval', 1, 399, 2, NULL),
(9, 'Active', 1, 400, 3, NULL),
(10, 'Expired', 1, 401, 4, NULL),
(11, 'Cancelled', 1, 402, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_status_seq`
--

DROP TABLE IF EXISTS `vtiger_contract_status_seq`;
CREATE TABLE `vtiger_contract_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_contract_status_seq`
--

INSERT IGNORE INTO `vtiger_contract_status_seq` (`id`) VALUES
(11);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_type`
--

DROP TABLE IF EXISTS `vtiger_contract_type`;
CREATE TABLE `vtiger_contract_type` (
  `contract_typeid` int(11) NOT NULL,
  `contract_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_contract_type`
--

INSERT IGNORE INTO `vtiger_contract_type` (`contract_typeid`, `contract_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Support', 1, 223, 1, NULL),
(2, 'Services', 1, 224, 2, NULL),
(3, 'Administrative', 1, 225, 3, NULL),
(4, 'Sale', 1, 403, 1, NULL),
(5, 'Subscription', 1, 404, 2, NULL),
(6, 'Framework', 1, 405, 3, NULL),
(7, 'Other', 1, 406, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_contract_type_seq`
--

DROP TABLE IF EXISTS `vtiger_contract_type_seq`;
CREATE TABLE `vtiger_contract_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_contract_type_seq`
--

INSERT IGNORE INTO `vtiger_contract_type_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_convertleadmapping`
--

DROP TABLE IF EXISTS `vtiger_convertleadmapping`;
CREATE TABLE `vtiger_convertleadmapping` (
  `cfmid` int(19) NOT NULL,
  `leadfid` int(19) NOT NULL,
  `accountfid` int(19) DEFAULT NULL,
  `contactfid` int(19) DEFAULT NULL,
  `potentialfid` int(19) DEFAULT NULL,
  `editable` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_convertleadmapping`
--

INSERT IGNORE INTO `vtiger_convertleadmapping` (`cfmid`, `leadfid`, `accountfid`, `contactfid`, `potentialfid`, `editable`) VALUES
(1, 43, 1, 0, 110, 0),
(2, 49, 14, 0, 0, 1),
(3, 40, 3, 69, 0, 1),
(4, 44, 5, 77, 0, 1),
(5, 52, 13, 0, 0, 1),
(6, 46, 9, 80, 0, 0),
(7, 48, 4, 0, 0, 1),
(8, 61, 26, 98, 0, 1),
(9, 60, 30, 0, 0, 1),
(10, 62, 32, 104, 0, 1),
(11, 63, 28, 100, 0, 1),
(12, 59, 24, 96, 0, 1),
(13, 64, 34, 106, 0, 1),
(14, 61, 27, 0, 0, 1),
(15, 60, 31, 0, 0, 1),
(16, 62, 33, 0, 0, 1),
(17, 63, 29, 0, 0, 1),
(18, 59, 25, 0, 0, 1),
(19, 64, 35, 0, 0, 1),
(20, 65, 36, 109, 125, 1),
(21, 37, 0, 66, 0, 1),
(22, 38, 0, 67, 0, 0),
(23, 41, 0, 70, 0, 0),
(24, 42, 0, 71, 0, 1),
(25, 45, 0, 76, 0, 1),
(26, 55, 0, 83, 0, 1),
(27, 47, 0, 74, 117, 1),
(28, 50, 0, 0, 0, 1),
(29, 53, 10, 0, 0, 1),
(30, 51, 17, 0, 0, 1),
(31, 1008, 892, 0, 0, 1),
(32, 38, 894, 0, 0, 1),
(33, 41, 895, 0, 0, 1),
(34, 1010, 897, 0, 0, 1),
(35, 1011, 901, 79, 0, 1),
(36, 1012, 899, 0, 0, 1),
(37, 1013, 904, 0, 0, 1),
(38, 1014, 902, 0, 0, 1),
(39, 1015, 903, 0, 0, 1),
(40, 1016, 906, 0, 0, 1),
(41, 1018, 908, 0, 0, 1),
(42, 1019, 910, 0, 0, 1),
(43, 1020, 911, 0, 0, 1),
(44, 1021, 909, 0, 0, 1),
(45, 1022, 33, 0, 0, 1),
(46, 1023, 29, 0, 0, 1),
(47, 1024, 27, 0, 0, 1),
(48, 1025, 31, 0, 0, 1),
(49, 1026, 25, 0, 0, 1),
(50, 1027, 912, 0, 0, 1),
(51, 1028, 913, 0, 0, 1),
(52, 1029, 922, 0, 0, 1),
(53, 1030, 926, 0, 0, 1),
(54, 1031, 925, 0, 0, 1),
(55, 1032, 923, 0, 0, 1),
(56, 1033, 924, 0, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_convertpotentialmapping`
--

DROP TABLE IF EXISTS `vtiger_convertpotentialmapping`;
CREATE TABLE `vtiger_convertpotentialmapping` (
  `cfmid` int(19) NOT NULL,
  `potentialfid` int(19) NOT NULL,
  `projectfid` int(19) DEFAULT NULL,
  `editable` int(11) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_convertpotentialmapping`
--

INSERT IGNORE INTO `vtiger_convertpotentialmapping` (`cfmid`, `potentialfid`, `projectfid`, `editable`) VALUES
(1, 110, 648, 1),
(2, 125, 664, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_crmentity`
--

DROP TABLE IF EXISTS `vtiger_crmentity`;
CREATE TABLE `vtiger_crmentity` (
  `crmid` int(19) NOT NULL,
  `smcreatorid` int(19) NOT NULL DEFAULT 0,
  `smownerid` int(19) NOT NULL DEFAULT 0,
  `modifiedby` int(19) NOT NULL DEFAULT 0,
  `setype` varchar(100) DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `createdtime` datetime NOT NULL,
  `modifiedtime` datetime NOT NULL,
  `viewedtime` datetime DEFAULT NULL,
  `status` varchar(50) DEFAULT NULL,
  `version` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) DEFAULT 1,
  `deleted` int(1) NOT NULL DEFAULT 0,
  `smgroupid` int(19) DEFAULT NULL,
  `source` varchar(100) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_crmentity`
--

INSERT IGNORE INTO `vtiger_crmentity` (`crmid`, `smcreatorid`, `smownerid`, `modifiedby`, `setype`, `description`, `createdtime`, `modifiedtime`, `viewedtime`, `status`, `version`, `presence`, `deleted`, `smgroupid`, `source`, `label`) VALUES
(2, 1, 1, 1, 'Leads', '', '2026-06-22 09:34:34', '2026-07-04 22:59:38', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای کامران دادجو (مثال)'),
(3, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 09:37:50', '2026-06-22 09:37:50', NULL, NULL, 0, 1, 0, 0, 'CRM', 'قققق'),
(4, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 09:39:53', '2026-06-22 09:39:53', NULL, NULL, 0, 1, 0, 0, 'CRM', 'لالالا'),
(5, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 09:40:11', '2026-06-22 09:40:11', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سیسیس'),
(6, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 09:40:25', '2026-06-22 09:40:25', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سیسیس'),
(7, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 09:47:37', '2026-06-22 09:47:37', NULL, NULL, 0, 1, 0, 0, 'CRM', 'لبلب'),
(8, 1, 1, 1, 'SMSNotifier', NULL, '2026-06-22 10:16:47', '2026-06-22 10:16:48', NULL, NULL, 0, 1, 0, 0, 'CRM', 'رذذر'),
(9, 1, 1, 1, 'Calendar', '', '2026-06-22 10:23:42', '2026-06-22 10:23:42', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست'),
(10, 1, 1, 1, 'Calendar', '', '2026-06-22 10:37:02', '2026-06-22 10:37:02', NULL, NULL, 0, 1, 0, 0, 'CRM', 'بیبیب'),
(11, 1, 1, 1, 'Contacts', '', '2026-06-22 18:16:52', '2026-06-22 18:16:52', NULL, NULL, 0, 1, 0, 0, 'CRM', 'عیسی زارع'),
(13, 1, 1, 0, 'Users Image', '', '2026-06-23 12:53:58', '2026-06-23 12:53:58', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(14, 1, 1, 1, 'Calendar', '', '2026-06-29 18:12:24', '2026-06-29 18:12:24', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تماس'),
(15, 1, 1, 1, 'Calendar', '', '2026-06-29 18:21:35', '2026-08-17 10:29:01', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تماس ساعت ۱۰'),
(16, 1, 1, 1, 'Calendar', '', '2026-06-30 06:01:11', '2026-08-17 10:28:45', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تماس آزمایشی مرتبط با سرنخ'),
(17, 1, 1, 1, 'Calendar', '', '2026-06-30 09:50:30', '2026-06-30 09:50:30', NULL, NULL, 0, 1, 0, 0, 'CRM', 'جلسهٔ آزمایشی مرتبط'),
(18, 1, 1, 1, 'Calendar', '', '2026-06-30 12:36:47', '2026-06-30 12:36:47', NULL, NULL, 0, 1, 0, 0, 'CRM', 'جلسه آزمایشی مرتبط با سرنخ'),
(19, 1, 1, 1, 'Calendar', '', '2026-06-30 13:15:47', '2026-06-30 13:15:47', NULL, NULL, 0, 1, 0, 0, 'CRM', 'وظیفه آزمایشی مرتبط با سرنخ'),
(20, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'فرایند سازان ایران فردا (مثال)'),
(21, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'پیشگامان صنعت داده (مثال)'),
(22, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'فرایند گستران شرق (مثال)'),
(23, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'الکترونیک گستر (مثال)'),
(24, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'اورنگ (مثال)'),
(25, 1, 1, 1, 'Accounts', '', '2026-07-03 09:05:38', '2026-07-03 09:05:38', NULL, '', 0, 1, 0, NULL, 'CRM', 'کیان (مثال)'),
(26, 1, 1, 1, 'Products', '', '2026-07-03 09:05:39', '2026-07-03 09:05:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'طراحی وب‌سایت (مثال)'),
(27, 1, 1, 1, 'Products', '', '2026-07-03 09:05:39', '2026-07-03 09:05:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'اپلیکیشن موبایل (مثال)'),
(28, 1, 1, 1, 'Products', '', '2026-07-03 09:05:39', '2026-07-03 09:05:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'پشتیبانی سالانه (مثال)'),
(1000, 1, 1, 1, 'Leads', '', '2026-05-28 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'احسان محمدی (مثال)'),
(1001, 1, 2, 1, 'Leads', '', '2026-05-26 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آقای فلاح نژاد (مثال)'),
(1002, 1, 1, 1, 'Leads', '', '2026-05-29 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'بهام خمسه (مثال)'),
(1003, 1, 3, 1, 'Leads', '', '2026-05-23 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آقای خادمی (مثال)'),
(1004, 1, 2, 1, 'Leads', '', '2026-06-08 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'لاله حسینی (مثال)'),
(1005, 1, 1, 1, 'Leads', '', '2026-05-29 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آقای رحیمی (مثال)'),
(1006, 1, 1, 1, 'Leads', '', '2026-06-12 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آرش لوایی (مثال)'),
(1007, 1, 2, 1, 'Leads', '', '2026-05-30 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'فریده بیات (مثال)'),
(1008, 1, 3, 1, 'Leads', '', '2026-06-20 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'مهندس غلامرضا عباسی (مثال)'),
(1009, 1, 1, 1, 'Leads', '', '2026-06-07 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'خانم مریم شفیع (مثال)'),
(1010, 1, 2, 1, 'Leads', '', '2026-05-24 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'هادی شاهدی (مثال)'),
(1011, 1, 1, 1, 'Leads', '', '2026-06-19 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'ارمین حسنی (مثال)'),
(1012, 1, 3, 1, 'Leads', '', '2026-06-12 18:31:39', '2026-07-20 03:45:38', NULL, '', 0, 1, 0, 0, 'SARV-SEED', 'خانم زینب بهاری (مثال)'),
(1013, 1, 1, 1, 'Leads', '', '2026-06-17 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'خانم خالقی (مثال)'),
(1014, 1, 2, 1, 'Leads', '', '2026-06-09 18:31:39', '2026-07-04 22:59:38', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آقای پورعلی (مثال)'),
(1015, 1, 2, 1, 'Potentials', '', '2026-05-10 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'هایتک - فرصت'),
(1016, 1, 3, 1, 'Potentials', '', '2026-04-11 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'لیما (مثال) - فرصت فروش پکیج پیشرفته'),
(1017, 1, 1, 1, 'Potentials', '', '2026-04-22 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'کیان (مثال) - فرصت فروش پکیج ساده'),
(1018, 1, 4, 1, 'Potentials', '', '2026-06-07 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'رایتل - فرصت'),
(1019, 1, 2, 1, 'Potentials', '', '2026-05-15 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'سبزیاران - فرصت'),
(1020, 1, 1, 1, 'Potentials', '', '2026-04-01 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'پیشگامان صنعت داده (مثال) - فرصت'),
(1021, 1, 3, 1, 'Potentials', '', '2026-06-17 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'طلایه داران (مثال) - فرصت فروش پکیج ساده'),
(1022, 1, 2, 1, 'Potentials', '', '2026-05-24 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'رایتل (مثال) - فرصت'),
(1023, 1, 4, 1, 'Potentials', '', '2026-05-09 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'سبزیاران (مثال) - فرصت فروش پکیج ساده'),
(1024, 1, 1, 1, 'Potentials', '', '2026-05-30 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'فروش پکیج اختصاصی (مثال)'),
(1025, 1, 2, 1, 'Potentials', '', '2026-05-26 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شباهنگ (مثال) - فرصت فروش پکیج اختصاصی'),
(1026, 1, 3, 1, 'Potentials', '', '2026-04-01 18:31:39', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'آذر مهر (مثال) - فرصت فروش ساده'),
(1027, 1, 1, 1, 'Invoice', '', '2026-06-17 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'فرایند سازان ایران فردا - فاکتور (مثال)'),
(1028, 1, 1, 1, 'Invoice', '', '2026-05-17 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'پیشگامان صنعت داده - فاکتور (مثال)'),
(1029, 1, 1, 1, 'Invoice', '', '2026-05-15 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'پیشگامان صنعت داده - فاکتور (مثال)'),
(1030, 1, 2, 1, 'Invoice', '', '2026-05-25 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت فرایند گستران شرق - فاکتور (مثال)'),
(1031, 1, 1, 1, 'Invoice', '', '2026-05-20 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت فرایند گستران شرق - فاکتور (مثال)'),
(1032, 1, 3, 1, 'Invoice', '', '2026-06-15 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت الکترونیک گستر - فاکتور (مثال)'),
(1033, 1, 1, 1, 'Invoice', '', '2026-05-16 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'اورنگ (مثال) - فرصت'),
(1034, 1, 2, 1, 'Invoice', '', '2026-05-29 18:31:40', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'کیان (مثال) - فرصت'),
(1035, 1, 1, 1, 'Calendar', '', '2026-06-15 18:31:40', '2026-06-15 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 1'),
(1036, 1, 1, 1, 'Calendar', '', '2026-06-13 18:31:40', '2026-06-13 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 2'),
(1037, 1, 1, 1, 'Calendar', '', '2026-06-21 18:31:40', '2026-06-21 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 3'),
(1038, 1, 1, 1, 'Calendar', '', '2026-06-01 18:31:40', '2026-06-01 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 4'),
(1039, 1, 1, 1, 'Calendar', '', '2026-06-01 18:31:40', '2026-08-17 10:29:03', NULL, '', 0, 1, 0, 0, 'SARV-SEED', 'Call نمونه 5'),
(1040, 1, 1, 1, 'Calendar', '', '2026-06-08 18:31:40', '2026-06-08 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 6'),
(1041, 1, 1, 1, 'Calendar', '', '2026-06-16 18:31:40', '2026-06-16 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 7'),
(1042, 1, 1, 1, 'Calendar', '', '2026-06-11 18:31:40', '2026-06-11 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Call نمونه 8'),
(1043, 1, 1, 1, 'Calendar', '', '2026-06-17 18:31:40', '2026-06-17 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 1'),
(1044, 1, 1, 1, 'Calendar', '', '2026-06-17 18:31:40', '2026-06-17 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 2'),
(1045, 1, 1, 1, 'Calendar', '', '2026-06-09 18:31:40', '2026-06-09 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 3'),
(1046, 1, 1, 1, 'Calendar', '', '2026-06-06 18:31:40', '2026-06-06 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 4'),
(1047, 1, 1, 1, 'Calendar', '', '2026-06-08 18:31:40', '2026-06-08 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 5'),
(1048, 1, 1, 1, 'Calendar', '', '2026-06-11 18:31:40', '2026-06-11 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 6'),
(1049, 1, 1, 1, 'Calendar', '', '2026-06-07 18:31:40', '2026-06-07 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Task نمونه 7'),
(1050, 1, 1, 1, 'Calendar', '', '2026-06-19 18:31:40', '2026-07-11 18:17:02', NULL, '', 0, 1, 0, 0, 'SARV-SEED', 'Task نمونه 8'),
(1051, 1, 1, 1, 'Calendar', '', '2026-06-14 18:31:40', '2026-06-14 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 1'),
(1052, 1, 1, 1, 'Calendar', '', '2026-06-06 18:31:40', '2026-06-06 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 2'),
(1053, 1, 1, 1, 'Calendar', '', '2026-06-16 18:31:40', '2026-06-16 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 3'),
(1054, 1, 1, 1, 'Calendar', '', '2026-06-12 18:31:40', '2026-06-12 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 4'),
(1055, 1, 1, 1, 'Calendar', '', '2026-06-13 18:31:40', '2026-06-13 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 5'),
(1056, 1, 1, 1, 'Calendar', '', '2026-06-05 18:31:40', '2026-06-05 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 6'),
(1057, 1, 1, 1, 'Calendar', '', '2026-06-18 18:31:40', '2026-06-18 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 7'),
(1058, 1, 1, 1, 'Calendar', '', '2026-06-04 18:31:40', '2026-06-04 18:31:40', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'Meeting نمونه 8'),
(2000, 1, 1, 1, 'ServiceContracts', '', '2026-05-13 18:45:02', '2026-05-13 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 1'),
(2001, 1, 2, 1, 'ServiceContracts', '', '2026-05-14 18:45:02', '2026-05-14 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 2'),
(2002, 1, 3, 1, 'ServiceContracts', '', '2026-05-28 18:45:02', '2026-05-28 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 3'),
(2003, 1, 4, 1, 'ServiceContracts', '', '2026-05-17 18:45:02', '2026-05-17 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 4'),
(2004, 1, 1, 1, 'ServiceContracts', '', '2026-06-15 18:45:02', '2026-06-15 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 5'),
(2005, 1, 2, 1, 'ServiceContracts', '', '2026-06-12 18:45:02', '2026-06-12 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 6'),
(2006, 1, 3, 1, 'ServiceContracts', '', '2026-06-14 18:45:02', '2026-06-14 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 7'),
(2007, 1, 4, 1, 'ServiceContracts', '', '2026-05-03 18:45:02', '2026-05-03 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 8'),
(2008, 1, 1, 1, 'ServiceContracts', '', '2026-05-29 18:45:02', '2026-05-29 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 9'),
(2009, 1, 2, 1, 'ServiceContracts', '', '2026-06-20 18:45:02', '2026-06-20 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 10'),
(2010, 1, 3, 1, 'ServiceContracts', '', '2026-06-14 18:45:02', '2026-06-14 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 11'),
(2011, 1, 4, 1, 'ServiceContracts', '', '2026-05-28 18:45:02', '2026-05-28 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'قرارداد سرویس 12'),
(2012, 1, 1, 1, 'Quotes', '', '2026-06-16 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'فرایند سازان ایران فردا - پیش فاکتور (مثال)'),
(2013, 1, 2, 1, 'Quotes', '', '2026-06-09 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'پیشگامان صنعت داده - پیش فاکتور (مثال)'),
(2014, 1, 3, 1, 'Quotes', '', '2026-05-27 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'پیشگامان صنعت داده - پیش فاکتور (مثال)'),
(2015, 1, 4, 1, 'Quotes', '', '2026-06-16 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت فرایند گستران شرق - پیش فاکتور (مثال)'),
(2016, 1, 1, 1, 'Quotes', '', '2026-05-17 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت فرایند گستران شرق - پیش فاکتور (مثال)'),
(2017, 1, 2, 1, 'Quotes', '', '2026-06-16 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'شرکت الکترونیک گستر - پیش فاکتور (مثال)'),
(2018, 1, 3, 1, 'Quotes', '', '2026-05-29 18:45:02', '2026-07-03 14:59:42', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'اورنگ (مثال) - فرصت'),
(2019, 1, 4, 1, 'Quotes', '', '2026-06-07 18:45:02', '2026-07-11 11:55:29', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'کیان (مثال) - فرصت'),
(2020, 1, 1, 1, 'Documents', '', '2026-06-12 18:45:02', '2026-06-12 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'یادداشت 1'),
(2021, 1, 2, 1, 'Documents', '', '2026-06-19 18:45:02', '2026-06-19 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'یادداشت 2'),
(2022, 1, 3, 1, 'Documents', '', '2026-06-11 18:45:02', '2026-06-11 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'یادداشت 3'),
(2023, 1, 4, 1, 'Documents', '', '2026-06-08 18:45:02', '2026-06-08 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'یادداشت 4'),
(2024, 1, 1, 1, 'Documents', '', '2026-06-18 18:45:02', '2026-06-18 18:45:02', NULL, '', 0, 1, 0, NULL, 'SARV-SEED', 'یادداشت 5'),
(2025, 1, 1, 1, 'Quotes', 'توضیح تستی ویرایش', '2026-07-03 21:58:09', '2026-07-03 22:38:38', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست سیستم - ویرایش شده'),
(2026, 1, 1, 1, 'Quotes', '', '2026-07-03 15:00:25', '2026-07-03 15:00:25', NULL, '', 0, 1, 0, NULL, 'CRM', 'پیش فاکتور ورودی تست ۱'),
(2027, 1, 1, 1, 'Quotes', '', '2026-07-03 15:00:26', '2026-07-03 15:00:26', NULL, '', 0, 1, 0, NULL, 'CRM', 'پیش فاکتور ورودی تست ۲'),
(2028, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'هایتک (مثال)'),
(2029, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'لیما (مثال)'),
(2030, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'رایتل (مثال)'),
(2031, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'سبزیاران (مثال)'),
(2032, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'طلایه داران (مثال)'),
(2033, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'شباهنگ (مثال)'),
(2034, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:39', '2026-07-04 00:55:39', NULL, '', 0, 1, 0, NULL, 'CRM', 'آذر مهر (مثال)'),
(2035, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'نیروی ماهواره ای کوچک (مثال)'),
(2036, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:40', '2026-07-18 01:04:54', NULL, '', 0, 1, 0, NULL, 'CRM', 'آقای کامران دادجو (مثال)'),
(2037, 1, 1, 1, 'Accounts', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'زامیاد (مثال)'),
(2038, 1, 2, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'نیروی ماهواره ای کوچک - فرصت'),
(2039, 1, 1, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'آذر مهر (مثال) - فرصت فروش پیشرفته'),
(2040, 1, 4, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'آقای کامران دادجو (مثال) - فرصت فروش پکیج پیشرفته'),
(2041, 1, 1, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'الکترونیک گستر - فروش پکیج (مثال)'),
(2042, 1, 2, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'اورنگ (مثال) - فرصت فروش پیشرفته'),
(2043, 1, 3, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'کیان (مثال) - فرصت'),
(2044, 1, 1, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'زامیاد (مثال) - فرصت فروش پکیج اختصاصی'),
(2045, 1, 2, 1, 'Potentials', '', '2026-07-04 00:55:40', '2026-07-04 00:55:40', NULL, '', 0, 1, 0, NULL, 'CRM', 'اورنگ (مثال) - فرصت فروش پکیج اختصاصی'),
(2046, 1, 1, 1, 'Potentials', 'ویرایش تست', '2026-07-04 08:03:31', '2026-07-04 08:15:26', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست سیستم - فرصت گویا'),
(2047, 1, 1, 1, 'Potentials', '', '2026-07-04 01:04:50', '2026-07-04 01:04:50', NULL, '', 0, 1, 0, NULL, 'CRM', 'فرصت ورودی تست ۱'),
(2048, 1, 1, 1, 'Potentials', '', '2026-07-04 01:04:50', '2026-07-04 01:04:50', NULL, '', 0, 1, 0, NULL, 'CRM', 'فرصت ورودی تست ۲'),
(2049, 1, 1, 1, 'Potentials', '', '2026-07-04 08:14:03', '2026-07-04 08:14:04', NULL, NULL, 0, 1, 0, 0, 'CRM', 'نمونه تست B - فروش موفق تیر'),
(2050, 1, 1, 1, 'Potentials', 'نمونه برای تست هشدار سررسید', '2026-07-04 08:14:30', '2026-07-11 18:56:48', NULL, NULL, 0, 1, 0, 0, 'CRM', 'نمونه تست C - سررسید گذشته'),
(2051, 1, 3, 1, 'Potentials', '', '2026-07-04 01:16:28', '2026-07-04 01:16:28', NULL, '', 0, 1, 0, NULL, 'CRM', 'فرصت ورودی G1 - احتمال دستی'),
(2052, 1, 1, 1, 'Potentials', '', '2026-07-04 01:16:29', '2026-07-20 03:49:58', NULL, '', 0, 1, 0, 0, 'CRM', 'فرصت ورودی G2 - بدون کاربر'),
(2053, 1, 1, 1, 'Products', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, '', 0, 1, 0, NULL, 'CRM', 'پکیج پیشرفته (مثال)'),
(2054, 1, 1, 1, 'Invoice', 'توضیح تستی ویرایش', '2026-07-04 06:53:40', '2026-07-05 12:36:56', NULL, '', 0, 1, 0, 0, 'CRM', 'تست سیستم - ویرایش شده'),
(2055, 1, 3, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'مهندس قاضی (مثال)'),
(2056, 1, 2, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'رضا منوچهری (مثال)'),
(2057, 1, 1, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-20 03:45:34', NULL, '', 0, 1, 0, 0, 'CRM', 'ابوالفضل صادقی (مثال)'),
(2058, 1, 2, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'خانم تقی زاده (مثال)'),
(2059, 1, 1, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'آقای احمدیان (مثال)'),
(2060, 1, 3, 1, 'Leads', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'آقای آزادگانی (مثال)'),
(2061, 1, 1, 1, 'Calendar', '', '2026-07-04 22:51:24', '2026-08-17 10:28:40', NULL, '', 0, 1, 0, 0, 'CRM', 'تماس پیگیری سرنخ'),
(2062, 1, 1, 1, 'Calendar', '', '2026-07-04 22:51:24', '2026-07-04 22:51:24', NULL, '', 0, 1, 0, NULL, 'CRM', 'جلسه معارفه انجام شده'),
(2063, 1, 1, 1, 'Leads', 'سرنخ تست سیستم\nاین رکورد برای تست کامل پرونده سرنخ ساخته شده است.\nخط سوم توضیحات برای آزمون نمایش چندخطی.', '2026-07-05 05:56:21', '2026-07-05 12:36:30', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست سرنخ گویا'),
(2064, 1, 3, 1, 'Leads', '', '2026-07-04 22:57:43', '2026-07-04 22:57:43', NULL, '', 0, 1, 0, NULL, 'CRM', 'علی سرنخ ورودی L1'),
(2065, 1, 1, 1, 'Leads', '', '2026-07-04 22:57:43', '2026-07-11 18:48:10', NULL, '', 0, 1, 0, 0, 'CRM', 'سرنخ ورودی L2'),
(2066, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:ali]', '2026-07-10 20:54:59', '2026-07-11 15:46:58', NULL, NULL, 0, 1, 1, 0, 'CRM', 'علی محمدی'),
(2067, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:sara]', '2026-07-10 20:55:05', '2026-07-11 15:47:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'سارا احمدی'),
(2068, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:reza]', '2026-07-10 20:55:06', '2026-07-11 15:47:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'رضا کریمی'),
(2069, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_mgr]', '2026-07-10 20:55:06', '2026-07-11 15:47:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'رضا محمدیان'),
(2070, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_sup1]', '2026-07-10 20:55:07', '2026-07-11 15:47:01', NULL, NULL, 0, 1, 1, 0, 'CRM', 'علی کریمی'),
(2071, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp1]', '2026-07-10 20:55:07', '2026-07-11 15:47:01', NULL, NULL, 0, 1, 1, 0, 'CRM', 'نیما قاسمی'),
(2072, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp2]', '2026-07-10 20:55:07', '2026-07-11 15:47:01', NULL, NULL, 0, 1, 1, 0, 'CRM', 'زهرا مرادی'),
(2073, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp3]', '2026-07-10 20:55:08', '2026-07-11 15:47:01', NULL, NULL, 0, 1, 1, 0, 'CRM', 'امیر صادقی'),
(2074, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp4]', '2026-07-10 20:55:08', '2026-07-11 15:47:01', NULL, NULL, 0, 1, 1, 0, 'CRM', 'فاطمه کاظمی'),
(2075, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp5]', '2026-07-10 20:55:08', '2026-07-11 15:47:02', NULL, NULL, 0, 1, 1, 0, 'CRM', 'سینا یوسفی'),
(2076, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp6]', '2026-07-10 20:55:09', '2026-07-11 15:47:02', NULL, NULL, 0, 1, 1, 0, 'CRM', 'الهام جعفری'),
(2077, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_sup3]', '2026-07-10 20:55:09', '2026-07-11 15:47:02', NULL, NULL, 0, 1, 1, 0, 'CRM', 'حسن رضایی'),
(2078, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp7]', '2026-07-10 20:55:09', '2026-07-11 15:47:02', NULL, NULL, 0, 1, 1, 0, 'CRM', 'بهرام اکبری'),
(2079, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp8]', '2026-07-10 20:55:10', '2026-07-11 15:47:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'نگار شریفی'),
(2080, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp9]', '2026-07-10 20:55:10', '2026-07-11 15:47:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'پیمان بابایی'),
(2081, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_sup4]', '2026-07-10 20:55:10', '2026-07-11 15:47:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'مریم حسینی'),
(2082, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp10]', '2026-07-10 20:55:11', '2026-07-11 15:47:04', NULL, NULL, 0, 1, 1, 0, 'CRM', 'مینا رستمی'),
(2083, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp11]', '2026-07-10 20:55:11', '2026-07-11 15:47:04', NULL, NULL, 0, 1, 1, 0, 'CRM', 'کیان عباسی'),
(2084, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp12]', '2026-07-10 20:55:12', '2026-07-11 15:47:04', NULL, NULL, 0, 1, 1, 0, 'CRM', 'رها نادری'),
(2085, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_sup5]', '2026-07-10 20:55:12', '2026-07-11 15:47:04', NULL, NULL, 0, 1, 1, 0, 'CRM', 'کاوه نوری'),
(2086, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp13]', '2026-07-10 20:55:13', '2026-07-11 15:47:05', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آرش فلاحی'),
(2087, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp14]', '2026-07-10 20:55:13', '2026-07-11 15:47:06', NULL, NULL, 0, 1, 1, 0, 'CRM', 'سحر زارع'),
(2088, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_emp15]', '2026-07-10 20:55:14', '2026-07-11 15:47:06', NULL, NULL, 0, 1, 1, 0, 'CRM', 'وحید محمودی'),
(2089, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:admin]', '2026-07-10 21:01:35', '2026-07-11 15:47:06', NULL, NULL, 0, 1, 1, 0, 'CRM', 'حسین فغان پور'),
(2090, 1, 1, 1, 'Contacts', 'SYNC_FROM_USERS v1 [user:kpiseed_sup2]', '2026-07-10 21:01:37', '2026-07-11 15:47:06', NULL, NULL, 0, 1, 1, 0, 'CRM', 'سارا احمدی'),
(2091, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:07', '2026-07-11 15:47:07', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم افروز محمدی (مثال)'),
(2092, 1, 1, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-07-09 08:47:26', '2026-07-11 15:47:11', NULL, NULL, 0, 1, 0, 0, 'CRM', 'درخواست پشتیبانی نصب (مثال)'),
(2093, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:25', '2026-07-11 15:47:25', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم رویا نیک رفتار (مثال)'),
(2094, 1, 2, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-07-07 08:47:28', '2026-07-11 15:47:26', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مشکل ورود به سامانه (مثال)'),
(2095, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:26', '2026-07-11 15:47:26', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مهندس قاضی (مثال)'),
(2096, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:28', '2026-07-11 15:47:28', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای مهدی فروزش (مثال)'),
(2097, 1, 3, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-07-05 08:47:35', '2026-07-11 15:47:28', NULL, NULL, 0, 1, 0, 0, 'CRM', 'درخواست آموزش کاربری (مثال)'),
(2098, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:31', '2026-07-11 15:47:31', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای محمد کابینی (مثال)'),
(2099, 1, 4, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-07-02 08:47:38', '2026-07-11 15:47:35', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خطای چاپ فاکتور (مثال)'),
(2100, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:35', '2026-07-11 15:47:35', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مهندس زامیاد (مثال)'),
(2101, 1, 5, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-06-29 08:47:42', '2026-07-11 15:47:38', NULL, NULL, 0, 1, 0, 0, 'CRM', 'درخواست گزارش اختصاصی (مثال)'),
(2102, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:38', '2026-07-11 15:47:38', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای غلامعلی عباسی (مثال)'),
(2103, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:41', '2026-07-11 15:47:41', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای محمدآبادی (مثال)'),
(2104, 1, 2, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-06-26 08:47:43', '2026-07-11 15:47:42', NULL, NULL, 0, 1, 0, 0, 'CRM', 'کندی سیستم در ساعات اوج (مثال)'),
(2105, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:42', '2026-07-11 15:47:42', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم لعیا خسروآبادی (مثال)'),
(2106, 1, 1, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-06-20 08:47:45', '2026-07-11 15:47:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تمدید قرارداد پشتیبانی (مثال)'),
(2107, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:44', '2026-07-11 15:47:44', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای کامران دادجو (مثال)'),
(2108, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:45', '2026-07-11 15:47:45', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای علی ملامحمدی (مثال)'),
(2109, 1, 3, 1, 'HelpDesk', 'SEED_GOOYA_TICKETS v1', '2026-06-14 08:47:47', '2026-07-11 15:47:45', NULL, NULL, 0, 1, 0, 0, 'CRM', 'درخواست فعال‌سازی ماژول جدید (مثال)'),
(2110, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:46', '2026-07-11 15:47:46', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای رضا منوچهری (مثال)'),
(2111, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:47', '2026-07-11 15:47:47', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای محسن غفاری (مثال)'),
(2112, 1, 2, 1, 'Calendar', 'SEED_GOOYA_TASKS v1', '2026-07-11 15:47:49', '2026-07-11 15:47:49', NULL, NULL, 0, 1, 0, 0, 'CRM', 'وظیفه ارسال مستندات (مثال)'),
(2113, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:49', '2026-07-11 15:47:49', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم پورعلی (مثال)'),
(2114, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:50', '2026-07-11 15:47:50', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم خالقی (مثال)'),
(2115, 1, 5, 1, 'Calendar', 'SEED_GOOYA_TASKS v1', '2026-07-11 15:47:51', '2026-07-11 15:47:51', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پیگیری تاییدیه مشتری (مثال)'),
(2116, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:51', '2026-07-11 15:47:51', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مهندس توکلی (مثال)'),
(2117, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:54', '2026-07-11 15:47:54', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم شایان صادقی نژاد (مثال)'),
(2118, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:54', '2026-07-11 15:47:54', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم شریف (مثال)'),
(2119, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:55', '2026-07-11 15:47:55', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم رقیه کاظم زاده (مثال)'),
(2120, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:55', '2026-07-11 15:47:55', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای جواد نیکتابیک (مثال)'),
(2121, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:56', '2026-07-11 15:47:56', NULL, NULL, 0, 1, 0, 0, 'CRM', 'خانم ملیکا زاهدی (مثال)'),
(2122, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:56', '2026-07-11 15:47:56', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای عباس رعفتی (مثال)'),
(2123, 1, 5, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:57', '2026-07-11 15:47:57', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای منوچهر انصاری (مثال)'),
(2124, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:57', '2026-07-11 15:47:57', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای صابر احمدیان (مثال)'),
(2125, 1, 1, 1, 'Contacts', 'SEED_GOOYA_CONTACTS v1', '2026-07-11 15:47:57', '2026-07-11 15:47:57', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آقای ابوالفضل سلیمی (مثال)'),
(2126, 1, 1, 1, 'Vendors', 'SEED_GOOYA_VENDORS v1', '2026-07-12 09:32:30', '2026-07-12 09:32:30', NULL, NULL, 0, 1, 0, 0, 'CRM', 'بازرگانی پارت تامین (مثال)'),
(2127, 1, 1, 1, 'Vendors', 'SEED_GOOYA_VENDORS v1', '2026-07-12 09:32:45', '2026-07-12 09:32:45', NULL, NULL, 0, 1, 0, 0, 'CRM', 'صنایع فلزی آریا (مثال)'),
(2128, 1, 1, 1, 'Vendors', 'SEED_GOOYA_VENDORS v1', '2026-07-12 09:32:46', '2026-07-12 09:32:46', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پخش البرز (مثال)'),
(2129, 1, 1, 1, 'Vendors', 'SEED_GOOYA_VENDORS v1', '2026-07-12 09:32:47', '2026-07-12 09:32:47', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تجهیزات نوین صنعت (مثال)'),
(2130, 1, 1, 1, 'Project', 'SEED_GOOYA_PROJECTS v1', '2026-07-12 10:20:44', '2026-07-12 10:20:44', NULL, NULL, 0, 1, 0, 0, 'CRM', 'استقرار CRM الکترونیک گستر (مثال)'),
(2131, 1, 5, 1, 'Project', 'SEED_GOOYA_PROJECTS v1', '2026-07-12 10:20:57', '2026-07-12 10:20:57', NULL, NULL, 0, 1, 0, 0, 'CRM', 'راه‌اندازی پرتال مشتریان کیان (مثال)'),
(2132, 1, 1, 1, 'Calendar', '', '2026-07-14 16:14:14', '2026-07-14 16:14:14', NULL, NULL, 0, 1, 0, 0, 'CRM', 'جلسه'),
(2133, 1, 1, 1, 'Calendar', '', '2026-07-14 16:17:28', '2026-07-14 16:17:28', NULL, NULL, 0, 1, 0, 0, 'CRM', 'وظیفه'),
(2134, 1, 1, 1, 'Calendar', '', '2026-07-14 16:39:08', '2026-07-14 16:39:08', NULL, NULL, 0, 1, 0, 0, 'CRM', 'جلسه'),
(2139, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پرداخت (مثال)'),
(2140, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پیشگامان صنعت داده (مثال) - پرداخت'),
(2141, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'اورنگ (مثال) - پرداخت'),
(2142, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پرداخت قسط اول (مثال)'),
(2143, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'کیان (مثال) - پرداخت'),
(2144, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'فرایند گستران شرق (مثال) - پرداخت'),
(2145, 1, 1, 1, 'SarvPayments', '', '2026-07-04 06:40:43', '2026-07-04 06:40:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'فرایند گستران شرق (مثال) - پرداخت'),
(2146, 1, 1, 1, 'SarvPayments', 'جابجایی تخصیص تست', '2026-07-04 06:54:21', '2026-07-05 05:37:26', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست پرداخت - الکترونیک گستر'),
(2147, 1, 1, 1, 'Invoice', 'آزمون واقعی مرحله اول؛ رکورد استاندارد Invoice با اقلام استاندارد.', '2026-07-15 22:04:29', '2026-07-15 22:04:29', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تست واقعی فاکتور خرده‌فروشی - حساب ۲۰۳۶ [Gouya-PHASE01]'),
(2148, 1, 1, 1, 'SarvPayments', 'آزمون واقعی پرداخت و تخصیص تراکنشی به فاکتور.', '2026-07-15 22:04:30', '2026-07-15 22:04:30', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پرداخت واقعی فاکتور خرده‌فروشی حساب ۲۰۳۶ [Gouya-PHASE01]'),
(2149, 1, 1, 1, 'HelpDesk', 'درخواست عملیاتی سرویس برای آزمون ارتباط کامل حساب، فرد، تاریخچه و گردش وضعیت.', '2026-07-16 00:38:10', '2026-07-16 00:38:10', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سرویس نصب و راه‌اندازی پکیج پیشرفته (نمونه فاز ۲)'),
(2150, 1, 1, 1, 'PurchaseOrder', 'سفارش خرید استاندارد دارای حساب، تأمین‌کننده، قلم کالا و تاریخچه وضعیت.', '2026-07-16 00:38:10', '2026-07-28 10:59:29', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سفارش خرید پکیج پیشرفته حساب کامران دادجو (نمونه فاز ۲)'),
(2151, 1, 1, 1, 'SarvParticipations', 'رکورد واقعی آزمون مرحله سوم کارتابل حساب.', '2026-07-18 01:04:54', '2026-07-18 01:04:54', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مشارکت واقعی حساب ۲۰۳۶ [Gouya-PHASE03]'),
(2152, 1, 1, 1, 'Leads', '', '2026-07-18 01:04:54', '2026-07-18 22:26:34', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سرنخ مشارکت حساب ۲۰۳۶ [Gouya-PHASE03]'),
(2153, 1, 1, 1, 'SarvSurveyResponses', 'پاسخ واقعی جهت آزمون یکپارچگی کارتابل حساب.', '2026-07-18 03:03:33', '2026-07-18 03:03:33', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پاسخ واقعی نظرسنجی رضایت حساب 2036 [Gouya-PHASE04]'),
(2154, 1, 1, 1, 'SarvSalesContracts', 'قرارداد واقعی جهت آزمون چرخه عمر و ارتباطات حساب.', '2026-07-18 03:03:33', '2026-07-18 03:03:33', NULL, NULL, 0, 1, 0, 0, 'CRM', 'قرارداد فروش واقعی حساب 2036 [Gouya-PHASE04]'),
(2155, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:03:00', '2026-07-18 04:03:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040300-4657-Campaign'),
(2156, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:03:33', '2026-07-18 04:03:34', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040333-5938-Campaign'),
(2157, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040333-5938', '2026-07-18 04:03:34', '2026-07-18 04:03:34', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2158, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:03:34', '2026-07-18 04:03:34', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718040333-5938.txt'),
(2159, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:03:34', '2026-07-18 04:03:34', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2160, 1, 1, 1, 'Calendar', '', '2026-07-18 04:03:34', '2026-07-18 04:03:34', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040333-5938-Task'),
(2161, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:04:06', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040406-5955-Campaign'),
(2162, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955', '2026-07-18 04:04:06', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2163, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:04:06', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718040406-5955.txt'),
(2164, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:04:06', '2026-07-18 04:04:06', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2165, 1, 1, 1, 'Calendar', '', '2026-07-18 04:04:06', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040406-5955-Task'),
(2166, 1, 1, 1, 'Accounts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955', '2026-07-18 04:04:07', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'Gouya-LEAD-SMOKE-20260718040406-5955'),
(2167, 1, 1, 1, 'Contacts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955', '2026-07-18 04:04:07', '2026-07-18 04:04:07', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2168, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:06:48', '2026-07-18 04:06:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040648-8253-Campaign'),
(2169, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040648-8253', '2026-07-18 04:06:48', '2026-07-18 04:06:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2170, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:06:48', '2026-07-18 04:06:49', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718040648-8253.txt'),
(2171, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:06:48', '2026-07-18 04:06:48', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2172, 1, 1, 1, 'Calendar', '', '2026-07-18 04:06:48', '2026-07-18 04:06:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040648-8253-Task'),
(2173, 1, 1, 1, 'Leads', '', '2026-07-18 04:06:49', '2026-07-18 04:06:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2174, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:09:39', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040939-3209-Campaign'),
(2175, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040939-3209', '2026-07-18 04:09:40', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2176, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:09:40', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718040939-3209.txt'),
(2177, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:09:40', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2178, 1, 1, 1, 'Calendar', '', '2026-07-18 04:09:40', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718040939-3209-Task'),
(2179, 1, 1, 1, 'Leads', '', '2026-07-18 04:09:40', '2026-07-18 04:09:40', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2180, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:32:51', '2026-07-18 04:32:52', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043251-9053-Campaign'),
(2181, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043251-9053', '2026-07-18 04:32:51', '2026-07-18 04:32:52', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2182, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:32:51', '2026-07-18 04:32:52', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718043251-9053.txt'),
(2183, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:32:51', '2026-07-18 04:32:51', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2184, 1, 1, 1, 'Calendar', '', '2026-07-18 04:32:52', '2026-07-18 04:32:52', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043251-9053-Task'),
(2185, 1, 1, 1, 'Leads', '', '2026-07-18 04:32:52', '2026-07-18 04:32:52', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2186, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:33:14', '2026-07-18 04:33:15', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043314-6749-Campaign'),
(2187, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043314-6749', '2026-07-18 04:33:14', '2026-07-18 04:33:15', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2188, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:33:14', '2026-07-18 04:33:15', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718043314-6749.txt'),
(2189, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:33:14', '2026-07-18 04:33:14', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2190, 1, 1, 1, 'Calendar', '', '2026-07-18 04:33:14', '2026-07-18 04:33:15', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043314-6749-Task'),
(2191, 1, 1, 1, 'Leads', '', '2026-07-18 04:33:15', '2026-07-18 04:33:15', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2192, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:33:36', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043336-8174-Campaign'),
(2193, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174', '2026-07-18 04:33:36', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2194, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:33:36', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718043336-8174.txt'),
(2195, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:33:36', '2026-07-18 04:33:36', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2196, 1, 1, 1, 'Calendar', '', '2026-07-18 04:33:37', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043336-8174-Task'),
(2197, 1, 1, 1, 'Leads', '', '2026-07-18 04:33:37', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2198, 1, 1, 1, 'Accounts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174', '2026-07-18 04:33:37', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'Gouya-LEAD-SMOKE-20260718043336-8174'),
(2199, 1, 1, 1, 'Contacts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174', '2026-07-18 04:33:37', '2026-07-18 04:33:38', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2200, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:34:58', '2026-07-18 04:35:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043458-8234-Campaign'),
(2201, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234', '2026-07-18 04:34:58', '2026-07-18 04:35:00', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2202, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:34:58', '2026-07-18 04:34:59', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718043458-8234.txt'),
(2203, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:34:58', '2026-07-18 04:34:58', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2204, 1, 1, 1, 'Calendar', '', '2026-07-18 04:34:58', '2026-07-18 04:34:59', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043458-8234-Task'),
(2205, 1, 1, 1, 'Leads', '', '2026-07-18 04:34:59', '2026-07-18 04:34:59', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2206, 1, 1, 1, 'Accounts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234', '2026-07-18 04:34:59', '2026-07-18 04:34:59', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'Gouya-LEAD-SMOKE-20260718043458-8234'),
(2207, 1, 1, 1, 'Contacts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234', '2026-07-18 04:34:59', '2026-07-18 04:34:59', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2208, 1, 1, 1, 'Campaigns', '', '2026-07-18 04:35:55', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043554-3440-Campaign'),
(2209, 1, 1, 1, 'Leads', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440', '2026-07-18 04:35:55', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2210, 1, 1, 1, 'Documents', NULL, '2026-07-18 04:35:55', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'Gouya-LEAD-SMOKE-20260718043554-3440.txt'),
(2211, 1, 1, 0, 'Documents Attachment', NULL, '2026-07-18 04:35:55', '2026-07-18 04:35:55', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2212, 1, 1, 1, 'Calendar', '', '2026-07-18 04:35:55', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya-LEAD-SMOKE-20260718043554-3440-Task'),
(2213, 1, 1, 1, 'Leads', '', '2026-07-18 04:35:55', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2214, 1, 1, 1, 'Accounts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440', '2026-07-18 04:35:56', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'Gouya-LEAD-SMOKE-20260718043554-3440'),
(2215, 1, 1, 1, 'Contacts', 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440', '2026-07-18 04:35:56', '2026-07-18 04:35:56', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2216, 1, 1, 1, 'SarvTargetLists', 'داده واقعی آزمایشی برای کنترل چرخه لیست هدف کارتابل حساب.', '2026-07-18 04:56:10', '2026-07-18 04:56:10', NULL, NULL, 0, 1, 0, 0, 'CRM', 'لیست هدف واقعی حساب ۲۰۳۶ [Gouya-PHASE05]'),
(2217, 1, 1, 1, 'SarvBankAccounts', 'شبای ساختگی معتبر از نظر کنترلی؛ فقط برای آزمون رمزنگاری و ارتباط دیتابیس.', '2026-07-18 04:56:10', '2026-07-18 04:56:10', NULL, NULL, 0, 1, 1, 0, 'CRM', 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(2218, 1, 1, 1, 'SarvBankAccounts', 'شبای ساختگی معتبر از نظر کنترلی؛ فقط برای آزمون رمزنگاری و ارتباط دیتابیس.', '2026-07-18 04:57:31', '2026-07-18 04:57:31', NULL, NULL, 0, 1, 0, 0, 'CRM', 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(2219, 1, 1, 1, 'SarvPayments', 'پرداخت مستقل و واقعی برای کنترل ظرفیت مالی ودیعه؛ به فاکتور تخصیص ندارد.', '2026-07-18 07:46:05', '2026-07-18 07:46:05', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پرداخت واقعی ودیعه حساب ۲۰۳۶ [Gouya-PHASE06]'),
(2220, 1, 1, 1, 'SarvDeposits', 'ودیعه واقعی متصل به پرداخت دریافت‌شده؛ مانده و چرخه عمر توسط دامنه کنترل می‌شود.', '2026-07-18 07:46:05', '2026-07-18 07:46:05', NULL, NULL, 0, 1, 0, 0, 'CRM', 'ودیعه تضمینی واقعی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(2221, 1, 1, 1, 'Accounts', 'حساب زیرمجموعه واقعی برای آزمون رابطه، کارتابل، ACL و جلوگیری از حلقه.', '2026-07-18 07:46:05', '2026-07-18 07:46:05', NULL, NULL, 0, 1, 0, 0, 'CRM', 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(2222, 1, 1, 1, 'SarvBusinessLocations', 'رکورد واقعی آزمایشی شعبه برای کنترل ارتباط کامل حساب، مدیر، نشانی و تاریخچه.', '2026-07-18 08:21:37', '2026-07-18 08:21:37', NULL, NULL, 0, 1, 0, 0, 'CRM', 'شعبه مرکزی حساب 2036 [Gouya-PHASE07]'),
(2223, 1, 1, 1, 'SarvBusinessLocations', 'رکورد واقعی آزمایشی مرکز سرویس با ظرفیت و رابطه والد با شعبه مرکزی.', '2026-07-18 08:21:37', '2026-07-18 08:21:37', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مرکز سرویس حساب 2036 [Gouya-PHASE07]'),
(2224, 1, 1, 1, 'SarvBusinessLocations', 'مرکز فروش واقعی برای آزمون کانال فروش، سلسله‌مراتب و کارتابل حساب.', '2026-07-18 08:45:43', '2026-07-18 08:45:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'مرکز فروش حساب 2036 [Gouya-PHASE08]'),
(2225, 1, 1, 1, 'SarvTimeReservations', 'رزرو واقعی جهت آزمون رابطه حساب، فرد، مرکز فروش، چرخه وضعیت و جلوگیری از تداخل.', '2026-07-18 08:45:43', '2026-07-18 08:45:43', NULL, NULL, 0, 1, 0, 0, 'CRM', 'رزرو تایم واقعی حساب 2036 [Gouya-PHASE08]'),
(2226, 1, 1, 1, 'SarvGifts', 'هدیه واقعی جهت آزمون چرخه تأیید، ارسال، تحویل و ثبت موجودی.', '2026-07-18 09:06:00', '2026-07-18 09:06:00', NULL, NULL, 0, 1, 0, 0, 'CRM', 'هدیه واقعی حساب 2036 [Gouya-PHASE09]'),
(2227, 1, 1, 1, 'SarvProductSamples', 'نمونه واقعی جهت آزمون رابطه فرصت فروش، ارسال، برگشت و دفتر موجودی.', '2026-07-18 09:06:00', '2026-07-18 09:06:01', NULL, NULL, 0, 1, 0, 0, 'CRM', 'نمونه محصول واقعی حساب 2036 [Gouya-PHASE09]'),
(2228, 1, 1, 1, 'SarvAccessGrants', 'Canonical record-level access fixture for Account 2036 and the real Team Selling group.', '2026-07-18 09:40:14', '2026-07-18 09:40:14', NULL, NULL, 0, 1, 0, 2, 'CRM', 'Team Selling - آقای کامران دادجو (مثال) - Read'),
(2229, 1, 1, 1, 'Calendar', '', '2026-07-18 22:10:23', '2026-07-18 22:10:23', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'پیگیری تلفنی پیشنهاد قیمت [GOOYA-TEST]'),
(2230, 1, 1, 1, 'Events', '', '2026-07-18 22:10:23', '2026-07-18 22:10:23', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'جلسه دمو محصول گویا [GOOYA-TEST]'),
(2231, 1, 1, 1, 'Events', '', '2026-07-18 22:10:23', '2026-07-18 22:10:23', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'تماس اولیه معارفه [GOOYA-TEST]'),
(2232, 1, 1, 1, 'ModComments', 'تماس اولیه انجام شد؛ مشتری برای جلسه دمو اعلام آمادگی کرد. [GOOYA-TEST]', '2026-07-18 22:10:23', '2026-07-18 22:10:23', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'comment'),
(2233, 1, 1, 1, 'Documents', '', '2026-07-18 22:10:23', '2026-07-18 22:10:23', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'پیش‌فاکتور نمونه گویا [GOOYA-TEST]'),
(2234, 1, 1, 1, 'ModComments', NULL, '2026-07-18 22:26:34', '2026-07-18 22:26:34', NULL, NULL, 0, 1, 0, 0, 'CRM', 'fdfd'),
(2235, 1, 1, 1, 'Accounts', 'حساب سازمانی شرکت — ساخته‌شده توسط همگام‌سازی KPI [KPI-SYNC company]', '2026-07-19 04:17:33', '2026-07-19 04:17:33', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'گویا حساب'),
(2236, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=1]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'حسین فغان پور'),
(2237, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=6]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'رضا محمدیان'),
(2238, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=7]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'علی کریمی'),
(2239, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=8]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'نیما قاسمی'),
(2240, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=9]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'زهرا مرادی'),
(2241, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=10]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'امیر صادقی'),
(2242, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=11]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'سارا احمدی');
INSERT IGNORE INTO `vtiger_crmentity` (`crmid`, `smcreatorid`, `smownerid`, `modifiedby`, `setype`, `description`, `createdtime`, `modifiedtime`, `viewedtime`, `status`, `version`, `presence`, `deleted`, `smgroupid`, `source`, `label`) VALUES
(2243, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=12]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'فاطمه کاظمی'),
(2244, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=13]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'سینا یوسفی'),
(2245, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=14]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'الهام جعفری'),
(2246, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=15]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'حسن رضایی'),
(2247, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=16]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'بهرام اکبری'),
(2248, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=17]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'نگار شریفی'),
(2249, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=18]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'پیمان بابایی'),
(2250, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=19]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'مریم حسینی'),
(2251, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=20]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'مینا رستمی'),
(2252, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=21]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'کیان عباسی'),
(2253, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=22]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'رها نادری'),
(2254, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=23]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'کاوه نوری'),
(2255, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=24]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'آرش فلاحی'),
(2256, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=25]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'سحر زارع'),
(2257, 1, 1, 1, 'Contacts', 'پرسنل داخلی — همگام‌سازی خودکار از ارزیابی عملکرد [KPI-SYNC uid=26]', '2026-07-19 04:17:33', '2026-07-19 04:17:57', NULL, NULL, 0, 1, 1, NULL, 'CRM', 'وحید محمودی'),
(2258, 1, 1, 1, 'Calendar', '', '2026-07-19 04:49:48', '2026-07-19 04:49:48', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'پیگیری مدارک پرسنلی [GOOYA-TEST]'),
(2259, 1, 1, 1, 'Events', '', '2026-07-19 04:49:48', '2026-07-19 04:49:48', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'جلسه هماهنگی داخلی [GOOYA-TEST]'),
(2260, 1, 1, 1, 'Events', '', '2026-07-19 04:49:48', '2026-07-19 04:49:48', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'تماس آزمایشی داخلی [GOOYA-TEST]'),
(2261, 1, 1, 1, 'ModComments', 'هماهنگی اولیه انجام شد؛ مدارک تا پایان هفته تکمیل می‌شود. [GOOYA-TEST]', '2026-07-19 04:49:48', '2026-07-19 04:49:48', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'comment'),
(2262, 1, 1, 1, 'Documents', '', '2026-07-19 04:49:48', '2026-07-19 04:49:48', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'فرم پرسنلی نمونه [GOOYA-TEST]'),
(2263, 1, 1, 1, 'Calendar', '', '2026-07-20 23:51:54', '2026-07-20 23:51:54', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'پیگیری پیشنهاد فرصت [GOOYA-TEST]'),
(2264, 1, 1, 1, 'Events', '', '2026-07-20 23:51:54', '2026-07-20 23:51:54', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'جلسه ارائه پکیج [GOOYA-TEST]'),
(2265, 1, 1, 1, 'Events', '', '2026-07-20 23:51:54', '2026-07-20 23:51:54', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'تماس نیازسنجی [GOOYA-TEST]'),
(2266, 1, 1, 1, 'ModComments', 'مشتری به پکیج علاقه‌مند است؛ منتظر تأیید بودجه. [GOOYA-TEST]', '2026-07-20 23:51:54', '2026-07-20 23:51:54', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'comment'),
(2267, 1, 1, 1, 'Documents', '', '2026-07-20 23:51:54', '2026-07-20 23:51:54', NULL, NULL, 0, 1, 0, NULL, 'CRM', 'پروپوزال فرصت [GOOYA-TEST]'),
(2268, 1, 2, 1, 'PurchaseOrder', 'این سفارش به‌صورت نمونه عملی کامل توسط Codex ثبت و با دیتابیس تطبیق داده شد.', '2026-07-29 12:55:23', '2026-07-29 12:55:23', NULL, NULL, 0, 1, 0, 0, 'CRM', 'سفارش خرید نمونه عملی کامل - ۱۴۰۵/۰۵/۰۷'),
(2269, 1, 1, 1, 'Campaigns', '', '2026-07-30 06:31:15', '2026-07-30 06:31:16', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260730063115-5303-Campaign'),
(2270, 1, 1, 1, 'Campaigns', '', '2026-07-30 06:33:03', '2026-07-30 06:33:04', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260730063303-9027-Campaign'),
(2271, 1, 1, 1, 'Campaigns', '', '2026-07-30 06:36:01', '2026-07-30 06:36:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260730063600-5929-Campaign'),
(2272, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929', '2026-07-30 06:36:01', '2026-07-30 06:36:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2273, 1, 1, 1, 'Calendar', '', '2026-07-30 06:36:01', '2026-07-30 06:36:02', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260730063600-5929-Task'),
(2274, 1, 1, 1, 'Leads', '', '2026-07-30 06:36:02', '2026-07-30 06:36:03', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2275, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929', '2026-07-30 06:36:02', '2026-07-30 06:36:03', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260730063600-5929'),
(2276, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929', '2026-07-30 06:36:02', '2026-07-30 06:36:02', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2277, 1, 2, 1, 'Quotes', 'نمونه اجرایی کامل فرم پیش فاکتور با محصول، مالیات و اطلاعات حساب.', '2026-07-30 08:40:25', '2026-07-30 08:50:27', NULL, NULL, 0, 1, 0, 0, 'CRM', 'پیش فاکتور نمونه طرح گویا ۱۴۰۵/۰۵/۰۸'),
(2278, 1, 1, 1, 'Quotes Attachment', 'quote-sample-attachment.txt', '2026-07-30 08:52:08', '2026-07-30 08:52:08', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2279, 1, 1, 1, 'Contacts', 'Temporary integration test', '2026-08-01 18:06:22', '2026-08-01 18:06:23', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260801180622-8131'),
(2280, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 06:19:45', '2026-08-02 06:19:46', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802061945-5541'),
(2281, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 06:52:07', '2026-08-02 06:52:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802065207-9882'),
(2282, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 07:16:42', '2026-08-02 07:16:42', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802071642-5628'),
(2283, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 07:25:36', '2026-08-02 07:25:36', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802072535-4912'),
(2284, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 08:06:31', '2026-08-02 08:06:31', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802080631-6166'),
(2285, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 17:02:58', '2026-08-02 17:02:59', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802170258-4182'),
(2286, 1, 2, 1, 'Contacts', 'رکورد نمونه برای تست عملی طرح گویا و بازخوانی کامل از دیتابیس', '2026-08-02 17:23:29', '2026-08-02 17:23:29', NULL, NULL, 0, 1, 0, 0, 'CRM', 'آزمایش نمونه عملی طرح گویا'),
(2287, 1, 2, 1, 'Contacts', 'Temporary integration test', '2026-08-02 17:30:55', '2026-08-02 17:30:57', NULL, NULL, 0, 1, 1, 0, 'CRM', 'Gouya GOUYA-CONTACT-SMOKE-20260802173055-1807'),
(2288, 1, 1, 1, 'Communications', NULL, '2026-08-02 17:54:56', '2026-08-02 17:54:56', NULL, NULL, 0, 1, 0, 0, 'CRM', 'ارتباط آزمایشی طرح گویا'),
(2289, 1, 1, 1, 'Communications', NULL, '2026-08-02 18:01:25', '2026-08-02 18:01:25', NULL, NULL, 0, 1, 0, 0, 'CRM', 'ارتباط عملی طرح گویا ۱۴۰۵/۰۵/۱۱'),
(2290, 1, 1, 1, 'Calendar', 'نمونه ثبت عملی طرح گویا برای آزمون ارتباط فرم تماس با تقویم، کاربران، یادآوری نرم‌افزاری و دیتابیس.', '2026-08-03 06:41:54', '2026-08-03 06:41:54', NULL, NULL, 0, 1, 1, 0, 'CRM', 'تماس آزمایشی عملی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2291, 1, 1, 1, 'Calendar', 'نمونه نهایی ثبت عملی طرح گویا؛ آزمون فرم تماس، تقویم شمسی، فهرست کاربران، ارتباط مخاطب و ماندگاری دیتابیس.', '2026-08-03 06:46:54', '2026-08-03 06:46:54', NULL, NULL, 0, 1, 1, 0, 'CRM', 'تماس نمونه نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2292, 1, 1, 1, 'Calendar', 'نمونه نهایی تأییدشده پس از اصلاح مبدل تاریخ؛ مرتبط با مخاطب آزمایشی، کاربر فعال و یادآوری نرم‌افزاری.', '2026-08-03 06:55:24', '2026-08-03 06:55:24', NULL, NULL, 0, 1, 1, 0, 'CRM', 'تماس نهایی تأییدشده طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2293, 1, 1, 1, 'Calendar', 'رکورد تست عملی نهایی طرح گویا با تاریخ شمسی تایپی، تقویم، ۲۶ کاربر، ارتباط مخاطب و یادآوری پایگاه داده.', '2026-08-03 06:59:49', '2026-08-03 06:59:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'تماس عملی نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2294, 1, 1, 1, 'Calendar', 'نمونه عملی طرح گویا؛ ثبت از فرم تماس، با تاریخ شمسی، یادآوری نرم‌افزاری و ارتباط واقعی با مخاطب.', '2026-08-03 07:05:39', '2026-08-03 07:05:39', NULL, NULL, 0, 1, 1, 0, 'CRM', 'تماس تست نهایی موفق طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2295, 1, 1, 1, 'Calendar', 'نمونه نهایی تأییدشده؛ ثبت واقعی فرم تماس طرح گویا و تطبیق مستقیم با دیتابیس.', '2026-08-03 07:08:10', '2026-08-17 10:28:37', NULL, NULL, 0, 1, 0, 0, 'CRM', 'تماس نهایی تأیید دیتابیس طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(2296, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:09:47', '2026-08-09 06:09:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809060946-7013-Campaign'),
(2297, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809060946-7013', '2026-08-09 06:09:47', '2026-08-09 06:09:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2298, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:09:47', '2026-08-09 06:09:48', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809060946-7013.txt'),
(2299, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:09:47', '2026-08-09 06:09:47', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2300, 1, 1, 1, 'Calendar', '', '2026-08-09 06:09:48', '2026-08-09 06:09:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809060946-7013-Task'),
(2301, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:12:48', '2026-08-09 06:12:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809061248-2728-Campaign'),
(2302, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809061248-2728', '2026-08-09 06:12:49', '2026-08-09 06:12:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2303, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:12:49', '2026-08-09 06:12:49', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809061248-2728.txt'),
(2304, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:12:49', '2026-08-09 06:12:49', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2305, 1, 1, 1, 'Calendar', '', '2026-08-09 06:12:49', '2026-08-09 06:12:49', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809061248-2728-Task'),
(2306, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:13:45', '2026-08-09 06:13:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809061344-4881-Campaign'),
(2307, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881', '2026-08-09 06:13:45', '2026-08-09 06:13:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2308, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:13:45', '2026-08-09 06:13:47', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809061344-4881.txt'),
(2309, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:13:45', '2026-08-09 06:13:45', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2310, 1, 1, 1, 'Calendar', '', '2026-08-09 06:13:46', '2026-08-09 06:13:47', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809061344-4881-Task'),
(2311, 1, 1, 1, 'Leads', '', '2026-08-09 06:13:46', '2026-08-09 06:13:48', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2312, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881', '2026-08-09 06:13:46', '2026-08-09 06:13:48', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809061344-4881'),
(2313, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881', '2026-08-09 06:13:47', '2026-08-09 06:13:47', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2314, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:20:44', '2026-08-09 06:20:46', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062044-1209-Campaign'),
(2315, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209', '2026-08-09 06:20:44', '2026-08-09 06:20:46', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2316, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:20:44', '2026-08-09 06:20:45', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809062044-1209.txt'),
(2317, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:20:44', '2026-08-09 06:20:44', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2318, 1, 1, 1, 'Calendar', '', '2026-08-09 06:20:44', '2026-08-09 06:20:45', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062044-1209-Task'),
(2319, 1, 1, 1, 'Leads', '', '2026-08-09 06:20:45', '2026-08-09 06:20:46', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2320, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209', '2026-08-09 06:20:45', '2026-08-09 06:20:46', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809062044-1209'),
(2321, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209', '2026-08-09 06:20:45', '2026-08-09 06:20:45', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2322, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:22:20', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062220-7570-Campaign'),
(2323, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570', '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2324, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809062220-7570.txt'),
(2325, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:22:21', '2026-08-09 06:22:21', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2326, 1, 1, 1, 'Calendar', '', '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062220-7570-Task'),
(2327, 1, 1, 1, 'Leads', '', '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2328, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570', '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809062220-7570'),
(2329, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570', '2026-08-09 06:22:21', '2026-08-09 06:22:22', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2330, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:27:04', '2026-08-09 06:27:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062704-6866-Campaign'),
(2331, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866', '2026-08-09 06:27:05', '2026-08-09 06:27:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2332, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:27:05', '2026-08-09 06:27:06', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809062704-6866.txt'),
(2333, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:27:05', '2026-08-09 06:27:05', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2334, 1, 1, 1, 'Calendar', '', '2026-08-09 06:27:05', '2026-08-09 06:27:06', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809062704-6866-Task'),
(2335, 1, 1, 1, 'Leads', '', '2026-08-09 06:27:05', '2026-08-09 06:27:07', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2336, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866', '2026-08-09 06:27:06', '2026-08-09 06:27:06', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809062704-6866'),
(2337, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866', '2026-08-09 06:27:06', '2026-08-09 06:27:06', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2338, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:30:37', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809063037-9459-Campaign'),
(2339, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459', '2026-08-09 06:30:37', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2340, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:30:38', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809063037-9459.txt'),
(2341, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:30:38', '2026-08-09 06:30:38', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2342, 1, 1, 1, 'Calendar', '', '2026-08-09 06:30:38', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809063037-9459-Task'),
(2343, 1, 1, 1, 'Leads', '', '2026-08-09 06:30:38', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2344, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459', '2026-08-09 06:30:38', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809063037-9459'),
(2345, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459', '2026-08-09 06:30:38', '2026-08-09 06:30:39', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2346, 1, 1, 1, 'Campaigns', '', '2026-08-09 06:31:23', '2026-08-09 06:31:25', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809063122-8988-Campaign'),
(2347, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988', '2026-08-09 06:31:23', '2026-08-09 06:31:25', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2348, 1, 1, 1, 'Documents', NULL, '2026-08-09 06:31:23', '2026-08-09 06:31:24', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809063122-8988.txt'),
(2349, 1, 1, 0, 'Documents Attachment', NULL, '2026-08-09 06:31:23', '2026-08-09 06:31:23', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2350, 1, 1, 1, 'Calendar', '', '2026-08-09 06:31:23', '2026-08-09 06:31:24', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809063122-8988-Task'),
(2351, 1, 1, 1, 'Leads', '', '2026-08-09 06:31:24', '2026-08-09 06:31:25', NULL, NULL, 0, 1, 1, 0, 'CRM', 'ورودی استاندارد'),
(2352, 1, 1, 1, 'Accounts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988', '2026-08-09 06:31:24', '2026-08-09 06:31:25', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'SARV-LEAD-SMOKE-20260809063122-8988'),
(2353, 1, 1, 1, 'Contacts', 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988', '2026-08-09 06:31:24', '2026-08-09 06:31:25', NULL, NULL, 0, 1, 1, 0, 'WEBSERVICE', 'آزمون یکپارچگی سرنخ'),
(2362, 1, 1, 1, 'Campaigns', '', '2026-08-09 08:43:07', '2026-08-09 08:43:07', NULL, NULL, 0, 1, 0, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809084307-7449-Campaign'),
(2363, 1, 1, 1, 'Leads', 'Temporary integration record: SARV-LEAD-SMOKE-20260809084321-3905', '2026-08-09 08:43:21', '2026-08-09 08:43:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون یکپارچگی سرنخ'),
(2364, 1, 1, 1, 'Documents', NULL, '2026-08-09 08:43:21', '2026-08-09 08:43:22', NULL, NULL, 0, 1, 1, 0, 'SARV LEADS', 'SARV-LEAD-SMOKE-20260809084321-3905.txt'),
(2366, 1, 1, 1, 'Calendar', '', '2026-08-09 08:43:22', '2026-08-09 08:43:22', NULL, NULL, 0, 1, 1, 0, 'CRM', 'SARV-LEAD-SMOKE-20260809084321-3905-Task'),
(2530, 1, 1, 1, 'Potentials', '', '2026-08-10 07:24:30', '2026-08-10 07:24:46', NULL, NULL, 0, 1, 1, 0, 'CRM', 'آزمون عملی فرم فرصت گویا 1786346601193'),
(2550, 1, 1, 1, 'GooyaCloud Attachment', 'gooyachat-archive-1-20260811-075923.zip', '2026-08-11 07:59:23', '2026-08-11 07:59:25', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2560, 1, 1, 1, 'GooyaCloud Attachment', 'gooyachat-archive-7-20260811-082641.zip', '2026-08-11 08:26:42', '2026-08-11 08:26:44', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2561, 1, 1, 1, 'GooyaCloud Attachment', 'gooyachat-archive-8-20260811-082643.zip', '2026-08-11 08:26:43', '2026-08-11 08:26:43', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2566, 1, 1, 1, 'GooyaCloud Attachment', 'gooyachat-archive-9-20260811-082707.zip', '2026-08-11 08:27:07', '2026-08-11 08:27:09', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2567, 1, 1, 1, 'GooyaCloud Attachment', 'gooyachat-archive-10-20260811-082708.zip', '2026-08-11 08:27:08', '2026-08-11 08:27:09', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2569, 1, 1, 1, 'GooyaChat', 'voice-1786437748206.webm', '2026-08-11 08:42:28', '2026-08-11 08:42:28', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2581, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-1.zip', '2026-08-12 09:54:36', '2026-08-12 09:54:39', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2588, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-2.zip', '2026-08-12 10:27:15', '2026-08-12 10:27:21', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2589, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-3.zip', '2026-08-12 10:27:18', '2026-08-12 10:27:21', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2592, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-5.zip', '2026-08-12 10:28:09', '2026-08-12 10:28:16', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2593, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-6.zip', '2026-08-12 10:28:13', '2026-08-12 10:28:15', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2623, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-8.zip', '2026-08-13 09:11:28', '2026-08-13 09:11:29', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2626, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-9.zip', '2026-08-13 09:11:34', '2026-08-13 09:11:37', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2627, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-10.zip', '2026-08-13 09:11:35', '2026-08-13 09:11:37', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2636, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-12.zip', '2026-08-13 09:39:57', '2026-08-13 09:40:00', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2637, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-13.zip', '2026-08-13 09:39:59', '2026-08-13 09:40:00', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2642, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-15.zip', '2026-08-13 09:41:12', '2026-08-13 09:41:18', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2643, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-16.zip', '2026-08-13 09:41:14', '2026-08-13 09:41:18', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2644, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-17.zip', '2026-08-13 09:41:15', '2026-08-13 09:41:17', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2645, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-18.zip', '2026-08-13 09:41:16', '2026-08-13 09:41:17', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2659, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-20.zip', '2026-08-13 09:55:03', '2026-08-13 09:55:04', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2664, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-21.zip', '2026-08-13 09:55:09', '2026-08-13 09:55:14', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2665, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-22.zip', '2026-08-13 09:55:11', '2026-08-13 09:55:14', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2666, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-23.zip', '2026-08-13 09:55:12', '2026-08-13 09:55:14', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2667, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-24.zip', '2026-08-13 09:55:13', '2026-08-13 09:55:14', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2689, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-26.zip', '2026-08-15 07:10:04', '2026-08-15 07:10:05', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2694, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-27.zip', '2026-08-15 07:10:10', '2026-08-15 07:10:16', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2695, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-28.zip', '2026-08-15 07:10:12', '2026-08-15 07:10:16', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2696, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-29.zip', '2026-08-15 07:10:13', '2026-08-15 07:10:15', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2697, 1, 1, 1, 'GooyaCloud Attachment', 'gooyanegar-recovery-30.zip', '2026-08-15 07:10:14', '2026-08-15 07:10:15', NULL, NULL, 0, 1, 1, NULL, NULL, NULL),
(2699, 6, 6, 6, 'GooyaNegar Signature', 'نسخه امضای شخصی گویانگار', '2026-08-15 07:27:24', '2026-08-15 07:27:24', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2700, 6, 6, 6, 'GooyaNegar Final PDF', 'PDF رسمی و تغییرناپذیر گویانگار', '2026-08-15 07:27:25', '2026-08-15 07:27:25', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2701, 6, 6, 6, 'GooyaNegar Final PDF', 'PDF رسمی و تغییرناپذیر گویانگار', '2026-08-15 07:27:25', '2026-08-15 07:27:25', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2702, 6, 6, 6, 'GooyaNegar Final PDF', 'PDF رسمی و تغییرناپذیر گویانگار', '2026-08-15 07:27:26', '2026-08-15 07:27:26', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2703, 6, 6, 6, 'GooyaNegar Final PDF', 'PDF رسمی و تغییرناپذیر گویانگار', '2026-08-15 07:27:26', '2026-08-15 07:27:26', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2704, 1, 1, 1, 'GooyaNegar Attachment', 'پیوست-آزمایشی-گویانگار.txt', '2026-08-15 07:27:26', '2026-08-15 07:27:26', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2714, 1, 1, 1, 'GooyaChat', 'voice-1786962651679.webm', '2026-08-17 10:30:52', '2026-08-17 10:30:52', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2715, 1, 1, 1, 'GooyaCloud Attachment', 'Book1 (2).pdf', '2026-08-17 10:36:22', '2026-08-17 10:36:22', NULL, NULL, 0, 1, 0, NULL, NULL, NULL),
(2716, 1, 1, 1, 'GooyaNegar Signature', 'نسخه امضای شخصی گویانگار', '2026-08-17 10:39:37', '2026-08-17 10:39:37', NULL, NULL, 0, 1, 0, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_crmentityrel`
--

DROP TABLE IF EXISTS `vtiger_crmentityrel`;
CREATE TABLE `vtiger_crmentityrel` (
  `crmid` int(11) NOT NULL,
  `module` varchar(100) NOT NULL,
  `relcrmid` int(11) NOT NULL,
  `relmodule` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_crmentityrel`
--

INSERT IGNORE INTO `vtiger_crmentityrel` (`crmid`, `module`, `relcrmid`, `relmodule`) VALUES
(3, 'SMSNotifier', 2, 'SMSNotifier'),
(4, 'SMSNotifier', 2, 'SMSNotifier'),
(5, 'SMSNotifier', 2, 'SMSNotifier'),
(6, 'SMSNotifier', 2, 'SMSNotifier'),
(7, 'SMSNotifier', 2, 'SMSNotifier'),
(8, 'SMSNotifier', 2, 'SMSNotifier'),
(2, 'Leads', 9, 'Calendar'),
(2, 'Leads', 10, 'Calendar'),
(2036, 'Accounts', 2152, 'Leads'),
(2091, 'Contacts', 22, 'Accounts'),
(2093, 'Contacts', 23, 'Accounts'),
(2095, 'Contacts', 2034, 'Accounts'),
(2096, 'Contacts', 20, 'Accounts'),
(2098, 'Contacts', 2032, 'Accounts'),
(2100, 'Contacts', 2037, 'Accounts'),
(2102, 'Contacts', 21, 'Accounts'),
(2103, 'Contacts', 2029, 'Accounts'),
(2105, 'Contacts', 21, 'Accounts'),
(2107, 'Contacts', 2036, 'Accounts'),
(2108, 'Contacts', 23, 'Accounts'),
(2113, 'Contacts', 25, 'Accounts'),
(2114, 'Contacts', 2033, 'Accounts'),
(2116, 'Contacts', 24, 'Accounts'),
(2117, 'Contacts', 2035, 'Accounts'),
(2120, 'Contacts', 2030, 'Accounts'),
(2121, 'Contacts', 2031, 'Accounts'),
(2122, 'Contacts', 20, 'Accounts'),
(2123, 'Contacts', 22, 'Accounts'),
(2125, 'Contacts', 2028, 'Accounts'),
(2276, 'Contacts', 2275, 'Accounts'),
(2280, 'Contacts', 20, 'Accounts'),
(2281, 'Contacts', 20, 'Accounts'),
(2282, 'Contacts', 20, 'Accounts'),
(2283, 'Contacts', 20, 'Accounts'),
(2284, 'Contacts', 20, 'Accounts'),
(2285, 'Contacts', 20, 'Accounts'),
(2287, 'Contacts', 20, 'Accounts'),
(2313, 'Contacts', 2312, 'Accounts'),
(2321, 'Contacts', 2320, 'Accounts'),
(2329, 'Contacts', 2328, 'Accounts'),
(2337, 'Contacts', 2336, 'Accounts'),
(2345, 'Contacts', 2344, 'Accounts'),
(2353, 'Contacts', 2352, 'Accounts');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_crmentity_seq`
--

DROP TABLE IF EXISTS `vtiger_crmentity_seq`;
CREATE TABLE `vtiger_crmentity_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_crmentity_seq`
--

INSERT IGNORE INTO `vtiger_crmentity_seq` (`id`) VALUES
(2716);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_crmentity_user_field`
--

DROP TABLE IF EXISTS `vtiger_crmentity_user_field`;
CREATE TABLE `vtiger_crmentity_user_field` (
  `recordid` int(19) NOT NULL,
  `userid` int(19) NOT NULL,
  `starred` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_crmentity_user_field`
--

INSERT IGNORE INTO `vtiger_crmentity_user_field` (`recordid`, `userid`, `starred`) VALUES
(2, 1, '0'),
(9, 1, '0'),
(10, 1, '0'),
(11, 1, '0'),
(14, 1, '0'),
(15, 1, '0'),
(16, 1, '0'),
(17, 1, '0'),
(18, 1, '0'),
(19, 1, '0'),
(2025, 1, '0'),
(2046, 1, '0'),
(2049, 1, '0'),
(2050, 1, '0'),
(2063, 1, '0'),
(2054, 1, '0'),
(2066, 1, '0'),
(2067, 1, '0'),
(2068, 1, '0'),
(2069, 1, '0'),
(2070, 1, '0'),
(2071, 1, '0'),
(2072, 1, '0'),
(2073, 1, '0'),
(2074, 1, '0'),
(2075, 1, '0'),
(2076, 1, '0'),
(2077, 1, '0'),
(2078, 1, '0'),
(2079, 1, '0'),
(2080, 1, '0'),
(2081, 1, '0'),
(2082, 1, '0'),
(2083, 1, '0'),
(2084, 1, '0'),
(2085, 1, '0'),
(2086, 1, '0'),
(2087, 1, '0'),
(2088, 1, '0'),
(2089, 1, '0'),
(2090, 1, '0'),
(2091, 1, '0'),
(2092, 1, '0'),
(2094, 1, '0'),
(2093, 1, '0'),
(2095, 1, '0'),
(2097, 1, '0'),
(2096, 1, '0'),
(2098, 1, '0'),
(2099, 1, '0'),
(2100, 1, '0'),
(2101, 1, '0'),
(2102, 1, '0'),
(2103, 1, '0'),
(2104, 1, '0'),
(2105, 1, '0'),
(2106, 1, '0'),
(2107, 1, '0'),
(2109, 1, '0'),
(2108, 1, '0'),
(2110, 1, '0'),
(2111, 1, '0'),
(2112, 1, '0'),
(2113, 1, '0'),
(2114, 1, '0'),
(2115, 1, '0'),
(2116, 1, '0'),
(2117, 1, '0'),
(2118, 1, '0'),
(2119, 1, '0'),
(2120, 1, '0'),
(2121, 1, '0'),
(2122, 1, '0'),
(2123, 1, '0'),
(2124, 1, '0'),
(2125, 1, '0'),
(1050, 1, '0'),
(2065, 1, '0'),
(2052, 1, '0'),
(2126, 1, '0'),
(2127, 1, '0'),
(2128, 1, '0'),
(2129, 1, '0'),
(2130, 1, '0'),
(2131, 1, '0'),
(2132, 1, '0'),
(2133, 1, '0'),
(2134, 1, '0'),
(2139, 1, NULL),
(2140, 1, NULL),
(2141, 1, NULL),
(2142, 1, NULL),
(2143, 1, NULL),
(2144, 1, NULL),
(2145, 1, NULL),
(2146, 1, NULL),
(2147, 1, '0'),
(2148, 1, NULL),
(2149, 1, '0'),
(2150, 1, '0'),
(2151, 1, NULL),
(2152, 1, '0'),
(2153, 1, NULL),
(2154, 1, NULL),
(2155, 1, '0'),
(2156, 1, '0'),
(2157, 1, '0'),
(2158, 1, '0'),
(2160, 1, '0'),
(2161, 1, '0'),
(2162, 1, '0'),
(2163, 1, '0'),
(2165, 1, '0'),
(2166, 1, '0'),
(2167, 1, '0'),
(2168, 1, '0'),
(2169, 1, '0'),
(2170, 1, '0'),
(2172, 1, '0'),
(2173, 1, '0'),
(2174, 1, '0'),
(2175, 1, '0'),
(2176, 1, '0'),
(2178, 1, '0'),
(2179, 1, '0'),
(2180, 1, '0'),
(2181, 1, '0'),
(2182, 1, '0'),
(2184, 1, '0'),
(2185, 1, '0'),
(2186, 1, '0'),
(2187, 1, '0'),
(2188, 1, '0'),
(2190, 1, '0'),
(2191, 1, '0'),
(2192, 1, '0'),
(2193, 1, '0'),
(2194, 1, '0'),
(2196, 1, '0'),
(2197, 1, '0'),
(2198, 1, '0'),
(2199, 1, '0'),
(2200, 1, '0'),
(2201, 1, '0'),
(2202, 1, '0'),
(2204, 1, '0'),
(2205, 1, '0'),
(2206, 1, '0'),
(2207, 1, '0'),
(2208, 1, '0'),
(2209, 1, '0'),
(2210, 1, '0'),
(2212, 1, '0'),
(2213, 1, '0'),
(2214, 1, '0'),
(2215, 1, '0'),
(2216, 1, NULL),
(2217, 1, NULL),
(2218, 1, NULL),
(2219, 1, NULL),
(2220, 1, NULL),
(2221, 1, '0'),
(2222, 1, NULL),
(2223, 1, NULL),
(2224, 1, NULL),
(2225, 1, NULL),
(2226, 1, NULL),
(2227, 1, NULL),
(2228, 1, NULL),
(2036, 1, '1'),
(2247, 1, '1'),
(2251, 1, '1'),
(1012, 1, '0'),
(2057, 1, '0'),
(2268, 1, '0'),
(2269, 1, '0'),
(2270, 1, '0'),
(2271, 1, '0'),
(2272, 1, '0'),
(2273, 1, '0'),
(2274, 1, '0'),
(2275, 1, '0'),
(2276, 1, '0'),
(2277, 1, '0'),
(2279, 1, '0'),
(2280, 1, '0'),
(2281, 1, '0'),
(2282, 1, '0'),
(2283, 1, '0'),
(2284, 1, '0'),
(2285, 1, '0'),
(2286, 1, '0'),
(2287, 1, '0'),
(2288, 1, NULL),
(2289, 1, NULL),
(2290, 1, '0'),
(2291, 1, '0'),
(2292, 1, '0'),
(2293, 1, '0'),
(2294, 1, '0'),
(2295, 1, '0'),
(2296, 1, '0'),
(2297, 1, '0'),
(2298, 1, '0'),
(2300, 1, '0'),
(2301, 1, '0'),
(2302, 1, '0'),
(2303, 1, '0'),
(2305, 1, '0'),
(2306, 1, '0'),
(2307, 1, '0'),
(2308, 1, '0'),
(2310, 1, '0'),
(2311, 1, '0'),
(2312, 1, '0'),
(2313, 1, '0'),
(2314, 1, '0'),
(2315, 1, '0'),
(2316, 1, '0'),
(2318, 1, '0'),
(2319, 1, '0'),
(2320, 1, '0'),
(2321, 1, '0'),
(2322, 1, '0'),
(2323, 1, '0'),
(2324, 1, '0'),
(2326, 1, '0'),
(2327, 1, '0'),
(2328, 1, '0'),
(2329, 1, '0'),
(2330, 1, '0'),
(2331, 1, '0'),
(2332, 1, '0'),
(2334, 1, '0'),
(2335, 1, '0'),
(2336, 1, '0'),
(2337, 1, '0'),
(2338, 1, '0'),
(2339, 1, '0'),
(2340, 1, '0'),
(2342, 1, '0'),
(2343, 1, '0'),
(2344, 1, '0'),
(2345, 1, '0'),
(2346, 1, '0'),
(2347, 1, '0'),
(2348, 1, '0'),
(2350, 1, '0'),
(2351, 1, '0'),
(2352, 1, '0'),
(2353, 1, '0'),
(2362, 1, '0'),
(2363, 1, '0'),
(2364, 1, '0'),
(2366, 1, '0'),
(2530, 1, '0'),
(2061, 1, '0'),
(1039, 1, '0');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_crmsetup`
--

DROP TABLE IF EXISTS `vtiger_crmsetup`;
CREATE TABLE `vtiger_crmsetup` (
  `userid` int(11) DEFAULT NULL,
  `setup_status` int(2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_crmsetup`
--

INSERT IGNORE INTO `vtiger_crmsetup` (`userid`, `setup_status`) VALUES
(1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cron_task`
--

DROP TABLE IF EXISTS `vtiger_cron_task`;
CREATE TABLE `vtiger_cron_task` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `handler_file` varchar(100) DEFAULT NULL,
  `frequency` int(11) DEFAULT NULL,
  `laststart` int(11) UNSIGNED DEFAULT NULL,
  `lastend` int(11) UNSIGNED DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `module` varchar(100) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL,
  `description` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cron_task`
--

INSERT IGNORE INTO `vtiger_cron_task` (`id`, `name`, `handler_file`, `frequency`, `laststart`, `lastend`, `status`, `module`, `sequence`, `description`) VALUES
(1, 'Workflow', 'cron/modules/com_vtiger_workflow/com_vtiger_workflow.service', 900, NULL, NULL, 1, 'com_vtiger_workflow', 1, 'Recommended frequency for Workflow is 15 mins'),
(2, 'RecurringInvoice', 'cron/modules/SalesOrder/RecurringInvoice.service', 43200, NULL, NULL, 1, 'SalesOrder', 2, 'Recommended frequency for RecurringInvoice is 12 hours'),
(3, 'SendReminder', 'cron/SendReminder.service', 900, NULL, NULL, 1, 'Calendar', 3, 'Recommended frequency for SendReminder is 15 mins'),
(5, 'MailScanner', 'cron/MailScanner.service', 900, NULL, NULL, 1, 'Settings', 5, 'Recommended frequency for MailScanner is 15 mins'),
(6, 'Oauth2TokenRefresher', 'cron/modules/Oauth2/TokenRefresher.service', 2700, NULL, NULL, 0, '1', 0, ''),
(7, 'Scheduled Import', 'cron/modules/Import/ScheduledImport.service', 900, NULL, NULL, 0, 'Import', 6, 'Recommended frequency for MailScanner is 15 mins'),
(8, 'ScheduleReports', 'cron/modules/Reports/ScheduleReports.service', 900, NULL, NULL, 1, 'Reports', 7, 'Recommended frequency for ScheduleReports is 15 mins'),
(9, 'GooyaCloudPurge', 'cron/modules/GooyaCloud/Purge.service', 900, 1786295471, 1786295471, 1, 'GooyaCloud', 8, 'GooyaCloud permanent purge and retry worker; recommended every 15 minutes.'),
(10, 'GooyaCloudQuotaReconcile', 'cron/modules/GooyaCloud/QuotaReconcile.service', 86400, 1786295480, 1786295480, 1, 'GooyaCloud', 9, 'GooyaCloud quota reconciliation; recommended once every night.'),
(11, 'GooyaChatArchive', 'cron/modules/GooyaChat/Archive.service', 3600, 0, 0, 1, 'GooyaChat', 10, 'GooyaChat retention worker; checks configured local hour and archives once per day.'),
(12, 'GooyaNegarSmsQueue', 'cron/modules/GooyaNegar/SmsQueue.service', 300, 0, 0, 1, 'GooyaNegar', 11, 'GooyaNegar asynchronous SMS send, retry and delivery-status worker.'),
(13, 'GooyaNegarArchive', 'cron/modules/GooyaNegar/Archive.service', 86400, 0, 0, 1, 'GooyaNegar', 12, 'GooyaNegar encrypted private Cloud archive with mandatory restore drill.'),
(14, 'GooyaNegarSmoke', 'cron/modules/GooyaNegar/Smoke.service', 900, 0, 0, 1, 'GooyaNegar', 13, 'GooyaNegar permanent read-only database, ACL, audit-chain, record, worker and file-integrity smoke test.');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currencies`
--

DROP TABLE IF EXISTS `vtiger_currencies`;
CREATE TABLE `vtiger_currencies` (
  `currencyid` int(19) NOT NULL,
  `currency_name` varchar(200) DEFAULT NULL,
  `currency_code` varchar(50) DEFAULT NULL,
  `currency_symbol` varchar(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currencies`
--

INSERT IGNORE INTO `vtiger_currencies` (`currencyid`, `currency_name`, `currency_code`, `currency_symbol`) VALUES
(1, 'Albania, Leke', 'ALL', 'Lek'),
(2, 'Argentina, Pesos', 'ARS', '$'),
(3, 'Aruba, Guilders', 'AWG', 'ƒ'),
(4, 'Australia, Dollars', 'AUD', '$'),
(5, 'Azerbaijan, New Manats', 'AZN', 'ман'),
(6, 'Bahamas, Dollars', 'BSD', '$'),
(7, 'Bahrain, Dinar', 'BHD', 'BD'),
(8, 'Barbados, Dollars', 'BBD', '$'),
(9, 'Belarus, Rubles', 'BYR', 'p.'),
(10, 'Belize, Dollars', 'BZD', 'BZ$'),
(11, 'Bermuda, Dollars', 'BMD', '$'),
(12, 'Bolivia, Bolivianos', 'BOB', '$b'),
(13, 'China, Yuan Renminbi', 'CNY', '¥'),
(14, 'Convertible Marka', 'BAM', 'KM'),
(15, 'Botswana, Pulas', 'BWP', 'P'),
(16, 'Bulgaria, Leva', 'BGN', 'лв'),
(17, 'Brazil, Reais', 'BRL', 'R$'),
(18, 'Great Britain Pounds', 'GBP', '£'),
(19, 'Brunei Darussalam, Dollars', 'BND', '$'),
(20, 'Canada, Dollars', 'CAD', '$'),
(21, 'Cayman Islands, Dollars', 'KYD', '$'),
(22, 'Chile, Pesos', 'CLP', '$'),
(23, 'Colombia, Pesos', 'COP', '$'),
(24, 'Costa Rica, Colón', 'CRC', '₡'),
(25, 'Croatia, Kuna', 'HRK', 'kn'),
(26, 'Cuba, Pesos', 'CUP', '₱'),
(27, 'Czech Republic, Koruny', 'CZK', 'Kč'),
(28, 'Cyprus, Pounds', 'CYP', '£'),
(29, 'Denmark, Kroner', 'DKK', 'kr'),
(30, 'Dominican Republic, Pesos', 'DOP', 'RD$'),
(31, 'East Caribbean, Dollars', 'XCD', '$'),
(32, 'Egypt, Pounds', 'EGP', 'E£'),
(33, 'El Salvador, Colón', 'SVC', '₡'),
(34, 'England, Pounds', 'GBP', '£'),
(35, 'Estonia, Krooni', 'EEK', 'kr'),
(36, 'Euro', 'EUR', '€'),
(37, 'Falkland Islands, Pounds', 'FKP', '£'),
(38, 'Fiji, Dollars', 'FJD', '$'),
(39, 'Ghana, Cedis', 'GHC', '¢'),
(40, 'Gibraltar, Pounds', 'GIP', '£'),
(41, 'Guatemala, Quetzales', 'GTQ', 'Q'),
(42, 'Guernsey, Pounds', 'GGP', '£'),
(43, 'Guyana, Dollars', 'GYD', '$'),
(44, 'Honduras, Lempiras', 'HNL', 'L'),
(45, 'Hong Kong, Dollars', 'HKD', 'HK$'),
(46, 'Hungary, Forint', 'HUF', 'Ft'),
(47, 'Iceland, Krona', 'ISK', 'kr'),
(48, 'India, Rupees', 'INR', '₹'),
(49, 'Indonesia, Rupiahs', 'IDR', 'Rp'),
(50, 'Iran, Rials', 'IRR', '﷼'),
(51, 'Isle of Man, Pounds', 'IMP', '£'),
(52, 'Israel, New Shekels', 'ILS', '₪'),
(53, 'Jamaica, Dollars', 'JMD', 'J$'),
(54, 'Japan, Yen', 'JPY', '¥'),
(55, 'Jersey, Pounds', 'JEP', '£'),
(56, 'Jordan, Dinar', 'JOD', 'JOD'),
(57, 'Kazakhstan, Tenge', 'KZT', '〒'),
(58, 'Kenya, Shilling', 'KES', 'KES'),
(59, 'Korea (North), Won', 'KPW', '₩'),
(60, 'Korea (South), Won', 'KRW', '₩'),
(61, 'Kuwait, Dinar', 'KWD', 'KWD'),
(62, 'Kyrgyzstan, Soms', 'KGS', 'лв'),
(63, 'Laos, Kips', 'LAK', '₭'),
(64, 'Latvia, Lati', 'LVL', 'Ls'),
(65, 'Lebanon, Pounds', 'LBP', '£'),
(66, 'Liberia, Dollars', 'LRD', '$'),
(67, 'Switzerland Francs', 'CHF', 'CHF'),
(68, 'Lithuania, Litai', 'LTL', 'Lt'),
(69, 'MADAGASCAR, Malagasy Ariary', 'MGA', 'MGA'),
(70, 'Macedonia, Denars', 'MKD', 'ден'),
(71, 'Malaysia, Ringgits', 'MYR', 'RM'),
(72, 'Malta, Liri', 'MTL', '₤'),
(73, 'Mauritius, Rupees', 'MUR', '₨'),
(74, 'Mexico, Pesos', 'MXN', '$'),
(75, 'Mongolia, Tugriks', 'MNT', '₮'),
(76, 'Mozambique, Meticais', 'MZN', 'MT'),
(77, 'Namibia, Dollars', 'NAD', '$'),
(78, 'Nepal, Rupees', 'NPR', '₨'),
(79, 'Netherlands Antilles, Guilders', 'ANG', 'ƒ'),
(80, 'New Zealand, Dollars', 'NZD', '$'),
(81, 'Nicaragua, Cordobas', 'NIO', 'C$'),
(82, 'Nigeria, Nairas', 'NGN', '₦'),
(83, 'North Korea, Won', 'KPW', '₩'),
(84, 'Norway, Krone', 'NOK', 'kr'),
(85, 'Oman, Rials', 'OMR', '﷼'),
(86, 'Pakistan, Rupees', 'PKR', '₨'),
(87, 'Panama, Balboa', 'PAB', 'B/.'),
(88, 'Paraguay, Guarani', 'PYG', 'Gs'),
(89, 'Peru, Nuevos Soles', 'PEN', 'S/.'),
(90, 'Philippines, Pesos', 'PHP', 'Php'),
(91, 'Poland, Zlotych', 'PLN', 'zł'),
(92, 'Qatar, Rials', 'QAR', '﷼'),
(93, 'Romania, New Lei', 'RON', 'lei'),
(94, 'Russia, Rubles', 'RUB', 'руб'),
(95, 'Saint Helena, Pounds', 'SHP', '£'),
(96, 'Saudi Arabia, Riyals', 'SAR', '﷼'),
(97, 'Serbia, Dinars', 'RSD', 'Дин.'),
(98, 'Seychelles, Rupees', 'SCR', '₨'),
(99, 'Singapore, Dollars', 'SGD', '$'),
(100, 'Solomon Islands, Dollars', 'SBD', '$'),
(101, 'Somalia, Shillings', 'SOS', 'S'),
(102, 'South Africa, Rand', 'ZAR', 'R'),
(103, 'South Korea, Won', 'KRW', '₩'),
(104, 'Sri Lanka, Rupees', 'LKR', '₨'),
(105, 'Sweden, Kronor', 'SEK', 'kr'),
(106, 'Switzerland, Francs', 'CHF', 'CHF'),
(107, 'Suriname, Dollars', 'SRD', '$'),
(108, 'Syria, Pounds', 'SYP', '£'),
(109, 'Taiwan, New Dollars', 'TWD', 'NT$'),
(110, 'Thailand, Baht', 'THB', '฿'),
(111, 'Trinidad and Tobago, Dollars', 'TTD', 'TT$'),
(112, 'Turkey, New Lira', 'TRY', 'YTL'),
(113, 'Turkey, Liras', 'TRL', '₤'),
(114, 'Tuvalu, Dollars', 'TVD', '$'),
(115, 'Ukraine, Hryvnia', 'UAH', '₴'),
(116, 'United Arab Emirates, Dirham', 'AED', 'AED'),
(117, 'United Kingdom, Pounds', 'GBP', '£'),
(118, 'United Republic of Tanzania, Shilling', 'TZS', 'TZS'),
(119, 'USA, Dollars', 'USD', '$'),
(120, 'Uruguay, Pesos', 'UYU', '$U'),
(121, 'Uzbekistan, Sums', 'UZS', 'лв'),
(122, 'Venezuela, Bolivares Fuertes', 'VEF', 'Bs'),
(123, 'Vietnam, Dong', 'VND', '₫'),
(124, 'Zambia, Kwacha', 'ZMK', 'ZMK'),
(125, 'Yemen, Rials', 'YER', '﷼'),
(126, 'Zimbabwe Dollars', 'ZWD', 'Z$'),
(127, 'Malawi, Kwacha', 'MWK', 'MK'),
(128, 'Tunisian, Dinar', 'TD', 'TD'),
(129, 'Moroccan, Dirham', 'MAD', 'DH'),
(130, 'Iraqi Dinar', 'IQD', 'ID'),
(131, 'Maldivian Ruffiya', 'MVR', 'MVR'),
(132, 'Ugandan Shilling', 'UGX', 'Sh'),
(133, 'Sudanese Pound', 'SDG', '£'),
(134, 'CFA Franc BCEAO', 'XOF', 'CFA'),
(135, 'CFA Franc BEAC', 'XAF', 'CFA'),
(136, 'Haiti, Gourde', 'HTG', 'G'),
(137, 'Libya, Dinar', 'LYD', 'LYD'),
(138, 'CFP Franc', 'XPF', 'F');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currencies_seq`
--

DROP TABLE IF EXISTS `vtiger_currencies_seq`;
CREATE TABLE `vtiger_currencies_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currencies_seq`
--

INSERT IGNORE INTO `vtiger_currencies_seq` (`id`) VALUES
(138);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency`
--

DROP TABLE IF EXISTS `vtiger_currency`;
CREATE TABLE `vtiger_currency` (
  `currencyid` int(19) NOT NULL,
  `currency` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_decimal_separator`
--

DROP TABLE IF EXISTS `vtiger_currency_decimal_separator`;
CREATE TABLE `vtiger_currency_decimal_separator` (
  `currency_decimal_separatorid` int(19) NOT NULL,
  `currency_decimal_separator` varchar(2) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currency_decimal_separator`
--

INSERT IGNORE INTO `vtiger_currency_decimal_separator` (`currency_decimal_separatorid`, `currency_decimal_separator`, `sortorderid`, `presence`) VALUES
(1, '.', 0, 1),
(2, ',', 1, 1),
(3, '\'', 2, 1),
(4, ' ', 3, 1),
(5, '$', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_decimal_separator_seq`
--

DROP TABLE IF EXISTS `vtiger_currency_decimal_separator_seq`;
CREATE TABLE `vtiger_currency_decimal_separator_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currency_decimal_separator_seq`
--

INSERT IGNORE INTO `vtiger_currency_decimal_separator_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_grouping_pattern`
--

DROP TABLE IF EXISTS `vtiger_currency_grouping_pattern`;
CREATE TABLE `vtiger_currency_grouping_pattern` (
  `currency_grouping_patternid` int(19) NOT NULL,
  `currency_grouping_pattern` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currency_grouping_pattern`
--

INSERT IGNORE INTO `vtiger_currency_grouping_pattern` (`currency_grouping_patternid`, `currency_grouping_pattern`, `sortorderid`, `presence`) VALUES
(1, '123,456,789', 0, 1),
(2, '123456789', 1, 1),
(3, '123456,789', 2, 1),
(4, '12,34,56,789', 3, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_grouping_pattern_seq`
--

DROP TABLE IF EXISTS `vtiger_currency_grouping_pattern_seq`;
CREATE TABLE `vtiger_currency_grouping_pattern_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currency_grouping_pattern_seq`
--

INSERT IGNORE INTO `vtiger_currency_grouping_pattern_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_grouping_separator`
--

DROP TABLE IF EXISTS `vtiger_currency_grouping_separator`;
CREATE TABLE `vtiger_currency_grouping_separator` (
  `currency_grouping_separatorid` int(19) NOT NULL,
  `currency_grouping_separator` varchar(2) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currency_grouping_separator`
--

INSERT IGNORE INTO `vtiger_currency_grouping_separator` (`currency_grouping_separatorid`, `currency_grouping_separator`, `sortorderid`, `presence`) VALUES
(1, ',', 0, 1),
(2, '.', 1, 1),
(3, '\'', 2, 1),
(4, ' ', 3, 1),
(5, '$', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_grouping_separator_seq`
--

DROP TABLE IF EXISTS `vtiger_currency_grouping_separator_seq`;
CREATE TABLE `vtiger_currency_grouping_separator_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currency_grouping_separator_seq`
--

INSERT IGNORE INTO `vtiger_currency_grouping_separator_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_info`
--

DROP TABLE IF EXISTS `vtiger_currency_info`;
CREATE TABLE `vtiger_currency_info` (
  `id` int(11) NOT NULL,
  `currency_name` varchar(100) DEFAULT NULL,
  `currency_code` varchar(100) DEFAULT NULL,
  `currency_symbol` varchar(30) DEFAULT NULL,
  `conversion_rate` decimal(12,5) DEFAULT NULL,
  `currency_status` varchar(25) DEFAULT NULL,
  `defaultid` varchar(10) NOT NULL DEFAULT '0',
  `deleted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currency_info`
--

INSERT IGNORE INTO `vtiger_currency_info` (`id`, `currency_name`, `currency_code`, `currency_symbol`, `conversion_rate`, `currency_status`, `defaultid`, `deleted`) VALUES
(1, 'USA, Dollars', 'USD', '$', 1.00000, 'Active', '-11', 0),
(2, 'Iran, Rials', 'IRR', 'ریال', 1.00000, 'Active', '0', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_info_seq`
--

DROP TABLE IF EXISTS `vtiger_currency_info_seq`;
CREATE TABLE `vtiger_currency_info_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currency_info_seq`
--

INSERT IGNORE INTO `vtiger_currency_info_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_symbol_placement`
--

DROP TABLE IF EXISTS `vtiger_currency_symbol_placement`;
CREATE TABLE `vtiger_currency_symbol_placement` (
  `currency_symbol_placementid` int(19) NOT NULL,
  `currency_symbol_placement` varchar(30) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_currency_symbol_placement`
--

INSERT IGNORE INTO `vtiger_currency_symbol_placement` (`currency_symbol_placementid`, `currency_symbol_placement`, `sortorderid`, `presence`) VALUES
(1, '$1.0', 0, 1),
(2, '1.0$', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_currency_symbol_placement_seq`
--

DROP TABLE IF EXISTS `vtiger_currency_symbol_placement_seq`;
CREATE TABLE `vtiger_currency_symbol_placement_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_currency_symbol_placement_seq`
--

INSERT IGNORE INTO `vtiger_currency_symbol_placement_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customaction`
--

DROP TABLE IF EXISTS `vtiger_customaction`;
CREATE TABLE `vtiger_customaction` (
  `cvid` int(19) NOT NULL,
  `subject` varchar(250) NOT NULL,
  `module` varchar(50) NOT NULL,
  `content` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerdetails`
--

DROP TABLE IF EXISTS `vtiger_customerdetails`;
CREATE TABLE `vtiger_customerdetails` (
  `customerid` int(19) NOT NULL,
  `portal` varchar(3) DEFAULT NULL,
  `support_start_date` date DEFAULT NULL,
  `support_end_date` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_customerdetails`
--

INSERT IGNORE INTO `vtiger_customerdetails` (`customerid`, `portal`, `support_start_date`, `support_end_date`) VALUES
(11, '0', NULL, NULL),
(2066, '0', NULL, NULL),
(2067, '0', NULL, NULL),
(2068, '0', NULL, NULL),
(2069, '0', NULL, NULL),
(2070, '0', NULL, NULL),
(2071, '0', NULL, NULL),
(2072, '0', NULL, NULL),
(2073, '0', NULL, NULL),
(2074, '0', NULL, NULL),
(2075, '0', NULL, NULL),
(2076, '0', NULL, NULL),
(2077, '0', NULL, NULL),
(2078, '0', NULL, NULL),
(2079, '0', NULL, NULL),
(2080, '0', NULL, NULL),
(2081, '0', NULL, NULL),
(2082, '0', NULL, NULL),
(2083, '0', NULL, NULL),
(2084, '0', NULL, NULL),
(2085, '0', NULL, NULL),
(2086, '0', NULL, NULL),
(2087, '0', NULL, NULL),
(2088, '0', NULL, NULL),
(2089, '0', NULL, NULL),
(2090, '0', NULL, NULL),
(2091, '0', NULL, NULL),
(2093, '0', NULL, NULL),
(2095, '0', NULL, NULL),
(2096, '0', NULL, NULL),
(2098, '0', NULL, NULL),
(2100, '0', NULL, NULL),
(2102, '0', NULL, NULL),
(2103, '0', NULL, NULL),
(2105, '0', NULL, NULL),
(2107, '0', NULL, NULL),
(2108, '0', NULL, NULL),
(2110, '0', NULL, NULL),
(2111, '0', NULL, NULL),
(2113, '0', NULL, NULL),
(2114, '0', NULL, NULL),
(2116, '0', NULL, NULL),
(2117, '0', NULL, NULL),
(2118, '0', NULL, NULL),
(2119, '0', NULL, NULL),
(2120, '0', NULL, NULL),
(2121, '0', NULL, NULL),
(2122, '0', NULL, NULL),
(2123, '0', NULL, NULL),
(2124, '0', NULL, NULL),
(2125, '0', NULL, NULL),
(2167, '0', NULL, NULL),
(2199, '0', NULL, NULL),
(2207, '0', NULL, NULL),
(2215, '0', NULL, NULL),
(2236, '0', NULL, NULL),
(2237, '0', NULL, NULL),
(2238, '0', NULL, NULL),
(2239, '0', NULL, NULL),
(2240, '0', NULL, NULL),
(2241, '0', NULL, NULL),
(2242, '0', NULL, NULL),
(2243, '0', NULL, NULL),
(2244, '0', NULL, NULL),
(2245, '0', NULL, NULL),
(2246, '0', NULL, NULL),
(2247, '0', NULL, NULL),
(2248, '0', NULL, NULL),
(2249, '0', NULL, NULL),
(2250, '0', NULL, NULL),
(2251, '0', NULL, NULL),
(2252, '0', NULL, NULL),
(2253, '0', NULL, NULL),
(2254, '0', NULL, NULL),
(2255, '0', NULL, NULL),
(2256, '0', NULL, NULL),
(2257, '0', NULL, NULL),
(2276, '0', NULL, NULL),
(2279, '0', NULL, NULL),
(2280, '0', NULL, NULL),
(2281, '0', NULL, NULL),
(2282, '0', NULL, NULL),
(2283, '0', NULL, NULL),
(2284, '0', NULL, NULL),
(2285, '0', NULL, NULL),
(2286, NULL, NULL, NULL),
(2287, '0', NULL, NULL),
(2313, '0', NULL, NULL),
(2321, '0', NULL, NULL),
(2329, '0', NULL, NULL),
(2337, '0', NULL, NULL),
(2345, '0', NULL, NULL),
(2353, '0', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerportal_fields`
--

DROP TABLE IF EXISTS `vtiger_customerportal_fields`;
CREATE TABLE `vtiger_customerportal_fields` (
  `tabid` int(19) NOT NULL,
  `fieldinfo` text DEFAULT NULL,
  `records_visible` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_customerportal_fields`
--

INSERT IGNORE INTO `vtiger_customerportal_fields` (`tabid`, `fieldinfo`, `records_visible`) VALUES
(4, '{\"lastname\":1,\"assigned_user_id\":1}', 1),
(6, '{\"accountname\":1,\"assigned_user_id\":1}', 1),
(8, '{\"notes_title\":1,\"assigned_user_id\":1,\"filename\":0}', 1),
(13, '{\"ticket_title\":1,\"assigned_user_id\":1,\"ticketpriorities\":1,\"ticketstatus\":1,\"description\":1,\"product_id\":1,\"ticketseverities\":1,\"ticketcategories\":1}', 1),
(14, '{\"productname\":1,\"assigned_user_id\":1}', 1),
(15, '{\"faqstatus\":1,\"question\":1,\"faq_answer\":1}', 1),
(20, '{\"subject\":1,\"quotestage\":1,\"account_id\":1,\"assigned_user_id\":1,\"bill_street\":1,\"ship_street\":1}', 1),
(23, '{\"subject\":1,\"account_id\":1,\"assigned_user_id\":1,\"bill_street\":1,\"ship_street\":1}', 1),
(35, '{\"subject\":1,\"assigned_user_id\":1}', NULL),
(36, '{\"servicename\":1}', 1),
(38, '{\"product\":1,\"serialnumber\":1,\"assigned_user_id\":1,\"datesold\":1,\"dateinservice\":1,\"assetstatus\":1,\"assetname\":1,\"account\":1}', 1),
(43, '{\"projectmilestonename\":1,\"projectid\":1,\"assigned_user_id\":1}', 1),
(44, '{\"projecttaskname\":1,\"projectid\":1,\"assigned_user_id\":1}', 1),
(45, '{\"projectname\":1,\"assigned_user_id\":1}', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerportal_prefs`
--

DROP TABLE IF EXISTS `vtiger_customerportal_prefs`;
CREATE TABLE `vtiger_customerportal_prefs` (
  `tabid` int(19) NOT NULL,
  `prefkey` varchar(100) NOT NULL,
  `prefvalue` int(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_customerportal_prefs`
--

INSERT IGNORE INTO `vtiger_customerportal_prefs` (`tabid`, `prefkey`, `prefvalue`) VALUES
(0, 'defaultassignee', 1),
(0, 'userid', 1),
(4, 'showrelatedinfo', 1),
(6, 'showrelatedinfo', 1),
(8, 'showrelatedinfo', 1),
(13, 'showrelatedinfo', 1),
(14, 'showrelatedinfo', 1),
(15, 'showrelatedinfo', 1),
(20, 'showrelatedinfo', 1),
(23, 'showrelatedinfo', 1),
(36, 'showrelatedinfo', 1),
(38, 'showrelatedinfo', 1),
(43, 'showrelatedinfo', 1),
(44, 'showrelatedinfo', 1),
(45, 'showrelatedinfo', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerportal_relatedmoduleinfo`
--

DROP TABLE IF EXISTS `vtiger_customerportal_relatedmoduleinfo`;
CREATE TABLE `vtiger_customerportal_relatedmoduleinfo` (
  `tabid` int(19) NOT NULL,
  `relatedmodules` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_customerportal_relatedmoduleinfo`
--

INSERT IGNORE INTO `vtiger_customerportal_relatedmoduleinfo` (`tabid`, `relatedmodules`) VALUES
(8, '[{\"name\":\"History\",\"value\":1}]'),
(13, '[{\"name\":\"History\",\"value\":1},{\"name\":\"ModComments\",\"value\":1},{\"name\":\"Documents\",\"value\":1}]'),
(14, '[{\"name\":\"History\",\"value\":1}]'),
(20, '[{\"name\":\"History\",\"value\":1}]'),
(23, '[{\"name\":\"History\",\"value\":1}]'),
(35, '[{\"name\":\"History\",\"value\":1}]'),
(36, '[{\"name\":\"History\",\"value\":1}]'),
(38, '[{\"name\":\"History\",\"value\":1}]'),
(43, '[{\"name\":\"History\",\"value\":1}]'),
(44, '[{\"name\":\"History\",\"value\":1},{\"name\":\"ModComments\",\"value\":1}]'),
(45, '[{\"name\":\"History\",\"value\":1},{\"name\":\"ModComments\",\"value\":1},{\"name\":\"ProjectTask\",\"value\":1},{\"name\":\"ProjectMilestone\",\"value\":1},{\"name\":\"Documents\",\"value\":1}]');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerportal_settings`
--

DROP TABLE IF EXISTS `vtiger_customerportal_settings`;
CREATE TABLE `vtiger_customerportal_settings` (
  `id` int(11) DEFAULT NULL,
  `url` varchar(250) DEFAULT NULL,
  `default_assignee` int(11) DEFAULT NULL,
  `support_notification` int(11) DEFAULT NULL,
  `announcement` text DEFAULT NULL,
  `shortcuts` text DEFAULT NULL,
  `widgets` text DEFAULT NULL,
  `charts` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_customerportal_settings`
--

INSERT IGNORE INTO `vtiger_customerportal_settings` (`id`, `url`, `default_assignee`, `support_notification`, `announcement`, `shortcuts`, `widgets`, `charts`) VALUES
(1, NULL, 1, NULL, NULL, '{\"Documents\":{\"LBL_ADD_DOCUMENT\":1},\"HelpDesk\":{\"LBL_CREATE_TICKET\":1,\"LBL_OPEN_TICKETS\":1}}', '{\"widgets\":{\"HelpDesk\":1,\"Documents\":1,\"Faq\":1}}', '{\"charts\":{\"OpenTicketsByPriority\":1,\"TicketsClosureTimeByPriority\":1}}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customerportal_tabs`
--

DROP TABLE IF EXISTS `vtiger_customerportal_tabs`;
CREATE TABLE `vtiger_customerportal_tabs` (
  `tabid` int(19) NOT NULL,
  `visible` int(1) DEFAULT 1,
  `sequence` int(1) DEFAULT NULL,
  `createrecord` tinyint(1) NOT NULL DEFAULT 0,
  `editrecord` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_customerportal_tabs`
--

INSERT IGNORE INTO `vtiger_customerportal_tabs` (`tabid`, `visible`, `sequence`, `createrecord`, `editrecord`) VALUES
(4, 0, 9, 0, 0),
(6, 0, 10, 0, 0),
(8, 0, 8, 0, 0),
(13, 0, 2, 0, 0),
(14, 0, 6, 0, 0),
(15, 0, 3, 0, 0),
(20, 0, 5, 0, 0),
(23, 0, 4, 0, 0),
(35, 0, 25, 0, 0),
(36, 0, 7, 0, 0),
(38, 0, 11, 0, 0),
(43, 0, 12, 0, 0),
(44, 0, 13, 0, 0),
(45, 0, 14, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customview`
--

DROP TABLE IF EXISTS `vtiger_customview`;
CREATE TABLE `vtiger_customview` (
  `cvid` int(19) NOT NULL,
  `viewname` varchar(100) NOT NULL,
  `setdefault` int(1) DEFAULT 0,
  `setmetrics` int(1) DEFAULT 0,
  `entitytype` varchar(25) NOT NULL,
  `status` int(1) DEFAULT 1,
  `userid` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_customview`
--

INSERT IGNORE INTO `vtiger_customview` (`cvid`, `viewname`, `setdefault`, `setmetrics`, `entitytype`, `status`, `userid`) VALUES
(1, 'All', 1, 0, 'Leads', 0, 1),
(2, 'Hot Leads', 0, 1, 'Leads', 3, 1),
(3, 'This Month Leads', 0, 0, 'Leads', 3, 1),
(4, 'All', 1, 0, 'Accounts', 0, 1),
(5, 'Prospect Accounts', 0, 1, 'Accounts', 3, 1),
(6, 'New This Week', 0, 0, 'Accounts', 3, 1),
(7, 'All', 1, 0, 'Contacts', 0, 1),
(8, 'Contacts Address', 0, 0, 'Contacts', 3, 1),
(9, 'Todays Birthday', 0, 0, 'Contacts', 3, 1),
(10, 'All', 1, 0, 'Potentials', 0, 1),
(11, 'Potentials Won', 0, 1, 'Potentials', 3, 1),
(12, 'Prospecting', 0, 0, 'Potentials', 3, 1),
(13, 'All', 1, 0, 'HelpDesk', 0, 1),
(14, 'Open Tickets', 0, 1, 'HelpDesk', 3, 1),
(15, 'High Prioriy Tickets', 0, 0, 'HelpDesk', 3, 1),
(16, 'All', 1, 0, 'Quotes', 0, 1),
(17, 'Open Quotes', 0, 1, 'Quotes', 3, 1),
(18, 'Rejected Quotes', 0, 0, 'Quotes', 3, 1),
(19, 'All', 1, 0, 'Calendar', 0, 1),
(20, 'All', 1, 0, 'Emails', 0, 1),
(21, 'All', 1, 0, 'Invoice', 0, 1),
(22, 'All', 1, 0, 'Documents', 0, 1),
(23, 'All', 1, 0, 'PriceBooks', 0, 1),
(24, 'All', 1, 0, 'Products', 0, 1),
(25, 'All', 1, 0, 'PurchaseOrder', 0, 1),
(26, 'All', 1, 0, 'SalesOrder', 0, 1),
(27, 'All', 1, 0, 'Vendors', 0, 1),
(28, 'All', 1, 0, 'Faq', 0, 1),
(29, 'All', 1, 0, 'Campaigns', 0, 1),
(30, 'All', 1, 0, 'Webmails', 0, 1),
(31, 'Drafted FAQ', 0, 0, 'Faq', 3, 1),
(32, 'Published FAQ', 0, 0, 'Faq', 3, 1),
(33, 'Open Purchase Orders', 0, 0, 'PurchaseOrder', 3, 1),
(34, 'Received Purchase Orders', 0, 0, 'PurchaseOrder', 3, 1),
(35, 'Open Invoices', 0, 0, 'Invoice', 3, 1),
(36, 'Paid Invoices', 0, 0, 'Invoice', 3, 1),
(37, 'Pending Sales Orders', 0, 0, 'SalesOrder', 3, 1),
(38, 'All', 1, 0, 'PBXManager', 0, 1),
(39, 'All', 1, 0, 'ServiceContracts', 0, 1),
(40, 'All', 1, 0, 'Services', 0, 1),
(41, 'All', 1, 0, 'Assets', 0, 1),
(42, 'All', 0, 0, 'ModComments', 0, 1),
(46, 'All', 0, 0, 'SMSNotifier', 0, 1),
(47, 'All', 1, 0, 'ProjectMilestone', 0, 1),
(48, 'All', 1, 0, 'ProjectTask', 0, 1),
(49, 'All', 1, 0, 'Project', 0, 1),
(51, 'Gouya Retail Invoices', 0, 0, 'Invoice', 3, 1),
(52, 'All', 1, 0, 'SarvPayments', 0, 1),
(53, 'All', 1, 0, 'SarvParticipations', 0, 1),
(54, 'All', 1, 0, 'SarvSurveyResponses', 0, 1),
(55, 'All', 1, 0, 'SarvSalesContracts', 0, 1),
(56, 'All', 1, 0, 'SarvTargetLists', 0, 1),
(57, 'All', 1, 0, 'SarvBankAccounts', 0, 1),
(58, 'All', 1, 0, 'SarvDeposits', 0, 1),
(59, 'All', 1, 0, 'SarvBusinessLocations', 0, 1),
(60, 'All', 1, 0, 'SarvTimeReservations', 0, 1),
(61, 'All', 1, 0, 'SarvGifts', 0, 1),
(62, 'All', 1, 0, 'SarvProductSamples', 0, 1),
(63, 'All', 1, 0, 'SarvAccessGrants', 0, 1),
(64, 'All', 1, 0, 'Communications', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_customview_seq`
--

DROP TABLE IF EXISTS `vtiger_customview_seq`;
CREATE TABLE `vtiger_customview_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_customview_seq`
--

INSERT IGNORE INTO `vtiger_customview_seq` (`id`) VALUES
(64);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cv2group`
--

DROP TABLE IF EXISTS `vtiger_cv2group`;
CREATE TABLE `vtiger_cv2group` (
  `cvid` int(25) NOT NULL,
  `groupid` int(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cv2role`
--

DROP TABLE IF EXISTS `vtiger_cv2role`;
CREATE TABLE `vtiger_cv2role` (
  `cvid` int(25) NOT NULL,
  `roleid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cv2rs`
--

DROP TABLE IF EXISTS `vtiger_cv2rs`;
CREATE TABLE `vtiger_cv2rs` (
  `cvid` int(25) NOT NULL,
  `rsid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cv2users`
--

DROP TABLE IF EXISTS `vtiger_cv2users`;
CREATE TABLE `vtiger_cv2users` (
  `cvid` int(25) NOT NULL,
  `userid` int(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cvadvfilter`
--

DROP TABLE IF EXISTS `vtiger_cvadvfilter`;
CREATE TABLE `vtiger_cvadvfilter` (
  `cvid` int(19) NOT NULL,
  `columnindex` int(11) NOT NULL,
  `columnname` varchar(250) DEFAULT '',
  `comparator` varchar(20) DEFAULT NULL,
  `value` varchar(512) DEFAULT NULL,
  `groupid` int(11) DEFAULT 1,
  `column_condition` varchar(255) DEFAULT 'and'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cvadvfilter`
--

INSERT IGNORE INTO `vtiger_cvadvfilter` (`cvid`, `columnindex`, `columnname`, `comparator`, `value`, `groupid`, `column_condition`) VALUES
(2, 0, 'vtiger_leaddetails:leadstatus:leadstatus:Leads_Lead_Status:V', 'e', 'Hot', 1, 'and'),
(5, 0, 'vtiger_account:account_type:accounttype:Accounts_Type:V', 'e', 'Prospect', 1, 'and'),
(11, 0, 'vtiger_potential:sales_stage:sales_stage:Potentials_Sales_Stage:V', 'e', 'Closed Won', 1, 'and'),
(12, 0, 'vtiger_potential:sales_stage:sales_stage:Potentials_Sales_Stage:V', 'e', 'Prospecting', 1, 'and'),
(14, 0, 'vtiger_troubletickets:status:ticketstatus:HelpDesk_Status:V', 'n', 'Closed', 1, 'and'),
(15, 0, 'vtiger_troubletickets:priority:ticketpriorities:HelpDesk_Priority:V', 'e', 'High', 1, 'and'),
(17, 0, 'vtiger_quotes:quotestage:quotestage:Quotes_Quote_Stage:V', 'n', 'Accepted', 1, 'and'),
(17, 1, 'vtiger_quotes:quotestage:quotestage:Quotes_Quote_Stage:V', 'n', 'Rejected', 1, 'and'),
(18, 0, 'vtiger_quotes:quotestage:quotestage:Quotes_Quote_Stage:V', 'e', 'Rejected', 1, 'and'),
(31, 0, 'vtiger_faq:status:faqstatus:Faq_Status:V', 'e', 'Draft', 1, 'and'),
(32, 0, 'vtiger_faq:status:faqstatus:Faq_Status:V', 'e', 'Published', 1, 'and'),
(33, 0, 'vtiger_purchaseorder:postatus:postatus:PurchaseOrder_Status:V', 'e', 'Created, Approved, Delivered', 1, 'and'),
(34, 0, 'vtiger_purchaseorder:postatus:postatus:PurchaseOrder_Status:V', 'e', 'Received Shipment', 1, 'and'),
(35, 0, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V', 'e', 'Created, Approved, Sent', 1, 'and'),
(36, 0, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V', 'e', 'Paid', 1, 'and'),
(37, 0, 'vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V', 'e', 'Created, Approved', 1, 'and'),
(51, 0, 'vtiger_invoicecf:cf_invoice_kind:cf_invoice_kind:Invoice_LBL_INVOICE_KIND:V', 'e', 'Retail', 1, 'and');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cvadvfilter_grouping`
--

DROP TABLE IF EXISTS `vtiger_cvadvfilter_grouping`;
CREATE TABLE `vtiger_cvadvfilter_grouping` (
  `groupid` int(11) NOT NULL,
  `cvid` int(19) NOT NULL,
  `group_condition` varchar(255) DEFAULT NULL,
  `condition_expression` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cvadvfilter_grouping`
--

INSERT IGNORE INTO `vtiger_cvadvfilter_grouping` (`groupid`, `cvid`, `group_condition`, `condition_expression`) VALUES
(1, 2, '', ''),
(1, 5, '', ''),
(1, 11, '', ''),
(1, 12, '', ''),
(1, 14, '', ''),
(1, 15, '', ''),
(1, 17, '', ''),
(1, 18, '', ''),
(1, 31, '', ''),
(1, 32, '', ''),
(1, 33, '', ''),
(1, 34, '', ''),
(1, 35, '', ''),
(1, 36, '', ''),
(1, 37, '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cvcolumnlist`
--

DROP TABLE IF EXISTS `vtiger_cvcolumnlist`;
CREATE TABLE `vtiger_cvcolumnlist` (
  `cvid` int(19) NOT NULL,
  `columnindex` int(11) NOT NULL,
  `columnname` varchar(250) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cvcolumnlist`
--

INSERT IGNORE INTO `vtiger_cvcolumnlist` (`cvid`, `columnindex`, `columnname`) VALUES
(1, 1, 'vtiger_leaddetails:firstname:firstname:Leads_First_Name:V'),
(1, 2, 'vtiger_leaddetails:lastname:lastname:Leads_Last_Name:V'),
(1, 3, 'vtiger_leaddetails:company:company:Leads_Company:V'),
(1, 4, 'vtiger_leadaddress:phone:phone:Leads_Phone:V'),
(1, 5, 'vtiger_leadsubdetails:website:website:Leads_Website:V'),
(1, 6, 'vtiger_leaddetails:email:email:Leads_Email:V'),
(1, 7, 'vtiger_crmentity:smownerid:assigned_user_id:Leads_Assigned_To:V'),
(2, 0, 'vtiger_leaddetails:firstname:firstname:Leads_First_Name:V'),
(2, 1, 'vtiger_leaddetails:lastname:lastname:Leads_Last_Name:V'),
(2, 2, 'vtiger_leaddetails:company:company:Leads_Company:V'),
(2, 3, 'vtiger_leaddetails:leadsource:leadsource:Leads_Lead_Source:V'),
(2, 4, 'vtiger_leadsubdetails:website:website:Leads_Website:V'),
(2, 5, 'vtiger_leaddetails:email:email:Leads_Email:E'),
(3, 0, 'vtiger_leaddetails:firstname:firstname:Leads_First_Name:V'),
(3, 1, 'vtiger_leaddetails:lastname:lastname:Leads_Last_Name:V'),
(3, 2, 'vtiger_leaddetails:company:company:Leads_Company:V'),
(3, 3, 'vtiger_leaddetails:leadsource:leadsource:Leads_Lead_Source:V'),
(3, 4, 'vtiger_leadsubdetails:website:website:Leads_Website:V'),
(3, 5, 'vtiger_leaddetails:email:email:Leads_Email:E'),
(4, 0, 'vtiger_account:accountname:accountname:Accounts_Account_Name:V'),
(4, 1, 'vtiger_accountscf:cf_alternate_name:cf_alternate_name:Accounts_LBL_ALTERNATE_NAME:V'),
(4, 2, 'vtiger_accountbillads:bill_state:bill_state:Accounts_Billing_State:V'),
(4, 3, 'vtiger_accountbillads:bill_city:bill_city:Accounts_Billing_City:V'),
(4, 4, 'vtiger_account:phone:phone:Accounts_Phone:V'),
(4, 5, 'vtiger_crmentity:smownerid:assigned_user_id:Accounts_Assigned_To:V'),
(4, 6, 'vtiger_crmentity:createdtime:createdtime:Accounts_Created_Time:DT'),
(5, 0, 'vtiger_account:accountname:accountname:Accounts_Account_Name:V'),
(5, 1, 'vtiger_account:phone:phone:Accounts_Phone:V'),
(5, 2, 'vtiger_account:website:website:Accounts_Website:V'),
(5, 3, 'vtiger_account:rating:rating:Accounts_Rating:V'),
(5, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Accounts_Assigned_To:V'),
(6, 0, 'vtiger_account:accountname:accountname:Accounts_Account_Name:V'),
(6, 1, 'vtiger_account:phone:phone:Accounts_Phone:V'),
(6, 2, 'vtiger_account:website:website:Accounts_Website:V'),
(6, 3, 'vtiger_accountbillads:bill_city:bill_city:Accounts_City:V'),
(6, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Accounts_Assigned_To:V'),
(7, 1, 'vtiger_contactdetails:firstname:firstname:Contacts_First_Name:V'),
(7, 2, 'vtiger_contactdetails:lastname:lastname:Contacts_Last_Name:V'),
(7, 3, 'vtiger_contactdetails:title:title:Contacts_Title:V'),
(7, 4, 'vtiger_contactdetails:accountid:account_id:Contacts_Account_Name:V'),
(7, 5, 'vtiger_contactdetails:email:email:Contacts_Email:V'),
(7, 6, 'vtiger_contactdetails:mobile:mobile:Contacts_Mobile:V'),
(7, 7, 'vtiger_crmentity:smownerid:assigned_user_id:Contacts_Assigned_To:V'),
(7, 8, 'vtiger_crmentity:createdtime:createdtime:Contacts_Created_Time:DT'),
(8, 0, 'vtiger_contactdetails:firstname:firstname:Contacts_First_Name:V'),
(8, 1, 'vtiger_contactdetails:lastname:lastname:Contacts_Last_Name:V'),
(8, 2, 'vtiger_contactaddress:mailingstreet:mailingstreet:Contacts_Mailing_Street:V'),
(8, 3, 'vtiger_contactaddress:mailingcity:mailingcity:Contacts_Mailing_City:V'),
(8, 4, 'vtiger_contactaddress:mailingstate:mailingstate:Contacts_Mailing_State:V'),
(8, 5, 'vtiger_contactaddress:mailingzip:mailingzip:Contacts_Mailing_Zip:V'),
(8, 6, 'vtiger_contactaddress:mailingcountry:mailingcountry:Contacts_Mailing_Country:V'),
(9, 0, 'vtiger_contactdetails:firstname:firstname:Contacts_First_Name:V'),
(9, 1, 'vtiger_contactdetails:lastname:lastname:Contacts_Last_Name:V'),
(9, 2, 'vtiger_contactdetails:title:title:Contacts_Title:V'),
(9, 3, 'vtiger_contactdetails:accountid:account_id:Contacts_Account_Name:I'),
(9, 4, 'vtiger_contactdetails:email:email:Contacts_Email:E'),
(9, 5, 'vtiger_contactsubdetails:otherphone:otherphone:Contacts_Phone:V'),
(9, 6, 'vtiger_crmentity:smownerid:assigned_user_id:Contacts_Assigned_To:V'),
(10, 1, 'vtiger_potential:potentialname:potentialname:Potentials_Potential_Name:V'),
(10, 2, 'vtiger_potential:related_to:related_to:Potentials_Related_To:V'),
(10, 3, 'vtiger_potential:sales_stage:sales_stage:Potentials_Sales_Stage:V'),
(10, 4, 'vtiger_potential:amount:amount:Potentials_Amount:N'),
(10, 5, 'vtiger_potential:closingdate:closingdate:Potentials_Expected_Close_Date:D'),
(10, 6, 'vtiger_potential:leadsource:leadsource:Potentials_Lead_Source:V'),
(10, 7, 'vtiger_crmentity:smownerid:assigned_user_id:Potentials_Assigned_To:V'),
(10, 8, 'vtiger_crmentity:modifiedtime:modifiedtime:Potentials_Modified_Time:D'),
(11, 0, 'vtiger_potential:potentialname:potentialname:Potentials_Potential_Name:V'),
(11, 1, 'vtiger_potential:related_to:related_to:Potentials_Related_To:V'),
(11, 2, 'vtiger_potential:amount:amount:Potentials_Amount:N'),
(11, 3, 'vtiger_potential:closingdate:closingdate:Potentials_Expected_Close_Date:D'),
(11, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Potentials_Assigned_To:V'),
(11, 5, 'vtiger_potential:contact_id:contact_id:Potentials_Contact_Name:V'),
(12, 0, 'vtiger_potential:potentialname:potentialname:Potentials_Potential_Name:V'),
(12, 1, 'vtiger_potential:related_to:related_to:Potentials_Related_To:V'),
(12, 2, 'vtiger_potential:amount:amount:Potentials_Amount:N'),
(12, 3, 'vtiger_potential:leadsource:leadsource:Potentials_Lead_Source:V'),
(12, 4, 'vtiger_potential:closingdate:closingdate:Potentials_Expected_Close_Date:D'),
(12, 5, 'vtiger_crmentity:smownerid:assigned_user_id:Potentials_Assigned_To:V'),
(12, 6, 'vtiger_potential:contact_id:contact_id:Potentials_Contact_Name:V'),
(13, 1, 'vtiger_troubletickets:title:ticket_title:HelpDesk_Title:V'),
(13, 2, 'vtiger_troubletickets:parent_id:parent_id:HelpDesk_Related_To:V'),
(13, 3, 'vtiger_troubletickets:status:ticketstatus:HelpDesk_Status:V'),
(13, 4, 'vtiger_troubletickets:priority:ticketpriorities:HelpDesk_Priority:V'),
(13, 5, 'vtiger_crmentity:smownerid:assigned_user_id:HelpDesk_Assigned_To:V'),
(13, 6, 'vtiger_troubletickets:contact_id:contact_id:HelpDesk_Contact_Name:V'),
(14, 0, 'vtiger_troubletickets:title:ticket_title:HelpDesk_Title:V'),
(14, 1, 'vtiger_troubletickets:parent_id:parent_id:HelpDesk_Related_To:I'),
(14, 2, 'vtiger_troubletickets:priority:ticketpriorities:HelpDesk_Priority:V'),
(14, 3, 'vtiger_troubletickets:product_id:product_id:HelpDesk_Product_Name:I'),
(14, 4, 'vtiger_crmentity:smownerid:assigned_user_id:HelpDesk_Assigned_To:V'),
(14, 5, 'vtiger_troubletickets:contact_id:contact_id:HelpDesk_Contact_Name:V'),
(15, 0, 'vtiger_troubletickets:title:ticket_title:HelpDesk_Title:V'),
(15, 1, 'vtiger_troubletickets:parent_id:parent_id:HelpDesk_Related_To:I'),
(15, 2, 'vtiger_troubletickets:status:ticketstatus:HelpDesk_Status:V'),
(15, 3, 'vtiger_troubletickets:product_id:product_id:HelpDesk_Product_Name:I'),
(15, 4, 'vtiger_crmentity:smownerid:assigned_user_id:HelpDesk_Assigned_To:V'),
(15, 5, 'vtiger_troubletickets:contact_id:contact_id:HelpDesk_Contact_Name:V'),
(16, 1, 'vtiger_quotes:quote_no:quote_no:Quotes_Quote_No:V'),
(16, 2, 'vtiger_quotes:subject:subject:Quotes_Subject:V'),
(16, 3, 'vtiger_quotes:quotestage:quotestage:Quotes_Quote_Stage:V'),
(16, 4, 'vtiger_quotes:accountid:account_id:Quotes_Account_Name:V'),
(16, 5, 'vtiger_quotes:total:hdnGrandTotal:Quotes_Total:N'),
(16, 6, 'vtiger_quotes:validtill:validtill:Quotes_Valid_Till:D'),
(16, 7, 'vtiger_crmentity:smownerid:assigned_user_id:Quotes_Assigned_To:V'),
(16, 8, 'vtiger_crmentity:modifiedtime:modifiedtime:Quotes_Modified_Time:DT'),
(17, 0, 'vtiger_quotes:subject:subject:Quotes_Subject:V'),
(17, 1, 'vtiger_quotes:quotestage:quotestage:Quotes_Quote_Stage:V'),
(17, 2, 'vtiger_quotes:potentialid:potential_id:Quotes_Potential_Name:I'),
(17, 3, 'vtiger_quotes:accountid:account_id:Quotes_Account_Name:I'),
(17, 4, 'vtiger_quotes:validtill:validtill:Quotes_Valid_Till:D'),
(17, 5, 'vtiger_crmentity:smownerid:assigned_user_id:Quotes_Assigned_To:V'),
(18, 0, 'vtiger_quotes:subject:subject:Quotes_Subject:V'),
(18, 1, 'vtiger_quotes:potentialid:potential_id:Quotes_Potential_Name:I'),
(18, 2, 'vtiger_quotes:accountid:account_id:Quotes_Account_Name:I'),
(18, 3, 'vtiger_quotes:validtill:validtill:Quotes_Valid_Till:D'),
(18, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Quotes_Assigned_To:V'),
(19, 0, 'vtiger_activity:status:taskstatus:Calendar_Status:V'),
(19, 1, 'vtiger_activity:activitytype:activitytype:Calendar_Activity_Type:V'),
(19, 2, 'vtiger_activity:subject:subject:Calendar_Subject:V'),
(19, 3, 'vtiger_seactivityrel:crmid:parent_id:Calendar_Related_To:V'),
(19, 4, 'vtiger_activity:date_start:date_start:Calendar_Start_Date_&_Time:DT'),
(19, 5, 'vtiger_activity:due_date:due_date:Calendar_Due_Date:D'),
(19, 6, 'vtiger_crmentity:smownerid:assigned_user_id:Calendar_Assigned_To:V'),
(20, 0, 'vtiger_activity:subject:subject:Emails_Subject:V'),
(20, 1, 'vtiger_emaildetails:to_email:saved_toid:Emails_To:V'),
(20, 2, 'vtiger_activity:date_start:date_start:Emails_Date_&_Time_Sent:DT'),
(21, 1, 'vtiger_invoice:invoice_no:invoice_no:Invoice_Invoice_No:V'),
(21, 2, 'vtiger_invoice:subject:subject:Invoice_Subject:V'),
(21, 3, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V'),
(21, 4, 'vtiger_invoice:accountid:account_id:Invoice_Account_Name:I'),
(21, 5, 'vtiger_invoice:total:hdnGrandTotal:Invoice_Total:N'),
(21, 6, 'vtiger_invoice:invoicedate:invoicedate:Invoice_Invoice_Date:D'),
(21, 7, 'vtiger_crmentity:smownerid:assigned_user_id:Invoice_Assigned_To:V'),
(21, 8, 'vtiger_crmentity:modifiedtime:modifiedtime:Invoice_Modified_Time:D'),
(22, 1, 'vtiger_notes:title:notes_title:Documents_Title:V'),
(22, 2, 'vtiger_notes:filename:filename:Documents_File_Name:V'),
(22, 3, 'vtiger_crmentity:modifiedtime:modifiedtime:Documents_Modified_Time:DT'),
(22, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Documents_Assigned_To:V'),
(23, 1, 'vtiger_pricebook:bookname:bookname:PriceBooks_Price_Book_Name:V'),
(23, 2, 'vtiger_pricebook:active:active:PriceBooks_Active:C'),
(23, 3, 'vtiger_pricebook:currency_id:currency_id:PriceBooks_Currency:V'),
(24, 1, 'vtiger_products:productname:productname:Products_Product_Name:V'),
(24, 2, 'vtiger_products:productcode:productcode:Products_Part_Number:V'),
(24, 3, 'vtiger_products:commissionrate:commissionrate:Products_Commission_Rate:N'),
(24, 4, 'vtiger_products:qtyinstock:qtyinstock:Products_Qty_In_Stock:NN'),
(24, 5, 'vtiger_products:qty_per_unit:qty_per_unit:Products_Qty/Unit:N'),
(24, 6, 'vtiger_products:unit_price:unit_price:Products_Unit_Price:N'),
(25, 1, 'vtiger_purchaseorder:purchaseorder_no:purchaseorder_no:PurchaseOrder_PurchaseOrder_No:V'),
(25, 2, 'vtiger_purchaseorder:subject:subject:PurchaseOrder_Subject:V'),
(25, 3, 'vtiger_purchaseorder:postatus:postatus:PurchaseOrder_Status:V'),
(25, 4, 'vtiger_purchaseorder:vendorid:vendor_id:PurchaseOrder_Vendor_Name:V'),
(25, 5, 'vtiger_purchaseorder:accountid:account_id:PurchaseOrder_LBL_ACCOUNT_NAME:V'),
(25, 6, 'vtiger_purchaseorder:total:hdnGrandTotal:PurchaseOrder_Total:N'),
(25, 7, 'vtiger_purchaseorder:balance:balance:PurchaseOrder_Balance:N'),
(25, 8, 'vtiger_purchaseorder:duedate:duedate:PurchaseOrder_Due_Date:D'),
(25, 9, 'vtiger_crmentity:smownerid:assigned_user_id:PurchaseOrder_Assigned_To:V'),
(25, 10, 'vtiger_crmentity:modifiedtime:modifiedtime:PurchaseOrder_Modified_Time:DT'),
(26, 1, 'vtiger_salesorder:subject:subject:SalesOrder_Subject:V'),
(26, 2, 'vtiger_salesorder:accountid:account_id:SalesOrder_Account_Name:V'),
(26, 3, 'vtiger_salesorder:quoteid:quote_id:SalesOrder_Quote_Name:V'),
(26, 4, 'vtiger_salesorder:total:hdnGrandTotal:SalesOrder_Total:N'),
(26, 5, 'vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V'),
(27, 1, 'vtiger_vendor:vendorname:vendorname:Vendors_Vendor_Name:V'),
(27, 2, 'vtiger_vendor:phone:phone:Vendors_Phone:V'),
(27, 3, 'vtiger_vendor:email:email:Vendors_Email:V'),
(27, 4, 'vtiger_vendor:category:category:Vendors_Category:V'),
(27, 5, 'vtiger_crmentity:smownerid:assigned_user_id:Vendors_Assigned_To:V'),
(28, 1, 'vtiger_faq:question:question:Faq_Question:V'),
(28, 2, 'vtiger_faq:category:faqcategories:Faq_Category:V'),
(28, 3, 'vtiger_faq:product_id:product_id:Faq_Product_Name:V'),
(28, 4, 'vtiger_crmentity:createdtime:createdtime:Faq_Created_Time:DT'),
(28, 5, 'vtiger_crmentity:modifiedtime:modifiedtime:Faq_Modified_Time:DT'),
(29, 1, 'vtiger_campaign:campaignname:campaignname:Campaigns_Campaign_Name:V'),
(29, 2, 'vtiger_campaign:campaigntype:campaigntype:Campaigns_Campaign_Type:V'),
(29, 3, 'vtiger_campaign:campaignstatus:campaignstatus:Campaigns_Campaign_Status:V'),
(29, 4, 'vtiger_campaign:expectedrevenue:expectedrevenue:Campaigns_Expected_Revenue:N'),
(29, 5, 'vtiger_campaign:closingdate:closingdate:Campaigns_Expected_Close_Date:D'),
(29, 6, 'vtiger_crmentity:smownerid:assigned_user_id:Campaigns_Assigned_To:V'),
(30, 0, 'subject:subject:subject:Subject:V'),
(30, 1, 'from:fromname:fromname:From:N'),
(30, 2, 'to:tpname:toname:To:N'),
(30, 3, 'body:body:body:Body:V'),
(31, 0, 'vtiger_faq:question:question:Faq_Question:V'),
(31, 1, 'vtiger_faq:status:faqstatus:Faq_Status:V'),
(31, 2, 'vtiger_faq:product_id:product_id:Faq_Product_Name:I'),
(31, 3, 'vtiger_faq:category:faqcategories:Faq_Category:V'),
(31, 4, 'vtiger_crmentity:createdtime:createdtime:Faq_Created_Time:DT'),
(32, 0, 'vtiger_faq:question:question:Faq_Question:V'),
(32, 1, 'vtiger_faq:answer:faq_answer:Faq_Answer:V'),
(32, 2, 'vtiger_faq:status:faqstatus:Faq_Status:V'),
(32, 3, 'vtiger_faq:product_id:product_id:Faq_Product_Name:I'),
(32, 4, 'vtiger_faq:category:faqcategories:Faq_Category:V'),
(32, 5, 'vtiger_crmentity:createdtime:createdtime:Faq_Created_Time:DT'),
(33, 0, 'vtiger_purchaseorder:subject:subject:PurchaseOrder_Subject:V'),
(33, 1, 'vtiger_purchaseorder:postatus:postatus:PurchaseOrder_Status:V'),
(33, 2, 'vtiger_purchaseorder:vendorid:vendor_id:PurchaseOrder_Vendor_Name:I'),
(33, 3, 'vtiger_crmentity:smownerid:assigned_user_id:PurchaseOrder_Assigned_To:V'),
(33, 4, 'vtiger_purchaseorder:duedate:duedate:PurchaseOrder_Due_Date:V'),
(34, 0, 'vtiger_purchaseorder:subject:subject:PurchaseOrder_Subject:V'),
(34, 1, 'vtiger_purchaseorder:vendorid:vendor_id:PurchaseOrder_Vendor_Name:I'),
(34, 2, 'vtiger_crmentity:smownerid:assigned_user_id:PurchaseOrder_Assigned_To:V'),
(34, 3, 'vtiger_purchaseorder:postatus:postatus:PurchaseOrder_Status:V'),
(34, 4, 'vtiger_purchaseorder:carrier:carrier:PurchaseOrder_Carrier:V'),
(34, 5, 'vtiger_poshipads:ship_street:ship_street:PurchaseOrder_Shipping_Address:V'),
(35, 0, 'vtiger_invoice:invoice_no:invoice_no:Invoice_Invoice_No:V'),
(35, 1, 'vtiger_invoice:subject:subject:Invoice_Subject:V'),
(35, 2, 'vtiger_invoice:accountid:account_id:Invoice_Account_Name:I'),
(35, 3, 'vtiger_invoice:salesorderid:salesorder_id:Invoice_Sales_Order:I'),
(35, 4, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V'),
(35, 5, 'vtiger_crmentity:smownerid:assigned_user_id:Invoice_Assigned_To:V'),
(35, 6, 'vtiger_crmentity:createdtime:createdtime:Invoice_Created_Time:DT'),
(36, 0, 'vtiger_invoice:invoice_no:invoice_no:Invoice_Invoice_No:V'),
(36, 1, 'vtiger_invoice:subject:subject:Invoice_Subject:V'),
(36, 2, 'vtiger_invoice:accountid:account_id:Invoice_Account_Name:I'),
(36, 3, 'vtiger_invoice:salesorderid:salesorder_id:Invoice_Sales_Order:I'),
(36, 4, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V'),
(36, 5, 'vtiger_invoiceshipads:ship_street:ship_street:Invoice_Shipping_Address:V'),
(36, 6, 'vtiger_crmentity:smownerid:assigned_user_id:Invoice_Assigned_To:V'),
(37, 0, 'vtiger_salesorder:subject:subject:SalesOrder_Subject:V'),
(37, 1, 'vtiger_salesorder:accountid:account_id:SalesOrder_Account_Name:I'),
(37, 2, 'vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V'),
(37, 3, 'vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V'),
(37, 4, 'vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V'),
(37, 5, 'vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V'),
(38, 0, 'vtiger_pbxmanager:callstatus:callstatus:PBXManager_Call_Status:V'),
(38, 1, 'vtiger_pbxmanager:customernumber:customernumber:PBXManager_Customer_Number:V'),
(38, 2, 'vtiger_pbxmanager:customer:customer:PBXManager_Customer:V'),
(38, 3, 'vtiger_pbxmanager:user:user:PBXManager_User:V'),
(38, 4, 'vtiger_pbxmanager:recordingurl:recordingurl:PBXManager_Recording_URL:V'),
(38, 5, 'vtiger_pbxmanager:totalduration:totalduration:PBXManager_Total_Duration:I'),
(38, 6, 'vtiger_pbxmanager:starttime:starttime:PBXManager_Start_Time:DT'),
(39, 1, 'vtiger_servicecontracts:subject:subject:ServiceContracts_Subject:V'),
(39, 2, 'vtiger_servicecontracts:sc_related_to:sc_related_to:ServiceContracts_Related_to:V'),
(39, 3, 'vtiger_crmentity:smownerid:assigned_user_id:ServiceContracts_Assigned_To:V'),
(39, 4, 'vtiger_servicecontracts:start_date:start_date:ServiceContracts_Start_Date:D'),
(39, 5, 'vtiger_servicecontracts:due_date:due_date:ServiceContracts_Due_date:D'),
(39, 7, 'vtiger_servicecontracts:progress:progress:ServiceContracts_Progress:N'),
(39, 8, 'vtiger_servicecontracts:contract_status:contract_status:ServiceContracts_Status:V'),
(40, 1, 'vtiger_service:servicename:servicename:Services_Service_Name:V'),
(40, 2, 'vtiger_service:service_usageunit:service_usageunit:Services_Usage_Unit:V'),
(40, 3, 'vtiger_service:unit_price:unit_price:Services_Price:N'),
(40, 4, 'vtiger_service:qty_per_unit:qty_per_unit:Services_No_of_Units:N'),
(40, 5, 'vtiger_service:servicecategory:servicecategory:Services_Service_Category:V'),
(40, 6, 'vtiger_crmentity:smownerid:assigned_user_id:Services_Owner:I'),
(41, 1, 'vtiger_assets:assetname:assetname:Assets_Asset_Name:V'),
(41, 2, 'vtiger_assets:account:account:Assets_Customer_Name:V'),
(41, 3, 'vtiger_assets:product:product:Assets_Product_Name:V'),
(42, 0, 'vtiger_modcomments:commentcontent:commentcontent:ModComments_Comment:V'),
(42, 1, 'vtiger_modcomments:related_to:related_to:ModComments_Related_To:V'),
(42, 2, 'vtiger_crmentity:modifiedtime:modifiedtime:ModComments_Modified_Time:DT'),
(42, 3, 'vtiger_crmentity:smownerid:assigned_user_id:ModComments_Assigned_To:V'),
(46, 0, 'vtiger_smsnotifier:message:message:SMSNotifier_message:V'),
(46, 2, 'vtiger_crmentity:smownerid:assigned_user_id:SMSNotifier_Assigned_To:V'),
(46, 3, 'vtiger_crmentity:createdtime:createdtime:SMSNotifier_Created_Time:DT'),
(46, 4, 'vtiger_crmentity:modifiedtime:modifiedtime:SMSNotifier_Modified_Time:DT'),
(47, 0, 'vtiger_projectmilestone:projectmilestonename:projectmilestonename:ProjectMilestone_Project_Milestone_Name:V'),
(47, 1, 'vtiger_projectmilestone:projectmilestonedate:projectmilestonedate:ProjectMilestone_Milestone_Date:D'),
(47, 3, 'vtiger_crmentity:description:description:ProjectMilestone_description:V'),
(47, 4, 'vtiger_crmentity:createdtime:createdtime:ProjectMilestone_Created_Time:DT'),
(47, 5, 'vtiger_crmentity:modifiedtime:modifiedtime:ProjectMilestone_Modified_Time:DT'),
(48, 2, 'vtiger_projecttask:projecttaskname:projecttaskname:ProjectTask_Project_Task_Name:V'),
(48, 3, 'vtiger_projecttask:projectid:projectid:ProjectTask_Related_to:V'),
(48, 4, 'vtiger_projecttask:projecttaskpriority:projecttaskpriority:ProjectTask_Priority:V'),
(48, 5, 'vtiger_projecttask:projecttaskprogress:projecttaskprogress:ProjectTask_Progress:V'),
(48, 6, 'vtiger_projecttask:projecttaskhours:projecttaskhours:ProjectTask_Worked_Hours:V'),
(48, 7, 'vtiger_projecttask:startdate:startdate:ProjectTask_Start_Date:D'),
(48, 8, 'vtiger_projecttask:enddate:enddate:ProjectTask_End_Date:D'),
(48, 9, 'vtiger_crmentity:smownerid:assigned_user_id:ProjectTask_Assigned_To:V'),
(49, 0, 'vtiger_project:projectname:projectname:Project_Project_Name:V'),
(49, 1, 'vtiger_project:linktoaccountscontacts:linktoaccountscontacts:Project_Related_to:V'),
(49, 2, 'vtiger_project:startdate:startdate:Project_Start_Date:D'),
(49, 3, 'vtiger_project:targetenddate:targetenddate:Project_Target_End_Date:D'),
(49, 4, 'vtiger_project:actualenddate:actualenddate:Project_Actual_End_Date:D'),
(49, 5, 'vtiger_project:targetbudget:targetbudget:Project_Target_Budget:V'),
(49, 6, 'vtiger_project:progress:progress:Project_Progress:V'),
(49, 7, 'vtiger_project:projectstatus:projectstatus:Project_Status:V'),
(49, 8, 'vtiger_crmentity:smownerid:assigned_user_id:Project_Assigned_To:V'),
(49, 19, 'vtiger_project:contactid:contactid:Project_Contact_Name:V'),
(51, 0, 'vtiger_invoice:invoice_no:invoice_no:Invoice_Invoice_No:V'),
(51, 1, 'vtiger_invoice:subject:subject:Invoice_Subject:V'),
(51, 2, 'vtiger_invoice:accountid:account_id:Invoice_Account_Name:I'),
(51, 3, 'vtiger_invoice:invoicedate:invoicedate:Invoice_Invoice_Date:D'),
(51, 4, 'vtiger_invoice:invoicestatus:invoicestatus:Invoice_Status:V'),
(51, 5, 'vtiger_invoice:total:hdnGrandTotal:Invoice_Total:N'),
(51, 6, 'vtiger_invoicecf:cf_invoice_kind:cf_invoice_kind:Invoice_LBL_INVOICE_KIND:V'),
(52, 1, 'vtiger_sarvpayments:payment_no:payment_no:SarvPayments_LBL_PAYMENT_NO:V'),
(52, 2, 'vtiger_sarvpayments:subject:subject:SarvPayments_LBL_SUBJECT:V'),
(52, 3, 'vtiger_sarvpayments:payment_direction:payment_direction:SarvPayments_LBL_DIRECTION:V'),
(52, 4, 'vtiger_sarvpayments:payment_status:payment_status:SarvPayments_LBL_STATUS:V'),
(52, 5, 'vtiger_sarvpayments:accountid:account_id:SarvPayments_LBL_ACCOUNT:I'),
(52, 6, 'vtiger_sarvpayments:expected_date:expected_date:SarvPayments_LBL_EXPECTED_DATE:D'),
(52, 7, 'vtiger_sarvpayments:amount:amount:SarvPayments_LBL_AMOUNT:N'),
(52, 8, 'vtiger_sarvpayments:payment_date:payment_date:SarvPayments_LBL_PAYMENT_DATE:D'),
(52, 9, 'vtiger_crmentity:smownerid:assigned_user_id:SarvPayments_Assigned_To:V'),
(52, 10, 'vtiger_crmentity:modifiedtime:modifiedtime:SarvPayments_Modified_Time:T'),
(53, 0, 'vtiger_sarvparticipations:participation_no:participation_no:SarvParticipations_LBL_PARTICIPATION_NO:V'),
(53, 1, 'vtiger_sarvparticipations:subject:subject:SarvParticipations_LBL_SUBJECT:V'),
(53, 2, 'vtiger_sarvparticipations:accountid:account_id:SarvParticipations_LBL_ACCOUNT:I'),
(53, 3, 'vtiger_sarvparticipations:participation_type:participation_type:SarvParticipations_LBL_PARTICIPATION_TYPE:V'),
(53, 4, 'vtiger_sarvparticipations:role_name:role_name:SarvParticipations_LBL_ROLE:V'),
(53, 5, 'vtiger_sarvparticipations:participation_status:participation_status:SarvParticipations_LBL_STATUS:V'),
(53, 6, 'vtiger_sarvparticipations:start_date:start_date:SarvParticipations_LBL_START_DATE:D'),
(54, 0, 'vtiger_sarvsurveyresponses:response_no:response_no:SarvSurveyResponses_LBL_RESPONSE_NO:V'),
(54, 1, 'vtiger_sarvsurveyresponses:subject:subject:SarvSurveyResponses_LBL_SUBJECT:V'),
(54, 2, 'vtiger_sarvsurveyresponses:accountid:account_id:SarvSurveyResponses_LBL_ACCOUNT:I'),
(54, 3, 'vtiger_sarvsurveyresponses:survey_title:survey_title:SarvSurveyResponses_LBL_SURVEY_TITLE:V'),
(54, 4, 'vtiger_sarvsurveyresponses:response_status:response_status:SarvSurveyResponses_LBL_STATUS:V'),
(54, 5, 'vtiger_sarvsurveyresponses:channel:channel:SarvSurveyResponses_LBL_CHANNEL:V'),
(54, 6, 'vtiger_sarvsurveyresponses:score:score:SarvSurveyResponses_LBL_SCORE:N'),
(54, 7, 'vtiger_sarvsurveyresponses:submitted_at:submitted_at:SarvSurveyResponses_LBL_SUBMITTED_AT:DT'),
(55, 0, 'vtiger_sarvsalescontracts:contract_no:contract_no:SarvSalesContracts_LBL_CONTRACT_NO:V'),
(55, 1, 'vtiger_sarvsalescontracts:subject:subject:SarvSalesContracts_LBL_SUBJECT:V'),
(55, 2, 'vtiger_sarvsalescontracts:accountid:account_id:SarvSalesContracts_LBL_ACCOUNT:I'),
(55, 3, 'vtiger_sarvsalescontracts:contract_status:contract_status:SarvSalesContracts_LBL_STATUS:V'),
(55, 4, 'vtiger_sarvsalescontracts:start_date:start_date:SarvSalesContracts_LBL_START_DATE:D'),
(55, 5, 'vtiger_sarvsalescontracts:end_date:end_date:SarvSalesContracts_LBL_END_DATE:D'),
(55, 6, 'vtiger_sarvsalescontracts:contract_value:contract_value:SarvSalesContracts_LBL_CONTRACT_VALUE:N'),
(56, 0, 'vtiger_sarvtargetlists:targetlist_no:targetlist_no:SarvTargetLists_LBL_TARGETLIST_NO:V'),
(56, 1, 'vtiger_sarvtargetlists:subject:subject:SarvTargetLists_LBL_SUBJECT:V'),
(56, 2, 'vtiger_sarvtargetlists:accountid:account_id:SarvTargetLists_LBL_ACCOUNT:I'),
(56, 3, 'vtiger_sarvtargetlists:list_type:list_type:SarvTargetLists_LBL_LIST_TYPE:V'),
(56, 4, 'vtiger_sarvtargetlists:list_status:list_status:SarvTargetLists_LBL_STATUS:V'),
(56, 5, 'vtiger_sarvtargetlists:valid_from:valid_from:SarvTargetLists_LBL_VALID_FROM:D'),
(56, 6, 'vtiger_sarvtargetlists:valid_to:valid_to:SarvTargetLists_LBL_VALID_TO:D'),
(57, 0, 'vtiger_sarvbankaccounts:bankaccount_no:bankaccount_no:SarvBankAccounts_LBL_BANKACCOUNT_NO:V'),
(57, 1, 'vtiger_sarvbankaccounts:subject:subject:SarvBankAccounts_LBL_SUBJECT:V'),
(57, 2, 'vtiger_sarvbankaccounts:accountid:account_id:SarvBankAccounts_LBL_ACCOUNT:I'),
(57, 3, 'vtiger_sarvbankaccounts:bank_name:bank_name:SarvBankAccounts_LBL_BANK_NAME:V'),
(57, 4, 'vtiger_sarvbankaccounts:iban_last4:iban_last4:SarvBankAccounts_LBL_IBAN_LAST4:V'),
(57, 5, 'vtiger_sarvbankaccounts:account_status:account_status:SarvBankAccounts_LBL_STATUS:V'),
(57, 6, 'vtiger_sarvbankaccounts:is_primary:is_primary:SarvBankAccounts_LBL_PRIMARY:C'),
(58, 0, 'vtiger_sarvdeposits:deposit_no:deposit_no:SarvDeposits_LBL_DEPOSIT_NO:V'),
(58, 1, 'vtiger_sarvdeposits:subject:subject:SarvDeposits_LBL_SUBJECT:V'),
(58, 2, 'vtiger_sarvdeposits:accountid:account_id:SarvDeposits_LBL_ACCOUNT:I'),
(58, 3, 'vtiger_sarvdeposits:deposit_status:deposit_status:SarvDeposits_LBL_STATUS:V'),
(58, 4, 'vtiger_sarvdeposits:amount:amount:SarvDeposits_LBL_AMOUNT:N'),
(58, 5, 'vtiger_sarvdeposits:applied_amount:applied_amount:SarvDeposits_LBL_APPLIED_AMOUNT:N'),
(58, 6, 'vtiger_sarvdeposits:returned_amount:returned_amount:SarvDeposits_LBL_RETURNED_AMOUNT:N'),
(58, 7, 'vtiger_sarvdeposits:received_date:received_date:SarvDeposits_LBL_RECEIVED_DATE:D'),
(58, 8, 'vtiger_sarvdeposits:expiry_date:expiry_date:SarvDeposits_LBL_EXPIRY_DATE:D'),
(59, 0, 'vtiger_sarvbusinesslocations:location_no:location_no:SarvBusinessLocations_LBL_LOCATION_NO:V'),
(59, 1, 'vtiger_sarvbusinesslocations:subject:subject:SarvBusinessLocations_LBL_SUBJECT:V'),
(59, 2, 'vtiger_sarvbusinesslocations:accountid:account_id:SarvBusinessLocations_LBL_ACCOUNT:I'),
(59, 3, 'vtiger_sarvbusinesslocations:location_type:location_type:SarvBusinessLocations_LBL_LOCATION_TYPE:V'),
(59, 4, 'vtiger_sarvbusinesslocations:location_status:location_status:SarvBusinessLocations_LBL_STATUS:V'),
(59, 5, 'vtiger_sarvbusinesslocations:city:city:SarvBusinessLocations_LBL_CITY:V'),
(59, 6, 'vtiger_sarvbusinesslocations:phone:phone:SarvBusinessLocations_LBL_PHONE:V'),
(60, 0, 'vtiger_sarvtimereservations:reservation_no:reservation_no:SarvTimeReservations_LBL_RESERVATION_NO:V'),
(60, 1, 'vtiger_sarvtimereservations:subject:subject:SarvTimeReservations_LBL_SUBJECT:V'),
(60, 2, 'vtiger_sarvtimereservations:accountid:account_id:SarvTimeReservations_LBL_ACCOUNT:I'),
(60, 3, 'vtiger_sarvtimereservations:reservation_status:reservation_status:SarvTimeReservations_LBL_STATUS:V'),
(60, 4, 'vtiger_sarvtimereservations:start_datetime:start_datetime:SarvTimeReservations_LBL_START_DATETIME:DT'),
(60, 5, 'vtiger_sarvtimereservations:end_datetime:end_datetime:SarvTimeReservations_LBL_END_DATETIME:DT'),
(60, 6, 'vtiger_sarvtimereservations:locationid:location_id:SarvTimeReservations_LBL_LOCATION:I'),
(60, 7, 'vtiger_sarvtimereservations:contactid:contact_id:SarvTimeReservations_LBL_CONTACT:I'),
(60, 8, 'vtiger_crmentity:smownerid:assigned_user_id:SarvTimeReservations_Assigned_To:V'),
(61, 0, 'vtiger_sarvgifts:gift_no:gift_no:SarvGifts_LBL_GIFT_NO:V'),
(61, 1, 'vtiger_sarvgifts:subject:subject:SarvGifts_LBL_SUBJECT:V'),
(61, 2, 'vtiger_sarvgifts:accountid:account_id:SarvGifts_LBL_ACCOUNT:I'),
(61, 3, 'vtiger_sarvgifts:gift_status:gift_status:SarvGifts_LBL_STATUS:V'),
(61, 4, 'vtiger_sarvgifts:productid:product_id:SarvGifts_LBL_PRODUCT:I'),
(61, 5, 'vtiger_sarvgifts:quantity:quantity:SarvGifts_LBL_QUANTITY:N'),
(61, 6, 'vtiger_sarvgifts:dispatch_date:dispatch_date:SarvGifts_LBL_DISPATCH_DATE:D'),
(61, 7, 'vtiger_sarvgifts:delivery_date:delivery_date:SarvGifts_LBL_DELIVERY_DATE:D'),
(61, 8, 'vtiger_sarvgifts:tracking_no:tracking_no:SarvGifts_LBL_TRACKING_NO:V'),
(62, 0, 'vtiger_sarvproductsamples:sample_no:sample_no:SarvProductSamples_LBL_SAMPLE_NO:V'),
(62, 1, 'vtiger_sarvproductsamples:subject:subject:SarvProductSamples_LBL_SUBJECT:V'),
(62, 2, 'vtiger_sarvproductsamples:accountid:account_id:SarvProductSamples_LBL_ACCOUNT:I'),
(62, 3, 'vtiger_sarvproductsamples:productid:product_id:SarvProductSamples_LBL_PRODUCT:I'),
(62, 4, 'vtiger_sarvproductsamples:sample_status:sample_status:SarvProductSamples_LBL_STATUS:V'),
(62, 5, 'vtiger_sarvproductsamples:quantity:quantity:SarvProductSamples_LBL_QUANTITY:N'),
(62, 6, 'vtiger_sarvproductsamples:dispatch_date:dispatch_date:SarvProductSamples_LBL_DISPATCH_DATE:D'),
(63, 0, 'vtiger_sarvaccessgrants:grant_no:grant_no:SarvAccessGrants_LBL_GRANT_NO:V'),
(63, 1, 'vtiger_sarvaccessgrants:subject:subject:SarvAccessGrants_LBL_SUBJECT:V'),
(63, 2, 'vtiger_sarvaccessgrants:accountid:account_id:SarvAccessGrants_LBL_ACCOUNT:I'),
(63, 3, 'vtiger_sarvaccessgrants:groupid:group_id:SarvAccessGrants_LBL_GROUP_ID:I'),
(63, 4, 'vtiger_sarvaccessgrants:access_level:access_level:SarvAccessGrants_LBL_ACCESS_LEVEL:V'),
(63, 5, 'vtiger_sarvaccessgrants:grant_status:grant_status:SarvAccessGrants_LBL_STATUS:V'),
(63, 6, 'vtiger_sarvaccessgrants:valid_from:valid_from:SarvAccessGrants_LBL_VALID_FROM:D'),
(63, 7, 'vtiger_sarvaccessgrants:valid_to:valid_to:SarvAccessGrants_LBL_VALID_TO:D'),
(64, 0, 'vtiger_communications:name:name:Communications_Name:V'),
(64, 1, 'vtiger_communications:parent_type:parent_type:Communications_Parent_Module:V'),
(64, 2, 'vtiger_communications:type:type:Communications_Record_Type:V'),
(64, 3, 'vtiger_communications:enabled:enabled:Communications_Enabled:C'),
(64, 4, 'vtiger_crmentity:smownerid:assigned_user_id:Communications_Assigned_To:V'),
(64, 5, 'vtiger_crmentity:modifiedtime:modifiedtime:Communications_Modified_Time:T');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_cvstdfilter`
--

DROP TABLE IF EXISTS `vtiger_cvstdfilter`;
CREATE TABLE `vtiger_cvstdfilter` (
  `cvid` int(19) NOT NULL,
  `columnname` varchar(250) DEFAULT '',
  `stdfilter` varchar(250) DEFAULT '',
  `startdate` date DEFAULT NULL,
  `enddate` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_cvstdfilter`
--

INSERT IGNORE INTO `vtiger_cvstdfilter` (`cvid`, `columnname`, `stdfilter`, `startdate`, `enddate`) VALUES
(3, 'vtiger_crmentity:modifiedtime:modifiedtime:Leads_Modified_Time', 'thismonth', '2005-06-01', '2005-06-30'),
(6, 'vtiger_crmentity:createdtime:createdtime:Accounts_Created_Time', 'thisweek', '2005-06-19', '2005-06-25'),
(9, 'vtiger_contactsubdetails:birthday:birthday:Contacts_Birthdate', 'today', '2005-06-25', '2005-06-25');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_dashboard_tabs`
--

DROP TABLE IF EXISTS `vtiger_dashboard_tabs`;
CREATE TABLE `vtiger_dashboard_tabs` (
  `id` int(19) NOT NULL,
  `tabname` varchar(50) DEFAULT NULL,
  `isdefault` int(1) DEFAULT 0,
  `sequence` int(5) DEFAULT 2,
  `appname` varchar(20) DEFAULT NULL,
  `modulename` varchar(50) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_dashboard_tabs`
--

INSERT IGNORE INTO `vtiger_dashboard_tabs` (`id`, `tabname`, `isdefault`, `sequence`, `appname`, `modulename`, `userid`) VALUES
(2, 'My Dashboard', 1, 1, '', '', 1),
(10, 'My Dashboard', 1, 1, '', '', 5),
(17, 'My Dashboard', 1, 1, '', '', 6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_grp2grp`
--

DROP TABLE IF EXISTS `vtiger_datashare_grp2grp`;
CREATE TABLE `vtiger_datashare_grp2grp` (
  `shareid` int(19) NOT NULL,
  `share_groupid` int(19) DEFAULT NULL,
  `to_groupid` int(19) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_grp2role`
--

DROP TABLE IF EXISTS `vtiger_datashare_grp2role`;
CREATE TABLE `vtiger_datashare_grp2role` (
  `shareid` int(19) NOT NULL,
  `share_groupid` int(19) DEFAULT NULL,
  `to_roleid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_grp2rs`
--

DROP TABLE IF EXISTS `vtiger_datashare_grp2rs`;
CREATE TABLE `vtiger_datashare_grp2rs` (
  `shareid` int(19) NOT NULL,
  `share_groupid` int(19) DEFAULT NULL,
  `to_roleandsubid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_module_rel`
--

DROP TABLE IF EXISTS `vtiger_datashare_module_rel`;
CREATE TABLE `vtiger_datashare_module_rel` (
  `shareid` int(19) NOT NULL,
  `tabid` int(19) NOT NULL,
  `relationtype` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_relatedmodules`
--

DROP TABLE IF EXISTS `vtiger_datashare_relatedmodules`;
CREATE TABLE `vtiger_datashare_relatedmodules` (
  `datashare_relatedmodule_id` int(19) NOT NULL,
  `tabid` int(19) DEFAULT NULL,
  `relatedto_tabid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_datashare_relatedmodules`
--

INSERT IGNORE INTO `vtiger_datashare_relatedmodules` (`datashare_relatedmodule_id`, `tabid`, `relatedto_tabid`) VALUES
(1, 6, 2),
(2, 6, 13),
(3, 6, 20),
(4, 6, 22),
(5, 6, 23),
(6, 2, 20),
(7, 2, 22),
(8, 20, 22),
(9, 22, 23);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_relatedmodules_seq`
--

DROP TABLE IF EXISTS `vtiger_datashare_relatedmodules_seq`;
CREATE TABLE `vtiger_datashare_relatedmodules_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_datashare_relatedmodules_seq`
--

INSERT IGNORE INTO `vtiger_datashare_relatedmodules_seq` (`id`) VALUES
(9);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_relatedmodule_permission`
--

DROP TABLE IF EXISTS `vtiger_datashare_relatedmodule_permission`;
CREATE TABLE `vtiger_datashare_relatedmodule_permission` (
  `shareid` int(19) NOT NULL,
  `datashare_relatedmodule_id` int(19) NOT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_role2group`
--

DROP TABLE IF EXISTS `vtiger_datashare_role2group`;
CREATE TABLE `vtiger_datashare_role2group` (
  `shareid` int(19) NOT NULL,
  `share_roleid` varchar(255) DEFAULT NULL,
  `to_groupid` int(19) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_role2role`
--

DROP TABLE IF EXISTS `vtiger_datashare_role2role`;
CREATE TABLE `vtiger_datashare_role2role` (
  `shareid` int(19) NOT NULL,
  `share_roleid` varchar(255) DEFAULT NULL,
  `to_roleid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_role2rs`
--

DROP TABLE IF EXISTS `vtiger_datashare_role2rs`;
CREATE TABLE `vtiger_datashare_role2rs` (
  `shareid` int(19) NOT NULL,
  `share_roleid` varchar(255) DEFAULT NULL,
  `to_roleandsubid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_rs2grp`
--

DROP TABLE IF EXISTS `vtiger_datashare_rs2grp`;
CREATE TABLE `vtiger_datashare_rs2grp` (
  `shareid` int(19) NOT NULL,
  `share_roleandsubid` varchar(255) DEFAULT NULL,
  `to_groupid` int(19) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_rs2role`
--

DROP TABLE IF EXISTS `vtiger_datashare_rs2role`;
CREATE TABLE `vtiger_datashare_rs2role` (
  `shareid` int(19) NOT NULL,
  `share_roleandsubid` varchar(255) DEFAULT NULL,
  `to_roleid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_datashare_rs2rs`
--

DROP TABLE IF EXISTS `vtiger_datashare_rs2rs`;
CREATE TABLE `vtiger_datashare_rs2rs` (
  `shareid` int(19) NOT NULL,
  `share_roleandsubid` varchar(255) DEFAULT NULL,
  `to_roleandsubid` varchar(255) DEFAULT NULL,
  `permission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_date_format`
--

DROP TABLE IF EXISTS `vtiger_date_format`;
CREATE TABLE `vtiger_date_format` (
  `date_formatid` int(19) NOT NULL,
  `date_format` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_date_format`
--

INSERT IGNORE INTO `vtiger_date_format` (`date_formatid`, `date_format`, `sortorderid`, `presence`) VALUES
(1, 'dd-mm-yyyy', 0, 1),
(2, 'mm-dd-yyyy', 1, 1),
(3, 'yyyy-mm-dd', 2, 1),
(4, 'dd.mm.yyyy', 3, 1),
(5, 'dd/mm/yyyy', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_date_format_seq`
--

DROP TABLE IF EXISTS `vtiger_date_format_seq`;
CREATE TABLE `vtiger_date_format_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_date_format_seq`
--

INSERT IGNORE INTO `vtiger_date_format_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_dayoftheweek`
--

DROP TABLE IF EXISTS `vtiger_dayoftheweek`;
CREATE TABLE `vtiger_dayoftheweek` (
  `dayoftheweekid` int(11) NOT NULL,
  `dayoftheweek` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_dayoftheweek`
--

INSERT IGNORE INTO `vtiger_dayoftheweek` (`dayoftheweekid`, `dayoftheweek`, `sortorderid`, `presence`) VALUES
(1, 'Sunday', 0, 1),
(2, 'Monday', 1, 1),
(3, 'Tuesday', 2, 1),
(4, 'Wednesday', 3, 1),
(5, 'Thursday', 4, 1),
(6, 'Friday', 5, 1),
(7, 'Saturday', 6, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_dayoftheweek_seq`
--

DROP TABLE IF EXISTS `vtiger_dayoftheweek_seq`;
CREATE TABLE `vtiger_dayoftheweek_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_dayoftheweek_seq`
--

INSERT IGNORE INTO `vtiger_dayoftheweek_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultactivitytype`
--

DROP TABLE IF EXISTS `vtiger_defaultactivitytype`;
CREATE TABLE `vtiger_defaultactivitytype` (
  `defaultactivitytypeid` int(11) NOT NULL,
  `defaultactivitytype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_defaultactivitytype`
--

INSERT IGNORE INTO `vtiger_defaultactivitytype` (`defaultactivitytypeid`, `defaultactivitytype`, `presence`, `picklist_valueid`, `sortorderid`) VALUES
(1, 'Call', 1, 299, 1),
(2, 'Meeting', 1, 300, 2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultactivitytype_seq`
--

DROP TABLE IF EXISTS `vtiger_defaultactivitytype_seq`;
CREATE TABLE `vtiger_defaultactivitytype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_defaultactivitytype_seq`
--

INSERT IGNORE INTO `vtiger_defaultactivitytype_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultcalendarview`
--

DROP TABLE IF EXISTS `vtiger_defaultcalendarview`;
CREATE TABLE `vtiger_defaultcalendarview` (
  `defaultcalendarviewid` int(11) NOT NULL,
  `defaultcalendarview` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_defaultcalendarview`
--

INSERT IGNORE INTO `vtiger_defaultcalendarview` (`defaultcalendarviewid`, `defaultcalendarview`, `sortorderid`, `presence`) VALUES
(1, 'ListView', 0, 1),
(2, 'MyCalendar', 1, 1),
(3, 'SharedCalendar', 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultcalendarview_seq`
--

DROP TABLE IF EXISTS `vtiger_defaultcalendarview_seq`;
CREATE TABLE `vtiger_defaultcalendarview_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_defaultcalendarview_seq`
--

INSERT IGNORE INTO `vtiger_defaultcalendarview_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultcv`
--

DROP TABLE IF EXISTS `vtiger_defaultcv`;
CREATE TABLE `vtiger_defaultcv` (
  `tabid` int(19) NOT NULL,
  `defaultviewname` varchar(50) NOT NULL,
  `query` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaulteventstatus`
--

DROP TABLE IF EXISTS `vtiger_defaulteventstatus`;
CREATE TABLE `vtiger_defaulteventstatus` (
  `defaulteventstatusid` int(11) NOT NULL,
  `defaulteventstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_defaulteventstatus`
--

INSERT IGNORE INTO `vtiger_defaulteventstatus` (`defaulteventstatusid`, `defaulteventstatus`, `presence`, `picklist_valueid`, `sortorderid`) VALUES
(1, 'Planned', 1, 296, 1),
(2, 'Held', 1, 297, 2),
(3, 'Not Held', 1, 298, 3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaulteventstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_defaulteventstatus_seq`;
CREATE TABLE `vtiger_defaulteventstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_defaulteventstatus_seq`
--

INSERT IGNORE INTO `vtiger_defaulteventstatus_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultlandingpage`
--

DROP TABLE IF EXISTS `vtiger_defaultlandingpage`;
CREATE TABLE `vtiger_defaultlandingpage` (
  `defaultlandingpageid` int(11) NOT NULL,
  `defaultlandingpage` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_defaultlandingpage`
--

INSERT IGNORE INTO `vtiger_defaultlandingpage` (`defaultlandingpageid`, `defaultlandingpage`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'true', 1, 303, 1, NULL),
(2, 'false', 1, 304, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_defaultlandingpage_seq`
--

DROP TABLE IF EXISTS `vtiger_defaultlandingpage_seq`;
CREATE TABLE `vtiger_defaultlandingpage_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_defaultlandingpage_seq`
--

INSERT IGNORE INTO `vtiger_defaultlandingpage_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_default_record_view`
--

DROP TABLE IF EXISTS `vtiger_default_record_view`;
CREATE TABLE `vtiger_default_record_view` (
  `default_record_viewid` int(11) NOT NULL,
  `default_record_view` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_default_record_view`
--

INSERT IGNORE INTO `vtiger_default_record_view` (`default_record_viewid`, `default_record_view`, `sortorderid`, `presence`) VALUES
(1, 'Summary', 0, 1),
(2, 'Detail', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_default_record_view_seq`
--

DROP TABLE IF EXISTS `vtiger_default_record_view_seq`;
CREATE TABLE `vtiger_default_record_view_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_default_record_view_seq`
--

INSERT IGNORE INTO `vtiger_default_record_view_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_def_org_field`
--

DROP TABLE IF EXISTS `vtiger_def_org_field`;
CREATE TABLE `vtiger_def_org_field` (
  `tabid` int(10) DEFAULT NULL,
  `fieldid` int(19) NOT NULL,
  `visible` int(19) DEFAULT NULL,
  `readonly` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_def_org_field`
--

INSERT IGNORE INTO `vtiger_def_org_field` (`tabid`, `fieldid`, `visible`, `readonly`) VALUES
(6, 1, 0, 0),
(6, 2, 0, 0),
(6, 3, 0, 0),
(6, 4, 0, 0),
(6, 5, 0, 0),
(6, 6, 0, 0),
(6, 7, 0, 0),
(6, 8, 0, 0),
(6, 9, 0, 0),
(6, 10, 0, 0),
(6, 11, 0, 0),
(6, 12, 0, 0),
(6, 13, 0, 0),
(6, 14, 0, 0),
(6, 15, 0, 0),
(6, 16, 0, 0),
(6, 17, 0, 0),
(6, 18, 0, 0),
(6, 19, 0, 0),
(6, 20, 0, 0),
(6, 21, 0, 0),
(6, 22, 0, 0),
(6, 23, 0, 0),
(6, 24, 0, 0),
(6, 25, 0, 0),
(6, 26, 0, 0),
(6, 27, 0, 0),
(6, 28, 0, 0),
(6, 29, 0, 0),
(6, 30, 0, 0),
(6, 31, 0, 0),
(6, 32, 0, 0),
(6, 33, 0, 0),
(6, 34, 0, 0),
(6, 35, 0, 0),
(6, 36, 0, 0),
(7, 37, 0, 0),
(7, 38, 0, 0),
(7, 39, 0, 0),
(7, 40, 0, 0),
(7, 41, 0, 0),
(7, 42, 0, 0),
(7, 43, 0, 0),
(7, 44, 0, 0),
(7, 45, 0, 0),
(7, 46, 0, 0),
(7, 47, 0, 0),
(7, 48, 0, 0),
(7, 49, 0, 0),
(7, 50, 0, 0),
(7, 51, 0, 0),
(7, 52, 0, 0),
(7, 53, 0, 0),
(7, 54, 0, 0),
(7, 55, 0, 0),
(7, 56, 0, 0),
(7, 57, 0, 0),
(7, 58, 0, 0),
(7, 59, 0, 0),
(7, 60, 0, 0),
(7, 61, 0, 0),
(7, 62, 0, 0),
(7, 63, 0, 0),
(7, 64, 0, 0),
(7, 65, 0, 0),
(4, 66, 0, 0),
(4, 67, 0, 0),
(4, 68, 0, 0),
(4, 69, 0, 0),
(4, 70, 0, 0),
(4, 71, 0, 0),
(4, 72, 0, 0),
(4, 73, 0, 0),
(4, 74, 0, 0),
(4, 75, 0, 0),
(4, 76, 0, 0),
(4, 77, 0, 0),
(4, 78, 0, 0),
(4, 79, 0, 0),
(4, 80, 0, 0),
(4, 81, 0, 0),
(4, 82, 0, 0),
(4, 83, 0, 0),
(4, 84, 0, 0),
(4, 85, 0, 0),
(4, 86, 0, 0),
(4, 87, 0, 0),
(4, 88, 0, 0),
(4, 89, 0, 0),
(4, 90, 0, 0),
(4, 91, 0, 0),
(4, 92, 0, 0),
(4, 93, 0, 0),
(4, 94, 0, 0),
(4, 95, 0, 0),
(4, 96, 0, 0),
(4, 97, 0, 0),
(4, 98, 0, 0),
(4, 99, 0, 0),
(4, 100, 0, 0),
(4, 101, 0, 0),
(4, 102, 0, 0),
(4, 103, 0, 0),
(4, 104, 0, 0),
(4, 105, 0, 0),
(4, 106, 0, 0),
(4, 107, 0, 0),
(4, 108, 0, 0),
(4, 109, 0, 0),
(2, 110, 0, 0),
(2, 111, 0, 0),
(2, 112, 0, 0),
(2, 113, 0, 0),
(2, 114, 0, 0),
(2, 115, 0, 0),
(2, 116, 0, 0),
(2, 117, 0, 0),
(2, 118, 0, 0),
(2, 119, 0, 0),
(2, 120, 0, 0),
(2, 121, 0, 0),
(2, 122, 0, 0),
(2, 123, 0, 0),
(2, 124, 0, 0),
(2, 125, 0, 0),
(26, 126, 0, 0),
(26, 127, 0, 0),
(26, 128, 0, 0),
(26, 129, 0, 0),
(26, 130, 0, 0),
(26, 131, 0, 0),
(26, 132, 0, 0),
(26, 133, 0, 0),
(26, 134, 0, 0),
(26, 135, 0, 0),
(26, 136, 0, 0),
(26, 137, 0, 0),
(26, 138, 0, 0),
(26, 139, 0, 0),
(26, 140, 0, 0),
(26, 141, 0, 0),
(26, 142, 0, 0),
(26, 143, 0, 0),
(26, 144, 0, 0),
(26, 145, 0, 0),
(26, 146, 0, 0),
(26, 147, 0, 0),
(26, 148, 0, 0),
(26, 149, 0, 0),
(26, 150, 0, 0),
(4, 151, 0, 0),
(6, 152, 0, 0),
(7, 153, 0, 0),
(26, 154, 0, 0),
(13, 155, 0, 0),
(13, 156, 0, 0),
(13, 157, 0, 0),
(13, 158, 0, 0),
(13, 159, 0, 0),
(13, 160, 0, 0),
(13, 161, 0, 0),
(13, 162, 0, 0),
(13, 163, 0, 0),
(13, 164, 0, 0),
(13, 165, 0, 0),
(13, 166, 0, 0),
(13, 167, 0, 0),
(13, 168, 0, 0),
(13, 169, 0, 0),
(13, 170, 0, 0),
(13, 171, 0, 0),
(13, 172, 0, 0),
(13, 173, 0, 0),
(14, 174, 0, 0),
(14, 175, 0, 0),
(14, 176, 0, 0),
(14, 177, 0, 0),
(14, 178, 0, 0),
(14, 179, 0, 0),
(14, 180, 0, 0),
(14, 181, 0, 0),
(14, 182, 0, 0),
(14, 183, 0, 0),
(14, 184, 0, 0),
(14, 185, 0, 0),
(14, 186, 0, 0),
(14, 187, 0, 0),
(14, 188, 0, 0),
(14, 189, 0, 0),
(14, 190, 0, 0),
(14, 191, 0, 0),
(14, 192, 0, 0),
(14, 193, 0, 0),
(14, 194, 0, 0),
(14, 195, 0, 0),
(14, 196, 0, 0),
(14, 197, 0, 0),
(14, 198, 0, 0),
(14, 199, 0, 0),
(14, 200, 0, 0),
(14, 201, 0, 0),
(14, 202, 0, 0),
(14, 203, 0, 0),
(14, 204, 0, 0),
(8, 205, 0, 0),
(8, 206, 0, 0),
(8, 207, 0, 0),
(8, 208, 0, 0),
(8, 209, 0, 0),
(8, 210, 0, 0),
(8, 211, 0, 0),
(8, 212, 0, 0),
(8, 213, 0, 0),
(8, 214, 0, 0),
(8, 215, 0, 0),
(8, 216, 0, 0),
(8, 217, 0, 0),
(8, 218, 0, 0),
(8, 219, 0, 0),
(10, 220, 0, 0),
(10, 221, 0, 0),
(10, 222, 0, 0),
(10, 223, 0, 0),
(10, 224, 0, 0),
(10, 225, 0, 0),
(10, 226, 0, 0),
(10, 227, 0, 0),
(10, 228, 0, 0),
(10, 229, 0, 0),
(10, 230, 0, 0),
(10, 231, 0, 0),
(9, 232, 0, 0),
(9, 233, 0, 0),
(9, 234, 0, 0),
(9, 235, 0, 0),
(9, 236, 0, 0),
(9, 237, 0, 0),
(9, 238, 0, 0),
(9, 239, 0, 0),
(9, 240, 0, 0),
(9, 241, 0, 0),
(9, 242, 0, 0),
(9, 243, 0, 0),
(9, 244, 0, 0),
(9, 245, 0, 0),
(9, 246, 0, 0),
(9, 247, 0, 0),
(9, 248, 0, 0),
(9, 249, 0, 0),
(9, 250, 0, 0),
(9, 251, 0, 0),
(9, 252, 0, 0),
(9, 253, 0, 0),
(9, 254, 0, 0),
(9, 255, 0, 0),
(16, 256, 0, 0),
(16, 257, 0, 0),
(16, 258, 0, 0),
(16, 259, 0, 0),
(16, 260, 0, 0),
(16, 261, 0, 0),
(16, 262, 0, 0),
(16, 263, 0, 0),
(16, 264, 0, 0),
(16, 265, 0, 0),
(16, 266, 0, 0),
(16, 267, 0, 0),
(16, 268, 0, 0),
(16, 269, 0, 0),
(16, 270, 0, 0),
(16, 271, 0, 0),
(16, 272, 0, 0),
(16, 273, 0, 0),
(16, 274, 0, 0),
(16, 275, 0, 0),
(16, 276, 0, 0),
(16, 277, 0, 0),
(16, 278, 0, 0),
(15, 279, 0, 0),
(15, 280, 0, 0),
(15, 281, 0, 0),
(15, 282, 0, 0),
(15, 283, 0, 0),
(15, 284, 0, 0),
(15, 285, 0, 0),
(15, 286, 0, 0),
(15, 287, 0, 0),
(15, 288, 0, 0),
(18, 289, 0, 0),
(18, 290, 0, 0),
(18, 291, 0, 0),
(18, 292, 0, 0),
(18, 293, 0, 0),
(18, 294, 0, 0),
(18, 295, 0, 0),
(18, 296, 0, 0),
(18, 297, 0, 0),
(18, 298, 0, 0),
(18, 299, 0, 0),
(18, 300, 0, 0),
(18, 301, 0, 0),
(18, 302, 0, 0),
(18, 303, 0, 0),
(18, 304, 0, 0),
(18, 305, 0, 0),
(19, 306, 0, 0),
(19, 307, 0, 0),
(19, 308, 0, 0),
(19, 309, 0, 0),
(19, 310, 0, 0),
(19, 311, 0, 0),
(19, 312, 0, 0),
(19, 313, 0, 0),
(20, 314, 0, 0),
(20, 315, 0, 0),
(20, 316, 0, 0),
(20, 317, 0, 0),
(20, 318, 0, 0),
(20, 319, 0, 0),
(20, 320, 0, 0),
(20, 321, 0, 0),
(20, 322, 0, 0),
(20, 323, 0, 0),
(20, 324, 0, 0),
(20, 325, 0, 0),
(20, 326, 0, 0),
(20, 327, 0, 0),
(20, 328, 0, 0),
(20, 329, 0, 0),
(20, 330, 0, 0),
(20, 331, 0, 0),
(20, 332, 0, 0),
(20, 333, 0, 0),
(20, 334, 0, 0),
(20, 335, 0, 0),
(20, 336, 0, 0),
(20, 337, 0, 0),
(20, 338, 0, 0),
(20, 339, 0, 0),
(20, 340, 0, 0),
(20, 341, 0, 0),
(20, 342, 0, 0),
(20, 343, 0, 0),
(20, 344, 0, 0),
(20, 345, 0, 0),
(20, 346, 0, 0),
(20, 347, 0, 0),
(20, 348, 0, 0),
(20, 349, 0, 0),
(20, 350, 0, 0),
(21, 351, 0, 0),
(21, 352, 0, 0),
(21, 353, 0, 0),
(21, 354, 0, 0),
(21, 355, 0, 0),
(21, 356, 0, 0),
(21, 357, 0, 0),
(21, 358, 0, 0),
(21, 359, 0, 0),
(21, 360, 0, 0),
(21, 361, 0, 0),
(21, 362, 0, 0),
(21, 363, 0, 0),
(21, 364, 0, 0),
(21, 365, 0, 0),
(21, 366, 0, 0),
(21, 367, 0, 0),
(21, 368, 0, 0),
(21, 369, 0, 0),
(21, 370, 0, 0),
(21, 371, 0, 0),
(21, 372, 0, 0),
(21, 373, 0, 0),
(21, 374, 0, 0),
(21, 375, 0, 0),
(21, 376, 0, 0),
(21, 377, 0, 0),
(21, 378, 0, 0),
(21, 379, 0, 0),
(21, 380, 0, 0),
(21, 381, 0, 0),
(21, 382, 0, 0),
(21, 383, 0, 0),
(21, 384, 0, 0),
(21, 385, 0, 0),
(21, 386, 0, 0),
(21, 387, 0, 0),
(21, 388, 0, 0),
(22, 389, 0, 0),
(22, 390, 0, 0),
(22, 391, 0, 0),
(22, 392, 0, 0),
(22, 393, 0, 0),
(22, 394, 0, 0),
(22, 395, 0, 0),
(22, 396, 0, 0),
(22, 397, 0, 0),
(22, 398, 0, 0),
(22, 399, 0, 0),
(22, 400, 0, 0),
(22, 401, 0, 0),
(22, 402, 0, 0),
(22, 403, 0, 0),
(22, 404, 0, 0),
(22, 405, 0, 0),
(22, 406, 0, 0),
(22, 407, 0, 0),
(22, 408, 0, 0),
(22, 409, 0, 0),
(22, 410, 0, 0),
(22, 411, 0, 0),
(22, 412, 0, 0),
(22, 413, 0, 0),
(22, 414, 0, 0),
(22, 415, 0, 0),
(22, 416, 0, 0),
(22, 417, 0, 0),
(22, 418, 0, 0),
(22, 419, 0, 0),
(22, 420, 0, 0),
(22, 421, 0, 0),
(22, 422, 0, 0),
(22, 423, 0, 0),
(22, 424, 0, 0),
(22, 425, 0, 0),
(22, 426, 0, 0),
(22, 427, 0, 0),
(22, 428, 0, 0),
(22, 429, 0, 0),
(22, 430, 0, 0),
(22, 431, 0, 0),
(22, 432, 0, 0),
(22, 433, 0, 0),
(22, 434, 0, 0),
(22, 435, 0, 0),
(23, 436, 0, 0),
(23, 437, 0, 0),
(23, 438, 0, 0),
(23, 439, 0, 0),
(23, 440, 0, 0),
(23, 441, 0, 0),
(23, 442, 0, 0),
(23, 443, 0, 0),
(23, 444, 0, 0),
(23, 445, 0, 0),
(23, 446, 0, 0),
(23, 447, 0, 0),
(23, 448, 0, 0),
(23, 449, 0, 0),
(23, 450, 0, 0),
(23, 451, 0, 0),
(23, 452, 0, 0),
(23, 453, 0, 0),
(23, 454, 0, 0),
(23, 455, 0, 0),
(23, 456, 0, 0),
(23, 457, 0, 0),
(23, 458, 0, 0),
(23, 459, 0, 0),
(23, 460, 0, 0),
(23, 461, 0, 0),
(23, 462, 0, 0),
(23, 463, 0, 0),
(23, 464, 0, 0),
(23, 465, 0, 0),
(23, 466, 0, 0),
(23, 467, 0, 0),
(23, 468, 0, 0),
(23, 469, 0, 0),
(23, 470, 0, 0),
(23, 471, 0, 0),
(23, 472, 0, 0),
(23, 473, 0, 0),
(23, 474, 0, 0),
(10, 520, 0, 0),
(10, 521, 0, 0),
(10, 522, 0, 0),
(10, 523, 0, 0),
(10, 524, 0, 0),
(10, 525, 0, 0),
(34, 526, 0, 0),
(34, 527, 0, 0),
(34, 528, 0, 0),
(34, 529, 0, 0),
(34, 530, 0, 0),
(34, 531, 0, 0),
(34, 532, 0, 0),
(34, 533, 0, 0),
(34, 534, 0, 0),
(34, 535, 0, 0),
(34, 536, 0, 0),
(34, 537, 0, 0),
(34, 538, 0, 0),
(34, 539, 0, 0),
(34, 540, 0, 0),
(34, 541, 0, 0),
(34, 542, 0, 0),
(29, 543, 0, 0),
(35, 544, 0, 0),
(35, 545, 0, 0),
(35, 546, 0, 0),
(35, 547, 0, 0),
(35, 548, 0, 0),
(35, 549, 0, 0),
(35, 550, 0, 0),
(35, 551, 0, 0),
(35, 552, 0, 0),
(35, 553, 0, 0),
(35, 554, 0, 0),
(35, 555, 0, 0),
(35, 556, 0, 0),
(35, 557, 0, 0),
(35, 558, 0, 0),
(35, 559, 0, 0),
(35, 560, 0, 0),
(35, 561, 0, 0),
(35, 562, 0, 0),
(35, 563, 0, 0),
(35, 564, 0, 0),
(35, 565, 0, 0),
(36, 566, 0, 0),
(36, 567, 0, 0),
(36, 568, 0, 0),
(36, 569, 0, 0),
(36, 570, 0, 0),
(36, 571, 0, 0),
(36, 572, 0, 0),
(36, 573, 0, 0),
(36, 574, 0, 0),
(36, 575, 0, 0),
(36, 576, 0, 0),
(36, 577, 0, 0),
(36, 578, 0, 0),
(36, 579, 0, 0),
(36, 580, 0, 0),
(36, 581, 0, 0),
(36, 582, 0, 0),
(36, 583, 0, 0),
(36, 584, 0, 0),
(36, 585, 0, 0),
(36, 586, 0, 0),
(36, 587, 0, 0),
(38, 588, 0, 0),
(38, 589, 0, 0),
(38, 590, 0, 0),
(38, 591, 0, 0),
(38, 592, 0, 0),
(38, 593, 0, 0),
(38, 594, 0, 0),
(38, 595, 0, 0),
(38, 596, 0, 0),
(38, 597, 0, 0),
(38, 598, 0, 0),
(38, 599, 0, 0),
(38, 600, 0, 0),
(38, 601, 0, 0),
(38, 602, 0, 0),
(38, 603, 0, 0),
(38, 604, 0, 0),
(38, 605, 0, 0),
(38, 606, 0, 0),
(38, 607, 0, 0),
(38, 608, 0, 0),
(42, 609, 0, 0),
(42, 610, 0, 0),
(42, 611, 0, 0),
(42, 612, 0, 0),
(42, 613, 0, 0),
(42, 614, 0, 0),
(42, 615, 0, 0),
(42, 616, 0, 0),
(43, 617, 0, 0),
(43, 618, 0, 0),
(43, 619, 0, 0),
(43, 620, 0, 0),
(43, 621, 0, 0),
(43, 622, 0, 0),
(43, 623, 0, 0),
(43, 624, 0, 0),
(43, 625, 0, 0),
(43, 626, 0, 0),
(43, 627, 0, 0),
(43, 628, 0, 0),
(43, 629, 0, 0),
(44, 630, 0, 0),
(44, 631, 0, 0),
(44, 632, 0, 0),
(44, 633, 0, 0),
(44, 634, 0, 0),
(44, 635, 0, 0),
(44, 636, 0, 0),
(44, 637, 0, 0),
(44, 638, 0, 0),
(44, 639, 0, 0),
(44, 640, 0, 0),
(44, 641, 0, 0),
(44, 642, 0, 0),
(44, 643, 0, 0),
(44, 644, 0, 0),
(44, 645, 0, 0),
(44, 646, 0, 0),
(44, 647, 0, 0),
(45, 648, 0, 0),
(45, 649, 0, 0),
(45, 650, 0, 0),
(45, 651, 0, 0),
(45, 652, 0, 0),
(45, 653, 0, 0),
(45, 654, 0, 0),
(45, 655, 0, 0),
(45, 656, 0, 0),
(45, 657, 0, 0),
(45, 658, 0, 0),
(45, 659, 0, 0),
(45, 660, 0, 0),
(45, 661, 0, 0),
(45, 662, 0, 0),
(45, 663, 0, 0),
(45, 664, 0, 0),
(45, 665, 0, 0),
(45, 666, 0, 0),
(45, 667, 0, 0),
(47, 668, 0, 0),
(47, 669, 0, 0),
(47, 670, 0, 0),
(47, 671, 0, 0),
(47, 672, 0, 0),
(47, 673, 0, 0),
(2, 674, 0, 0),
(29, 675, 0, 0),
(23, 676, 0, 0),
(23, 677, 0, 0),
(23, 678, 0, 0),
(23, 679, 0, 0),
(23, 680, 0, 0),
(23, 681, 0, 0),
(23, 682, 0, 0),
(23, 683, 0, 0),
(23, 684, 0, 0),
(22, 685, 0, 0),
(22, 686, 0, 0),
(22, 687, 0, 0),
(22, 688, 0, 0),
(22, 689, 0, 0),
(22, 690, 0, 0),
(22, 691, 0, 0),
(22, 692, 0, 0),
(22, 693, 0, 0),
(21, 694, 0, 0),
(21, 695, 0, 0),
(21, 696, 0, 0),
(21, 697, 0, 0),
(21, 698, 0, 0),
(21, 699, 0, 0),
(21, 700, 0, 0),
(21, 701, 0, 0),
(21, 702, 0, 0),
(20, 703, 0, 0),
(20, 704, 0, 0),
(20, 705, 0, 0),
(20, 706, 0, 0),
(20, 707, 0, 0),
(20, 708, 0, 0),
(20, 709, 0, 0),
(20, 710, 0, 0),
(20, 711, 0, 0),
(29, 712, 0, 0),
(44, 713, 0, 0),
(42, 714, 0, 0),
(29, 715, 0, 0),
(29, 716, 0, 0),
(29, 717, 0, 0),
(23, 718, 0, 0),
(22, 719, 0, 0),
(21, 720, 0, 0),
(20, 721, 0, 0),
(29, 722, 0, 0),
(6, 723, 0, 0),
(4, 724, 0, 0),
(2, 725, 0, 0),
(29, 726, 0, 0),
(23, 727, 0, 0),
(23, 728, 0, 0),
(21, 729, 0, 0),
(21, 730, 0, 0),
(18, 731, 0, 0),
(7, 732, 0, 0),
(42, 733, 0, 0),
(42, 734, 0, 0),
(23, 735, 0, 0),
(20, 736, 0, 0),
(21, 737, 0, 0),
(22, 738, 0, 0),
(29, 739, 0, 0),
(2, 740, 0, 0),
(13, 741, 0, 0),
(29, 742, 0, 0),
(29, 743, 0, 0),
(29, 744, 0, 0),
(29, 745, 0, 0),
(14, 772, 0, 0),
(36, 773, 0, 0),
(23, 774, 0, 0),
(29, 775, 0, 0),
(23, 776, 0, 0),
(23, 777, 0, 0),
(23, 778, 0, 0),
(20, 779, 0, 0),
(20, 780, 0, 0),
(20, 781, 0, 0),
(21, 782, 0, 0),
(22, 783, 0, 0),
(22, 784, 0, 0),
(22, 785, 0, 0),
(42, 786, 0, 0),
(42, 787, 0, 0),
(42, 788, 0, 0),
(2, 789, 0, 0),
(4, 790, 0, 0),
(6, 791, 0, 0),
(7, 792, 0, 0),
(8, 793, 0, 0),
(9, 794, 0, 0),
(10, 795, 0, 0),
(13, 796, 0, 0),
(14, 797, 0, 0),
(15, 798, 0, 0),
(16, 799, 0, 0),
(18, 800, 0, 0),
(19, 801, 0, 0),
(20, 802, 0, 0),
(21, 803, 0, 0),
(22, 804, 0, 0),
(23, 805, 0, 0),
(26, 806, 0, 0),
(10, 807, 0, 0),
(2, 808, 0, 0),
(4, 809, 0, 0),
(6, 810, 0, 0),
(7, 811, 0, 0),
(8, 812, 0, 0),
(9, 813, 0, 0),
(10, 814, 0, 0),
(13, 815, 0, 0),
(14, 816, 0, 0),
(15, 817, 0, 0),
(16, 818, 0, 0),
(18, 819, 0, 0),
(19, 820, 0, 0),
(20, 821, 0, 0),
(21, 822, 0, 0),
(22, 823, 0, 0),
(23, 824, 0, 0),
(26, 825, 0, 0),
(2, 826, 0, 0),
(4, 827, 0, 0),
(6, 828, 0, 0),
(7, 829, 0, 0),
(8, 830, 0, 0),
(9, 831, 0, 0),
(10, 832, 0, 0),
(13, 833, 0, 0),
(14, 834, 0, 0),
(15, 835, 0, 0),
(16, 836, 0, 0),
(18, 837, 0, 0),
(19, 838, 0, 0),
(20, 839, 0, 0),
(21, 840, 0, 0),
(22, 841, 0, 0),
(23, 842, 0, 0),
(26, 843, 0, 0),
(20, 844, 0, 0),
(21, 845, 0, 0),
(22, 846, 0, 0),
(23, 847, 0, 0),
(45, 848, 0, 0),
(45, 849, 0, 0),
(29, 850, 0, 0),
(22, 851, 0, 0),
(29, 852, 0, 0),
(16, 853, 0, 0),
(16, 854, 0, 0),
(16, 855, 0, 0),
(16, 856, 0, 0),
(9, 857, 0, 0),
(9, 858, 0, 0),
(16, 859, 0, 0),
(50, 860, 0, 0),
(50, 861, 0, 0),
(50, 862, 0, 0),
(50, 863, 0, 0),
(50, 864, 0, 0),
(50, 865, 0, 0),
(6, 892, 0, 0),
(6, 893, 0, 0),
(6, 894, 0, 0),
(6, 895, 0, 0),
(6, 896, 0, 0),
(6, 897, 0, 0),
(6, 898, 0, 0),
(6, 899, 0, 0),
(6, 900, 0, 0),
(6, 901, 0, 0),
(6, 902, 0, 0),
(6, 903, 0, 0),
(6, 904, 0, 0),
(6, 905, 0, 0),
(6, 906, 0, 0),
(6, 907, 0, 0),
(6, 908, 0, 0),
(6, 909, 0, 0),
(6, 910, 0, 0),
(6, 911, 0, 0),
(6, 912, 0, 0),
(6, 913, 0, 0),
(6, 914, 0, 0),
(6, 915, 0, 0),
(6, 916, 0, 0),
(6, 917, 0, 0),
(6, 918, 0, 0),
(6, 919, 0, 0),
(6, 920, 0, 0),
(6, 921, 0, 0),
(6, 922, 0, 0),
(6, 923, 0, 0),
(6, 924, 0, 0),
(6, 925, 0, 0),
(6, 926, 0, 0),
(23, 927, 0, 0),
(52, 928, 0, 0),
(52, 929, 0, 0),
(52, 930, 0, 0),
(52, 931, 0, 0),
(52, 932, 0, 0),
(52, 933, 0, 0),
(52, 934, 0, 0),
(52, 935, 0, 0),
(52, 936, 0, 0),
(52, 937, 0, 0),
(52, 938, 0, 0),
(52, 939, 0, 0),
(52, 940, 0, 0),
(52, 941, 0, 0),
(52, 942, 0, 0),
(52, 943, 0, 0),
(52, 944, 0, 0),
(52, 945, 0, 0),
(52, 946, 0, 0),
(52, 947, 0, 0),
(52, 948, 0, 0),
(52, 949, 0, 0),
(52, 950, 0, 0),
(52, 951, 0, 0),
(52, 952, 0, 0),
(21, 953, 0, 0),
(53, 954, 0, 0),
(53, 955, 0, 0),
(53, 956, 0, 0),
(53, 957, 0, 0),
(53, 958, 0, 0),
(53, 959, 0, 0),
(53, 960, 0, 0),
(53, 961, 0, 0),
(53, 962, 0, 0),
(53, 963, 0, 0),
(53, 964, 0, 0),
(53, 965, 0, 0),
(53, 966, 0, 0),
(53, 967, 0, 0),
(53, 968, 0, 0),
(53, 969, 0, 0),
(54, 970, 0, 0),
(54, 971, 0, 0),
(54, 972, 0, 0),
(54, 973, 0, 0),
(54, 974, 0, 0),
(54, 975, 0, 0),
(54, 976, 0, 0),
(54, 977, 0, 0),
(54, 978, 0, 0),
(54, 979, 0, 0),
(54, 980, 0, 0),
(54, 981, 0, 0),
(54, 982, 0, 0),
(54, 983, 0, 0),
(54, 984, 0, 0),
(54, 985, 0, 0),
(55, 986, 0, 0),
(55, 987, 0, 0),
(55, 988, 0, 0),
(55, 989, 0, 0),
(55, 990, 0, 0),
(55, 991, 0, 0),
(55, 992, 0, 0),
(55, 993, 0, 0),
(55, 994, 0, 0),
(55, 995, 0, 0),
(55, 996, 0, 0),
(55, 997, 0, 0),
(55, 998, 0, 0),
(55, 999, 0, 0),
(55, 1000, 0, 0),
(55, 1001, 0, 0),
(55, 1002, 0, 0),
(55, 1003, 0, 0),
(55, 1004, 0, 0),
(55, 1005, 0, 0),
(55, 1006, 0, 0),
(55, 1007, 0, 0),
(7, 1008, 0, 0),
(7, 1009, 0, 0),
(7, 1010, 0, 0),
(7, 1011, 0, 0),
(7, 1012, 0, 0),
(7, 1013, 0, 0),
(7, 1014, 0, 0),
(7, 1015, 0, 0),
(7, 1016, 0, 0),
(7, 1017, 0, 0),
(7, 1018, 0, 0),
(7, 1019, 0, 0),
(7, 1020, 0, 0),
(7, 1021, 0, 0),
(7, 1022, 0, 0),
(7, 1023, 0, 0),
(7, 1024, 0, 0),
(7, 1025, 0, 0),
(7, 1026, 0, 0),
(7, 1027, 0, 0),
(7, 1028, 0, 0),
(7, 1029, 0, 0),
(7, 1030, 0, 0),
(7, 1031, 0, 0),
(7, 1032, 0, 0),
(7, 1033, 0, 0),
(56, 1034, 0, 0),
(56, 1035, 0, 0),
(56, 1036, 0, 0),
(56, 1037, 0, 0),
(56, 1038, 0, 0),
(56, 1039, 0, 0),
(56, 1040, 0, 0),
(56, 1041, 0, 0),
(56, 1042, 0, 0),
(56, 1043, 0, 0),
(56, 1044, 0, 0),
(56, 1045, 0, 0),
(56, 1046, 0, 0),
(57, 1047, 0, 0),
(57, 1048, 0, 0),
(57, 1049, 0, 0),
(57, 1050, 0, 0),
(57, 1051, 0, 0),
(57, 1052, 0, 0),
(57, 1053, 0, 0),
(57, 1054, 0, 0),
(57, 1055, 0, 0),
(57, 1056, 0, 0),
(57, 1057, 0, 0),
(57, 1058, 0, 0),
(57, 1059, 0, 0),
(57, 1060, 0, 0),
(57, 1061, 0, 0),
(57, 1062, 0, 0),
(57, 1063, 0, 0),
(58, 1064, 0, 0),
(58, 1065, 0, 0),
(58, 1066, 0, 0),
(58, 1067, 0, 0),
(58, 1068, 0, 0),
(58, 1069, 0, 0),
(58, 1070, 0, 0),
(58, 1071, 0, 0),
(58, 1072, 0, 0),
(58, 1073, 0, 0),
(58, 1074, 0, 0),
(58, 1075, 0, 0),
(58, 1076, 0, 0),
(58, 1077, 0, 0),
(58, 1078, 0, 0),
(58, 1079, 0, 0),
(58, 1080, 0, 0),
(58, 1081, 0, 0),
(58, 1082, 0, 0),
(58, 1083, 0, 0),
(58, 1084, 0, 0),
(58, 1085, 0, 0),
(59, 1086, 0, 0),
(59, 1087, 0, 0),
(59, 1088, 0, 0),
(59, 1089, 0, 0),
(59, 1090, 0, 0),
(59, 1091, 0, 0),
(59, 1092, 0, 0),
(59, 1093, 0, 0),
(59, 1094, 0, 0),
(59, 1095, 0, 0),
(59, 1096, 0, 0),
(59, 1097, 0, 0),
(59, 1098, 0, 0),
(59, 1099, 0, 0),
(59, 1100, 0, 0),
(59, 1101, 0, 0),
(59, 1102, 0, 0),
(59, 1103, 0, 0),
(59, 1104, 0, 0),
(59, 1105, 0, 0),
(59, 1106, 0, 0),
(59, 1107, 0, 0),
(59, 1108, 0, 0),
(59, 1109, 0, 0),
(60, 1110, 0, 0),
(60, 1111, 0, 0),
(60, 1112, 0, 0),
(60, 1113, 0, 0),
(60, 1114, 0, 0),
(60, 1115, 0, 0),
(60, 1116, 0, 0),
(60, 1117, 0, 0),
(60, 1118, 0, 0),
(60, 1119, 0, 0),
(60, 1120, 0, 0),
(60, 1121, 0, 0),
(60, 1122, 0, 0),
(60, 1123, 0, 0),
(60, 1124, 0, 0),
(60, 1125, 0, 0),
(60, 1126, 0, 0),
(60, 1127, 0, 0),
(61, 1128, 0, 0),
(61, 1129, 0, 0),
(61, 1130, 0, 0),
(61, 1131, 0, 0),
(61, 1132, 0, 0),
(61, 1133, 0, 0),
(61, 1134, 0, 0),
(61, 1135, 0, 0),
(61, 1136, 0, 0),
(61, 1137, 0, 0),
(61, 1138, 0, 0),
(61, 1139, 0, 0),
(61, 1140, 0, 0),
(61, 1141, 0, 0),
(61, 1142, 0, 0),
(61, 1143, 0, 0),
(61, 1144, 0, 0),
(61, 1145, 0, 0),
(61, 1146, 0, 0),
(62, 1147, 0, 0),
(62, 1148, 0, 0),
(62, 1149, 0, 0),
(62, 1150, 0, 0),
(62, 1151, 0, 0),
(62, 1152, 0, 0),
(62, 1153, 0, 0),
(62, 1154, 0, 0),
(62, 1155, 0, 0),
(62, 1156, 0, 0),
(62, 1157, 0, 0),
(62, 1158, 0, 0),
(62, 1159, 0, 0),
(62, 1160, 0, 0),
(62, 1161, 0, 0),
(62, 1162, 0, 0),
(62, 1163, 0, 0),
(62, 1164, 0, 0),
(62, 1165, 0, 0),
(62, 1166, 0, 0),
(63, 1167, 0, 0),
(63, 1168, 0, 0),
(63, 1169, 0, 0),
(63, 1170, 0, 0),
(63, 1171, 0, 0),
(63, 1172, 0, 0),
(63, 1173, 0, 0),
(63, 1174, 0, 0),
(63, 1175, 0, 0),
(63, 1176, 0, 0),
(63, 1177, 0, 0),
(63, 1178, 0, 0),
(63, 1179, 0, 0),
(21, 1189, 0, 0),
(21, 1190, 0, 0),
(21, 1191, 0, 0),
(21, 1192, 0, 0),
(21, 1193, 0, 0),
(21, 1194, 0, 0),
(21, 1195, 0, 0),
(21, 1196, 0, 0),
(21, 1197, 0, 0),
(21, 1198, 0, 0),
(21, 1199, 0, 0),
(21, 1200, 0, 0),
(21, 1201, 0, 0),
(21, 1202, 0, 0),
(21, 1203, 0, 0),
(21, 1204, 0, 0),
(21, 1205, 0, 0),
(21, 1206, 0, 0),
(21, 1207, 0, 0),
(20, 1208, 0, 0),
(20, 1209, 0, 0),
(20, 1210, 0, 0),
(20, 1211, 0, 0),
(20, 1212, 0, 0),
(4, 1213, 0, 0),
(4, 1214, 0, 0),
(4, 1215, 0, 0),
(4, 1216, 0, 0),
(4, 1217, 0, 0),
(4, 1218, 0, 0),
(4, 1219, 0, 0),
(65, 1220, 0, 0),
(65, 1221, 0, 0),
(65, 1222, 0, 0),
(65, 1223, 0, 0),
(65, 1224, 0, 0),
(65, 1225, 0, 0),
(65, 1226, 0, 0),
(65, 1227, 0, 0),
(65, 1228, 0, 0),
(65, 1229, 0, 0),
(65, 1230, 0, 0),
(65, 1231, 0, 0),
(65, 1232, 0, 0),
(65, 1233, 0, 0),
(65, 1234, 0, 0),
(2, 1235, 0, 0),
(2, 1236, 0, 0),
(2, 1237, 0, 0),
(2, 1238, 0, 0),
(2, 1239, 0, 0),
(2, 1240, 0, 0),
(2, 1241, 0, 0),
(2, 1242, 0, 0),
(2, 1243, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_def_org_share`
--

DROP TABLE IF EXISTS `vtiger_def_org_share`;
CREATE TABLE `vtiger_def_org_share` (
  `ruleid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `permission` int(19) DEFAULT NULL,
  `editstatus` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_def_org_share`
--

INSERT IGNORE INTO `vtiger_def_org_share` (`ruleid`, `tabid`, `permission`, `editstatus`) VALUES
(1, 2, 2, 0),
(2, 4, 2, 0),
(3, 6, 2, 0),
(4, 7, 2, 0),
(5, 9, 3, 1),
(6, 13, 2, 0),
(7, 16, 3, 2),
(8, 20, 2, 0),
(9, 21, 2, 0),
(10, 22, 2, 0),
(11, 23, 2, 0),
(12, 26, 2, 0),
(13, 8, 2, 0),
(14, 14, 2, 0),
(15, 34, 3, 0),
(16, 35, 2, 0),
(17, 36, 2, 0),
(18, 38, 2, 0),
(19, 42, 2, 0),
(20, 43, 2, 0),
(21, 44, 2, 0),
(22, 45, 2, 0),
(23, 47, 2, 0),
(24, 18, 2, 0),
(25, 10, 2, 0),
(26, 50, 2, 0),
(27, 52, 3, 0),
(28, 53, 2, 0),
(29, 54, 3, 0),
(30, 55, 3, 0),
(31, 56, 3, 0),
(32, 57, 3, 0),
(33, 58, 3, 0),
(34, 59, 3, 0),
(35, 60, 3, 0),
(36, 61, 3, 0),
(37, 62, 3, 0),
(38, 63, 3, 0),
(39, 65, 2, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_def_org_share_seq`
--

DROP TABLE IF EXISTS `vtiger_def_org_share_seq`;
CREATE TABLE `vtiger_def_org_share_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_def_org_share_seq`
--

INSERT IGNORE INTO `vtiger_def_org_share_seq` (`id`) VALUES
(39);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_deposit_status`
--

DROP TABLE IF EXISTS `vtiger_deposit_status`;
CREATE TABLE `vtiger_deposit_status` (
  `deposit_statusid` int(11) NOT NULL,
  `deposit_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_deposit_status`
--

INSERT IGNORE INTO `vtiger_deposit_status` (`deposit_statusid`, `deposit_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Received', 1, 426, 1, NULL),
(2, 'Applied', 1, 427, 2, NULL),
(3, 'Released', 1, 428, 3, NULL),
(4, 'Refunded', 1, 429, 4, NULL),
(5, 'Forfeited', 1, 430, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_deposit_status_seq`
--

DROP TABLE IF EXISTS `vtiger_deposit_status_seq`;
CREATE TABLE `vtiger_deposit_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_deposit_status_seq`
--

INSERT IGNORE INTO `vtiger_deposit_status_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_deposit_type`
--

DROP TABLE IF EXISTS `vtiger_deposit_type`;
CREATE TABLE `vtiger_deposit_type` (
  `deposit_typeid` int(11) NOT NULL,
  `deposit_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_deposit_type`
--

INSERT IGNORE INTO `vtiger_deposit_type` (`deposit_typeid`, `deposit_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Security', 1, 422, 1, NULL),
(2, 'Prepayment', 1, 423, 2, NULL),
(3, 'Guarantee', 1, 424, 3, NULL),
(4, 'Other', 1, 425, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_deposit_type_seq`
--

DROP TABLE IF EXISTS `vtiger_deposit_type_seq`;
CREATE TABLE `vtiger_deposit_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_deposit_type_seq`
--

INSERT IGNORE INTO `vtiger_deposit_type_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_durationhrs`
--

DROP TABLE IF EXISTS `vtiger_durationhrs`;
CREATE TABLE `vtiger_durationhrs` (
  `hrsid` int(19) NOT NULL,
  `hrs` varchar(50) DEFAULT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_durationmins`
--

DROP TABLE IF EXISTS `vtiger_durationmins`;
CREATE TABLE `vtiger_durationmins` (
  `minsid` int(19) NOT NULL,
  `mins` varchar(50) DEFAULT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_duration_minutes`
--

DROP TABLE IF EXISTS `vtiger_duration_minutes`;
CREATE TABLE `vtiger_duration_minutes` (
  `minutesid` int(19) NOT NULL,
  `duration_minutes` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_duration_minutes`
--

INSERT IGNORE INTO `vtiger_duration_minutes` (`minutesid`, `duration_minutes`, `sortorderid`, `presence`, `color`) VALUES
(1, '00', 0, 1, NULL),
(2, '15', 1, 1, NULL),
(3, '30', 2, 1, NULL),
(4, '45', 3, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_duration_minutes_seq`
--

DROP TABLE IF EXISTS `vtiger_duration_minutes_seq`;
CREATE TABLE `vtiger_duration_minutes_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_duration_minutes_seq`
--

INSERT IGNORE INTO `vtiger_duration_minutes_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_emaildetails`
--

DROP TABLE IF EXISTS `vtiger_emaildetails`;
CREATE TABLE `vtiger_emaildetails` (
  `emailid` int(19) NOT NULL,
  `from_email` varchar(50) NOT NULL DEFAULT '',
  `to_email` text NOT NULL,
  `cc_email` text NOT NULL,
  `bcc_email` text NOT NULL,
  `assigned_user_email` varchar(50) NOT NULL DEFAULT '',
  `idlists` text NOT NULL,
  `email_flag` varchar(50) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_emailslookup`
--

DROP TABLE IF EXISTS `vtiger_emailslookup`;
CREATE TABLE `vtiger_emailslookup` (
  `crmid` int(20) DEFAULT NULL,
  `setype` varchar(100) DEFAULT NULL,
  `value` varchar(100) DEFAULT NULL,
  `fieldid` int(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_emailslookup`
--

INSERT IGNORE INTO `vtiger_emailslookup` (`crmid`, `setype`, `value`, `fieldid`) VALUES
(2, 'Leads', 'hossein.fgh@gmail.com', 46),
(2063, 'Leads', 'lead-test@gooya.com', 46),
(2091, 'Contacts', 'afrooz@test.com', 80),
(2093, 'Contacts', 'roya@test.com', 80),
(2095, 'Contacts', 'ghazi@test.com', 80),
(2096, 'Contacts', 'forouzesh@test.com', 80),
(2098, 'Contacts', 'ayini@test.com', 80),
(2100, 'Contacts', 'zamyad@test.com', 80),
(2102, 'Contacts', 'abbasi@test.com', 80),
(2103, 'Contacts', 'mohammadabadi@test.com', 80),
(2105, 'Contacts', 'laya@test.com', 80),
(2107, 'Contacts', 'dadjoo@test.com', 80),
(2108, 'Contacts', 'ali@test.com', 80),
(2110, 'Contacts', 'reza@test.com', 80),
(2113, 'Contacts', 'pourali@test.com', 80),
(2114, 'Contacts', 'khaleghi@test.com', 80),
(2116, 'Contacts', 'tavakoli@test.com', 80),
(2118, 'Contacts', 'sharif@test.com', 80),
(2119, 'Contacts', 'kazemzadeh@test.com', 80),
(2121, 'Contacts', 'zahedi@test.com', 80),
(2122, 'Contacts', 'alii@test.com', 80),
(2124, 'Contacts', 'ahmadian@test.com', 80),
(2125, 'Contacts', 'salimi@test.com', 80),
(2065, 'Leads', 'l2@test.com', 46),
(2126, 'Vendors', 'part@test.com', 292),
(2127, 'Vendors', 'arya@test.com', 292),
(2128, 'Vendors', 'alborz@test.com', 292),
(2129, 'Vendors', 'novin@test.com', 292),
(2221, 'Accounts', 'branch2036@example.test', 9),
(2222, 'SarvBusinessLocations', 'branch2036@example.test', 1094),
(2223, 'SarvBusinessLocations', 'service2036@example.test', 1094),
(2224, 'SarvBusinessLocations', 'sales2036@example.test', 1094),
(1012, 'Leads', 'lead315@test.com', 46),
(2057, 'Leads', 'lead381@test.com', 46),
(2286, 'Contacts', 'gouya.contact.ui@example.test', 80);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_emails_recipientprefs`
--

DROP TABLE IF EXISTS `vtiger_emails_recipientprefs`;
CREATE TABLE `vtiger_emails_recipientprefs` (
  `id` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `prefs` varchar(255) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_emailtemplates`
--

DROP TABLE IF EXISTS `vtiger_emailtemplates`;
CREATE TABLE `vtiger_emailtemplates` (
  `foldername` varchar(100) DEFAULT NULL,
  `templatename` varchar(100) DEFAULT NULL,
  `templatepath` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `body` text DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0,
  `templateid` int(19) NOT NULL,
  `systemtemplate` int(1) NOT NULL DEFAULT 0,
  `module` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_emailtemplates`
--

INSERT IGNORE INTO `vtiger_emailtemplates` (`foldername`, `templatename`, `templatepath`, `subject`, `description`, `body`, `deleted`, `templateid`, `systemtemplate`, `module`) VALUES
('Public', 'Announcement for Release', '', 'Announcement for Release', 'Announcement of a release', 'Hello!   <br />\n	<br />\n	On behalf of the Gouya team,  I am pleased to announce the release of Gouya crm4.2 . This is a feature packed release including the mass email template handling, custom view feature, Gouya_reports feature and a host of other utilities. Gouya runs on all platforms.    <br />\n        <br />\n	Notable Features of Gouya are :   <br />\n	<br />\n	-Email Client Integration    <br />\n	-Trouble Ticket Integration   <br />\n	-Invoice Management Integration   <br />\n	-Reports Integration   <br />\n	-Portal Integration   <br />\n	-Enhanced Word Plugin Support   <br />\n	-Custom View Integration   <br />\n	<br />\n	Known Issues:   <br />\n	-ABCD   <br />\n	-EFGH   <br />\n	-IJKL   <br />\n	-MNOP   <br />\n	-QRST', 0, 1, 0, 'Contacts'),
('Public', 'Pending Invoices', '', 'Invoices Pending', 'Payment Due', 'name <br />\nstreet, <br />\ncity, <br />\nstate, <br />\n zip) <br />\n  <br />\n Dear <br />\n <br />\n Please check the following invoices that are yet to be paid by you: <br />\n <br />\n No. Date      Amount <br />\n 1   1/1/01    $4000 <br />\n 2   2/2//01   $5000 <br />\n 3   3/3/01    $10000 <br />\n 4   7/4/01    $23560 <br />\n <br />\n Kindly let us know if there are any issues that you feel are pending to be discussed. <br />\n We will be more than happy to give you a call. <br />\n We would like to continue our business with you.', 0, 2, 0, 'Contacts'),
('Public', 'Acceptance Proposal', '', 'Acceptance Proposal', 'Acceptance of Proposal', ' Dear <br />\n <br />\nYour proposal on the project XYZW has been reviewed by us <br />\nand is acceptable in its entirety. <br />\n <br />\nWe are eagerly looking forward to this project <br />\nand are pleased about having the opportunity to work <br />\ntogether. We look forward to a long standing relationship <br />\nwith your esteemed firm. <br />\n<br />\nI would like to take this opportunity to invite you <br />\nto a game of golf on Wednesday morning 9am at the <br />\nCuff Links Ground. We will be waiting for you in the <br />\nExecutive Lounge. <br />\n<br />\nLooking forward to seeing you there.', 0, 3, 0, 'Contacts'),
('Public', 'Goods received acknowledgement', '', 'Goods received acknowledgement', 'Acknowledged Receipt of Goods', ' The undersigned hereby acknowledges receipt and delivery of the goods. <br />\nThe undersigned will release the payment subject to the goods being discovered not satisfactory. <br />\n<br />\nSigned under seal this <date>', 0, 4, 0, 'Contacts'),
('Public', 'Accept Order', '', 'Accept Order', 'Acknowledgement/Acceptance of Order', ' Dear <br />\n         We are in receipt of your order as contained in the <br />\n   purchase order form.We consider this to be final and binding on both sides. <br />\nIf there be any exceptions noted, we shall consider them <br />\nonly if the objection is received within ten days of receipt of <br />\nthis notice. <br />\n <br />\nThank you for your patronage.', 0, 5, 0, 'Contacts'),
('Public', 'Address Change', '', 'Change of Address', 'Address Change', 'Dear <br />\n <br />\nWe are relocating our office to <br />\n11111,XYZDEF Cross, <br />\nUVWWX Circle <br />\nThe telephone number for this new location is (101) 1212-1328. <br />\n<br />\nOur Manufacturing Division will continue operations <br />\nat 3250 Lovedale Square Avenue, in Frankfurt. <br />\n<br />\nWe hope to keep in touch with you all. <br />\nPlease update your addressbooks.', 0, 6, 0, 'Contacts'),
('Public', 'Follow Up', '', 'Follow Up', 'Follow Up of meeting', 'Dear <br />\n<br />\nThank you for extending us the opportunity to meet with <br />\nyou and members of your staff. <br />\n<br />\nI know that John Doe serviced your account <br />\nfor many years and made many friends at your firm. He has personally <br />\ndiscussed with me the deep relationship that he had with your firm. <br />\nWhile his presence will be missed, I can promise that we will <br />\ncontinue to provide the fine service that was accorded by <br />\nJohn to your firm. <br />\n<br />\nI was genuinely touched to receive such fine hospitality. <br />\n<br />\nThank you once again.', 0, 7, 0, 'Contacts'),
('Public', 'Target Crossed!', '', 'Target Crossed!', 'Fantastic Sales Spree!', 'Congratulations! <br />\n<br />\nThe numbers are in and I am proud to inform you that our <br />\ntotal sales for the previous quarter <br />\namounts to $100,000,00.00!. This is the first time <br />\nwe have exceeded the target by almost 30%. <br />\nWe have also beat the previous quarter record by a <br />\nwhopping 75%! <br />\n<br />\nLet us meet at Smoking Joe for a drink in the evening! <br />\n\nC you all there guys!', 0, 8, 0, 'Contacts'),
('Public', 'Thanks Note', '', 'Thanks Note', 'Note of thanks', 'Dear <br />\n<br />\nThank you for your confidence in our ability to serve you. <br />\nWe are glad to be given the chance to serve you.I look <br />\nforward to establishing a long term partnership with you. <br />\nConsider me as a friend. <br />\nShould any need arise,please do give us a call.', 0, 9, 0, 'Contacts'),
('Public', 'Customer Login Details', '', 'Customer Portal Login Details', 'Send Portal login details to customer', '<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n        <html>\n        <head>\n          <title></title>\n        </head>\n        <body class=\"scayt-enabled\">\n          <!-- <center> -->\n            <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"borderGrey\" width=\"600px\" style=\"margin-left:0px;\">\n              <tbody>\n                <tr>\n                  <td colspan=\"6\"><!-- Begin Pre header --><!-- // End Pre header \\ --></td>\n                </tr>\n                <tr style=\"height:50px;\">\n                  <td colspan=\"6\" style=\"\n                  font-family: Helvetica,Verdana,sans-serif\">\n                  <div style=\"margin-bottom:10px;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\"><br />\n                    Dear $contacts-firstname$ $contacts-lastname$,</div>\n\n                    <div style=\"margin-top:20px;margin-bottom:20px; color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\">As our customer, you can be assured of getting excellent support from our team. I would like to take this opportunity to introduce the portal we have setup for valuable customers like you. You can submit questions/issues via the portal, see past issues and responses. In addition, Portal provides you access to our knowledge base and documents we shared with you in the past.\n                    </div>\n\n                    <div style=\"margin-top:10px;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\">$URL$ to login to the portal, with the credentials below.</div>\n\n                    <div style=\"margin-top:20px;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\">Your Username: $login_name$</div>\n\n                    <div style=\"margin-bottom:20px;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\">Your Password: $password$</div>\n                    <div class=\"gmail_extra\" style=\"margin-top:10px;color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);\">Thank you,<br />\n                      $contacts-smownerid$</div>\n\n                    </td>\n                  </tr>\n                  <tr>\n                    <td colspan=\"6\" style=\"font-family: Helvetica,Verdana,sans-serif;font-size: 11px;color: #666666;\">\n                      <table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\n                        <tbody>\n                          <!--copy right data-->\n                          <tr>\n                            <td valign=\"top\" style=\"\n                            padding-left: 0px;\n                            padding-right: 0px;\n                            width:350px\">\n                                <div style=\"margin-top:20px;\"><em>Powered By <a href=\"www.Gouya.com\">Gouya</a><div>\n                            </td>\n                          </tr>\n                          <!--subscribers links-->\n                        </tbody>\n                      </table>\n                    </td>\n                  </tr>\n                </tbody>\n              </table>\n            <!-- </center> -->\n          </body>\n          </html>', 0, 10, 0, 'Contacts'),
('Public', 'Support end notification before a week', '', 'Gouya Support Notification', 'Send Notification mail to customer before a week of support end date', '<table width=\"700\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: normal; text-decoration: none; background-color: rgb(122, 122, 254);\">\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td width=\"50\"> </td>\n            <td>\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"background-color: rgb(27, 77, 140); font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(255, 255, 255); font-weight: normal; line-height: 25px;\">\n                                <tr>\n                                    <td align=\"center\" rowspan=\"4\">$logo$</td>\n                                    <td align=\"center\"> </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"left\" style=\"background-color: rgb(27, 77, 140); font-family: Arial,Helvetica,sans-serif; font-size: 24px; color: rgb(255, 255, 255); font-weight: bolder; line-height: 35px;\">Gouya </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"right\" style=\"padding-right: 100px;\">The honest Open Source CRM </td>\n                                </tr>\n                                <tr>\n                                    <td> </td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">\n                                <tr>\n                                    <td valign=\"top\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\">\n                                            <tr>\n                                                <td align=\"right\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(66, 66, 253);\"> </td>\n                                            </tr>\n                                            <tr>\n                                                <td> </td>\n                                            </tr>\n                                            <tr>\n                                                <td style=\"font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(22, 72, 134); font-weight: bolder; line-height: 15px;\">Dear $contacts-lastname$, </td>\n                                            </tr>\n                                            <tr>\n                                                <td style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: normal; text-align: justify; line-height: 20px;\">This is just a notification mail regarding your support end.<br /><span style=\"font-weight: bold;\">Priority:</span> Urgent<br />Your Support is going to expire on next week<br />Please contact support@Gouya.com.<br /><br /><br /></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"center\"><br /></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\"><strong style=\"padding: 2px; font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: bold;\"><br /><br />Sincerly</strong></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: normal; line-height: 20px;\">Support Team </td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\"><a style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(66, 66, 253);\" href=\"http://www.Gouya.com\">www.Gouya.com</a></td>\n                                            </tr>\n                                            <tr>\n                                                <td> </td>\n                                            </tr>\n                                    </table>\n                                    </td>\n                                    <td width=\"1%\" valign=\"top\"> </td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(255, 255, 255); font-weight: normal; line-height: 15px; background-color: rgb(51, 51, 51);\">\n                                <tr>\n                                    <td align=\"center\">Shree Narayana Complex, No 11 Sarathy Nagar, Vijaya Nagar , Velachery, Chennai - 600 042 India </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"center\">Telephone No: +91 - 44 - 4202 - 1990     Toll Free No: +1 877 788 4437</td>\n                                </tr>\n                                <tr>\n                                    <td align=\"center\">Email Id: <a style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(255, 255, 255);\" href=\"mailto:info@Gouya.com\">info@Gouya.com</a></td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n            </table>\n            </td>\n            <td width=\"50\"> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n</table>', 0, 11, 0, 'Contacts'),
('Public', 'Support end notification before a month', '', 'Gouya Support Notification', 'Send Notification mail to customer before a month of support end date', '<table width=\"700\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: normal; text-decoration: none; background-color: rgb(122, 122, 254);\">\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td width=\"50\"> </td>\n            <td>\n            <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"background-color: rgb(27, 77, 140); font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(255, 255, 255); font-weight: normal; line-height: 25px;\">\n                                <tr>\n                                    <td align=\"center\" rowspan=\"4\">$logo$</td>\n                                    <td align=\"center\"> </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"left\" style=\"background-color: rgb(27, 77, 140); font-family: Arial,Helvetica,sans-serif; font-size: 24px; color: rgb(255, 255, 255); font-weight: bolder; line-height: 35px;\">Gouya </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"right\" style=\"padding-right: 100px;\">The honest Open Source CRM </td>\n                                </tr>\n                                <tr>\n                                    <td> </td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);\">\n                                <tr>\n                                    <td valign=\"top\">\n                                    <table width=\"100%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\">\n                                            <tr>\n                                                <td align=\"right\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(66, 66, 253);\"> </td>\n                                            </tr>\n                                            <tr>\n                                                <td> </td>\n                                            </tr>\n                                            <tr>\n                                                <td style=\"font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(22, 72, 134); font-weight: bolder; line-height: 15px;\">Dear $contacts-lastname$, </td>\n                                            </tr>\n                                            <tr>\n                                                <td style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: normal; text-align: justify; line-height: 20px;\">This is just a notification mail regarding your support end.<br /><span style=\"font-weight: bold;\">Priority:</span> Normal<br />Your Support is going to expire on next month.<br />Please contact support@Gouya.com<br /><br /><br /></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"center\"><br /></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\"><strong style=\"padding: 2px; font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: bold;\"><br /><br />Sincerly</strong></td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(0, 0, 0); font-weight: normal; line-height: 20px;\">Support Team </td>\n                                            </tr>\n                                            <tr>\n                                                <td align=\"right\"><a href=\"http://www.Gouya.com\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(66, 66, 253);\">www.Gouya.com</a></td>\n                                            </tr>\n                                            <tr>\n                                                <td> </td>\n                                            </tr>\n                                    </table>\n                                    </td>\n                                    <td width=\"1%\" valign=\"top\"> </td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n                    <tr>\n                        <td>\n                        <table width=\"100%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; color: rgb(255, 255, 255); font-weight: normal; line-height: 15px; background-color: rgb(51, 51, 51);\">\n                                <tr>\n                                    <td align=\"center\">Shree Narayana Complex, No 11 Sarathy Nagar, Vijaya Nagar , Velachery, Chennai - 600 042 India </td>\n                                </tr>\n                                <tr>\n                                    <td align=\"center\">Telephone No: +91 - 44 - 4202 - 1990     Toll Free No: +1 877 788 4437</td>\n                                </tr>\n                                <tr>\n                                    <td align=\"center\">Email Id: <a href=\"mailto:info@Gouya.com\" style=\"font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bolder; text-decoration: none; color: rgb(255, 255, 255);\">info@Gouya.com</a></td>\n                                </tr>\n                        </table>\n                        </td>\n                    </tr>\n            </table>\n            </td>\n            <td width=\"50\"> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n        <tr>\n            <td> </td>\n            <td> </td>\n            <td> </td>\n        </tr>\n</table>', 0, 12, 0, 'Contacts'),
('Public', 'Activity Reminder', NULL, 'Reminder', 'Reminder', '<p>This is a reminder notification for the Activity<br/>The details are :<br/> \n							&nbsp; Subject : $events-subject$<br/> \n							&nbsp; Start Date & Time : $events-date_start$<br/>\n							&nbsp; End Date & Time : $events-due_date$<br/> \n							&nbsp; Status : $events-eventstatus$<br/> \n							&nbsp; Location : $events-location$<br/> \n							&nbsp; Description : $events-description$<br/><br/> \n							<p/>', 0, 14, 1, 'Events'),
('Public', 'ToDo Reminder', NULL, 'Activity Reminder', 'Reminder', '<p>This is a reminder notification for the Activity<br/>The details are :<br/>\n								&nbsp; Subject : $calendar-subject$<br/>\n								&nbsp; Start Date & Time : $calendar-date_start$<br/>\n								&nbsp; Due Date : $calendar-due_date$<br/>\n								&nbsp; Status : $calendar-status$<br/>\n								&nbsp; Location : $calendar-location$<br/>\n								&nbsp; Description : $calendar-description$<br/><br/>\n								<p/>', 0, 15, 1, 'Events'),
('Public', 'Invite Users', NULL, 'Invitation', 'Invite Users', '<p>$invitee_name$,<br/><br/>You have been invited for an activity<br/><br/>The details are :<br/>\n								&nbsp; Subject : $events-subject$<br/>\n								&nbsp; Start Date & Time : $events-date_start$<br/> \n								&nbsp; End Date & Time : $events-due_date$<br/>\n								&nbsp; Status : $events-eventstatus$<br/>\n								&nbsp; Priority : $events-priority$<br/>\n								&nbsp; Related To : $events-crmid$<br/>\n								&nbsp; Contact List : $events-contactid$<br/>\n								&nbsp; Location : $events-location$<br/>\n								&nbsp; Description : $events-description$<br/><br/>\n								Thanks & Regards,<br/>\n								$current_user_name$\n								<p/>', 0, 16, 1, 'Events'),
('Public', 'System-generated password email', '', 'گذرواژه ورود به سامانه', 'قالب سیستمی مدیریت گذرواژه', '<div dir=\"rtl\"><p>کاربر گرامی $user_name$،</p><p>گذرواژه موقت شما: <strong>$generated_password$</strong></p><p>پس از نخستین ورود، گذرواژه خود را تغییر دهید.</p></div>', 0, 17, 1, 'Users'),
('Public', 'Forgot Password email', '', 'بازیابی گذرواژه سامانه', 'قالب سیستمی مدیریت گذرواژه', '<div dir=\"rtl\"><p>کاربر گرامی $user_name$،</p><p>برای تعیین گذرواژه جدید روی پیوند زیر کلیک کنید:</p><p><a href=\"$reset_url$\">بازیابی گذرواژه</a></p><p>این پیوند $ttl_minutes$ دقیقه اعتبار دارد.</p><p>زمان درخواست: $request_time$</p></div>', 0, 18, 1, 'Users');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_emailtemplates_seq`
--

DROP TABLE IF EXISTS `vtiger_emailtemplates_seq`;
CREATE TABLE `vtiger_emailtemplates_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_emailtemplates_seq`
--

INSERT IGNORE INTO `vtiger_emailtemplates_seq` (`id`) VALUES
(16);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_email_access`
--

DROP TABLE IF EXISTS `vtiger_email_access`;
CREATE TABLE `vtiger_email_access` (
  `crmid` int(11) DEFAULT NULL,
  `mailid` int(11) DEFAULT NULL,
  `accessdate` date DEFAULT NULL,
  `accesstime` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_email_track`
--

DROP TABLE IF EXISTS `vtiger_email_track`;
CREATE TABLE `vtiger_email_track` (
  `crmid` int(11) DEFAULT NULL,
  `mailid` int(11) DEFAULT NULL,
  `access_count` int(11) DEFAULT NULL,
  `click_count` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_entityname`
--

DROP TABLE IF EXISTS `vtiger_entityname`;
CREATE TABLE `vtiger_entityname` (
  `tabid` int(19) NOT NULL DEFAULT 0,
  `modulename` varchar(100) DEFAULT NULL,
  `tablename` varchar(100) NOT NULL,
  `fieldname` varchar(150) NOT NULL,
  `entityidfield` varchar(150) NOT NULL,
  `entityidcolumn` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_entityname`
--

INSERT IGNORE INTO `vtiger_entityname` (`tabid`, `modulename`, `tablename`, `fieldname`, `entityidfield`, `entityidcolumn`) VALUES
(2, 'Potentials', 'vtiger_potential', 'potentialname', 'potentialid', 'potential_id'),
(4, 'Contacts', 'vtiger_contactdetails', 'firstname,lastname', 'contactid', 'contact_id'),
(6, 'Accounts', 'vtiger_account', 'accountname', 'accountid', 'account_id'),
(7, 'Leads', 'vtiger_leaddetails', 'firstname,lastname', 'leadid', 'leadid'),
(8, 'Documents', 'vtiger_notes', 'title', 'notesid', 'notesid'),
(9, 'Calendar', 'vtiger_activity', 'subject', 'activityid', 'activityid'),
(10, 'Emails', 'vtiger_activity', 'subject', 'activityid', 'activityid'),
(13, 'HelpDesk', 'vtiger_troubletickets', 'title', 'ticketid', 'ticketid'),
(14, 'Products', 'vtiger_products', 'productname', 'productid', 'product_id'),
(15, 'Faq', 'vtiger_faq', 'question', 'id', 'id'),
(18, 'Vendors', 'vtiger_vendor', 'vendorname', 'vendorid', 'vendor_id'),
(19, 'PriceBooks', 'vtiger_pricebook', 'bookname', 'pricebookid', 'pricebookid'),
(20, 'Quotes', 'vtiger_quotes', 'subject', 'quoteid', 'quote_id'),
(21, 'PurchaseOrder', 'vtiger_purchaseorder', 'subject', 'purchaseorderid', 'purchaseorderid'),
(22, 'SalesOrder', 'vtiger_salesorder', 'subject', 'salesorderid', 'salesorder_id'),
(23, 'Invoice', 'vtiger_invoice', 'subject', 'invoiceid', 'invoiceid'),
(26, 'Campaigns', 'vtiger_campaign', 'campaignname', 'campaignid', 'campaignid'),
(29, 'Users', 'vtiger_users', 'first_name,last_name', 'id', 'id'),
(34, 'PBXManager', 'vtiger_pbxmanager', 'customernumber', 'pbxmanagerid', 'pbxmanagerid'),
(35, 'ServiceContracts', 'vtiger_servicecontracts', 'subject', 'servicecontractsid', 'servicecontractsid'),
(36, 'Services', 'vtiger_service', 'servicename', 'serviceid', 'serviceid'),
(38, 'Assets', 'vtiger_assets', 'assetname', 'assetsid', 'assetsid'),
(42, 'ModComments', 'vtiger_modcomments', 'commentcontent', 'modcommentsid', 'modcommentsid'),
(43, 'ProjectMilestone', 'vtiger_projectmilestone', 'projectmilestonename', 'projectmilestoneid', 'projectmilestoneid'),
(44, 'ProjectTask', 'vtiger_projecttask', 'projecttaskname', 'projecttaskid', 'projecttaskid'),
(45, 'Project', 'vtiger_project', 'projectname', 'projectid', 'projectid'),
(47, 'SMSNotifier', 'vtiger_smsnotifier', 'message', 'smsnotifierid', 'smsnotifierid'),
(52, 'SarvPayments', 'vtiger_sarvpayments', 'subject', 'sarvpaymentsid', 'sarvpaymentsid'),
(53, 'SarvParticipations', 'vtiger_sarvparticipations', 'subject', 'sarvparticipationsid', 'sarvparticipationsid'),
(54, 'SarvSurveyResponses', 'vtiger_sarvsurveyresponses', 'subject', 'sarvsurveyresponsesid', 'sarvsurveyresponsesid'),
(55, 'SarvSalesContracts', 'vtiger_sarvsalescontracts', 'subject', 'sarvsalescontractsid', 'sarvsalescontractsid'),
(56, 'SarvTargetLists', 'vtiger_sarvtargetlists', 'subject', 'sarvtargetlistsid', 'sarvtargetlistsid'),
(57, 'SarvBankAccounts', 'vtiger_sarvbankaccounts', 'subject', 'sarvbankaccountsid', 'sarvbankaccountsid'),
(58, 'SarvDeposits', 'vtiger_sarvdeposits', 'subject', 'sarvdepositsid', 'sarvdepositsid'),
(59, 'SarvBusinessLocations', 'vtiger_sarvbusinesslocations', 'subject', 'sarvbusinesslocationsid', 'sarvbusinesslocationsid'),
(60, 'SarvTimeReservations', 'vtiger_sarvtimereservations', 'subject', 'sarvtimereservationsid', 'sarvtimereservationsid'),
(61, 'SarvGifts', 'vtiger_sarvgifts', 'subject', 'sarvgiftsid', 'sarvgiftsid'),
(62, 'SarvProductSamples', 'vtiger_sarvproductsamples', 'subject', 'sarvproductsamplesid', 'sarvproductsamplesid'),
(63, 'SarvAccessGrants', 'vtiger_sarvaccessgrants', 'subject', 'sarvaccessgrantsid', 'sarvaccessgrantsid'),
(65, 'Communications', 'vtiger_communications', 'name', 'communicationsid', 'communicationsid');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventhandlers`
--

DROP TABLE IF EXISTS `vtiger_eventhandlers`;
CREATE TABLE `vtiger_eventhandlers` (
  `eventhandler_id` int(11) NOT NULL,
  `event_name` varchar(100) NOT NULL,
  `handler_path` varchar(400) NOT NULL,
  `handler_class` varchar(100) NOT NULL,
  `cond` text NOT NULL,
  `is_active` int(1) NOT NULL,
  `dependent_on` varchar(255) DEFAULT '[]'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_eventhandlers`
--

INSERT IGNORE INTO `vtiger_eventhandlers` (`eventhandler_id`, `event_name`, `handler_path`, `handler_class`, `cond`, `is_active`, `dependent_on`) VALUES
(1, 'vtiger.entity.aftersave', 'modules/SalesOrder/RecurringInvoiceHandler.php', 'RecurringInvoiceHandler', '', 1, '[]'),
(2, 'vtiger.entity.beforesave', 'data/VTEntityDelta.php', 'VTEntityDelta', '', 1, '[]'),
(3, 'vtiger.entity.aftersave', 'data/VTEntityDelta.php', 'VTEntityDelta', '', 1, '[]'),
(4, 'vtiger.entity.aftersave', 'modules/com_vtiger_workflow/VTEventHandler.inc', 'VTWorkflowEventHandler', '', 1, '[\"VTEntityDelta\"]'),
(5, 'vtiger.entity.afterrestore', 'modules/com_vtiger_workflow/VTEventHandler.inc', 'VTWorkflowEventHandler', '', 1, '[]'),
(6, 'vtiger.entity.aftersave.final', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDeskHandler', '', 1, '[]'),
(7, 'vtiger.entity.aftersave.final', 'modules/ModTracker/ModTrackerHandler.php', 'ModTrackerHandler', '', 1, '[]'),
(8, 'vtiger.entity.beforedelete', 'modules/ModTracker/ModTrackerHandler.php', 'ModTrackerHandler', '', 1, '[]'),
(9, 'vtiger.entity.afterrestore', 'modules/ModTracker/ModTrackerHandler.php', 'ModTrackerHandler', '', 1, '[]'),
(10, 'vtiger.entity.aftersave', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerHandler', '', 1, '[\"VTEntityDelta\"]'),
(11, 'vtiger.entity.afterdelete', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerHandler', '', 1, '[]'),
(12, 'vtiger.entity.afterrestore', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerHandler', '', 1, '[]'),
(13, 'vtiger.batchevent.save', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerBatchHandler', '', 1, '[]'),
(14, 'vtiger.batchevent.delete', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerBatchHandler', '', 1, '[]'),
(15, 'vtiger.lead.convertlead', 'modules/PBXManager/PBXManagerHandler.php', 'PBXManagerHandler', '', 1, '[]'),
(16, 'vtiger.entity.beforesave', 'modules/ServiceContracts/ServiceContractsHandler.php', 'ServiceContractsHandler', '', 1, '[]'),
(17, 'vtiger.entity.aftersave', 'modules/ServiceContracts/ServiceContractsHandler.php', 'ServiceContractsHandler', '', 1, '[]'),
(18, 'vtiger.entity.aftersave', 'modules/WSAPP/WorkFlowHandlers/WSAPPAssignToTracker.php', 'WSAPPAssignToTracker', '', 1, '[\"VTEntityDelta\"]'),
(19, 'vtiger.entity.aftersave', 'modules/Invoice/InvoiceHandler.php', 'InvoiceHandler', '', 1, '[]'),
(20, 'vtiger.entity.aftersave', 'modules/PurchaseOrder/PurchaseOrderHandler.php', 'PurchaseOrderHandler', '', 1, '[]'),
(21, 'vtiger.entity.aftersave', 'modules/ModComments/ModCommentsHandler.php', 'ModCommentsHandler', '', 1, '[]'),
(22, 'vtiger.picklist.afterrename', 'modules/Settings/Picklist/handlers/PickListHandler.php', 'PickListHandler', '', 1, '[]'),
(23, 'vtiger.picklist.afterdelete', 'modules/Settings/Picklist/handlers/PickListHandler.php', 'PickListHandler', '', 1, '[]'),
(24, 'vtiger.entity.aftersave', 'modules/Vtiger/handlers/EmailLookupHandler.php', 'EmailLookupHandler', '', 1, '[\"VTEntityDelta\"]'),
(25, 'vtiger.entity.afterdelete', 'modules/Vtiger/handlers/EmailLookupHandler.php', 'EmailLookupHandler', '', 1, '[]'),
(26, 'vtiger.entity.afterrestore', 'modules/Vtiger/handlers/EmailLookupHandler.php', 'EmailLookupHandler', '', 1, '[]'),
(27, 'vtiger.batchevent.save', 'modules/Vtiger/handlers/EmailLookupHandler.php', 'EmailLookupBatchHandler', '', 1, '[]'),
(28, 'vtiger.lead.convertlead', 'modules/Leads/handlers/LeadHandler.php', 'LeadHandler', '', 1, '[]'),
(29, 'vtiger.entity.beforesave', 'modules/Vtiger/handlers/CheckDuplicateHandler.php', 'CheckDuplicateHandler', '', 1, '[]'),
(30, 'vtiger.entity.beforerestore', 'modules/Vtiger/handlers/CheckDuplicateHandler.php', 'CheckDuplicateHandler', '', 1, '[]'),
(31, 'vtiger.entity.aftersave', 'modules/Vtiger/handlers/FollowRecordHandler.php', 'FollowRecordHandler', '', 1, '[]'),
(32, 'vtiger.field.afterdelete', 'modules/Vtiger/handlers/FieldEventHandler.php', 'FieldEventHandler', '', 1, '[]'),
(33, 'vtiger.entity.beforerelate', 'modules/Vtiger/handlers/RelateEntitesHandler.php', 'RelateEntitesHandler', '', 1, '[]'),
(34, 'vtiger.entity.afterrelate', 'modules/Vtiger/handlers/RelateEntitesHandler.php', 'RelateEntitesHandler', '', 1, '[]'),
(35, 'vtiger.entity.aftersave.final', 'modules/Accounts/handlers/SarvTimelineHandler.php', 'Accounts_SarvTimelineHandler', '', 1, '[]'),
(36, 'vtiger.entity.beforedelete', 'modules/Accounts/handlers/SarvTimelineHandler.php', 'Accounts_SarvTimelineHandler', '', 1, '[]'),
(37, 'vtiger.entity.afterrestore', 'modules/Accounts/handlers/SarvTimelineHandler.php', 'Accounts_SarvTimelineHandler', '', 1, '[]'),
(38, 'vtiger.batchevent.save', 'modules/Accounts/handlers/SarvTimelineHandler.php', 'Accounts_SarvTimelineBatchHandler', '', 1, '[]'),
(39, 'vtiger.entity.afterrelate', 'modules/Accounts/handlers/SarvTimelineHandler.php', 'Accounts_SarvTimelineRelationHandler', '', 1, '[]'),
(40, 'vtiger.entity.aftersave.final', 'modules/Leads/handlers/SarvCommunicationHandler.php', 'Leads_SarvCommunicationHandler', '', 1, '[]'),
(41, 'vtiger.batchevent.save', 'modules/Leads/handlers/SarvCommunicationHandler.php', 'Leads_SarvCommunicationBatchHandler', '', 1, '[]'),
(42, 'vtiger.entity.beforesave.final', 'modules/Accounts/handlers/SarvHierarchyHandler.php', 'Accounts_SarvHierarchyHandler', '', 1, '[]'),
(44, 'vtiger.entity.aftersave.final', 'modules/Contacts/handlers/GouyaAccountRelationHandler.php', 'Contacts_GouyaAccountRelationHandler', '', 1, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventhandlers_seq`
--

DROP TABLE IF EXISTS `vtiger_eventhandlers_seq`;
CREATE TABLE `vtiger_eventhandlers_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_eventhandlers_seq`
--

INSERT IGNORE INTO `vtiger_eventhandlers_seq` (`id`) VALUES
(42);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventhandler_module`
--

DROP TABLE IF EXISTS `vtiger_eventhandler_module`;
CREATE TABLE `vtiger_eventhandler_module` (
  `eventhandler_module_id` int(11) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `handler_class` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_eventhandler_module`
--

INSERT IGNORE INTO `vtiger_eventhandler_module` (`eventhandler_module_id`, `module_name`, `handler_class`) VALUES
(1, 'ModTracker', 'ModTrackerHandler'),
(2, 'ServiceContracts', 'ServiceContractsHandler'),
(3, 'Invoice', 'InvoiceHandler'),
(4, 'PurchaseOrder', 'PurchaseOrderHandler'),
(5, 'Accounts', 'Accounts_SarvTimelineHandler'),
(6, 'Accounts', 'Accounts_SarvTimelineBatchHandler'),
(7, 'Accounts', 'Accounts_SarvTimelineRelationHandler'),
(8, 'Leads', 'Leads_SarvCommunicationHandler'),
(9, 'Leads', 'Leads_SarvCommunicationBatchHandler'),
(10, 'Accounts', 'Accounts_SarvHierarchyHandler'),
(12, 'Contacts', 'Contacts_GouyaAccountRelationHandler');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventhandler_module_seq`
--

DROP TABLE IF EXISTS `vtiger_eventhandler_module_seq`;
CREATE TABLE `vtiger_eventhandler_module_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_eventhandler_module_seq`
--

INSERT IGNORE INTO `vtiger_eventhandler_module_seq` (`id`) VALUES
(10);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventstatus`
--

DROP TABLE IF EXISTS `vtiger_eventstatus`;
CREATE TABLE `vtiger_eventstatus` (
  `eventstatusid` int(19) NOT NULL,
  `eventstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_eventstatus`
--

INSERT IGNORE INTO `vtiger_eventstatus` (`eventstatusid`, `eventstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Planned', 0, 38, 0, NULL),
(2, 'Held', 0, 39, 1, NULL),
(3, 'Not Held', 0, 40, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_eventstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_eventstatus_seq`;
CREATE TABLE `vtiger_eventstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_eventstatus_seq`
--

INSERT IGNORE INTO `vtiger_eventstatus_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_expectedresponse`
--

DROP TABLE IF EXISTS `vtiger_expectedresponse`;
CREATE TABLE `vtiger_expectedresponse` (
  `expectedresponseid` int(19) NOT NULL,
  `expectedresponse` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_expectedresponse`
--

INSERT IGNORE INTO `vtiger_expectedresponse` (`expectedresponseid`, `expectedresponse`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Excellent', 1, 42, 1, NULL),
(3, 'Good', 1, 43, 2, NULL),
(4, 'Average', 1, 44, 3, NULL),
(5, 'Poor', 1, 45, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_expectedresponse_seq`
--

DROP TABLE IF EXISTS `vtiger_expectedresponse_seq`;
CREATE TABLE `vtiger_expectedresponse_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_expectedresponse_seq`
--

INSERT IGNORE INTO `vtiger_expectedresponse_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_extnstore_users`
--

DROP TABLE IF EXISTS `vtiger_extnstore_users`;
CREATE TABLE `vtiger_extnstore_users` (
  `id` int(11) NOT NULL,
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(75) DEFAULT NULL,
  `instanceurl` varchar(255) DEFAULT NULL,
  `createdon` datetime DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faq`
--

DROP TABLE IF EXISTS `vtiger_faq`;
CREATE TABLE `vtiger_faq` (
  `id` int(11) NOT NULL,
  `faq_no` varchar(100) NOT NULL,
  `product_id` varchar(100) DEFAULT NULL,
  `question` text NOT NULL,
  `answer` text DEFAULT NULL,
  `category` varchar(200) NOT NULL,
  `status` varchar(200) NOT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqcategories`
--

DROP TABLE IF EXISTS `vtiger_faqcategories`;
CREATE TABLE `vtiger_faqcategories` (
  `faqcategories_id` int(19) NOT NULL,
  `faqcategories` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_faqcategories`
--

INSERT IGNORE INTO `vtiger_faqcategories` (`faqcategories_id`, `faqcategories`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'General', 1, 46, 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqcategories_seq`
--

DROP TABLE IF EXISTS `vtiger_faqcategories_seq`;
CREATE TABLE `vtiger_faqcategories_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_faqcategories_seq`
--

INSERT IGNORE INTO `vtiger_faqcategories_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqcf`
--

DROP TABLE IF EXISTS `vtiger_faqcf`;
CREATE TABLE `vtiger_faqcf` (
  `faqid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqcomments`
--

DROP TABLE IF EXISTS `vtiger_faqcomments`;
CREATE TABLE `vtiger_faqcomments` (
  `commentid` int(19) NOT NULL,
  `faqid` int(19) DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqstatus`
--

DROP TABLE IF EXISTS `vtiger_faqstatus`;
CREATE TABLE `vtiger_faqstatus` (
  `faqstatus_id` int(19) NOT NULL,
  `faqstatus` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_faqstatus`
--

INSERT IGNORE INTO `vtiger_faqstatus` (`faqstatus_id`, `faqstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Draft', 0, 47, 0, NULL),
(2, 'Reviewed', 0, 48, 1, NULL),
(3, 'Published', 0, 49, 2, NULL),
(4, 'Obsolete', 0, 50, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_faqstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_faqstatus_seq`;
CREATE TABLE `vtiger_faqstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_faqstatus_seq`
--

INSERT IGNORE INTO `vtiger_faqstatus_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_feedback`
--

DROP TABLE IF EXISTS `vtiger_feedback`;
CREATE TABLE `vtiger_feedback` (
  `userid` int(19) DEFAULT NULL,
  `dontshow` varchar(19) DEFAULT 'false'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_field`
--

DROP TABLE IF EXISTS `vtiger_field`;
CREATE TABLE `vtiger_field` (
  `tabid` int(19) NOT NULL,
  `fieldid` int(19) NOT NULL,
  `columnname` varchar(30) NOT NULL,
  `tablename` varchar(100) DEFAULT NULL,
  `generatedtype` int(19) NOT NULL DEFAULT 0,
  `uitype` varchar(30) NOT NULL,
  `fieldname` varchar(50) NOT NULL,
  `fieldlabel` varchar(50) NOT NULL,
  `readonly` int(1) NOT NULL,
  `presence` int(19) NOT NULL DEFAULT 1,
  `defaultvalue` text DEFAULT NULL,
  `maximumlength` int(19) DEFAULT NULL,
  `sequence` int(19) DEFAULT NULL,
  `block` int(19) DEFAULT NULL,
  `displaytype` int(19) DEFAULT NULL,
  `typeofdata` varchar(100) DEFAULT NULL,
  `quickcreate` int(10) NOT NULL DEFAULT 1,
  `quickcreatesequence` int(19) DEFAULT NULL,
  `info_type` varchar(20) DEFAULT NULL,
  `masseditable` int(10) NOT NULL DEFAULT 1,
  `helpinfo` text DEFAULT NULL,
  `summaryfield` int(10) NOT NULL DEFAULT 0,
  `headerfield` int(1) DEFAULT 0,
  `isunique` tinyint(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_field`
--

INSERT IGNORE INTO `vtiger_field` (`tabid`, `fieldid`, `columnname`, `tablename`, `generatedtype`, `uitype`, `fieldname`, `fieldlabel`, `readonly`, `presence`, `defaultvalue`, `maximumlength`, `sequence`, `block`, `displaytype`, `typeofdata`, `quickcreate`, `quickcreatesequence`, `info_type`, `masseditable`, `helpinfo`, `summaryfield`, `headerfield`, `isunique`) VALUES
(6, 1, 'accountname', 'vtiger_account', 1, '2', 'accountname', 'Account Name', 1, 0, '', 100, 1, 9, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 1),
(6, 2, 'account_no', 'vtiger_account', 1, '4', 'account_no', 'Account No', 1, 0, '', 100, 2, 9, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 3, 'phone', 'vtiger_account', 1, '11', 'phone', 'Phone', 1, 2, '', 100, 4, 9, 1, 'V~O', 2, 2, 'BAS', 1, NULL, 0, 1, 0),
(6, 4, 'website', 'vtiger_account', 1, '17', 'website', 'Website', 1, 2, '', 100, 3, 9, 1, 'V~O', 2, 3, 'BAS', 1, NULL, 0, 1, 0),
(6, 5, 'fax', 'vtiger_account', 1, '11', 'fax', 'Fax', 1, 2, '', 100, 6, 9, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 6, 'tickersymbol', 'vtiger_account', 1, '1', 'tickersymbol', 'Ticker Symbol', 1, 2, '', 100, 5, 9, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 7, 'otherphone', 'vtiger_account', 1, '11', 'otherphone', 'Other Phone', 1, 2, '', 100, 8, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 8, 'parentid', 'vtiger_account', 1, '51', 'account_id', 'Member Of', 1, 2, '', 100, 7, 9, 1, 'I~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 9, 'email1', 'vtiger_account', 1, '13', 'email1', 'Email', 1, 2, '', 100, 10, 9, 1, 'E~O', 1, NULL, 'BAS', 1, NULL, 0, 1, 0),
(6, 10, 'employees', 'vtiger_account', 1, '7', 'employees', 'Employees', 1, 2, '', 100, 9, 9, 1, 'I~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 11, 'email2', 'vtiger_account', 1, '13', 'email2', 'Other Email', 1, 2, '', 100, 11, 9, 1, 'E~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 12, 'ownership', 'vtiger_account', 1, '1', 'ownership', 'Ownership', 1, 2, '', 100, 12, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 13, 'rating', 'vtiger_account', 1, '15', 'rating', 'Rating', 1, 2, '', 100, 14, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 14, 'industry', 'vtiger_account', 1, '15', 'industry', 'industry', 1, 2, '', 100, 13, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 15, 'siccode', 'vtiger_account', 1, '1', 'siccode', 'SIC Code', 1, 2, '', 100, 16, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 16, 'account_type', 'vtiger_account', 1, '15', 'accounttype', 'Type', 1, 2, '', 100, 15, 9, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 17, 'annualrevenue', 'vtiger_account', 1, '71', 'annual_revenue', 'Annual Revenue', 1, 2, '', 100, 18, 9, 1, 'N~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 18, 'emailoptout', 'vtiger_account', 1, '56', 'emailoptout', 'Email Opt Out', 1, 0, '', 100, 17, 9, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 19, 'notify_owner', 'vtiger_account', 1, '56', 'notify_owner', 'Notify Owner', 1, 2, '', 10, 20, 9, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(6, 20, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 19, 9, 1, 'V~M', 0, 4, 'BAS', 1, NULL, 1, 0, 0),
(6, 21, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 22, 9, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 22, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 21, 9, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 23, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 23, 9, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 24, 'bill_street', 'vtiger_accountbillads', 1, '21', 'bill_street', 'Billing Address', 1, 2, '', 100, 1, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 25, 'ship_street', 'vtiger_accountshipads', 1, '21', 'ship_street', 'Shipping Address', 1, 2, '', 100, 2, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 26, 'bill_city', 'vtiger_accountbillads', 1, '1', 'bill_city', 'Billing City', 1, 2, '', 100, 5, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(6, 27, 'ship_city', 'vtiger_accountshipads', 1, '1', 'ship_city', 'Shipping City', 1, 2, '', 100, 6, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 28, 'bill_state', 'vtiger_accountbillads', 1, '1', 'bill_state', 'Billing State', 1, 2, '', 100, 7, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 29, 'ship_state', 'vtiger_accountshipads', 1, '1', 'ship_state', 'Shipping State', 1, 2, '', 100, 8, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 30, 'bill_code', 'vtiger_accountbillads', 1, '1', 'bill_code', 'Billing Code', 1, 2, '', 100, 9, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 31, 'ship_code', 'vtiger_accountshipads', 1, '1', 'ship_code', 'Shipping Code', 1, 2, '', 100, 10, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 32, 'bill_country', 'vtiger_accountbillads', 1, '1', 'bill_country', 'Billing Country', 1, 2, '', 100, 11, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(6, 33, 'ship_country', 'vtiger_accountshipads', 1, '1', 'ship_country', 'Shipping Country', 1, 2, '', 100, 12, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 34, 'bill_pobox', 'vtiger_accountbillads', 1, '1', 'bill_pobox', 'Billing Po Box', 1, 2, '', 100, 3, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 35, 'ship_pobox', 'vtiger_accountshipads', 1, '1', 'ship_pobox', 'Shipping Po Box', 1, 2, '', 100, 4, 11, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(6, 36, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 12, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 37, 'salutation', 'vtiger_leaddetails', 1, '55', 'salutationtype', 'Salutation', 1, 0, '', 100, 1, 13, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 38, 'firstname', 'vtiger_leaddetails', 1, '55', 'firstname', 'First Name', 1, 0, '', 100, 2, 13, 1, 'V~O', 2, 1, 'BAS', 1, NULL, 1, 0, 0),
(7, 39, 'lead_no', 'vtiger_leaddetails', 1, '4', 'lead_no', 'Lead No', 1, 0, '', 100, 3, 13, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(7, 40, 'phone', 'vtiger_leadaddress', 1, '11', 'phone', 'Phone', 1, 2, '', 100, 5, 13, 1, 'V~O', 2, 4, 'BAS', 1, NULL, 0, 1, 0),
(7, 41, 'lastname', 'vtiger_leaddetails', 1, '255', 'lastname', 'Last Name', 1, 0, '', 100, 4, 13, 1, 'V~M', 0, 2, 'BAS', 1, NULL, 1, 0, 0),
(7, 42, 'mobile', 'vtiger_leadaddress', 1, '11', 'mobile', 'Mobile', 1, 2, '', 100, 7, 13, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 43, 'company', 'vtiger_leaddetails', 1, '2', 'company', 'Company', 1, 2, '', 100, 6, 13, 1, 'V~O', 2, 3, 'BAS', 1, NULL, 1, 0, 0),
(7, 44, 'fax', 'vtiger_leadaddress', 1, '11', 'fax', 'Fax', 1, 2, '', 100, 9, 13, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 45, 'designation', 'vtiger_leaddetails', 1, '1', 'designation', 'Designation', 1, 2, '', 100, 8, 13, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 46, 'email', 'vtiger_leaddetails', 1, '13', 'email', 'Email', 1, 2, '', 100, 11, 13, 1, 'E~O', 2, 5, 'BAS', 1, NULL, 0, 1, 0),
(7, 47, 'leadsource', 'vtiger_leaddetails', 1, '15', 'leadsource', 'Lead Source', 1, 2, '', 100, 10, 13, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(7, 48, 'website', 'vtiger_leadsubdetails', 1, '17', 'website', 'Website', 1, 2, '', 100, 13, 13, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 1, 0, 0),
(7, 49, 'industry', 'vtiger_leaddetails', 1, '15', 'industry', 'Industry', 1, 2, '', 100, 12, 13, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(7, 50, 'leadstatus', 'vtiger_leaddetails', 1, '15', 'leadstatus', 'Lead Status', 1, 2, '', 100, 15, 13, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 51, 'annualrevenue', 'vtiger_leaddetails', 1, '71', 'annualrevenue', 'Annual Revenue', 1, 2, '', 100, 14, 13, 1, 'N~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(7, 52, 'rating', 'vtiger_leaddetails', 1, '15', 'rating', 'Rating', 1, 2, '', 100, 17, 13, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(7, 53, 'noofemployees', 'vtiger_leaddetails', 1, '1', 'noofemployees', 'No Of Employees', 1, 2, '', 100, 16, 13, 1, 'I~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(7, 54, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 19, 13, 1, 'V~M', 0, 6, 'BAS', 1, NULL, 1, 0, 0),
(7, 55, 'secondaryemail', 'vtiger_leaddetails', 1, '13', 'secondaryemail', 'Secondary Email', 1, 2, '', 100, 18, 13, 1, 'E~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(7, 56, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 21, 13, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(7, 57, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 20, 13, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(7, 58, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 23, 13, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(7, 59, 'lane', 'vtiger_leadaddress', 1, '21', 'lane', 'Street', 1, 2, '', 100, 1, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 60, 'code', 'vtiger_leadaddress', 1, '1', 'code', 'Postal Code', 1, 2, '', 100, 3, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 61, 'city', 'vtiger_leadaddress', 1, '1', 'city', 'City', 1, 2, '', 100, 4, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(7, 62, 'country', 'vtiger_leadaddress', 1, '1', 'country', 'Country', 1, 2, '', 100, 5, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(7, 63, 'state', 'vtiger_leadaddress', 1, '1', 'state', 'State', 1, 2, '', 100, 6, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 64, 'pobox', 'vtiger_leadaddress', 1, '1', 'pobox', 'Po Box', 1, 2, '', 100, 2, 15, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(7, 65, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 16, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 66, 'salutation', 'vtiger_contactdetails', 1, '55', 'salutationtype', 'Salutation', 1, 0, '', 100, 1, 4, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 67, 'firstname', 'vtiger_contactdetails', 1, '55', 'firstname', 'First Name', 1, 0, '', 100, 2, 4, 1, 'V~O', 2, 1, 'BAS', 1, NULL, 1, 0, 0),
(4, 68, 'contact_no', 'vtiger_contactdetails', 1, '4', 'contact_no', 'Contact Id', 1, 0, '', 100, 3, 4, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(4, 69, 'phone', 'vtiger_contactdetails', 1, '11', 'phone', 'Office Phone', 1, 2, '', 100, 5, 4, 1, 'V~O', 2, 4, 'BAS', 1, NULL, 0, 1, 0),
(4, 70, 'lastname', 'vtiger_contactdetails', 1, '255', 'lastname', 'Last Name', 1, 0, '', 100, 4, 4, 1, 'V~M', 0, 2, 'BAS', 1, NULL, 1, 0, 0),
(4, 71, 'mobile', 'vtiger_contactdetails', 1, '11', 'mobile', 'Mobile', 1, 2, '', 100, 7, 4, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 72, 'accountid', 'vtiger_contactdetails', 1, '51', 'account_id', 'Account Name', 1, 0, '', 100, 6, 4, 1, 'I~O', 2, 3, 'BAS', 1, NULL, 1, 0, 0),
(4, 73, 'homephone', 'vtiger_contactsubdetails', 1, '11', 'homephone', 'Home Phone', 1, 2, '', 100, 9, 4, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 74, 'leadsource', 'vtiger_contactsubdetails', 1, '15', 'leadsource', 'Lead Source', 1, 2, '', 100, 8, 4, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 75, 'otherphone', 'vtiger_contactsubdetails', 1, '11', 'otherphone', 'Other Phone', 1, 2, '', 100, 11, 4, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 76, 'title', 'vtiger_contactdetails', 1, '1', 'title', 'Title', 1, 2, '', 100, 10, 4, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(4, 77, 'fax', 'vtiger_contactdetails', 1, '11', 'fax', 'Fax', 1, 2, '', 100, 13, 4, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 78, 'department', 'vtiger_contactdetails', 1, '1', 'department', 'Department', 1, 2, '', 100, 12, 4, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 79, 'birthday', 'vtiger_contactsubdetails', 1, '5', 'birthday', 'Birthdate', 1, 2, '', 100, 16, 4, 1, 'D~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 80, 'email', 'vtiger_contactdetails', 1, '13', 'email', 'Email', 1, 2, '', 100, 15, 4, 1, 'E~O', 2, 5, 'BAS', 1, NULL, 0, 1, 0),
(4, 81, 'reportsto', 'vtiger_contactdetails', 1, '57', 'contact_id', 'Reports To', 1, 2, '', 100, 18, 4, 1, 'V~O', 1, NULL, 'ADV', 0, NULL, 0, 0, 0),
(4, 82, 'assistant', 'vtiger_contactsubdetails', 1, '1', 'assistant', 'Assistant', 1, 2, '', 100, 17, 4, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 83, 'secondaryemail', 'vtiger_contactdetails', 1, '13', 'secondaryemail', 'Secondary Email', 1, 2, '', 100, 20, 4, 1, 'E~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 84, 'assistantphone', 'vtiger_contactsubdetails', 1, '11', 'assistantphone', 'Assistant Phone', 1, 2, '', 100, 19, 4, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 85, 'donotcall', 'vtiger_contactdetails', 1, '56', 'donotcall', 'Do Not Call', 1, 2, '', 100, 22, 4, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 86, 'emailoptout', 'vtiger_contactdetails', 1, '56', 'emailoptout', 'Email Opt Out', 1, 0, '', 100, 21, 4, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 87, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 24, 4, 1, 'V~M', 0, 6, 'BAS', 1, NULL, 1, 0, 0),
(4, 88, 'reference', 'vtiger_contactdetails', 1, '56', 'reference', 'Reference', 1, 2, '', 10, 23, 4, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 89, 'notify_owner', 'vtiger_contactdetails', 1, '56', 'notify_owner', 'Notify Owner', 1, 2, '', 10, 26, 4, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 90, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 25, 4, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(4, 91, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 27, 4, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(4, 92, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 28, 4, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(4, 93, 'portal', 'vtiger_customerdetails', 1, '56', 'portal', 'Portal User', 1, 1, '', 100, 1, 6, 1, 'C~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 94, 'support_start_date', 'vtiger_customerdetails', 1, '5', 'support_start_date', 'Support Start Date', 1, 1, '', 100, 2, 6, 1, 'D~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 95, 'support_end_date', 'vtiger_customerdetails', 1, '5', 'support_end_date', 'Support End Date', 1, 1, '', 100, 3, 6, 1, 'D~O~OTH~GE~support_start_date~Support Start Date', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(4, 96, 'mailingstreet', 'vtiger_contactaddress', 1, '21', 'mailingstreet', 'Mailing Street', 1, 2, '', 100, 1, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 97, 'otherstreet', 'vtiger_contactaddress', 1, '21', 'otherstreet', 'Other Street', 1, 2, '', 100, 2, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 98, 'mailingcity', 'vtiger_contactaddress', 1, '1', 'mailingcity', 'Mailing City', 1, 2, '', 100, 5, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(4, 99, 'othercity', 'vtiger_contactaddress', 1, '1', 'othercity', 'Other City', 1, 2, '', 100, 6, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 100, 'mailingstate', 'vtiger_contactaddress', 1, '1', 'mailingstate', 'Mailing State', 1, 2, '', 100, 7, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 101, 'otherstate', 'vtiger_contactaddress', 1, '1', 'otherstate', 'Other State', 1, 2, '', 100, 8, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 102, 'mailingzip', 'vtiger_contactaddress', 1, '1', 'mailingzip', 'Mailing Zip', 1, 2, '', 100, 9, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 103, 'otherzip', 'vtiger_contactaddress', 1, '1', 'otherzip', 'Other Zip', 1, 2, '', 100, 10, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 104, 'mailingcountry', 'vtiger_contactaddress', 1, '1', 'mailingcountry', 'Mailing Country', 1, 2, '', 100, 11, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(4, 105, 'othercountry', 'vtiger_contactaddress', 1, '1', 'othercountry', 'Other Country', 1, 2, '', 100, 12, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 106, 'mailingpobox', 'vtiger_contactaddress', 1, '1', 'mailingpobox', 'Mailing Po Box', 1, 2, '', 100, 3, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 107, 'otherpobox', 'vtiger_contactaddress', 1, '1', 'otherpobox', 'Other Po Box', 1, 2, '', 100, 4, 7, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 108, 'imagename', 'vtiger_contactdetails', 1, '69', 'imagename', 'Contact Image', 1, 2, '', 100, 1, 73, 1, 'V~O', 3, NULL, 'ADV', 0, NULL, 0, 0, 0),
(4, 109, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 8, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 110, 'potentialname', 'vtiger_potential', 1, '2', 'potentialname', 'Potential Name', 1, 0, '', 100, 1, 1, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(2, 111, 'potential_no', 'vtiger_potential', 1, '4', 'potential_no', 'Potential No', 1, 0, '', 100, 2, 1, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(2, 112, 'amount', 'vtiger_potential', 1, '71', 'amount', 'Amount', 1, 2, '', 100, 5, 1, 1, 'N~M', 2, 5, 'BAS', 1, NULL, 0, 1, 0),
(2, 113, 'related_to', 'vtiger_potential', 1, '10', 'related_to', 'Related To', 1, 0, '', 100, 3, 1, 1, 'V~M', 0, 2, 'BAS', 1, NULL, 0, 1, 0),
(2, 114, 'closingdate', 'vtiger_potential', 1, '23', 'closingdate', 'Expected Close Date', 1, 2, '', 100, 8, 1, 1, 'D~M', 2, 3, 'BAS', 1, NULL, 1, 0, 0),
(2, 115, 'potentialtype', 'vtiger_potential', 1, '15', 'opportunity_type', 'Type', 1, 2, '', 100, 7, 1, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 116, 'nextstep', 'vtiger_potential', 1, '1', 'nextstep', 'Next Step', 1, 2, '', 100, 10, 1, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 117, 'leadsource', 'vtiger_potential', 1, '15', 'leadsource', 'Lead Source', 1, 2, '', 100, 9, 1, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 118, 'sales_stage', 'vtiger_potential', 1, '15', 'sales_stage', 'Sales Stage', 1, 2, '', 100, 12, 1, 1, 'V~M', 2, 4, 'BAS', 1, NULL, 0, 1, 0),
(2, 119, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 11, 1, 1, 'V~M', 0, 6, 'BAS', 1, NULL, 1, 0, 0),
(2, 120, 'probability', 'vtiger_potential', 1, '9', 'probability', 'Probability', 1, 2, '', 100, 14, 1, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 121, 'campaignid', 'vtiger_potential', 1, '58', 'campaignid', 'Campaign Source', 1, 2, '', 100, 13, 1, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(2, 122, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 16, 1, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(2, 123, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 15, 1, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(2, 124, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 17, 1, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(2, 125, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 3, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 126, 'campaignname', 'vtiger_campaign', 1, '2', 'campaignname', 'Campaign Name', 1, 0, '', 100, 1, 74, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(26, 127, 'campaign_no', 'vtiger_campaign', 1, '4', 'campaign_no', 'Campaign No', 1, 0, '', 100, 2, 74, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(26, 128, 'campaigntype', 'vtiger_campaign', 1, '15', 'campaigntype', 'Campaign Type', 1, 2, '', 100, 5, 74, 1, 'V~O', 2, 3, 'BAS', 1, NULL, 1, 0, 0),
(26, 129, 'product_id', 'vtiger_campaign', 1, '59', 'product_id', 'Product', 1, 2, '', 100, 6, 74, 1, 'I~O', 2, 5, 'BAS', 1, NULL, 0, 0, 0),
(26, 130, 'campaignstatus', 'vtiger_campaign', 1, '15', 'campaignstatus', 'Campaign Status', 1, 2, '', 100, 4, 74, 1, 'V~O', 2, 6, 'BAS', 1, NULL, 1, 0, 0),
(26, 131, 'closingdate', 'vtiger_campaign', 1, '23', 'closingdate', 'Expected Close Date', 1, 2, '', 100, 8, 74, 1, 'D~M', 2, 2, 'BAS', 1, NULL, 1, 0, 0),
(26, 132, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 3, 74, 1, 'V~M', 0, 7, 'BAS', 1, NULL, 1, 0, 0),
(26, 133, 'numsent', 'vtiger_campaign', 1, '9', 'numsent', 'Num Sent', 1, 2, '', 100, 12, 74, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 134, 'sponsor', 'vtiger_campaign', 1, '1', 'sponsor', 'Sponsor', 1, 2, '', 100, 9, 74, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 135, 'targetaudience', 'vtiger_campaign', 1, '1', 'targetaudience', 'Target Audience', 1, 2, '', 100, 7, 74, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 136, 'targetsize', 'vtiger_campaign', 1, '1', 'targetsize', 'TargetSize', 1, 2, '', 100, 10, 74, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 137, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 11, 74, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(26, 138, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 13, 74, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(26, 139, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 16, 74, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(26, 140, 'expectedresponse', 'vtiger_campaign', 1, '15', 'expectedresponse', 'Expected Response', 1, 2, '', 100, 3, 76, 1, 'V~O', 2, 4, 'BAS', 1, NULL, 0, 0, 0),
(26, 141, 'expectedrevenue', 'vtiger_campaign', 1, '71', 'expectedrevenue', 'Expected Revenue', 1, 2, '', 100, 4, 76, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(26, 142, 'budgetcost', 'vtiger_campaign', 1, '71', 'budgetcost', 'Budget Cost', 1, 2, '', 100, 1, 76, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 143, 'actualcost', 'vtiger_campaign', 1, '71', 'actualcost', 'Actual Cost', 1, 2, '', 100, 2, 76, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 144, 'expectedresponsecount', 'vtiger_campaign', 1, '1', 'expectedresponsecount', 'Expected Response Count', 1, 2, '', 100, 7, 76, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 145, 'expectedsalescount', 'vtiger_campaign', 1, '1', 'expectedsalescount', 'Expected Sales Count', 1, 2, '', 100, 5, 76, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 146, 'expectedroi', 'vtiger_campaign', 1, '71', 'expectedroi', 'Expected ROI', 1, 2, '', 100, 9, 76, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 147, 'actualresponsecount', 'vtiger_campaign', 1, '1', 'actualresponsecount', 'Actual Response Count', 1, 2, '', 100, 8, 76, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 148, 'actualsalescount', 'vtiger_campaign', 1, '1', 'actualsalescount', 'Actual Sales Count', 1, 2, '', 100, 6, 76, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 149, 'actualroi', 'vtiger_campaign', 1, '71', 'actualroi', 'Actual ROI', 1, 2, '', 100, 10, 76, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(26, 150, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 81, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(4, 151, 'campaignrelstatus', 'vtiger_campaignrelstatus', 1, '16', 'campaignrelstatus', 'Status', 1, 0, '0', 100, 1, NULL, 1, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(6, 152, 'campaignrelstatus', 'vtiger_campaignrelstatus', 1, '16', 'campaignrelstatus', 'Status', 1, 0, '0', 100, 1, NULL, 1, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(7, 153, 'campaignrelstatus', 'vtiger_campaignrelstatus', 1, '16', 'campaignrelstatus', 'Status', 1, 0, '0', 100, 1, NULL, 1, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(26, 154, 'campaignrelstatus', 'vtiger_campaignrelstatus', 1, '16', 'campaignrelstatus', 'Status', 1, 0, '0', 100, 1, NULL, 1, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 155, 'ticket_no', 'vtiger_troubletickets', 1, '4', 'ticket_no', 'Ticket No', 1, 0, '', 100, 14, 25, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(13, 156, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 5, 25, 1, 'V~M', 0, 4, 'BAS', 1, NULL, 1, 0, 0),
(13, 157, 'parent_id', 'vtiger_troubletickets', 1, '10', 'parent_id', 'Related To', 1, 0, '', 100, 2, 25, 1, 'I~M', 0, NULL, 'BAS', 1, NULL, 1, 0, 0),
(13, 158, 'priority', 'vtiger_troubletickets', 1, '15', 'ticketpriorities', 'Priority', 1, 2, '', 100, 7, 25, 1, 'V~M', 2, 3, 'BAS', 1, NULL, 1, 0, 0),
(13, 159, 'product_id', 'vtiger_troubletickets', 1, '59', 'product_id', 'Product Name', 1, 2, '', 100, 6, 25, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(13, 160, 'severity', 'vtiger_troubletickets', 1, '15', 'ticketseverities', 'Severity', 1, 2, '', 100, 9, 25, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(13, 161, 'status', 'vtiger_troubletickets', 1, '15', 'ticketstatus', 'Status', 1, 2, '', 100, 8, 25, 1, 'V~M', 1, 2, 'BAS', 1, NULL, 1, 0, 0),
(13, 162, 'category', 'vtiger_troubletickets', 1, '15', 'ticketcategories', 'Category', 1, 2, '', 100, 11, 25, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(13, 163, 'update_log', 'vtiger_troubletickets', 1, '19', 'update_log', 'Update History', 1, 1, '', 100, 12, 25, 3, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 164, 'hours', 'vtiger_troubletickets', 1, '1', 'hours', 'Hours', 1, 2, '', 100, 10, 25, 1, 'N~O', 1, NULL, 'BAS', 1, 'This gives the estimated hours for the Ticket.<br>When the same ticket is added to a Service Contract,based on the Tracking Unit of the Service Contract,Used units is updated whenever a ticket is Closed.', 0, 0, 0),
(13, 165, 'days', 'vtiger_troubletickets', 1, '1', 'days', 'Days', 1, 2, '', 100, 11, 25, 1, 'N~O', 1, NULL, 'BAS', 1, 'This gives the estimated days for the Ticket.<br>When the same ticket is added to a Service Contract,based on the Tracking Unit of the Service Contract,Used units is updated whenever a ticket is Closed.', 0, 0, 0),
(13, 166, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 10, 25, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 167, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 13, 25, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 168, 'from_portal', 'vtiger_ticketcf', 1, '56', 'from_portal', 'From Portal', 1, 0, '', 100, 14, 25, 3, 'C~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 169, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 17, 25, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 170, 'title', 'vtiger_troubletickets', 1, '22', 'ticket_title', 'Title', 1, 0, '', 100, 1, 25, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(13, 171, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 28, 1, 'V~O', 2, 4, 'BAS', 1, NULL, 1, 0, 0),
(13, 172, 'solution', 'vtiger_troubletickets', 1, '19', 'solution', 'Solution', 1, 0, '', 100, 1, 29, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(13, 173, 'comments', 'vtiger_ticketcomments', 1, '19', 'comments', 'Add Comment', 1, 1, '', 100, 1, 30, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(14, 174, 'productname', 'vtiger_products', 1, '2', 'productname', 'Product Name', 1, 0, '', 100, 1, 31, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(14, 175, 'product_no', 'vtiger_products', 1, '4', 'product_no', 'Product No', 1, 0, '', 100, 2, 31, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 1, 0),
(14, 176, 'productcode', 'vtiger_products', 1, '1', 'productcode', 'Part Number', 1, 2, '', 100, 4, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(14, 177, 'discontinued', 'vtiger_products', 1, '56', 'discontinued', 'Product Active', 1, 2, '1', 100, 3, 31, 1, 'V~O', 2, 2, 'BAS', 1, NULL, 0, 1, 0),
(14, 178, 'manufacturer', 'vtiger_products', 1, '15', 'manufacturer', 'Manufacturer', 1, 2, '', 100, 6, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 179, 'productcategory', 'vtiger_products', 1, '15', 'productcategory', 'Product Category', 1, 2, '', 100, 6, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 1, 0),
(14, 180, 'sales_start_date', 'vtiger_products', 1, '5', 'sales_start_date', 'Sales Start Date', 1, 2, '', 100, 5, 31, 1, 'D~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 181, 'sales_end_date', 'vtiger_products', 1, '5', 'sales_end_date', 'Sales End Date', 1, 2, '', 100, 8, 31, 1, 'D~O~OTH~GE~sales_start_date~Sales Start Date', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 182, 'start_date', 'vtiger_products', 1, '5', 'start_date', 'Support Start Date', 1, 2, '', 100, 7, 31, 1, 'D~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 183, 'expiry_date', 'vtiger_products', 1, '5', 'expiry_date', 'Support Expiry Date', 1, 2, '', 100, 10, 31, 1, 'D~O~OTH~GE~start_date~Start Date', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 184, 'website', 'vtiger_products', 1, '17', 'website', 'Website', 1, 2, '', 100, 14, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 185, 'vendor_id', 'vtiger_products', 1, '75', 'vendor_id', 'Vendor Name', 1, 2, '', 100, 13, 31, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 186, 'mfr_part_no', 'vtiger_products', 1, '1', 'mfr_part_no', 'Mfr PartNo', 1, 2, '', 100, 16, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 187, 'vendor_part_no', 'vtiger_products', 1, '1', 'vendor_part_no', 'Vendor PartNo', 1, 2, '', 100, 15, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 188, 'serialno', 'vtiger_products', 1, '1', 'serial_no', 'Serial No', 1, 2, '', 100, 18, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 189, 'productsheet', 'vtiger_products', 1, '1', 'productsheet', 'Product Sheet', 1, 2, '', 100, 17, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 190, 'glacct', 'vtiger_products', 1, '15', 'glacct', 'GL Account', 1, 2, '', 100, 20, 31, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 191, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 19, 31, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(14, 192, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 21, 31, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(14, 193, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 31, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(14, 194, 'unit_price', 'vtiger_products', 1, '72', 'unit_price', 'Unit Price', 1, 0, '', 100, 1, 32, 1, 'N~O', 2, 3, 'BAS', 0, NULL, 1, 0, 0),
(14, 195, 'commissionrate', 'vtiger_products', 1, '9', 'commissionrate', 'Commission Rate', 1, 2, '', 100, 2, 32, 1, 'N~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(14, 196, 'taxclass', 'vtiger_products', 1, '83', 'taxclass', 'Taxes', 1, 2, '', 100, 4, 32, 1, 'V~O', 2, NULL, 'BAS', 1, NULL, 0, 0, 0),
(14, 197, 'usageunit', 'vtiger_products', 1, '15', 'usageunit', 'Usage Unit', 1, 2, '', 100, 1, 33, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(14, 198, 'qty_per_unit', 'vtiger_products', 1, '1', 'qty_per_unit', 'Qty/Unit', 1, 2, '', 100, 2, 33, 1, 'N~O', 1, NULL, 'ADV', 1, NULL, 1, 0, 0),
(14, 199, 'qtyinstock', 'vtiger_products', 1, '1', 'qtyinstock', 'Qty In Stock', 1, 2, '', 100, 3, 33, 1, 'NN~O', 0, 4, 'ADV', 1, NULL, 0, 1, 0),
(14, 200, 'reorderlevel', 'vtiger_products', 1, '1', 'reorderlevel', 'Reorder Level', 1, 2, '', 100, 4, 33, 1, 'I~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(14, 201, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Handler', 1, 0, '', 100, 5, 33, 1, 'V~M', 0, 5, 'BAS', 1, NULL, 0, 0, 0),
(14, 202, 'qtyindemand', 'vtiger_products', 1, '1', 'qtyindemand', 'Qty In Demand', 1, 2, '', 100, 6, 33, 1, 'I~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(14, 203, 'imagename', 'vtiger_products', 1, '69', 'imagename', 'Product Image', 1, 2, '', 100, 1, 35, 1, 'V~O', 3, NULL, 'ADV', 0, NULL, 0, 0, 0),
(14, 204, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 36, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(8, 205, 'title', 'vtiger_notes', 1, '2', 'notes_title', 'Title', 1, 0, '', 100, 1, 17, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(8, 206, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 5, 17, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 207, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 6, 17, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(8, 208, 'filename', 'vtiger_notes', 1, '28', 'filename', 'File Name', 1, 2, '', 100, 3, 18, 1, 'V~O', 0, NULL, 'BAS', 0, NULL, 1, 0, 0),
(8, 209, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 4, 17, 1, 'V~M', 0, 3, 'BAS', 1, NULL, 1, 0, 0),
(8, 210, 'notecontent', 'vtiger_notes', 1, '19', 'notecontent', 'Note', 1, 2, '', 100, 1, 84, 1, 'V~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 211, 'filetype', 'vtiger_notes', 1, '1', 'filetype', 'File Type', 1, 2, NULL, 100, 5, 18, 2, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 212, 'filesize', 'vtiger_notes', 1, '1', 'filesize', 'File Size', 1, 2, NULL, 100, 4, 18, 2, 'I~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 213, 'filelocationtype', 'vtiger_notes', 1, '27', 'filelocationtype', 'Download Type', 1, 0, NULL, 100, 1, 18, 1, 'V~O', 0, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 214, 'fileversion', 'vtiger_notes', 1, '1', 'fileversion', 'Version', 1, 2, NULL, 100, 6, 18, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(8, 215, 'filestatus', 'vtiger_notes', 1, '56', 'filestatus', 'Active', 1, 2, '1', 100, 2, 18, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(8, 216, 'filedownloadcount', 'vtiger_notes', 1, '1', 'filedownloadcount', 'Download Count', 1, 2, NULL, 100, 7, 18, 2, 'I~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 217, 'folderid', 'vtiger_notes', 1, '26', 'folderid', 'Folder Name', 1, 2, '', 100, 2, 17, 1, 'V~O', 2, 2, 'BAS', 1, NULL, 1, 0, 0),
(8, 218, 'note_no', 'vtiger_notes', 1, '4', 'note_no', 'Document No', 1, 0, '', 100, 3, 17, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(8, 219, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 12, 17, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 220, 'date_start', 'vtiger_activity', 1, '6', 'date_start', 'Date & Time Sent', 1, 0, '', 100, 1, 21, 1, 'DT~M~time_start~Time Start', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 221, 'semodule', 'vtiger_activity', 1, '2', 'parent_type', 'Sales Enity Module', 1, 0, '', 100, 2, 21, 3, '', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 222, 'activitytype', 'vtiger_activity', 1, '2', 'activitytype', 'Activtiy Type', 1, 0, '', 100, 3, 21, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 223, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 5, 21, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 224, 'subject', 'vtiger_activity', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 23, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 225, 'name', 'vtiger_attachments', 1, '61', 'filename', 'Attachment', 1, 0, '', 100, 2, 23, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 226, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 0, '', 100, 1, 24, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 227, 'time_start', 'vtiger_activity', 1, '2', 'time_start', 'Time Start', 1, 0, '', 100, 9, 23, 1, 'T~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 228, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 10, 22, 1, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 229, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 11, 21, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 230, 'access_count', 'vtiger_email_track', 1, '25', 'access_count', 'Access Count', 1, 0, '0', 100, 6, 21, 3, 'I~O', 1, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 231, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 12, 21, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(9, 232, 'subject', 'vtiger_activity', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 19, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(9, 233, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 2, 19, 1, 'V~M', 0, 4, 'BAS', 1, NULL, 1, 0, 0),
(9, 234, 'date_start', 'vtiger_activity', 1, '6', 'date_start', 'Start Date & Time', 1, 0, '', 100, 3, 19, 1, 'DT~M~time_start', 0, 2, 'BAS', 1, NULL, 1, 0, 0),
(9, 235, 'time_start', 'vtiger_activity', 1, '2', 'time_start', 'Time Start', 1, 0, '', 100, 4, 19, 3, 'T~M', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 236, 'time_end', 'vtiger_activity', 1, '2', 'time_end', 'End Time', 1, 0, '', 100, 4, 19, 3, 'T~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 237, 'due_date', 'vtiger_activity', 1, '23', 'due_date', 'Due Date', 1, 0, '', 100, 5, 19, 1, 'D~M~OTH~GE~date_start~Start Date & Time', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 238, 'crmid', 'vtiger_seactivityrel', 1, '66', 'parent_id', 'Related To', 1, 0, '', 100, 7, 19, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 239, 'contactid', 'vtiger_cntactivityrel', 1, '57', 'contact_id', 'Contact Name', 1, 0, '', 100, 8, 19, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 240, 'status', 'vtiger_activity', 1, '15', 'taskstatus', 'Status', 1, 0, '', 100, 8, 19, 1, 'V~M', 0, 3, 'BAS', 1, NULL, 0, 0, 0),
(9, 241, 'eventstatus', 'vtiger_activity', 1, '15', 'eventstatus', 'Status', 1, 0, '', 100, 9, 19, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 242, 'priority', 'vtiger_activity', 1, '15', 'taskpriority', 'Priority', 1, 0, '', 100, 10, 19, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 243, 'sendnotification', 'vtiger_activity', 1, '56', 'sendnotification', 'Send Notification', 1, 0, '', 100, 11, 19, 1, 'C~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 244, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 14, 19, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(9, 245, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 15, 19, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(9, 246, 'activitytype', 'vtiger_activity', 1, '15', 'activitytype', 'Activity Type', 1, 0, '', 100, 16, 19, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 247, 'visibility', 'vtiger_activity', 1, '16', 'visibility', 'Visibility', 1, 0, '', 100, 17, 19, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 248, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 0, '', 100, 1, 20, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 249, 'duration_hours', 'vtiger_activity', 1, '63', 'duration_hours', 'Duration', 1, 0, '', 100, 17, 19, 3, 'T~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 250, 'duration_minutes', 'vtiger_activity', 1, '16', 'duration_minutes', 'Duration Minutes', 1, 0, '', 100, 18, 19, 3, 'T~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 251, 'location', 'vtiger_activity', 1, '1', 'location', 'Location', 1, 0, '', 100, 19, 19, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 252, 'reminder_time', 'vtiger_activity_reminder', 1, '30', 'reminder_time', 'Send Reminder', 1, 0, '', 100, 1, 120, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 253, 'recurringtype', 'vtiger_activity', 1, '16', 'recurringtype', 'Recurrence', 1, 0, '', 100, 6, 19, 3, 'O~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(9, 254, 'notime', 'vtiger_activity', 1, '56', 'notime', 'No Time', 1, 0, '', 100, 20, 19, 3, 'C~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(9, 255, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 19, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(16, 256, 'subject', 'vtiger_activity', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 39, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(16, 257, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 2, 39, 1, 'V~M', 0, 6, 'BAS', 1, NULL, 1, 0, 0),
(16, 258, 'date_start', 'vtiger_activity', 1, '6', 'date_start', 'Start Date & Time', 1, 0, '', 100, 3, 39, 1, 'DT~M~time_start', 0, 2, 'BAS', 1, NULL, 1, 0, 0),
(16, 259, 'time_start', 'vtiger_activity', 1, '2', 'time_start', 'Time Start', 1, 0, '', 100, 4, 39, 3, 'T~M', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(16, 260, 'due_date', 'vtiger_activity', 1, '23', 'due_date', 'End Date', 1, 0, '', 100, 5, 39, 1, 'D~M~OTH~GE~date_start~Start Date & Time', 0, 5, 'BAS', 1, NULL, 1, 0, 0),
(16, 261, 'time_end', 'vtiger_activity', 1, '2', 'time_end', 'End Time', 1, 0, '', 100, 5, 39, 3, 'T~M', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(16, 262, 'recurringtype', 'vtiger_activity', 1, '16', 'recurringtype', 'Recurrence', 1, 0, '', 100, 6, 117, 1, 'O~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(16, 263, 'duration_hours', 'vtiger_activity', 1, '63', 'duration_hours', 'Duration', 1, 0, '', 100, 7, 39, 3, 'I~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 264, 'duration_minutes', 'vtiger_activity', 1, '16', 'duration_minutes', 'Duration Minutes', 1, 0, '', 100, 8, 39, 3, 'O~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 265, 'crmid', 'vtiger_seactivityrel', 1, '66', 'parent_id', 'Related To', 1, 0, '', 100, 9, 119, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(16, 266, 'eventstatus', 'vtiger_activity', 1, '15', 'eventstatus', 'Status', 1, 0, '', 100, 10, 39, 1, 'V~M', 0, 3, 'BAS', 1, NULL, 0, 0, 0),
(16, 267, 'sendnotification', 'vtiger_activity', 1, '56', 'sendnotification', 'Send Notification', 1, 0, '', 100, 11, 39, 1, 'C~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 268, 'activitytype', 'vtiger_activity', 1, '15', 'activitytype', 'Activity Type', 1, 0, '', 100, 12, 39, 1, 'V~M', 0, 4, 'BAS', 1, NULL, 1, 0, 0),
(16, 269, 'location', 'vtiger_activity', 1, '1', 'location', 'Location', 1, 0, '', 100, 13, 39, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 270, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 14, 39, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(16, 271, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 15, 39, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(16, 272, 'priority', 'vtiger_activity', 1, '15', 'taskpriority', 'Priority', 1, 0, '', 100, 16, 39, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 273, 'notime', 'vtiger_activity', 1, '56', 'notime', 'No Time', 1, 0, '', 100, 17, 39, 3, 'C~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 274, 'visibility', 'vtiger_activity', 1, '16', 'visibility', 'Visibility', 1, 0, '', 100, 18, 39, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 275, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 39, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(16, 276, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 0, '', 100, 1, 41, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 277, 'reminder_time', 'vtiger_activity_reminder', 1, '30', 'reminder_time', 'Send Reminder', 1, 0, '', 100, 1, 40, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(16, 278, 'contactid', 'vtiger_cntactivityrel', 1, '57', 'contact_id', 'Contact Name', 1, 0, '', 100, 1, 119, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(15, 279, 'product_id', 'vtiger_faq', 1, '59', 'product_id', 'Product Name', 1, 2, '', 100, 1, 37, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(15, 280, 'faq_no', 'vtiger_faq', 1, '4', 'faq_no', 'Faq No', 1, 0, '', 100, 2, 37, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(15, 281, 'category', 'vtiger_faq', 1, '15', 'faqcategories', 'Category', 1, 2, '', 100, 4, 37, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(15, 282, 'status', 'vtiger_faq', 1, '15', 'faqstatus', 'Status', 1, 2, '', 100, 3, 37, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(15, 283, 'question', 'vtiger_faq', 1, '20', 'question', 'Question', 1, 2, '', 100, 7, 37, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(15, 284, 'answer', 'vtiger_faq', 1, '20', 'faq_answer', 'Answer', 1, 2, '', 100, 8, 37, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(15, 285, 'comments', 'vtiger_faqcomments', 1, '19', 'comments', 'Add Comment', 1, 1, '', 100, 1, 38, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(15, 286, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 5, 37, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(15, 287, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 6, 37, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(15, 288, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 7, 37, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(18, 289, 'vendorname', 'vtiger_vendor', 1, '2', 'vendorname', 'Vendor Name', 1, 0, '', 100, 1, 42, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(18, 290, 'vendor_no', 'vtiger_vendor', 1, '4', 'vendor_no', 'Vendor No', 1, 0, '', 100, 2, 42, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(18, 291, 'phone', 'vtiger_vendor', 1, '1', 'phone', 'Phone', 1, 2, '', 100, 4, 42, 1, 'V~O', 2, 2, 'BAS', 1, NULL, 0, 1, 0),
(18, 292, 'email', 'vtiger_vendor', 1, '13', 'email', 'Email', 1, 2, '', 100, 3, 42, 1, 'E~O', 2, 3, 'BAS', 1, NULL, 0, 1, 0),
(18, 293, 'website', 'vtiger_vendor', 1, '17', 'website', 'Website', 1, 2, '', 100, 6, 42, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 1, 0),
(18, 294, 'glacct', 'vtiger_vendor', 1, '15', 'glacct', 'GL Account', 1, 2, '', 100, 5, 42, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(18, 295, 'category', 'vtiger_vendor', 1, '1', 'category', 'Category', 1, 2, '', 100, 8, 42, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(18, 296, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 7, 42, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(18, 297, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 9, 42, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(18, 298, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 12, 42, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(18, 299, 'street', 'vtiger_vendor', 1, '21', 'street', 'Street', 1, 2, '', 100, 1, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 300, 'pobox', 'vtiger_vendor', 1, '1', 'pobox', 'Po Box', 1, 2, '', 100, 2, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 301, 'city', 'vtiger_vendor', 1, '1', 'city', 'City', 1, 2, '', 100, 3, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 302, 'state', 'vtiger_vendor', 1, '1', 'state', 'State', 1, 2, '', 100, 4, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 303, 'postalcode', 'vtiger_vendor', 1, '1', 'postalcode', 'Postal Code', 1, 2, '', 100, 5, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 304, 'country', 'vtiger_vendor', 1, '1', 'country', 'Country', 1, 2, '', 100, 6, 44, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(18, 305, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 45, 1, 'V~O', 1, NULL, 'ADV', 1, NULL, 0, 0, 0),
(19, 306, 'bookname', 'vtiger_pricebook', 1, '2', 'bookname', 'Price Book Name', 1, 0, '', 100, 1, 46, 1, 'V~M', 0, 1, 'BAS', 1, NULL, 1, 0, 0),
(19, 307, 'pricebook_no', 'vtiger_pricebook', 1, '4', 'pricebook_no', 'PriceBook No', 1, 0, '', 100, 3, 46, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(19, 308, 'active', 'vtiger_pricebook', 1, '56', 'active', 'Active', 1, 2, '1', 100, 2, 46, 1, 'C~O', 2, 2, 'BAS', 1, NULL, 1, 0, 0),
(19, 309, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 4, 46, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(19, 310, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 5, 46, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(19, 311, 'currency_id', 'vtiger_pricebook', 1, '117', 'currency_id', 'Currency', 1, 0, '', 100, 5, 46, 1, 'I~M', 0, 3, 'BAS', 0, NULL, 0, 0, 0),
(19, 312, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 7, 46, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(19, 313, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 48, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 314, 'quote_no', 'vtiger_quotes', 1, '4', 'quote_no', 'Quote No', 1, 0, '', 100, 2, 49, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(20, 315, 'subject', 'vtiger_quotes', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 49, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 1, 0, 0),
(20, 316, 'potentialid', 'vtiger_quotes', 1, '76', 'potential_id', 'Potential Name', 1, 2, '', 100, 7, 49, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(20, 317, 'quotestage', 'vtiger_quotes', 1, '15', 'quotestage', 'Quote Stage', 1, 2, '', 100, 4, 49, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(20, 318, 'validtill', 'vtiger_quotes', 1, '5', 'validtill', 'Valid Till', 1, 2, '', 100, 8, 49, 1, 'D~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 319, 'contactid', 'vtiger_quotes', 1, '57', 'contact_id', 'Contact Name', 1, 2, '', 100, 5, 49, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(20, 320, 'carrier', 'vtiger_quotes', 1, '15', 'carrier', 'Carrier', 1, 2, '', 100, 2, 50, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 321, 'subtotal', 'vtiger_quotes', 1, '72', 'hdnSubTotal', 'Sub Total', 1, 2, '', 100, 9, 49, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 322, 'shipping', 'vtiger_quotes', 1, '1', 'shipping', 'Shipping', 1, 2, '', 100, 9, 50, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 323, 'inventorymanager', 'vtiger_quotes', 1, '77', 'assigned_user_id1', 'Inventory Manager', 1, 2, '', 100, 10, 50, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 324, 'adjustment', 'vtiger_quotes', 1, '72', 'txtAdjustment', 'Adjustment', 1, 2, '', 100, 20, 49, 3, 'NN~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 325, 'total', 'vtiger_quotes', 1, '72', 'hdnGrandTotal', 'Total', 1, 2, '', 100, 14, 49, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(20, 326, 'taxtype', 'vtiger_quotes', 1, '16', 'hdnTaxType', 'Tax Type', 1, 2, '', 100, 14, 49, 3, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 327, 'discount_percent', 'vtiger_quotes', 1, '1', 'hdnDiscountPercent', 'Discount Percent', 1, 2, '', 100, 14, 116, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(20, 328, 'discount_amount', 'vtiger_quotes', 1, '72', 'hdnDiscountAmount', 'Discount Amount', 1, 2, '', 100, 14, 116, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(20, 329, 's_h_amount', 'vtiger_quotes', 1, '72', 'hdnS_H_Amount', 'S&H Amount', 1, 2, '', 100, 14, 49, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 330, 'accountid', 'vtiger_quotes', 1, '73', 'account_id', 'Account Name', 1, 2, '', 100, 3, 49, 1, 'I~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(20, 331, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 11, 49, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(20, 332, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 18, 49, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(20, 333, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 19, 49, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(20, 334, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 49, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0);
INSERT IGNORE INTO `vtiger_field` (`tabid`, `fieldid`, `columnname`, `tablename`, `generatedtype`, `uitype`, `fieldname`, `fieldlabel`, `readonly`, `presence`, `defaultvalue`, `maximumlength`, `sequence`, `block`, `displaytype`, `typeofdata`, `quickcreate`, `quickcreatesequence`, `info_type`, `masseditable`, `helpinfo`, `summaryfield`, `headerfield`, `isunique`) VALUES
(20, 335, 'currency_id', 'vtiger_quotes', 1, '117', 'currency_id', 'Currency', 1, 2, '1', 100, 20, 49, 3, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 336, 'conversion_rate', 'vtiger_quotes', 1, '1', 'conversion_rate', 'Conversion Rate', 1, 2, '1', 100, 21, 49, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 337, 'bill_street', 'vtiger_quotesbillads', 1, '24', 'bill_street', 'Billing Address', 1, 2, '', 100, 1, 51, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 338, 'ship_street', 'vtiger_quotesshipads', 1, '24', 'ship_street', 'Shipping Address', 1, 2, '', 100, 2, 51, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 339, 'bill_city', 'vtiger_quotesbillads', 1, '1', 'bill_city', 'Billing City', 1, 2, '', 100, 9, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 340, 'ship_city', 'vtiger_quotesshipads', 1, '1', 'ship_city', 'Shipping City', 1, 2, '', 100, 10, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 341, 'bill_state', 'vtiger_quotesbillads', 1, '1', 'bill_state', 'Billing State', 1, 2, '', 100, 7, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 342, 'ship_state', 'vtiger_quotesshipads', 1, '1', 'ship_state', 'Shipping State', 1, 2, '', 100, 8, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 343, 'bill_code', 'vtiger_quotesbillads', 1, '1', 'bill_code', 'Billing Code', 1, 2, '', 100, 11, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 344, 'ship_code', 'vtiger_quotesshipads', 1, '1', 'ship_code', 'Shipping Code', 1, 2, '', 100, 12, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 345, 'bill_country', 'vtiger_quotesbillads', 1, '1', 'bill_country', 'Billing Country', 1, 2, '', 100, 5, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 346, 'ship_country', 'vtiger_quotesshipads', 1, '1', 'ship_country', 'Shipping Country', 1, 2, '', 100, 6, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 347, 'bill_pobox', 'vtiger_quotesbillads', 1, '1', 'bill_pobox', 'Billing Po Box', 1, 2, '', 100, 18, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 348, 'ship_pobox', 'vtiger_quotesshipads', 1, '1', 'ship_pobox', 'Shipping Po Box', 1, 2, '', 100, 19, 51, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(20, 349, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 54, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(20, 350, 'terms_conditions', 'vtiger_quotes', 1, '19', 'terms_conditions', 'Terms & Conditions', 1, 2, '', 100, 2, 54, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(21, 351, 'purchaseorder_no', 'vtiger_purchaseorder', 1, '4', 'purchaseorder_no', 'PurchaseOrder No', 1, 0, '', 100, 2, 55, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(21, 352, 'subject', 'vtiger_purchaseorder', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 55, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(21, 353, 'vendorid', 'vtiger_purchaseorder', 1, '81', 'vendor_id', 'Vendor Name', 1, 0, '', 100, 3, 55, 1, 'I~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(21, 354, 'requisition_no', 'vtiger_purchaseorder', 1, '1', 'requisition_no', 'Requisition No', 1, 2, '', 100, 3, 153, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 355, 'tracking_no', 'vtiger_purchaseorder', 1, '1', 'tracking_no', 'Tracking Number', 1, 2, '', 100, 4, 153, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(21, 356, 'contactid', 'vtiger_purchaseorder', 1, '57', 'contact_id', 'Contact Name', 1, 2, '', 100, 5, 55, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(21, 357, 'duedate', 'vtiger_purchaseorder', 1, '5', 'duedate', 'Due Date', 1, 2, '', 100, 2, 153, 1, 'D~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 358, 'carrier', 'vtiger_purchaseorder', 1, '15', 'carrier', 'Carrier', 1, 2, '', 100, 5, 153, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 359, 'adjustment', 'vtiger_purchaseorder', 1, '72', 'txtAdjustment', 'Adjustment', 1, 2, '', 100, 10, 55, 3, 'NN~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 360, 'salescommission', 'vtiger_purchaseorder', 1, '1', 'salescommission', 'Sales Commission', 1, 2, '', 100, 14, 153, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 361, 'exciseduty', 'vtiger_purchaseorder', 1, '1', 'exciseduty', 'Excise Duty', 1, 2, '', 100, 15, 153, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 362, 'total', 'vtiger_purchaseorder', 1, '72', 'hdnGrandTotal', 'Total', 1, 2, '', 100, 13, 55, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(21, 363, 'subtotal', 'vtiger_purchaseorder', 1, '72', 'hdnSubTotal', 'Sub Total', 1, 2, '', 100, 14, 55, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 364, 'taxtype', 'vtiger_purchaseorder', 1, '16', 'hdnTaxType', 'Tax Type', 1, 2, '', 100, 14, 55, 3, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 365, 'discount_percent', 'vtiger_purchaseorder', 1, '1', 'hdnDiscountPercent', 'Discount Percent', 1, 2, '', 100, 14, 115, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(21, 366, 'discount_amount', 'vtiger_purchaseorder', 1, '72', 'hdnDiscountAmount', 'Discount Amount', 1, 0, '', 100, 14, 115, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(21, 367, 's_h_amount', 'vtiger_purchaseorder', 1, '72', 'hdnS_H_Amount', 'S&H Amount', 1, 2, '', 100, 14, 55, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 368, 'postatus', 'vtiger_purchaseorder', 1, '15', 'postatus', 'Status', 1, 2, '', 100, 4, 55, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(21, 369, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 10, 55, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(21, 370, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 17, 55, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(21, 371, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 18, 55, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(21, 372, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 55, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(21, 373, 'currency_id', 'vtiger_purchaseorder', 1, '117', 'currency_id', 'Currency', 1, 2, '1', 100, 19, 55, 3, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 374, 'conversion_rate', 'vtiger_purchaseorder', 1, '1', 'conversion_rate', 'Conversion Rate', 1, 2, '1', 100, 20, 55, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 375, 'bill_street', 'vtiger_pobillads', 1, '24', 'bill_street', 'Billing Address', 1, 2, '', 100, 1, 57, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 376, 'ship_street', 'vtiger_poshipads', 1, '24', 'ship_street', 'Shipping Address', 1, 2, '', 100, 2, 57, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 377, 'bill_city', 'vtiger_pobillads', 1, '1', 'bill_city', 'Billing City', 1, 2, '', 100, 9, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 378, 'ship_city', 'vtiger_poshipads', 1, '1', 'ship_city', 'Shipping City', 1, 2, '', 100, 10, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 379, 'bill_state', 'vtiger_pobillads', 1, '1', 'bill_state', 'Billing State', 1, 2, '', 100, 7, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 380, 'ship_state', 'vtiger_poshipads', 1, '1', 'ship_state', 'Shipping State', 1, 2, '', 100, 8, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 381, 'bill_code', 'vtiger_pobillads', 1, '1', 'bill_code', 'Billing Code', 1, 2, '', 100, 11, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 382, 'ship_code', 'vtiger_poshipads', 1, '1', 'ship_code', 'Shipping Code', 1, 2, '', 100, 12, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 383, 'bill_country', 'vtiger_pobillads', 1, '1', 'bill_country', 'Billing Country', 1, 2, '', 100, 5, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 384, 'ship_country', 'vtiger_poshipads', 1, '1', 'ship_country', 'Shipping Country', 1, 2, '', 100, 6, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 385, 'bill_pobox', 'vtiger_pobillads', 1, '1', 'bill_pobox', 'Billing Po Box', 1, 2, '', 100, 18, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 386, 'ship_pobox', 'vtiger_poshipads', 1, '1', 'ship_pobox', 'Shipping Po Box', 1, 2, '', 100, 19, 57, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(21, 387, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 2, 60, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(21, 388, 'terms_conditions', 'vtiger_purchaseorder', 1, '19', 'terms_conditions', 'Terms & Conditions', 1, 2, '', 100, 1, 60, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(22, 389, 'salesorder_no', 'vtiger_salesorder', 1, '4', 'salesorder_no', 'SalesOrder No', 1, 0, '', 100, 4, 61, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(22, 390, 'subject', 'vtiger_salesorder', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 61, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(22, 391, 'potentialid', 'vtiger_salesorder', 1, '76', 'potential_id', 'Potential Name', 1, 2, '', 100, 2, 61, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 392, 'customerno', 'vtiger_salesorder', 1, '1', 'customerno', 'Customer No', 1, 2, '', 100, 3, 61, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 393, 'quoteid', 'vtiger_salesorder', 1, '78', 'quote_id', 'Quote Name', 1, 2, '', 100, 5, 61, 1, 'I~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(22, 394, 'purchaseorder', 'vtiger_salesorder', 1, '1', 'vtiger_purchaseorder', 'Purchase Order', 1, 2, '', 100, 5, 61, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 395, 'contactid', 'vtiger_salesorder', 1, '57', 'contact_id', 'Contact Name', 1, 2, '', 100, 6, 61, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(22, 396, 'duedate', 'vtiger_salesorder', 1, '5', 'duedate', 'Due Date', 1, 2, '', 100, 8, 61, 1, 'D~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 397, 'carrier', 'vtiger_salesorder', 1, '15', 'carrier', 'Carrier', 1, 2, '', 100, 9, 61, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 398, 'pending', 'vtiger_salesorder', 1, '1', 'pending', 'Pending', 1, 2, '', 100, 10, 61, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 399, 'sostatus', 'vtiger_salesorder', 1, '15', 'sostatus', 'Status', 1, 2, '', 100, 11, 61, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(22, 400, 'adjustment', 'vtiger_salesorder', 1, '72', 'txtAdjustment', 'Adjustment', 1, 2, '', 100, 12, 61, 3, 'NN~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 401, 'salescommission', 'vtiger_salesorder', 1, '1', 'salescommission', 'Sales Commission', 1, 2, '', 100, 13, 61, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 402, 'exciseduty', 'vtiger_salesorder', 1, '1', 'exciseduty', 'Excise Duty', 1, 2, '', 100, 13, 61, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 403, 'total', 'vtiger_salesorder', 1, '72', 'hdnGrandTotal', 'Total', 1, 2, '', 100, 14, 61, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(22, 404, 'subtotal', 'vtiger_salesorder', 1, '72', 'hdnSubTotal', 'Sub Total', 1, 2, '', 100, 15, 61, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 405, 'taxtype', 'vtiger_salesorder', 1, '16', 'hdnTaxType', 'Tax Type', 1, 2, '', 100, 15, 61, 3, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 406, 'discount_percent', 'vtiger_salesorder', 1, '1', 'hdnDiscountPercent', 'Discount Percent', 1, 2, '', 100, 15, 114, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 407, 'discount_amount', 'vtiger_salesorder', 1, '72', 'hdnDiscountAmount', 'Discount Amount', 1, 0, '', 100, 15, 114, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 408, 's_h_amount', 'vtiger_salesorder', 1, '72', 'hdnS_H_Amount', 'S&H Amount', 1, 2, '', 100, 15, 61, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 409, 'accountid', 'vtiger_salesorder', 1, '73', 'account_id', 'Account Name', 1, 2, '', 100, 16, 61, 1, 'I~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(22, 410, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 17, 61, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(22, 411, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 18, 61, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 412, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 19, 61, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 413, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 61, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 414, 'currency_id', 'vtiger_salesorder', 1, '117', 'currency_id', 'Currency', 1, 2, '1', 100, 20, 61, 3, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 415, 'conversion_rate', 'vtiger_salesorder', 1, '1', 'conversion_rate', 'Conversion Rate', 1, 2, '1', 100, 21, 61, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 416, 'bill_street', 'vtiger_sobillads', 1, '24', 'bill_street', 'Billing Address', 1, 2, '', 100, 1, 63, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 417, 'ship_street', 'vtiger_soshipads', 1, '24', 'ship_street', 'Shipping Address', 1, 2, '', 100, 2, 63, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 418, 'bill_city', 'vtiger_sobillads', 1, '1', 'bill_city', 'Billing City', 1, 2, '', 100, 5, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 419, 'ship_city', 'vtiger_soshipads', 1, '1', 'ship_city', 'Shipping City', 1, 2, '', 100, 6, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 420, 'bill_state', 'vtiger_sobillads', 1, '1', 'bill_state', 'Billing State', 1, 2, '', 100, 7, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 421, 'ship_state', 'vtiger_soshipads', 1, '1', 'ship_state', 'Shipping State', 1, 2, '', 100, 8, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 422, 'bill_code', 'vtiger_sobillads', 1, '1', 'bill_code', 'Billing Code', 1, 2, '', 100, 9, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 423, 'ship_code', 'vtiger_soshipads', 1, '1', 'ship_code', 'Shipping Code', 1, 2, '', 100, 10, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 424, 'bill_country', 'vtiger_sobillads', 1, '1', 'bill_country', 'Billing Country', 1, 2, '', 100, 11, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 425, 'ship_country', 'vtiger_soshipads', 1, '1', 'ship_country', 'Shipping Country', 1, 2, '', 100, 12, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 426, 'bill_pobox', 'vtiger_sobillads', 1, '1', 'bill_pobox', 'Billing Po Box', 1, 2, '', 100, 3, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 427, 'ship_pobox', 'vtiger_soshipads', 1, '1', 'ship_pobox', 'Shipping Po Box', 1, 2, '', 100, 4, 63, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(22, 428, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 66, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(22, 429, 'terms_conditions', 'vtiger_salesorder', 1, '19', 'terms_conditions', 'Terms & Conditions', 1, 2, '', 100, 1, 65, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(22, 430, 'enable_recurring', 'vtiger_salesorder', 1, '56', 'enable_recurring', 'Enable Recurring', 1, 0, '', 100, 1, 85, 1, 'C~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 431, 'recurring_frequency', 'vtiger_invoice_recurring_info', 1, '16', 'recurring_frequency', 'Frequency', 1, 0, '', 100, 2, 85, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 432, 'start_period', 'vtiger_invoice_recurring_info', 1, '5', 'start_period', 'Start Period', 1, 0, '', 100, 3, 85, 1, 'D~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 433, 'end_period', 'vtiger_invoice_recurring_info', 1, '5', 'end_period', 'End Period', 1, 0, '', 100, 4, 85, 1, 'D~O~OTH~G~start_period~Start Period', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 434, 'payment_duration', 'vtiger_invoice_recurring_info', 1, '16', 'payment_duration', 'Payment Duration', 1, 0, '', 100, 5, 85, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(22, 435, 'invoice_status', 'vtiger_invoice_recurring_info', 1, '15', 'invoicestatus', 'Invoice Status', 1, 0, '', 100, 6, 85, 1, 'V~M', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 436, 'subject', 'vtiger_invoice', 1, '2', 'subject', 'Subject', 1, 0, '', 100, 1, 67, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(23, 437, 'salesorderid', 'vtiger_invoice', 1, '80', 'salesorder_id', 'Sales Order', 1, 2, '', 100, 2, 67, 1, 'I~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(23, 438, 'customerno', 'vtiger_invoice', 1, '1', 'customerno', 'Customer No', 1, 2, '', 100, 3, 67, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 439, 'contactid', 'vtiger_invoice', 1, '57', 'contact_id', 'Contact Name', 1, 2, '', 100, 4, 67, 1, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(23, 440, 'invoicedate', 'vtiger_invoice', 1, '5', 'invoicedate', 'Invoice Date', 1, 2, '', 100, 5, 67, 1, 'D~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 441, 'duedate', 'vtiger_invoice', 1, '5', 'duedate', 'Due Date', 1, 2, '', 100, 6, 67, 1, 'D~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 442, 'purchaseorder', 'vtiger_invoice', 1, '1', 'vtiger_purchaseorder', 'Purchase Order', 1, 2, '', 100, 8, 67, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 443, 'adjustment', 'vtiger_invoice', 1, '72', 'txtAdjustment', 'Adjustment', 1, 2, '', 100, 9, 67, 3, 'NN~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 444, 'salescommission', 'vtiger_invoice', 1, '1', 'salescommission', 'Sales Commission', 1, 2, '', 10, 13, 67, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 445, 'exciseduty', 'vtiger_invoice', 1, '1', 'exciseduty', 'Excise Duty', 1, 2, '', 100, 11, 67, 1, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 446, 'subtotal', 'vtiger_invoice', 1, '72', 'hdnSubTotal', 'Sub Total', 1, 2, '', 100, 12, 67, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 447, 'total', 'vtiger_invoice', 1, '72', 'hdnGrandTotal', 'Total', 1, 2, '', 100, 13, 67, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 1, 0, 0),
(23, 448, 'taxtype', 'vtiger_invoice', 1, '16', 'hdnTaxType', 'Tax Type', 1, 2, '', 100, 13, 67, 3, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 449, 'discount_percent', 'vtiger_invoice', 1, '1', 'hdnDiscountPercent', 'Discount Percent', 1, 2, '', 100, 13, 113, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 450, 'discount_amount', 'vtiger_invoice', 1, '72', 'hdnDiscountAmount', 'Discount Amount', 1, 2, '', 100, 13, 113, 5, 'N~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 451, 's_h_amount', 'vtiger_invoice', 1, '72', 'hdnS_H_Amount', 'S&H Amount', 1, 2, '', 100, 14, 69, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 452, 'accountid', 'vtiger_invoice', 1, '73', 'account_id', 'Account Name', 1, 2, '', 100, 14, 67, 1, 'I~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(23, 453, 'invoicestatus', 'vtiger_invoice', 1, '15', 'invoicestatus', 'Status', 1, 2, '', 100, 15, 67, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(23, 454, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 16, 67, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 1, 0),
(23, 455, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 17, 67, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 456, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 18, 67, 2, 'DT~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 457, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 22, 67, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(23, 458, 'currency_id', 'vtiger_invoice', 1, '117', 'currency_id', 'Currency', 1, 2, '1', 100, 19, 67, 3, 'I~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 459, 'conversion_rate', 'vtiger_invoice', 1, '1', 'conversion_rate', 'Conversion Rate', 1, 2, '1', 100, 20, 67, 3, 'N~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 460, 'bill_street', 'vtiger_invoicebillads', 1, '24', 'bill_street', 'Billing Address', 1, 2, '', 100, 1, 69, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 461, 'ship_street', 'vtiger_invoiceshipads', 1, '24', 'ship_street', 'Shipping Address', 1, 2, '', 100, 2, 69, 1, 'V~M', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 462, 'bill_city', 'vtiger_invoicebillads', 1, '1', 'bill_city', 'Billing City', 1, 2, '', 100, 5, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 463, 'ship_city', 'vtiger_invoiceshipads', 1, '1', 'ship_city', 'Shipping City', 1, 2, '', 100, 6, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 464, 'bill_state', 'vtiger_invoicebillads', 1, '1', 'bill_state', 'Billing State', 1, 2, '', 100, 7, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 465, 'ship_state', 'vtiger_invoiceshipads', 1, '1', 'ship_state', 'Shipping State', 1, 2, '', 100, 8, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 466, 'bill_code', 'vtiger_invoicebillads', 1, '1', 'bill_code', 'Billing Code', 1, 2, '', 100, 9, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 467, 'ship_code', 'vtiger_invoiceshipads', 1, '1', 'ship_code', 'Shipping Code', 1, 2, '', 100, 10, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 468, 'bill_country', 'vtiger_invoicebillads', 1, '1', 'bill_country', 'Billing Country', 1, 2, '', 100, 11, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 469, 'ship_country', 'vtiger_invoiceshipads', 1, '1', 'ship_country', 'Shipping Country', 1, 2, '', 100, 12, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 470, 'bill_pobox', 'vtiger_invoicebillads', 1, '1', 'bill_pobox', 'Billing Po Box', 1, 2, '', 100, 3, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 471, 'ship_pobox', 'vtiger_invoiceshipads', 1, '1', 'ship_pobox', 'Shipping Po Box', 1, 2, '', 100, 4, 69, 1, 'V~O', 3, NULL, 'BAS', 1, NULL, 0, 0, 0),
(23, 472, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 72, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(23, 473, 'terms_conditions', 'vtiger_invoice', 1, '19', 'terms_conditions', 'Terms & Conditions', 1, 2, '', 100, 1, 71, 1, 'V~O', 3, NULL, 'ADV', 1, NULL, 0, 0, 0),
(23, 474, 'invoice_no', 'vtiger_invoice', 1, '4', 'invoice_no', 'Invoice No', 1, 0, '', 100, 3, 67, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 1, 0, 0),
(29, 475, 'user_name', 'vtiger_users', 1, '106', 'user_name', 'User Name', 1, 0, '', 11, 1, 77, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 476, 'is_admin', 'vtiger_users', 1, '156', 'is_admin', 'Admin', 1, 0, '', 3, 7, 77, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 477, 'user_password', 'vtiger_users', 1, '99', 'user_password', 'Password', 1, 0, '', 30, 5, 77, 4, 'P~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 478, 'confirm_password', 'vtiger_users', 1, '99', 'confirm_password', 'Confirm Password', 1, 0, '', 30, 6, 77, 4, 'P~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 479, 'first_name', 'vtiger_users', 1, '1', 'first_name', 'First Name', 1, 0, '', 30, 3, 77, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 480, 'last_name', 'vtiger_users', 1, '2', 'last_name', 'Last Name', 1, 0, '', 30, 4, 77, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 481, 'roleid', 'vtiger_user2role', 1, '98', 'roleid', 'Role', 1, 0, '', 200, 8, 77, 1, 'V~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 482, 'email1', 'vtiger_users', 1, '104', 'email1', 'Email', 1, 0, '', 100, 2, 77, 1, 'E~M', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 483, 'status', 'vtiger_users', 1, '115', 'status', 'Status', 1, 0, 'Active', 100, 10, 77, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 484, 'activity_view', 'vtiger_users', 1, '16', 'activity_view', 'Default Activity View', 1, 0, '', 100, 6, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 485, 'lead_view', 'vtiger_users', 1, '16', 'lead_view', 'Default Lead View', 1, 0, '', 100, 9, 77, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 486, 'hour_format', 'vtiger_users', 1, '16', 'hour_format', 'Calendar Hour Format', 1, 0, '12', 100, 4, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 487, 'end_hour', 'vtiger_users', 1, '116', 'end_hour', 'Day ends at', 1, 0, '', 100, 11, 77, 3, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 488, 'start_hour', 'vtiger_users', 1, '16', 'start_hour', 'Day starts at', 1, 0, '', 100, 2, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 489, 'is_owner', 'vtiger_users', 1, '1', 'is_owner', 'Account Owner', 0, 2, '0', 100, 12, 77, 5, 'V~O', 0, 1, 'BAS', 0, NULL, 0, 0, 0),
(29, 490, 'title', 'vtiger_users', 1, '1', 'title', 'Title', 1, 0, '', 50, 1, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 491, 'phone_work', 'vtiger_users', 1, '11', 'phone_work', 'Office Phone', 1, 0, '', 50, 5, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 492, 'department', 'vtiger_users', 1, '1', 'department', 'Department', 1, 0, '', 50, 3, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 493, 'phone_mobile', 'vtiger_users', 1, '11', 'phone_mobile', 'Mobile', 1, 0, '', 50, 7, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 494, 'reports_to_id', 'vtiger_users', 1, '101', 'reports_to_id', 'Reports To', 1, 0, '', 50, 8, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 495, 'phone_other', 'vtiger_users', 1, '11', 'phone_other', 'Other Phone', 1, 0, '', 50, 11, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 496, 'email2', 'vtiger_users', 1, '13', 'email2', 'Other Email', 1, 0, '', 100, 4, 79, 1, 'E~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 497, 'phone_fax', 'vtiger_users', 1, '11', 'phone_fax', 'Fax', 1, 0, '', 50, 2, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 498, 'secondaryemail', 'vtiger_users', 1, '13', 'secondaryemail', 'Secondary Email', 1, 0, '', 100, 6, 79, 1, 'E~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 499, 'phone_home', 'vtiger_users', 1, '11', 'phone_home', 'Home Phone', 1, 0, '', 50, 9, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 500, 'date_format', 'vtiger_users', 1, '16', 'date_format', 'Date Format', 1, 0, '', 30, 3, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 501, 'signature', 'vtiger_users', 1, '21', 'signature', 'Signature', 1, 0, '', 250, 13, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 502, 'description', 'vtiger_users', 1, '21', 'description', 'Documents', 1, 0, '', 250, 14, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 503, 'address_street', 'vtiger_users', 1, '21', 'address_street', 'Street Address', 1, 0, '', 250, 1, 80, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 504, 'address_city', 'vtiger_users', 1, '1', 'address_city', 'City', 1, 0, '', 100, 3, 80, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 505, 'address_state', 'vtiger_users', 1, '1', 'address_state', 'State', 1, 0, '', 100, 5, 80, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 506, 'address_postalcode', 'vtiger_users', 1, '1', 'address_postalcode', 'Postal Code', 1, 0, '', 100, 4, 80, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 507, 'address_country', 'vtiger_users', 1, '1', 'address_country', 'Country', 1, 0, '', 100, 2, 80, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 508, 'accesskey', 'vtiger_users', 1, '3', 'accesskey', 'Webservice Access Key', 1, 0, '', 100, 2, 83, 2, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 509, 'time_zone', 'vtiger_users', 1, '16', 'time_zone', 'Time Zone', 1, 0, '', 200, 5, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 510, 'currency_id', 'vtiger_users', 1, '117', 'currency_id', 'Currency', 1, 0, '', 100, 1, 78, 1, 'I~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 511, 'currency_grouping_pattern', 'vtiger_users', 1, '16', 'currency_grouping_pattern', 'Digit Grouping Pattern', 1, 0, '', 100, 2, 78, 1, 'V~O', 1, NULL, 'BAS', 1, '<b>Currency - Digit Grouping Pattern</b> <br/><br/>This pattern specifies the format in which the currency separator will be placed.', 0, 0, 0),
(29, 512, 'currency_decimal_separator', 'vtiger_users', 1, '16', 'currency_decimal_separator', 'Decimal Separator', 1, 0, '.', 2, 3, 78, 1, 'V~O', 1, NULL, 'BAS', 1, '<b>Currency - Decimal Separator</b> <br/><br/>Decimal separator specifies the separator to be used to separate the fractional values from the whole number part. <br/><b>Eg:</b> <br/>. => 123.45 <br/>, => 123,45 <br/>\' => 123\'45 <br/>  => 123 45 <br/>$ => 123$45 <br/>', 0, 0, 0),
(29, 513, 'currency_grouping_separator', 'vtiger_users', 1, '16', 'currency_grouping_separator', 'Digit Grouping Separator', 1, 0, ',', 2, 4, 78, 1, 'V~O', 1, NULL, 'BAS', 1, '<b>Currency - Grouping Separator</b> <br/><br/>Grouping separator specifies the separator to be used to group the whole number part into hundreds, thousands etc. <br/><b>Eg:</b> <br/>. => 123.456.789 <br/>, => 123,456,789 <br/>\' => 123\'456\'789 <br/>  => 123 456 789 <br/>$ => 123$456$789 <br/>', 0, 0, 0),
(29, 514, 'currency_symbol_placement', 'vtiger_users', 1, '16', 'currency_symbol_placement', 'Symbol Placement', 1, 0, '', 20, 5, 78, 1, 'V~O', 1, NULL, 'BAS', 1, '<b>Currency - Symbol Placement</b> <br/><br/>Symbol Placement allows you to configure the position of the currency symbol with respect to the currency value.<br/><b>Eg:</b> <br/>$1.0 => $123,456,789.50 <br/>1.0$ => 123,456,789.50$ <br/>', 0, 0, 0),
(29, 515, 'imagename', 'vtiger_users', 1, '105', 'imagename', 'User Image', 1, 0, '', 250, 10, 82, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 516, 'internal_mailer', 'vtiger_users', 1, '56', 'internal_mailer', 'INTERNAL_MAIL_COMPOSER', 1, 0, '', 50, 15, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 517, 'theme', 'vtiger_users', 1, '31', 'theme', 'Theme', 1, 0, 'softed', 100, 16, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 518, 'language', 'vtiger_users', 1, '32', 'language', 'Language', 1, 0, 'en_us', 100, 17, 79, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(29, 519, 'reminder_interval', 'vtiger_users', 1, '16', 'reminder_interval', 'Reminder Interval', 1, 0, '', 100, 11, 118, 1, 'V~O', 1, NULL, 'BAS', 1, NULL, 0, 0, 0),
(10, 520, 'from_email', 'vtiger_emaildetails', 1, '12', 'from_email', 'From', 1, 2, '', 100, 1, 21, 3, 'V~M', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 521, 'to_email', 'vtiger_emaildetails', 1, '8', 'saved_toid', 'To', 1, 2, '', 100, 2, 21, 1, 'V~M', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 522, 'cc_email', 'vtiger_emaildetails', 1, '8', 'ccmail', 'CC', 1, 2, '', 1000, 3, 21, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 523, 'bcc_email', 'vtiger_emaildetails', 1, '8', 'bccmail', 'BCC', 1, 2, '', 1000, 4, 21, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 524, 'idlists', 'vtiger_emaildetails', 1, '357', 'parent_id', 'Parent ID', 1, 2, '', 1000, 5, 21, 1, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(10, 525, 'email_flag', 'vtiger_emaildetails', 1, '16', 'email_flag', 'Email Flag', 1, 2, '', 1000, 6, 21, 3, 'V~O', 3, NULL, 'BAS', 0, NULL, 0, 0, 0),
(34, 526, 'direction', 'vtiger_pbxmanager', 1, '1', 'direction', 'Direction', 1, 2, '', 100, 1, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 527, 'callstatus', 'vtiger_pbxmanager', 1, '1', 'callstatus', 'Call Status', 1, 2, '', 100, 2, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(34, 528, 'starttime', 'vtiger_pbxmanager', 1, '70', 'starttime', 'Start Time', 1, 2, '', 100, 7, 88, 1, 'DT~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(34, 529, 'endtime', 'vtiger_pbxmanager', 1, '70', 'endtime', 'End Time', 1, 2, '', 100, 8, 88, 1, 'DT~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 530, 'totalduration', 'vtiger_pbxmanager', 1, '7', 'totalduration', 'Total Duration', 1, 2, '', 100, 10, 88, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 531, 'billduration', 'vtiger_pbxmanager', 1, '7', 'billduration', 'Bill Duration', 1, 2, '', 100, 11, 88, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 532, 'recordingurl', 'vtiger_pbxmanager', 1, '17', 'recordingurl', 'Recording URL', 1, 2, '', 100, 9, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(34, 533, 'sourceuuid', 'vtiger_pbxmanager', 1, '1', 'sourceuuid', 'Source UUID', 1, 2, '', 100, 12, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 534, 'gateway', 'vtiger_pbxmanager', 1, '1', 'gateway', 'Gateway', 1, 2, '', 100, 13, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 535, 'customer', 'vtiger_pbxmanager', 1, '10', 'customer', 'Customer', 1, 2, '', 100, 3, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(34, 536, 'user', 'vtiger_pbxmanager', 1, '52', 'user', 'User', 1, 2, '', 100, 4, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(34, 537, 'customernumber', 'vtiger_pbxmanager', 1, '11', 'customernumber', 'Customer Number', 1, 2, '', 100, 5, 88, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 538, 'customertype', 'vtiger_pbxmanager', 1, '1', 'customertype', 'Customer Type', 1, 2, '', 100, 6, 88, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 539, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 14, 88, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(34, 540, 'createdtime', 'vtiger_crmentity', 1, '70', 'CreatedTime', 'Created Time', 1, 2, '', 100, 15, 88, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(34, 541, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'ModifiedTime', 'Modified Time', 1, 2, '', 100, 16, 88, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(34, 542, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 17, 88, 2, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(29, 543, 'phone_crm_extension', 'vtiger_users', 1, '11', 'phone_crm_extension', 'CRM Phone Extension', 1, 2, '', 100, 18, 79, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(35, 544, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 4, 89, 1, 'V~M', 2, 2, 'BAS', 1, '', 1, 0, 0),
(35, 545, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 17, 89, 2, 'DT~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 546, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 18, 89, 2, 'DT~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 547, 'start_date', 'vtiger_servicecontracts', 1, '5', 'start_date', 'Start Date', 1, 2, '', 100, 7, 89, 1, 'D~O', 2, 4, 'BAS', 1, '', 0, 0, 0),
(35, 548, 'end_date', 'vtiger_servicecontracts', 1, '5', 'end_date', 'End Date', 1, 2, '', 100, 11, 89, 2, 'D~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 549, 'sc_related_to', 'vtiger_servicecontracts', 1, '10', 'sc_related_to', 'Related to', 1, 2, '', 100, 3, 89, 1, 'V~O', 2, 6, 'BAS', 1, '', 0, 0, 0),
(35, 550, 'tracking_unit', 'vtiger_servicecontracts', 1, '15', 'tracking_unit', 'Tracking Unit', 1, 2, '', 100, 6, 89, 1, 'V~O', 2, 7, 'BAS', 1, '', 0, 0, 0),
(35, 551, 'total_units', 'vtiger_servicecontracts', 1, '7', 'total_units', 'Total Units', 1, 2, '', 100, 8, 89, 1, 'NN~O', 2, 8, 'BAS', 1, '', 1, 0, 0),
(35, 552, 'used_units', 'vtiger_servicecontracts', 1, '7', 'used_units', 'Used Units', 1, 2, '', 100, 10, 89, 1, 'NN~O', 2, 9, 'BAS', 1, '', 1, 0, 0),
(35, 553, 'subject', 'vtiger_servicecontracts', 1, '1', 'subject', 'Subject', 1, 0, '', 100, 1, 89, 1, 'V~M', 0, 1, 'BAS', 1, '', 1, 0, 0),
(35, 554, 'due_date', 'vtiger_servicecontracts', 1, '23', 'due_date', 'Due date', 1, 2, '', 100, 9, 89, 1, 'D~O', 2, 5, 'BAS', 1, '', 0, 0, 0),
(35, 555, 'planned_duration', 'vtiger_servicecontracts', 1, '1', 'planned_duration', 'Planned Duration', 1, 2, '', 100, 13, 89, 2, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 556, 'actual_duration', 'vtiger_servicecontracts', 1, '1', 'actual_duration', 'Actual Duration', 1, 2, '', 100, 15, 89, 2, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 557, 'contract_status', 'vtiger_servicecontracts', 1, '15', 'contract_status', 'Status', 1, 2, '', 100, 12, 89, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(35, 558, 'priority', 'vtiger_servicecontracts', 1, '15', 'contract_priority', 'Priority', 1, 2, '', 100, 14, 89, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(35, 559, 'contract_type', 'vtiger_servicecontracts', 1, '15', 'contract_type', 'Type', 1, 2, '', 100, 5, 89, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(35, 560, 'progress', 'vtiger_servicecontracts', 1, '9', 'progress', 'Progress', 1, 2, '', 100, 16, 89, 2, 'N~O~2~2', 3, 3, 'BAS', 0, '', 0, 0, 0),
(35, 561, 'contract_no', 'vtiger_servicecontracts', 1, '4', 'contract_no', 'Contract No', 1, 0, '', 100, 2, 89, 1, 'V~O', 3, 0, 'BAS', 0, '', 1, 0, 0),
(35, 562, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 17, 89, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(35, 563, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 19, 89, 2, 'V~O', 3, 10, 'BAS', 0, '', 0, 0, 0),
(35, 564, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 20, 89, 6, 'C~O', 3, 11, 'BAS', 0, '', 0, 0, 0),
(35, 565, 'tags', 'vtiger_servicecontracts', 1, '1', 'tags', 'tags', 1, 2, '', 100, 21, 89, 6, 'V~O', 3, 12, 'BAS', 0, '', 0, 0, 0),
(36, 566, 'servicename', 'vtiger_service', 1, '2', 'servicename', 'Service Name', 1, 0, '', 100, 1, 91, 1, 'V~M', 0, 1, 'BAS', 1, '', 1, 0, 0),
(36, 567, 'service_no', 'vtiger_service', 1, '4', 'service_no', 'Service No', 1, 0, '', 100, 2, 91, 1, 'V~O', 3, 0, 'BAS', 0, '', 1, 0, 0),
(36, 568, 'discontinued', 'vtiger_service', 1, '56', 'discontinued', 'Service Active', 1, 2, '1', 100, 4, 91, 1, 'V~O', 2, 3, 'BAS', 1, '', 0, 0, 0),
(36, 569, 'sales_start_date', 'vtiger_service', 1, '5', 'sales_start_date', 'Sales Start Date', 1, 2, '', 100, 9, 91, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 570, 'sales_end_date', 'vtiger_service', 1, '5', 'sales_end_date', 'Sales End Date', 1, 2, '', 100, 10, 91, 1, 'D~O~OTH~GE~sales_start_date~Sales Start Date', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 571, 'start_date', 'vtiger_service', 1, '5', 'start_date', 'Support Start Date', 1, 2, '', 100, 11, 91, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 572, 'expiry_date', 'vtiger_service', 1, '5', 'expiry_date', 'Support Expiry Date', 1, 2, '', 100, 12, 91, 1, 'D~O~OTH~GE~start_date~Start Date', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 573, 'website', 'vtiger_service', 1, '17', 'website', 'Website', 1, 2, '', 100, 6, 91, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 574, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 13, 91, 2, 'DT~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(36, 575, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 14, 91, 2, 'DT~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(36, 576, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 16, 91, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(36, 577, 'service_usageunit', 'vtiger_service', 1, '15', 'service_usageunit', 'Usage Unit', 1, 2, '', 100, 3, 91, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 578, 'qty_per_unit', 'vtiger_service', 1, '1', 'qty_per_unit', 'No of Units', 1, 2, '', 100, 5, 91, 1, 'N~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(36, 579, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Owner', 1, 0, '', 100, 8, 91, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 580, 'servicecategory', 'vtiger_service', 1, '15', 'servicecategory', 'Service Category', 1, 2, '', 100, 7, 91, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 581, 'unit_price', 'vtiger_service', 1, '72', 'unit_price', 'Price', 1, 0, '', 100, 1, 92, 1, 'N~O', 2, 2, 'BAS', 0, '', 1, 0, 0),
(36, 582, 'taxclass', 'vtiger_service', 1, '83', 'taxclass', 'Taxes', 1, 2, '', 100, 4, 92, 1, 'V~O', 2, 0, 'BAS', 1, '', 0, 0, 0),
(36, 583, 'commissionrate', 'vtiger_service', 1, '9', 'commissionrate', 'Commission Rate', 1, 2, '', 100, 2, 92, 1, 'N~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(36, 584, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 94, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 585, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 17, 91, 2, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(36, 586, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 18, 91, 6, 'C~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(36, 587, 'tags', 'vtiger_service', 1, '1', 'tags', 'tags', 1, 2, '', 100, 19, 91, 6, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(38, 588, 'asset_no', 'vtiger_assets', 1, '4', 'asset_no', 'Asset No', 1, 0, '', 100, 2, 95, 1, 'V~O', 3, 0, 'BAS', 0, '\n					', 1, 0, 0),
(38, 589, 'product', 'vtiger_assets', 1, '10', 'product', 'Product Name', 1, 2, '', 100, 3, 95, 1, 'V~M', 0, 3, 'BAS', 1, '\n					', 1, 0, 0),
(38, 590, 'serialnumber', 'vtiger_assets', 1, '2', 'serialnumber', 'Serial Number', 1, 2, '', 100, 4, 95, 1, 'V~M', 0, 5, 'BAS', 1, '\n					', 0, 0, 0),
(38, 591, 'datesold', 'vtiger_assets', 1, '5', 'datesold', 'Date Sold', 1, 2, '', 100, 5, 95, 1, 'D~M~OTH~GE~datesold~Date Sold', 0, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 592, 'dateinservice', 'vtiger_assets', 1, '5', 'dateinservice', 'Date in Service', 1, 2, '', 100, 6, 95, 1, 'D~M~OTH~GE~dateinservice~Date in Service', 0, 4, 'BAS', 1, '\n					', 0, 0, 0),
(38, 593, 'assetstatus', 'vtiger_assets', 1, '15', 'assetstatus', 'Status', 1, 2, '', 100, 7, 95, 1, 'V~M', 0, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 594, 'tagnumber', 'vtiger_assets', 1, '2', 'tagnumber', 'Tag Number', 1, 2, '', 100, 8, 95, 1, 'V~O', 1, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 595, 'invoiceid', 'vtiger_assets', 1, '10', 'invoiceid', 'Invoice Name', 1, 2, '', 100, 9, 95, 1, 'V~O', 1, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 596, 'shippingmethod', 'vtiger_assets', 1, '2', 'shippingmethod', 'Shipping Method', 1, 2, '', 100, 10, 95, 1, 'V~O', 1, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 597, 'shippingtrackingnumber', 'vtiger_assets', 1, '2', 'shippingtrackingnumber', 'Shipping Tracking Number', 1, 2, '', 100, 11, 95, 1, 'V~O', 1, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 598, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 4, 95, 1, 'V~M', 0, 2, 'BAS', 1, '\n					', 0, 0, 0),
(38, 599, 'assetname', 'vtiger_assets', 1, '1', 'assetname', 'Asset Name', 1, 0, '', 100, 12, 95, 1, 'V~M', 0, 6, 'BAS', 1, '\n					', 1, 0, 0),
(38, 600, 'account', 'vtiger_assets', 1, '10', 'account', 'Customer Name', 1, 2, '', 100, 13, 95, 1, 'V~M', 0, 0, 'BAS', 1, '\n					', 1, 0, 0),
(38, 601, 'contact', 'vtiger_assets', 1, '10', 'contact', 'Contact Name', 1, 2, '', 100, 14, 95, 1, 'V~O', 0, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 602, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 14, 95, 2, 'DT~O', 3, 0, 'BAS', 0, '\n					', 0, 0, 0),
(38, 603, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 15, 95, 2, 'DT~O', 3, 0, 'BAS', 0, '\n					', 0, 0, 0),
(38, 604, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 16, 95, 3, 'V~O', 3, 0, 'BAS', 0, '\n					', 0, 0, 0),
(38, 605, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Notes', 1, 2, '', 100, 1, 97, 1, 'V~O', 1, 0, 'BAS', 1, '\n					', 0, 0, 0),
(38, 606, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 17, 95, 2, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(38, 607, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 18, 95, 6, 'C~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(38, 608, 'tags', 'vtiger_assets', 1, '1', 'tags', 'tags', 1, 2, '', 100, 19, 95, 6, 'V~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(42, 609, 'commentcontent', 'vtiger_modcomments', 1, '19', 'commentcontent', 'Comment', 1, 0, '', 100, 4, 98, 1, 'V~M', 0, 4, 'BAS', 2, '', 1, 0, 0),
(42, 610, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 1, 99, 1, 'V~M', 0, 1, 'BAS', 2, '', 1, 0, 0),
(42, 611, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 5, 99, 2, 'DT~O', 0, 2, 'BAS', 0, '', 0, 0, 0),
(42, 612, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 6, 99, 2, 'DT~O', 0, 3, 'BAS', 0, '', 0, 0, 0),
(42, 613, 'related_to', 'vtiger_modcomments', 1, '10', 'related_to', 'Related To', 1, 2, '', 100, 2, 99, 1, 'V~M', 2, 5, 'BAS', 2, '', 0, 0, 0),
(42, 614, 'smcreatorid', 'vtiger_crmentity', 1, '52', 'creator', 'Creator', 1, 2, '', 100, 4, 99, 2, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 615, 'parent_comments', 'vtiger_modcomments', 1, '10', 'parent_comments', 'Related To Comments', 1, 2, '', 100, 7, 99, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 616, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 5, 98, 2, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(43, 617, 'projectmilestonename', 'vtiger_projectmilestone', 1, '2', 'projectmilestonename', 'Project Milestone Name', 1, 2, '', 100, 1, 101, 1, 'V~M', 0, 1, 'BAS', 1, '', 1, 0, 0),
(43, 618, 'projectmilestonedate', 'vtiger_projectmilestone', 1, '5', 'projectmilestonedate', 'Milestone Date', 1, 2, '', 100, 5, 101, 1, 'D~O', 0, 3, 'BAS', 1, '', 1, 0, 0),
(43, 619, 'projectid', 'vtiger_projectmilestone', 1, '10', 'projectid', 'Related to', 1, 0, '', 100, 4, 101, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(43, 620, 'projectmilestonetype', 'vtiger_projectmilestone', 1, '15', 'projectmilestonetype', 'Type', 1, 2, '', 100, 7, 101, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(43, 621, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 6, 101, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(43, 622, 'projectmilestone_no', 'vtiger_projectmilestone', 2, '4', 'projectmilestone_no', 'Project Milestone No', 1, 0, '', 100, 2, 101, 1, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(43, 623, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 1, 102, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(43, 624, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 2, 102, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(43, 625, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 3, 102, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(43, 626, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 103, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(43, 627, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 8, 101, 2, 'V~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(43, 628, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 9, 101, 6, 'C~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(43, 629, 'tags', 'vtiger_projectmilestone', 1, '1', 'tags', 'tags', 1, 2, '', 100, 10, 101, 6, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(44, 630, 'projecttaskname', 'vtiger_projecttask', 1, '2', 'projecttaskname', 'Project Task Name', 1, 2, '', 100, 1, 104, 1, 'V~M', 0, 1, 'BAS', 1, '', 1, 0, 0),
(44, 631, 'projecttasktype', 'vtiger_projecttask', 1, '15', 'projecttasktype', 'Type', 1, 2, '', 100, 4, 104, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(44, 632, 'projecttaskpriority', 'vtiger_projecttask', 1, '15', 'projecttaskpriority', 'Priority', 1, 2, '', 100, 3, 104, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(44, 633, 'projectid', 'vtiger_projecttask', 1, '10', 'projectid', 'Related to', 1, 0, '', 100, 6, 104, 1, 'V~M', 0, 5, 'BAS', 1, '', 0, 0, 0),
(44, 634, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 7, 104, 1, 'V~M', 0, 2, 'BAS', 1, '', 1, 0, 0),
(44, 635, 'projecttasknumber', 'vtiger_projecttask', 1, '7', 'projecttasknumber', 'Project Task Number', 1, 2, '', 100, 5, 104, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(44, 636, 'projecttask_no', 'vtiger_projecttask', 2, '4', 'projecttask_no', 'Project Task No', 1, 0, '', 100, 2, 104, 1, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(44, 637, 'projecttaskprogress', 'vtiger_projecttask', 1, '15', 'projecttaskprogress', 'Progress', 1, 2, '', 100, 1, 105, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(44, 638, 'projecttaskhours', 'vtiger_projecttask', 1, '7', 'projecttaskhours', 'Worked Hours', 1, 2, '', 100, 2, 105, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(44, 639, 'startdate', 'vtiger_projecttask', 1, '5', 'startdate', 'Start Date', 1, 2, '', 100, 3, 105, 1, 'D~O', 0, 3, 'BAS', 1, '', 1, 0, 0),
(44, 640, 'enddate', 'vtiger_projecttask', 1, '5', 'enddate', 'End Date', 1, 2, '', 100, 4, 105, 1, 'D~O~OTH~GE~startdate~Start Date', 1, 0, 'BAS', 1, '', 1, 0, 0),
(44, 641, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 5, 105, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(44, 642, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 6, 105, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(44, 643, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 7, 105, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(44, 644, 'description', 'vtiger_crmentity', 1, '19', 'description', 'description', 1, 2, '', 100, 1, 106, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(44, 645, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 8, 104, 2, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(44, 646, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 9, 104, 6, 'C~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(44, 647, 'tags', 'vtiger_projecttask', 1, '1', 'tags', 'tags', 1, 2, '', 100, 10, 104, 6, 'V~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(45, 648, 'projectname', 'vtiger_project', 1, '2', 'projectname', 'Project Name', 1, 2, '', 100, 1, 107, 1, 'V~M', 0, 1, 'BAS', 1, '', 1, 0, 0),
(45, 649, 'startdate', 'vtiger_project', 1, '23', 'startdate', 'Start Date', 1, 2, '', 100, 3, 107, 1, 'D~O', 0, 3, 'BAS', 1, '', 1, 0, 0),
(45, 650, 'targetenddate', 'vtiger_project', 1, '23', 'targetenddate', 'Target End Date', 1, 2, '', 100, 5, 107, 1, 'D~O~OTH~GE~startdate~Start Date', 0, 4, 'BAS', 1, '', 1, 0, 0),
(45, 651, 'actualenddate', 'vtiger_project', 1, '23', 'actualenddate', 'Actual End Date', 1, 2, '', 100, 6, 107, 1, 'D~O~OTH~GE~startdate~Start Date', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 652, 'projectstatus', 'vtiger_project', 1, '15', 'projectstatus', 'Status', 1, 2, '', 100, 7, 107, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(45, 653, 'projecttype', 'vtiger_project', 1, '15', 'projecttype', 'Type', 1, 2, '', 100, 8, 107, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(45, 654, 'linktoaccountscontacts', 'vtiger_project', 1, '10', 'linktoaccountscontacts', 'Related to', 1, 2, '', 100, 9, 107, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 1, 0),
(45, 655, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 4, 107, 1, 'V~M', 0, 2, 'BAS', 1, '', 1, 0, 0),
(45, 656, 'project_no', 'vtiger_project', 2, '4', 'project_no', 'Project No', 1, 0, '', 100, 2, 107, 1, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(45, 657, 'targetbudget', 'vtiger_project', 1, '7', 'targetbudget', 'Target Budget', 1, 2, '', 100, 1, 108, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 658, 'projecturl', 'vtiger_project', 1, '17', 'projecturl', 'Project Url', 1, 2, '', 100, 2, 108, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 659, 'projectpriority', 'vtiger_project', 1, '15', 'projectpriority', 'Priority', 1, 2, '', 100, 3, 108, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0);
INSERT IGNORE INTO `vtiger_field` (`tabid`, `fieldid`, `columnname`, `tablename`, `generatedtype`, `uitype`, `fieldname`, `fieldlabel`, `readonly`, `presence`, `defaultvalue`, `maximumlength`, `sequence`, `block`, `displaytype`, `typeofdata`, `quickcreate`, `quickcreatesequence`, `info_type`, `masseditable`, `helpinfo`, `summaryfield`, `headerfield`, `isunique`) VALUES
(45, 660, 'progress', 'vtiger_project', 1, '15', 'progress', 'Progress', 1, 2, '', 100, 4, 108, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 661, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 5, 108, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(45, 662, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 6, 108, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(45, 663, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 7, 108, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(45, 664, 'description', 'vtiger_crmentity', 1, '19', 'description', 'Description', 1, 2, '', 100, 1, 109, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 665, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 10, 107, 2, 'V~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(45, 666, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 11, 107, 6, 'C~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(45, 667, 'tags', 'vtiger_project', 1, '1', 'tags', 'tags', 1, 2, '', 100, 12, 107, 6, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(47, 668, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 0, '', 100, 2, 110, 1, 'V~M', 1, 0, 'BAS', 1, '', 1, 0, 0),
(47, 669, 'createdtime', 'vtiger_crmentity', 1, '70', 'createdtime', 'Created Time', 1, 0, '', 100, 5, 110, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(47, 670, 'modifiedtime', 'vtiger_crmentity', 1, '70', 'modifiedtime', 'Modified Time', 1, 0, '', 100, 6, 110, 2, 'DT~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(47, 671, 'message', 'vtiger_smsnotifier', 1, '21', 'message', 'message', 1, 0, '', 100, 1, 110, 1, 'V~M', 1, 0, 'BAS', 1, '', 1, 0, 0),
(47, 672, 'modifiedby', 'vtiger_crmentity', 1, '52', 'modifiedby', 'Last Modified By', 1, 0, '', 100, 7, 110, 3, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(47, 673, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 8, 110, 2, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(2, 674, 'forecast_amount', 'vtiger_potential', 1, '71', 'forecast_amount', 'Forecast Amount', 1, 2, '', 100, 18, 1, 1, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(29, 675, 'no_of_currency_decimals', 'vtiger_users', 1, '16', 'no_of_currency_decimals', 'Number Of Currency Decimals', 1, 2, '2', 100, 6, 78, 1, 'V~O', 1, 0, 'BAS', 1, '<b>Currency - Number of Decimal places</b> <br/><br/>Number of decimal places specifies how many number of decimals will be shown after decimal separator.<br/><b>Eg:</b> 123.00', 0, 0, 0),
(23, 676, 'productid', 'vtiger_inventoryproductrel', 1, '10', 'productid', 'Item Name', 0, 2, '', 100, 1, 113, 5, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 677, 'quantity', 'vtiger_inventoryproductrel', 1, '7', 'quantity', 'Quantity', 0, 2, '', 100, 2, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 678, 'listprice', 'vtiger_inventoryproductrel', 1, '71', 'listprice', 'List Price', 0, 2, '', 100, 3, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 679, 'comment', 'vtiger_inventoryproductrel', 1, '19', 'comment', 'Item Comment', 0, 2, '', 100, 4, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 680, 'discount_amount', 'vtiger_inventoryproductrel', 1, '71', 'discount_amount', 'Item Discount Amount', 0, 2, '', 100, 5, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 681, 'discount_percent', 'vtiger_inventoryproductrel', 1, '7', 'discount_percent', 'Item Discount Percent', 0, 2, '', 100, 6, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 682, 'tax1', 'vtiger_inventoryproductrel', 1, '83', 'tax1', 'VAT', 0, 2, '', 100, 7, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 683, 'tax2', 'vtiger_inventoryproductrel', 1, '83', 'tax2', 'Sales', 0, 2, '', 100, 8, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 684, 'tax3', 'vtiger_inventoryproductrel', 1, '83', 'tax3', 'Service', 0, 2, '', 100, 9, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 685, 'productid', 'vtiger_inventoryproductrel', 1, '10', 'productid', 'Item Name', 0, 2, '', 100, 1, 114, 5, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 686, 'quantity', 'vtiger_inventoryproductrel', 1, '7', 'quantity', 'Quantity', 0, 2, '', 100, 2, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 687, 'listprice', 'vtiger_inventoryproductrel', 1, '71', 'listprice', 'List Price', 0, 2, '', 100, 3, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 688, 'comment', 'vtiger_inventoryproductrel', 1, '19', 'comment', 'Item Comment', 0, 2, '', 100, 4, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 689, 'discount_amount', 'vtiger_inventoryproductrel', 1, '71', 'discount_amount', 'Item Discount Amount', 0, 2, '', 100, 5, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 690, 'discount_percent', 'vtiger_inventoryproductrel', 1, '7', 'discount_percent', 'Item Discount Percent', 0, 2, '', 100, 6, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 691, 'tax1', 'vtiger_inventoryproductrel', 1, '83', 'tax1', 'VAT', 0, 2, '', 100, 7, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 692, 'tax2', 'vtiger_inventoryproductrel', 1, '83', 'tax2', 'Sales', 0, 2, '', 100, 8, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 693, 'tax3', 'vtiger_inventoryproductrel', 1, '83', 'tax3', 'Service', 0, 2, '', 100, 9, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 694, 'productid', 'vtiger_inventoryproductrel', 1, '10', 'productid', 'Item Name', 0, 2, '', 100, 1, 115, 5, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 695, 'quantity', 'vtiger_inventoryproductrel', 1, '7', 'quantity', 'Quantity', 0, 2, '', 100, 2, 115, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 696, 'listprice', 'vtiger_inventoryproductrel', 1, '71', 'listprice', 'List Price', 0, 2, '', 100, 3, 115, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 697, 'comment', 'vtiger_inventoryproductrel', 1, '19', 'comment', 'Item Comment', 0, 2, '', 100, 4, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 698, 'discount_amount', 'vtiger_inventoryproductrel', 1, '71', 'discount_amount', 'Item Discount Amount', 0, 2, '', 100, 5, 115, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 699, 'discount_percent', 'vtiger_inventoryproductrel', 1, '7', 'discount_percent', 'Item Discount Percent', 0, 2, '', 100, 6, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 700, 'tax1', 'vtiger_inventoryproductrel', 1, '83', 'tax1', 'VAT', 0, 2, '', 100, 7, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 701, 'tax2', 'vtiger_inventoryproductrel', 1, '83', 'tax2', 'Sales', 0, 2, '', 100, 8, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 702, 'tax3', 'vtiger_inventoryproductrel', 1, '83', 'tax3', 'Service', 0, 2, '', 100, 9, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 703, 'productid', 'vtiger_inventoryproductrel', 1, '10', 'productid', 'Item Name', 0, 2, '', 100, 1, 116, 5, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 704, 'quantity', 'vtiger_inventoryproductrel', 1, '7', 'quantity', 'Quantity', 0, 2, '', 100, 2, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 705, 'listprice', 'vtiger_inventoryproductrel', 1, '71', 'listprice', 'List Price', 0, 2, '', 100, 3, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 706, 'comment', 'vtiger_inventoryproductrel', 1, '19', 'comment', 'Item Comment', 0, 2, '', 100, 4, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 707, 'discount_amount', 'vtiger_inventoryproductrel', 1, '71', 'discount_amount', 'Item Discount Amount', 0, 2, '', 100, 5, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 708, 'discount_percent', 'vtiger_inventoryproductrel', 1, '7', 'discount_percent', 'Item Discount Percent', 0, 2, '', 100, 6, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 709, 'tax1', 'vtiger_inventoryproductrel', 1, '83', 'tax1', 'VAT', 0, 2, '', 100, 7, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 710, 'tax2', 'vtiger_inventoryproductrel', 1, '83', 'tax2', 'Sales', 0, 2, '', 100, 8, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 711, 'tax3', 'vtiger_inventoryproductrel', 1, '83', 'tax3', 'Service', 0, 2, '', 100, 9, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(29, 712, 'truncate_trailing_zeros', 'vtiger_users', 1, '56', 'truncate_trailing_zeros', 'Truncate Trailing Zeros', 1, 2, '0', 100, 7, 78, 1, 'V~O', 1, 0, 'BAS', 1, '<b> Truncate Trailing Zeros </b> <br/><br/>It truncated trailing 0s in any of Currency, Decimal and Percentage Field types<br/><br/><b>Ex:</b><br/>If value is 89.00000 then <br/>decimal and Percentage fields were shows 89<br/>currency field type - shows 89.00<br/>', 0, 0, 0),
(44, 713, 'projecttaskstatus', 'vtiger_projecttask', 1, '15', 'projecttaskstatus', 'Status', 1, 2, '', 100, 11, 104, 1, 'V~O', 0, 9, 'BAS', 1, '', 0, 0, 0),
(42, 714, 'customer', 'vtiger_modcomments', 1, '10', 'customer', 'Customer', 1, 2, '', 100, 6, 98, 3, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 715, 'dayoftheweek', 'vtiger_users', 1, '16', 'dayoftheweek', 'Starting Day of the week', 1, 2, 'Monday', 100, 1, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 716, 'callduration', 'vtiger_users', 1, '16', 'callduration', 'Default Call Duration', 1, 2, '5', 100, 7, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 717, 'othereventduration', 'vtiger_users', 1, '16', 'othereventduration', 'Other Event Duration', 1, 2, '5', 100, 8, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 718, 'pre_tax_total', 'vtiger_invoice', 1, '72', 'pre_tax_total', 'Pre Tax Total', 1, 2, '', 100, 23, 67, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(22, 719, 'pre_tax_total', 'vtiger_salesorder', 1, '72', 'pre_tax_total', 'Pre Tax Total', 1, 2, '', 100, 23, 61, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 720, 'pre_tax_total', 'vtiger_purchaseorder', 1, '72', 'pre_tax_total', 'Pre Tax Total', 1, 2, '', 100, 23, 55, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 721, 'pre_tax_total', 'vtiger_quotes', 1, '72', 'pre_tax_total', 'Pre Tax Total', 1, 2, '', 100, 23, 49, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 722, 'calendarsharedtype', 'vtiger_users', 1, '16', 'calendarsharedtype', 'Calendar Shared Type', 1, 2, 'Public', 100, 12, 118, 3, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 723, 'isconvertedfromlead', 'vtiger_account', 1, '56', 'isconvertedfromlead', 'Is Converted From Lead', 1, 2, 'no', 100, 24, 9, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 724, 'isconvertedfromlead', 'vtiger_contactdetails', 1, '56', 'isconvertedfromlead', 'Is Converted From Lead', 1, 2, 'no', 100, 29, 4, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 725, 'isconvertedfromlead', 'vtiger_potential', 1, '56', 'isconvertedfromlead', 'Is Converted From Lead', 1, 2, 'no', 100, 19, 1, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 726, 'default_record_view', 'vtiger_users', 1, '16', 'default_record_view', 'Default Record View', 1, 2, 'Summary', 100, 19, 79, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 727, 'received', 'vtiger_invoice', 1, '72', 'received', 'Received', 1, 2, '0', 100, 24, 67, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 728, 'balance', 'vtiger_invoice', 1, '72', 'balance', 'Balance', 1, 2, '0', 100, 25, 67, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 729, 'paid', 'vtiger_purchaseorder', 1, '72', 'paid', 'Paid', 1, 2, '0', 100, 24, 55, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 730, 'balance', 'vtiger_purchaseorder', 1, '72', 'balance', 'Balance', 1, 2, '0', 100, 25, 55, 3, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(18, 731, 'smownerid', 'vtiger_crmentity', 1, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 13, 42, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 732, 'emailoptout', 'vtiger_leaddetails', 1, '56', 'emailoptout', 'Email Opt Out', 1, 0, '', 100, 24, 13, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 733, 'userid', 'vtiger_modcomments', 1, '10', 'userid', 'UserId', 1, 2, '', 100, 7, 98, 3, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 734, 'reasontoedit', 'vtiger_modcomments', 1, '19', 'reasontoedit', 'ReasonToEdit', 1, 2, '', 100, 8, 98, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 735, 's_h_percent', 'vtiger_invoice', 1, '1', 'hdnS_H_Percent', 'S&H Percent', 0, 2, '', 100, 10, 113, 5, 'N~O', 0, 1, 'BAS', 0, '', 0, 0, 0),
(20, 736, 's_h_percent', 'vtiger_quotes', 1, '1', 'hdnS_H_Percent', 'S&H Percent', 0, 2, '', 100, 10, 116, 5, 'N~O', 0, 1, 'BAS', 0, '', 0, 0, 0),
(21, 737, 's_h_percent', 'vtiger_purchaseorder', 1, '1', 'hdnS_H_Percent', 'S&H Percent', 0, 2, '', 100, 10, 115, 5, 'N~O', 0, 1, 'BAS', 0, '', 0, 0, 0),
(22, 738, 's_h_percent', 'vtiger_salesorder', 1, '1', 'hdnS_H_Percent', 'S&H Percent', 0, 2, '', 100, 10, 114, 5, 'N~O', 0, 1, 'BAS', 0, '', 0, 0, 0),
(29, 739, 'leftpanelhide', 'vtiger_users', 1, '56', 'leftpanelhide', 'Left Panel Hide', 1, 2, '0', 100, 20, 79, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 740, 'contact_id', 'vtiger_potential', 1, '10', 'contact_id', 'Contact Name', 1, 2, '', 100, 4, 1, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(13, 741, 'contact_id', 'vtiger_troubletickets', 1, '10', 'contact_id', 'Contact Name', 1, 2, '', 100, 3, 25, 1, 'V~O', 1, 0, 'BAS', 1, '', 1, 0, 0),
(29, 742, 'rowheight', 'vtiger_users', 1, '16', 'rowheight', 'Row Height', 1, 2, 'medium', 100, 21, 79, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 743, 'defaulteventstatus', 'vtiger_users', 1, '15', 'defaulteventstatus', 'Default Event Status', 1, 2, 'Planned', 100, 9, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 744, 'defaultactivitytype', 'vtiger_users', 1, '15', 'defaultactivitytype', 'Default Activity Type', 1, 2, 'Call', 100, 10, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 745, 'hidecompletedevents', 'vtiger_users', 1, '56', 'hidecompletedevents', 'LBL_HIDE_COMPLETED_EVENTS', 1, 2, '0', 100, 13, 118, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(14, 772, 'purchase_cost', 'vtiger_products', 1, '71', 'purchase_cost', 'Purchase Cost', 1, 0, '', 100, 5, 32, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(36, 773, 'purchase_cost', 'vtiger_service', 1, '71', 'purchase_cost', 'Purchase Cost', 1, 0, '', 100, 5, 92, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 774, 'potential_id', 'vtiger_invoice', 1, '10', 'potential_id', 'Potential Name', 1, 2, '', 100, 26, 67, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 775, 'defaultcalendarview', 'vtiger_users', 1, '16', 'defaultcalendarview', 'Default Calendar View', 1, 0, 'MyCalendar', 100, 14, 118, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 776, 'image', 'vtiger_inventoryproductrel', 1, '56', 'image', 'Image', 0, 1, '', 100, 14, 113, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 777, 'purchase_cost', 'vtiger_inventoryproductrel', 1, '71', 'purchase_cost', 'Purchase Cost', 0, 1, '', 100, 15, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 778, 'margin', 'vtiger_inventoryproductrel', 1, '71', 'margin', 'Margin', 0, 1, '', 100, 16, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 779, 'image', 'vtiger_inventoryproductrel', 1, '56', 'image', 'Image', 0, 1, '', 100, 15, 116, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 780, 'purchase_cost', 'vtiger_inventoryproductrel', 1, '71', 'purchase_cost', 'Purchase Cost', 0, 1, '', 100, 16, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(20, 781, 'margin', 'vtiger_inventoryproductrel', 1, '71', 'margin', 'Margin', 0, 1, '', 100, 17, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 782, 'image', 'vtiger_inventoryproductrel', 1, '56', 'image', 'Image', 0, 1, '', 100, 15, 115, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 783, 'image', 'vtiger_inventoryproductrel', 1, '56', 'image', 'Image', 0, 1, '', 100, 16, 114, 5, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 784, 'purchase_cost', 'vtiger_inventoryproductrel', 1, '71', 'purchase_cost', 'Purchase Cost', 0, 1, '', 100, 17, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 785, 'margin', 'vtiger_inventoryproductrel', 1, '71', 'margin', 'Margin', 0, 1, '', 100, 18, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(42, 786, 'is_private', 'vtiger_modcomments', 1, '7', 'is_private', 'Is Private', 1, 2, '', 100, 9, 98, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 787, 'filename', 'vtiger_modcomments', 1, '61', 'filename', 'Attachment', 1, 0, '', 100, 10, 98, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(42, 788, 'related_email_id', 'vtiger_modcomments', 1, '1', 'related_email_id', 'Related Email Id', 1, 2, '0', 100, 11, 98, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 789, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 20, 1, 2, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(4, 790, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 30, 4, 2, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(6, 791, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 25, 9, 2, 'V~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(7, 792, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 25, 13, 2, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(8, 793, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 13, 17, 2, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(9, 794, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 23, 19, 2, 'V~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(10, 795, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 13, 21, 2, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(13, 796, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 18, 25, 2, 'V~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(14, 797, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 23, 31, 2, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(15, 798, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 9, 37, 2, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(16, 799, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 23, 39, 2, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(18, 800, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 14, 42, 2, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(19, 801, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 8, 46, 2, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(20, 802, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 24, 49, 2, 'V~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(21, 803, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 26, 55, 2, 'V~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(22, 804, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 24, 61, 2, 'V~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(23, 805, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 27, 67, 2, 'V~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(26, 806, 'source', 'vtiger_crmentity', 1, '1', 'source', 'Source', 1, 2, '', 100, 17, 74, 2, 'V~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(10, 807, 'click_count', 'vtiger_email_track', 1, '25', 'click_count', 'Click Count', 1, 2, '0', 100, 14, 21, 3, 'I~O', 0, 2, 'BAS', 0, '', 0, 0, 0),
(2, 808, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 21, 1, 6, 'C~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(4, 809, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 31, 4, 6, 'C~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(6, 810, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 26, 9, 6, 'C~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(7, 811, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 26, 13, 6, 'C~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(8, 812, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 14, 17, 6, 'C~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(9, 813, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 24, 19, 6, 'C~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(10, 814, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 15, 21, 6, 'C~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(13, 815, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 19, 25, 6, 'C~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(14, 816, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 24, 31, 6, 'C~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(15, 817, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 10, 37, 6, 'C~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(16, 818, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 24, 39, 6, 'C~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(18, 819, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 15, 42, 6, 'C~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(19, 820, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 9, 46, 6, 'C~O', 3, 5, 'BAS', 0, '', 0, 0, 0),
(20, 821, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 25, 49, 6, 'C~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(21, 822, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 27, 55, 6, 'C~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(22, 823, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 25, 61, 6, 'C~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(23, 824, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 28, 67, 6, 'C~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(26, 825, 'starred', 'vtiger_crmentity_user_field', 1, '56', 'starred', 'starred', 1, 2, '', 100, 18, 74, 6, 'C~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(2, 826, 'tags', 'vtiger_potential', 1, '1', 'tags', 'tags', 1, 2, '', 100, 22, 1, 6, 'V~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(4, 827, 'tags', 'vtiger_contactdetails', 1, '1', 'tags', 'tags', 1, 2, '', 100, 32, 4, 6, 'V~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(6, 828, 'tags', 'vtiger_account', 1, '1', 'tags', 'tags', 1, 2, '', 100, 27, 9, 6, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(7, 829, 'tags', 'vtiger_leaddetails', 1, '1', 'tags', 'tags', 1, 2, '', 100, 27, 13, 6, 'V~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(8, 830, 'tags', 'vtiger_notes', 1, '1', 'tags', 'tags', 1, 2, '', 100, 15, 17, 6, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(9, 831, 'tags', 'vtiger_activity', 1, '1', 'tags', 'tags', 1, 2, '', 100, 25, 19, 6, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(10, 832, 'tags', 'vtiger_activity', 1, '1', 'tags', 'tags', 1, 2, '', 100, 16, 21, 6, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(13, 833, 'tags', 'vtiger_troubletickets', 1, '1', 'tags', 'tags', 1, 2, '', 100, 20, 25, 6, 'V~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(14, 834, 'tags', 'vtiger_products', 1, '1', 'tags', 'tags', 1, 2, '', 100, 25, 31, 6, 'V~O', 3, 8, 'BAS', 0, '', 0, 0, 0),
(15, 835, 'tags', 'vtiger_faq', 1, '1', 'tags', 'tags', 1, 2, '', 100, 11, 37, 6, 'V~O', 3, 3, 'BAS', 0, '', 0, 0, 0),
(16, 836, 'tags', 'vtiger_activity', 1, '1', 'tags', 'tags', 1, 2, '', 100, 25, 39, 6, 'V~O', 3, 9, 'BAS', 0, '', 0, 0, 0),
(18, 837, 'tags', 'vtiger_vendor', 1, '1', 'tags', 'tags', 1, 2, '', 100, 16, 42, 6, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(19, 838, 'tags', 'vtiger_pricebook', 1, '1', 'tags', 'tags', 1, 2, '', 100, 10, 46, 6, 'V~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(20, 839, 'tags', 'vtiger_quotes', 1, '1', 'tags', 'tags', 1, 2, '', 100, 26, 49, 6, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(21, 840, 'tags', 'vtiger_purchaseorder', 1, '1', 'tags', 'tags', 1, 2, '', 100, 28, 55, 6, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(22, 841, 'tags', 'vtiger_salesorder', 1, '1', 'tags', 'tags', 1, 2, '', 100, 26, 61, 6, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(23, 842, 'tags', 'vtiger_invoice', 1, '1', 'tags', 'tags', 1, 2, '', 100, 29, 67, 6, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(26, 843, 'tags', 'vtiger_campaign', 1, '1', 'tags', 'tags', 1, 2, '', 100, 19, 74, 6, 'V~O', 3, 10, 'BAS', 0, '', 0, 0, 0),
(20, 844, 'region_id', 'vtiger_quotes', 1, '16', 'region_id', 'Tax Region', 0, 2, '', 100, 18, 116, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(21, 845, 'region_id', 'vtiger_purchaseorder', 1, '16', 'region_id', 'Tax Region', 0, 2, '', 100, 16, 115, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(22, 846, 'region_id', 'vtiger_salesorder', 1, '16', 'region_id', 'Tax Region', 0, 2, '', 100, 19, 114, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(23, 847, 'region_id', 'vtiger_invoice', 1, '16', 'region_id', 'Tax Region', 0, 2, '', 100, 17, 113, 5, 'N~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(45, 848, 'isconvertedfrompotential', 'vtiger_project', 1, '56', 'isconvertedfrompotential', 'Is Converted From Opportunity', 1, 2, '', 100, 13, 107, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(45, 849, 'potentialid', 'vtiger_project', 1, '10', 'potentialid', 'Potential Name', 1, 2, '', 100, 14, 107, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 850, 'defaultlandingpage', 'vtiger_users', 1, '32', 'defaultlandingpage', 'Default Landing Page', 1, 0, 'Home', 100, 22, 79, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(22, 851, 'last_recurring_date', 'vtiger_invoice_recurring_info', 1, '5', 'last_recurring_date', 'Next Invoice Date', 1, 2, '', 100, 7, 85, 2, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(29, 852, 'userlabel', 'vtiger_users', 1, '1', 'userlabel', 'User Label', 1, 2, '', 100, 23, 79, 3, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(16, 853, 'sms_remind_user', 'vtiger_activitycf', 1, '16', 'sms_remind_user', 'SMS Reminder User', 1, 2, '', 100, 2, 40, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(16, 854, 'sms_remind_invitees', 'vtiger_activitycf', 1, '16', 'sms_remind_invitees', 'SMS Reminder Invitees', 1, 2, '', 100, 3, 40, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(16, 855, 'send_sms_invite', 'vtiger_activitycf', 1, '56', 'send_sms_invite', 'Send SMS Invitation', 1, 2, '0', 100, 4, 40, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(16, 856, 'pbx_system_id', 'vtiger_activitycf', 1, '1', 'pbx_system_id', 'PBX System ID', 1, 2, '', 100, 26, 39, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(9, 857, 'sms_remind_user', 'vtiger_activitycf', 1, '16', 'sms_remind_user', 'SMS Reminder User', 1, 2, '', 100, 2, 120, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(9, 858, 'notify_group', 'vtiger_activitycf', 1, '1', 'notify_group', 'Notify Group', 1, 2, '', 100, 26, 19, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(16, 859, 'call_direction', 'vtiger_activitycf', 1, '16', 'call_direction', 'نوع تماس', 1, 2, '', 100, 27, 39, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 860, 'cf_quote_date', 'vtiger_quotescf', 2, '5', 'cf_quote_date', 'تاریخ پیش فاکتور', 1, 2, '', 100, 6, 49, 1, 'D~M', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 861, 'cf_invoice_status', 'vtiger_quotescf', 2, '1', 'cf_invoice_status', 'وضعیت فاکتور', 1, 2, '', 100, 9, 49, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 862, 'cf_project', 'vtiger_quotescf', 2, '1', 'cf_project', 'پروژه', 1, 2, '', 100, 10, 49, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 863, 'cf_sms_reminder', 'vtiger_quotescf', 2, '1', 'cf_sms_reminder', 'پیامک یادآوری به مشتری', 1, 2, '', 100, 1, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 864, 'cf_payment_terms', 'vtiger_quotescf', 2, '1', 'cf_payment_terms', 'شرایط پرداخت (نوع فروش)', 1, 2, '', 100, 3, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 865, 'cf_internal_approval', 'vtiger_quotescf', 2, '1', 'cf_internal_approval', 'وضعیت تایید داخلی', 1, 2, '', 100, 5, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 866, 'cf_approval_issues', 'vtiger_quotescf', 2, '19', 'cf_approval_issues', 'مشکلات تایید داخلی', 1, 2, '', 65535, 6, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 867, 'cf_print_template', 'vtiger_quotescf', 2, '1', 'cf_print_template', 'قالب چاپ پیش فاکتور', 1, 2, '', 100, 8, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 868, 'cf_shipping_type', 'vtiger_quotescf', 2, '1', 'cf_shipping_type', 'نوع ارسال کالا', 1, 2, '', 100, 4, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 869, 'cf_sender_company', 'vtiger_quotescf', 2, '1', 'cf_sender_company', 'شرکت ارسال کننده پیش فاکتور', 1, 2, '', 100, 7, 50, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 870, 'cf_insurance_percent', 'vtiger_quotescf', 2, '7', 'cf_insurance_percent', 'درصد سپرده بیمه', 1, 2, '', 100, 11, 50, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 871, 'cf_insurance_amount', 'vtiger_quotescf', 2, '7', 'cf_insurance_amount', 'مقدار سپرده بیمه', 1, 2, '', 100, 12, 50, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 872, 'cf_retention_percent', 'vtiger_quotescf', 2, '7', 'cf_retention_percent', 'درصد سپرده حسن انجام کار', 1, 2, '', 100, 13, 50, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 873, 'cf_retention_amount', 'vtiger_quotescf', 2, '7', 'cf_retention_amount', 'مقدار سپرده حسن انجام کار', 1, 2, '', 100, 14, 50, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 874, 'cf_bill_lat', 'vtiger_quotescf', 2, '1', 'cf_bill_lat', 'عرض جغرافیایی (صورتحساب)', 1, 2, '', 100, 13, 51, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 875, 'cf_bill_lng', 'vtiger_quotescf', 2, '1', 'cf_bill_lng', 'طول جغرافیایی (صورتحساب)', 1, 2, '', 100, 15, 51, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 876, 'cf_ship_lat', 'vtiger_quotescf', 2, '1', 'cf_ship_lat', 'عرض جغرافیایی (حمل کالا)', 1, 2, '', 100, 14, 51, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(20, 877, 'cf_ship_lng', 'vtiger_quotescf', 2, '1', 'cf_ship_lng', 'طول جغرافیایی (حمل کالا)', 1, 2, '', 100, 16, 51, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(2, 878, 'cf_sales_channel', 'vtiger_potentialscf', 2, '1', 'cf_sales_channel', 'کانال فروش', 1, 2, '', 100, 1, 2, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 879, 'cf_accounting_no', 'vtiger_invoicecf', 2, '1', 'cf_accounting_no', 'شماره سند حسابداری', 1, 2, '', 100, 1, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 880, 'cf_ref_code', 'vtiger_invoicecf', 2, '1', 'cf_ref_code', 'کد مرجع', 1, 2, '', 100, 2, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 881, 'cf_quote_id', 'vtiger_invoicecf', 2, '7', 'cf_quote_id', 'پیش فاکتور مرجع', 1, 2, '', 100, 3, 68, 1, 'I~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 882, 'cf_project', 'vtiger_invoicecf', 2, '1', 'cf_project', 'پروژه', 1, 2, '', 100, 4, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 883, 'cf_sms_reminder', 'vtiger_invoicecf', 2, '1', 'cf_sms_reminder', 'پیامک یادآوری به مشتری', 1, 2, '', 100, 5, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 884, 'cf_payment_terms', 'vtiger_invoicecf', 2, '1', 'cf_payment_terms', 'شرایط پرداخت (نوع فروش)', 1, 2, '', 100, 6, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 885, 'cf_shipping_type', 'vtiger_invoicecf', 2, '1', 'cf_shipping_type', 'نوع ارسال کالا', 1, 2, '', 100, 7, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 886, 'cf_sender_company', 'vtiger_invoicecf', 2, '1', 'cf_sender_company', 'شرکت ارسال کننده فاکتور', 1, 2, '', 100, 8, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 887, 'cf_print_template', 'vtiger_invoicecf', 2, '1', 'cf_print_template', 'قالب چاپ فاکتور', 1, 2, '', 100, 9, 68, 1, 'V~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 888, 'cf_insurance_percent', 'vtiger_invoicecf', 2, '7', 'cf_insurance_percent', 'درصد سپرده بیمه', 1, 2, '', 100, 10, 68, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 889, 'cf_insurance_amount', 'vtiger_invoicecf', 2, '7', 'cf_insurance_amount', 'مقدار سپرده بیمه', 1, 2, '', 100, 11, 68, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 890, 'cf_retention_percent', 'vtiger_invoicecf', 2, '7', 'cf_retention_percent', 'درصد سپرده حسن انجام کار', 1, 2, '', 100, 12, 68, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(23, 891, 'cf_retention_amount', 'vtiger_invoicecf', 2, '7', 'cf_retention_amount', 'مقدار سپرده حسن انجام کار', 1, 2, '', 100, 13, 68, 1, 'N~O', 1, NULL, 'BAS', 1, '', 0, 0, 0),
(6, 892, 'cf_party_type', 'vtiger_accountscf', 2, '15', 'cf_party_type', 'LBL_PARTY_TYPE', 1, 2, '', 100, 28, 9, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 893, 'cf_customer_code', 'vtiger_accountscf', 2, '1', 'cf_customer_code', 'LBL_CUSTOMER_CODE', 1, 2, '', 100, 29, 9, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 894, 'cf_first_name', 'vtiger_accountscf', 2, '1', 'cf_first_name', 'LBL_FIRST_NAME', 1, 2, '', 100, 30, 9, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 895, 'cf_last_name', 'vtiger_accountscf', 2, '1', 'cf_last_name', 'LBL_LAST_NAME', 1, 2, '', 100, 31, 9, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 896, 'cf_alternate_name', 'vtiger_accountscf', 2, '1', 'cf_alternate_name', 'LBL_ALTERNATE_NAME', 1, 2, '', 100, 1, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 897, 'cf_sub_industry', 'vtiger_accountscf', 2, '1', 'cf_sub_industry', 'LBL_SUB_INDUSTRY', 1, 2, '', 100, 2, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 898, 'cf_portal_visible', 'vtiger_accountscf', 2, '56', 'cf_portal_visible', 'LBL_PORTAL_VISIBLE', 1, 2, '1', 100, 3, 122, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 899, 'cf_national_code', 'vtiger_accountscf', 2, '1', 'cf_national_code', 'LBL_NATIONAL_CODE', 1, 2, '', 100, 4, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 900, 'cf_identity_no', 'vtiger_accountscf', 2, '1', 'cf_identity_no', 'LBL_IDENTITY_NO', 1, 2, '', 100, 5, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 901, 'cf_birth_date', 'vtiger_accountscf', 2, '5', 'cf_birth_date', 'LBL_BIRTH_DATE', 1, 2, '', 100, 6, 122, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 902, 'cf_registration_no', 'vtiger_accountscf', 2, '1', 'cf_registration_no', 'LBL_REGISTRATION_NO', 1, 2, '', 100, 7, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 903, 'cf_national_id', 'vtiger_accountscf', 2, '1', 'cf_national_id', 'LBL_NATIONAL_ID', 1, 2, '', 100, 8, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 904, 'cf_economic_code', 'vtiger_accountscf', 2, '1', 'cf_economic_code', 'LBL_ECONOMIC_CODE', 1, 2, '', 100, 9, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 905, 'cf_registration_date', 'vtiger_accountscf', 2, '5', 'cf_registration_date', 'LBL_REGISTRATION_DATE', 1, 2, '', 100, 10, 122, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 906, 'cf_foreign_national', 'vtiger_accountscf', 2, '56', 'cf_foreign_national', 'LBL_FOREIGN_NATIONAL', 1, 2, '0', 100, 11, 122, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 907, 'cf_universal_code', 'vtiger_accountscf', 2, '1', 'cf_universal_code', 'LBL_UNIVERSAL_CODE', 1, 2, '', 100, 12, 122, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 908, 'cf_bill_region', 'vtiger_accountscf', 2, '1', 'cf_bill_region', 'LBL_BILL_REGION', 1, 2, '', 100, 13, 11, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 909, 'cf_ship_region', 'vtiger_accountscf', 2, '1', 'cf_ship_region', 'LBL_SHIP_REGION', 1, 2, '', 100, 14, 11, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 910, 'cf_bill_lat', 'vtiger_accountscf', 2, '7', 'cf_bill_lat', 'LBL_BILL_LATITUDE', 1, 2, '', 100, 15, 11, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 911, 'cf_bill_lng', 'vtiger_accountscf', 2, '7', 'cf_bill_lng', 'LBL_BILL_LONGITUDE', 1, 2, '', 100, 16, 11, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 912, 'cf_ship_lat', 'vtiger_accountscf', 2, '7', 'cf_ship_lat', 'LBL_SHIP_LATITUDE', 1, 2, '', 100, 17, 11, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 913, 'cf_ship_lng', 'vtiger_accountscf', 2, '7', 'cf_ship_lng', 'LBL_SHIP_LONGITUDE', 1, 2, '', 100, 18, 11, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 914, 'cf_credit_status', 'vtiger_accountscf', 2, '15', 'cf_credit_status', 'LBL_CREDIT_STATUS', 1, 2, '', 100, 1, 123, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 915, 'cf_credit_type', 'vtiger_accountscf', 2, '15', 'cf_credit_type', 'LBL_CREDIT_TYPE', 1, 2, '', 100, 2, 123, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 916, 'cf_credit_source', 'vtiger_accountscf', 2, '15', 'cf_credit_source', 'LBL_CREDIT_SOURCE', 1, 2, '', 100, 3, 123, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 917, 'cf_credit_expiry', 'vtiger_accountscf', 2, '5', 'cf_credit_expiry', 'LBL_CREDIT_EXPIRY', 1, 2, '', 100, 4, 123, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 918, 'cf_credit_amount', 'vtiger_accountscf', 2, '71', 'cf_credit_amount', 'LBL_CREDIT_AMOUNT', 1, 2, '', 100, 5, 123, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 919, 'cf_credit_limit', 'vtiger_accountscf', 2, '71', 'cf_credit_limit', 'LBL_CREDIT_LIMIT', 1, 2, '', 100, 6, 123, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 920, 'cf_credit_notes', 'vtiger_accountscf', 2, '19', 'cf_credit_notes', 'LBL_CREDIT_NOTES', 1, 2, '', 100, 7, 123, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 921, 'cf_sales_discount', 'vtiger_accountscf', 2, '9', 'cf_sales_discount', 'LBL_SALES_DISCOUNT', 1, 2, '', 100, 8, 123, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 922, 'cf_linkedin', 'vtiger_accountscf', 2, '17', 'cf_linkedin', 'LBL_LINKEDIN', 1, 2, '', 100, 1, 124, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 923, 'cf_instagram', 'vtiger_accountscf', 2, '17', 'cf_instagram', 'LBL_INSTAGRAM', 1, 2, '', 100, 2, 124, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 924, 'cf_facebook', 'vtiger_accountscf', 2, '17', 'cf_facebook', 'LBL_FACEBOOK', 1, 2, '', 100, 3, 124, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 925, 'cf_twitter', 'vtiger_accountscf', 2, '17', 'cf_twitter', 'LBL_TWITTER', 1, 2, '', 100, 4, 124, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(6, 926, 'cf_blog', 'vtiger_accountscf', 2, '17', 'cf_blog', 'LBL_BLOG', 1, 2, '', 100, 5, 124, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(23, 927, 'cf_invoice_kind', 'vtiger_invoicecf', 2, '15', 'cf_invoice_kind', 'LBL_INVOICE_KIND', 1, 2, 'Standard', 100, 14, 68, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 928, 'payment_no', 'vtiger_sarvpayments', 2, '4', 'payment_no', 'LBL_PAYMENT_NO', 1, 0, '', 100, 1, 125, 1, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(52, 929, 'subject', 'vtiger_sarvpayments', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 125, 1, 'V~M', 0, 1, 'BAS', 1, '', 0, 0, 0),
(52, 930, 'accountid', 'vtiger_sarvpayments', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 125, 1, 'I~M', 0, 2, 'BAS', 0, '', 0, 0, 0),
(52, 931, 'contactid', 'vtiger_sarvpayments', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 125, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 932, 'payment_direction', 'vtiger_sarvpayments', 2, '15', 'payment_direction', 'LBL_DIRECTION', 1, 2, '', 100, 5, 125, 1, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 933, 'payment_status', 'vtiger_sarvpayments', 2, '15', 'payment_status', 'LBL_STATUS', 1, 2, '', 100, 6, 125, 1, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 934, 'expected_date', 'vtiger_sarvpayments', 2, '5', 'expected_date', 'LBL_EXPECTED_DATE', 1, 2, '', 100, 7, 125, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 935, 'payment_date', 'vtiger_sarvpayments', 2, '5', 'payment_date', 'LBL_PAYMENT_DATE', 1, 2, '', 100, 8, 125, 1, 'D~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 936, 'amount', 'vtiger_sarvpayments', 2, '71', 'amount', 'LBL_AMOUNT', 1, 2, '', 100, 9, 125, 1, 'N~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 937, 'currency_id', 'vtiger_sarvpayments', 2, '117', 'currency_id', 'LBL_CURRENCY', 1, 2, '', 100, 10, 125, 1, 'I~M', 0, 0, 'BAS', 0, '', 0, 0, 0),
(52, 938, 'conversion_rate', 'vtiger_sarvpayments', 2, '1', 'conversion_rate', 'LBL_CONVERSION_RATE', 1, 2, '1', 100, 11, 125, 3, 'N~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(52, 939, 'payment_method', 'vtiger_sarvpayments', 2, '15', 'payment_method', 'LBL_PAYMENT_METHOD', 1, 2, '', 100, 12, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 940, 'payment_type', 'vtiger_sarvpayments', 2, '15', 'payment_type', 'LBL_PAYMENT_TYPE', 1, 2, '', 100, 13, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 941, 'reference_no', 'vtiger_sarvpayments', 2, '1', 'reference_no', 'LBL_REFERENCE_NO', 1, 2, '', 100, 14, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 942, 'branch_name', 'vtiger_sarvpayments', 2, '1', 'branch_name', 'LBL_BRANCH', 1, 2, '', 100, 15, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 943, 'cashbox_name', 'vtiger_sarvpayments', 2, '1', 'cashbox_name', 'LBL_CASHBOX', 1, 2, '', 100, 16, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 944, 'payment_company', 'vtiger_sarvpayments', 2, '1', 'payment_company', 'LBL_PAYMENT_COMPANY', 1, 2, '', 100, 17, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 945, 'sms_reminder', 'vtiger_sarvpayments', 2, '15', 'sms_reminder', 'LBL_SMS_REMINDER', 1, 2, '', 100, 18, 125, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(52, 946, 'idempotency_key', 'vtiger_sarvpayments', 2, '1', 'idempotency_key', 'LBL_IDEMPOTENCY_KEY', 1, 2, '', 100, 19, 125, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(52, 947, 'legacy_source', 'vtiger_sarvpayments', 2, '1', 'legacy_source', 'LBL_LEGACY_SOURCE', 1, 2, '', 100, 20, 125, 2, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(52, 948, 'legacy_id', 'vtiger_sarvpayments', 2, '7', 'legacy_id', 'LBL_LEGACY_ID', 1, 2, '', 100, 21, 125, 2, 'I~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(52, 949, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 22, 125, 1, 'V~M', 0, 3, 'BAS', 1, '', 0, 0, 0),
(52, 950, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 23, 125, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 951, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 24, 125, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(52, 952, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 126, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 953, 'accountid', 'vtiger_purchaseorder', 1, '10', 'account_id', 'LBL_ACCOUNT_NAME', 1, 0, '', 100, 7, 55, 1, 'I~M', 0, 5, 'BAS', 1, '', 0, 0, 0),
(53, 954, 'participation_no', 'vtiger_sarvparticipations', 2, '4', 'participation_no', 'LBL_PARTICIPATION_NO', 1, 0, '', 100, 1, 127, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(53, 955, 'subject', 'vtiger_sarvparticipations', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 127, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(53, 956, 'accountid', 'vtiger_sarvparticipations', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 127, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(53, 957, 'contactid', 'vtiger_sarvparticipations', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 127, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 958, 'relatedto', 'vtiger_sarvparticipations', 2, '10', 'related_to', 'LBL_RELATED_TO', 1, 2, '', 100, 5, 127, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 959, 'participation_type', 'vtiger_sarvparticipations', 2, '15', 'participation_type', 'LBL_PARTICIPATION_TYPE', 1, 2, '', 100, 6, 127, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 960, 'role_name', 'vtiger_sarvparticipations', 2, '1', 'role_name', 'LBL_ROLE', 1, 2, '', 100, 7, 127, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 961, 'participation_status', 'vtiger_sarvparticipations', 2, '15', 'participation_status', 'LBL_STATUS', 1, 2, '', 100, 8, 127, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 962, 'start_date', 'vtiger_sarvparticipations', 2, '5', 'start_date', 'LBL_START_DATE', 1, 2, '', 100, 9, 127, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 963, 'end_date', 'vtiger_sarvparticipations', 2, '5', 'end_date', 'LBL_END_DATE', 1, 2, '', 100, 10, 127, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 964, 'share_percent', 'vtiger_sarvparticipations', 2, '9', 'share_percent', 'LBL_SHARE_PERCENT', 1, 2, '', 100, 11, 127, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 965, 'contribution_amount', 'vtiger_sarvparticipations', 2, '71', 'contribution_amount', 'LBL_AMOUNT', 1, 2, '', 100, 12, 127, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(53, 966, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 13, 127, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(53, 967, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 14, 127, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(53, 968, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 15, 127, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(53, 969, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 128, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 970, 'response_no', 'vtiger_sarvsurveyresponses', 2, '4', 'response_no', 'LBL_RESPONSE_NO', 1, 0, '', 100, 1, 129, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(54, 971, 'subject', 'vtiger_sarvsurveyresponses', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 129, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(54, 972, 'accountid', 'vtiger_sarvsurveyresponses', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 129, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(54, 973, 'contactid', 'vtiger_sarvsurveyresponses', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 129, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 974, 'survey_title', 'vtiger_sarvsurveyresponses', 2, '1', 'survey_title', 'LBL_SURVEY_TITLE', 1, 2, '', 100, 5, 129, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 975, 'response_status', 'vtiger_sarvsurveyresponses', 2, '15', 'response_status', 'LBL_STATUS', 1, 2, '', 100, 6, 129, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 976, 'channel', 'vtiger_sarvsurveyresponses', 2, '15', 'channel', 'LBL_CHANNEL', 1, 2, '', 100, 7, 129, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 977, 'started_at', 'vtiger_sarvsurveyresponses', 2, '70', 'started_at', 'LBL_STARTED_AT', 1, 2, '', 100, 8, 129, 1, 'DT~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 978, 'submitted_at', 'vtiger_sarvsurveyresponses', 2, '70', 'submitted_at', 'LBL_SUBMITTED_AT', 1, 2, '', 100, 9, 129, 1, 'DT~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 979, 'score', 'vtiger_sarvsurveyresponses', 2, '7', 'score', 'LBL_SCORE', 1, 2, '', 100, 10, 129, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 980, 'nps', 'vtiger_sarvsurveyresponses', 2, '7', 'nps', 'LBL_NPS', 1, 2, '', 100, 11, 129, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 981, 'answers_json', 'vtiger_sarvsurveyresponses', 2, '19', 'answers_json', 'LBL_ANSWERS', 1, 2, '', 100, 12, 129, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(54, 982, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 13, 129, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(54, 983, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 14, 129, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(54, 984, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 15, 129, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(54, 985, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 130, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 986, 'contract_no', 'vtiger_sarvsalescontracts', 2, '4', 'contract_no', 'LBL_CONTRACT_NO', 1, 0, '', 100, 1, 131, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(55, 987, 'subject', 'vtiger_sarvsalescontracts', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 131, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(55, 988, 'accountid', 'vtiger_sarvsalescontracts', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 131, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(55, 989, 'contactid', 'vtiger_sarvsalescontracts', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 131, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 990, 'potentialid', 'vtiger_sarvsalescontracts', 2, '10', 'potential_id', 'LBL_POTENTIAL', 1, 2, '', 100, 5, 131, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 991, 'quoteid', 'vtiger_sarvsalescontracts', 2, '10', 'quote_id', 'LBL_QUOTE', 1, 2, '', 100, 6, 131, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 992, 'salesorderid', 'vtiger_sarvsalescontracts', 2, '10', 'salesorder_id', 'LBL_SALES_ORDER', 1, 2, '', 100, 7, 131, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 993, 'contract_status', 'vtiger_sarvsalescontracts', 2, '15', 'contract_status', 'LBL_STATUS', 1, 2, '', 100, 8, 131, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 994, 'contract_type', 'vtiger_sarvsalescontracts', 2, '15', 'contract_type', 'LBL_CONTRACT_TYPE', 1, 2, '', 100, 9, 131, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 995, 'start_date', 'vtiger_sarvsalescontracts', 2, '5', 'start_date', 'LBL_START_DATE', 1, 2, '', 100, 10, 131, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 996, 'end_date', 'vtiger_sarvsalescontracts', 2, '5', 'end_date', 'LBL_END_DATE', 1, 2, '', 100, 11, 131, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 997, 'signed_date', 'vtiger_sarvsalescontracts', 2, '5', 'signed_date', 'LBL_SIGNED_DATE', 1, 2, '', 100, 12, 131, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 998, 'renewal_date', 'vtiger_sarvsalescontracts', 2, '5', 'renewal_date', 'LBL_RENEWAL_DATE', 1, 2, '', 100, 13, 131, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 999, 'auto_renew', 'vtiger_sarvsalescontracts', 2, '56', 'auto_renew', 'LBL_AUTO_RENEW', 1, 2, '0', 100, 14, 131, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 1000, 'contract_value', 'vtiger_sarvsalescontracts', 2, '71', 'contract_value', 'LBL_CONTRACT_VALUE', 1, 2, '', 100, 15, 131, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 1001, 'currency_id', 'vtiger_sarvsalescontracts', 2, '117', 'currency_id', 'LBL_CURRENCY', 1, 2, '', 100, 16, 131, 1, 'I~M', 0, 4, 'BAS', 0, '', 0, 0, 0),
(55, 1002, 'conversion_rate', 'vtiger_sarvsalescontracts', 2, '1', 'conversion_rate', 'LBL_CONVERSION_RATE', 1, 2, '1', 100, 17, 131, 1, 'N~M', 0, 5, 'BAS', 0, '', 0, 0, 0),
(55, 1003, 'version_no', 'vtiger_sarvsalescontracts', 2, '7', 'version_no', 'LBL_VERSION', 1, 2, '1', 100, 18, 131, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(55, 1004, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 19, 131, 1, 'V~M', 0, 6, 'BAS', 1, '', 0, 0, 0),
(55, 1005, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 20, 131, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(55, 1006, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 21, 131, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(55, 1007, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 132, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1008, 'cf_lead_party_type', 'vtiger_leadscf', 2, '15', 'cf_lead_party_type', 'LBL_LEAD_PARTY_TYPE', 1, 2, 'حقوقی', 100, 1, 13, 1, 'V~M', 0, 10, 'BAS', 1, '', 0, 0, 0),
(7, 1009, 'cf_referred_by', 'vtiger_leadscf', 2, '1', 'cf_referred_by', 'LBL_REFERRED_BY', 1, 2, '', 100, 1, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1010, 'cf_sub_industry', 'vtiger_leadscf', 2, '1', 'cf_sub_industry', 'LBL_SUB_INDUSTRY', 1, 2, '', 100, 2, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1011, 'cf_birth_date', 'vtiger_leadscf', 2, '5', 'cf_birth_date', 'LBL_BIRTH_DATE', 1, 2, '', 100, 3, 133, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1012, 'cf_national_code', 'vtiger_leadscf', 2, '1', 'cf_national_code', 'LBL_NATIONAL_CODE', 1, 2, '', 100, 4, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0);
INSERT IGNORE INTO `vtiger_field` (`tabid`, `fieldid`, `columnname`, `tablename`, `generatedtype`, `uitype`, `fieldname`, `fieldlabel`, `readonly`, `presence`, `defaultvalue`, `maximumlength`, `sequence`, `block`, `displaytype`, `typeofdata`, `quickcreate`, `quickcreatesequence`, `info_type`, `masseditable`, `helpinfo`, `summaryfield`, `headerfield`, `isunique`) VALUES
(7, 1013, 'cf_economic_code', 'vtiger_leadscf', 2, '1', 'cf_economic_code', 'LBL_ECONOMIC_CODE', 1, 2, '', 100, 5, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1014, 'cf_registration_no', 'vtiger_leadscf', 2, '1', 'cf_registration_no', 'LBL_REGISTRATION_NO', 1, 2, '', 100, 6, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1015, 'cf_national_id', 'vtiger_leadscf', 2, '1', 'cf_national_id', 'LBL_NATIONAL_ID', 1, 2, '', 100, 7, 133, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1016, 'cf_foreign_national', 'vtiger_leadscf', 2, '56', 'cf_foreign_national', 'LBL_FOREIGN_NATIONAL', 1, 2, '0', 100, 8, 133, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1017, 'cf_follower_user', 'vtiger_leadscf', 2, '101', 'cf_follower_user', 'LBL_FOLLOWER_USER', 1, 2, '', 100, 9, 133, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1018, 'cf_primary_region', 'vtiger_leadscf', 2, '1', 'cf_primary_region', 'LBL_PRIMARY_REGION', 1, 2, '', 100, 1, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1019, 'cf_primary_lat', 'vtiger_leadscf', 2, '7', 'cf_primary_lat', 'LBL_PRIMARY_LATITUDE', 1, 2, '', 100, 2, 134, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1020, 'cf_primary_lng', 'vtiger_leadscf', 2, '7', 'cf_primary_lng', 'LBL_PRIMARY_LONGITUDE', 1, 2, '', 100, 3, 134, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1021, 'cf_other_region', 'vtiger_leadscf', 2, '1', 'cf_other_region', 'LBL_OTHER_REGION', 1, 2, '', 100, 4, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1022, 'cf_other_country', 'vtiger_leadscf', 2, '1', 'cf_other_country', 'LBL_OTHER_COUNTRY', 1, 2, '', 100, 5, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1023, 'cf_other_state', 'vtiger_leadscf', 2, '1', 'cf_other_state', 'LBL_OTHER_STATE', 1, 2, '', 100, 6, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1024, 'cf_other_city', 'vtiger_leadscf', 2, '1', 'cf_other_city', 'LBL_OTHER_CITY', 1, 2, '', 100, 7, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1025, 'cf_other_code', 'vtiger_leadscf', 2, '1', 'cf_other_code', 'LBL_OTHER_POSTAL_CODE', 1, 2, '', 100, 8, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1026, 'cf_other_street', 'vtiger_leadscf', 2, '21', 'cf_other_street', 'LBL_OTHER_STREET', 1, 2, '', 100, 9, 134, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1027, 'cf_other_lat', 'vtiger_leadscf', 2, '7', 'cf_other_lat', 'LBL_OTHER_LATITUDE', 1, 2, '', 100, 10, 134, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1028, 'cf_other_lng', 'vtiger_leadscf', 2, '7', 'cf_other_lng', 'LBL_OTHER_LONGITUDE', 1, 2, '', 100, 11, 134, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1029, 'cf_linkedin', 'vtiger_leadscf', 2, '17', 'cf_linkedin', 'LBL_LINKEDIN', 1, 2, '', 100, 1, 135, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1030, 'cf_blog', 'vtiger_leadscf', 2, '17', 'cf_blog', 'LBL_BLOG', 1, 2, '', 100, 2, 135, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1031, 'cf_twitter', 'vtiger_leadscf', 2, '17', 'cf_twitter', 'LBL_TWITTER', 1, 2, '', 100, 3, 135, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1032, 'cf_instagram', 'vtiger_leadscf', 2, '17', 'cf_instagram', 'LBL_INSTAGRAM', 1, 2, '', 100, 4, 135, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(7, 1033, 'cf_facebook', 'vtiger_leadscf', 2, '17', 'cf_facebook', 'LBL_FACEBOOK', 1, 2, '', 100, 5, 135, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1034, 'targetlist_no', 'vtiger_sarvtargetlists', 2, '4', 'targetlist_no', 'LBL_TARGETLIST_NO', 1, 0, '', 100, 1, 136, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(56, 1035, 'subject', 'vtiger_sarvtargetlists', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 136, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(56, 1036, 'accountid', 'vtiger_sarvtargetlists', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 136, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(56, 1037, 'list_type', 'vtiger_sarvtargetlists', 2, '15', 'list_type', 'LBL_LIST_TYPE', 1, 2, '', 100, 4, 136, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1038, 'purpose', 'vtiger_sarvtargetlists', 2, '1', 'purpose', 'LBL_PURPOSE', 1, 2, '', 100, 5, 136, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1039, 'list_status', 'vtiger_sarvtargetlists', 2, '15', 'list_status', 'LBL_STATUS', 1, 2, '', 100, 6, 136, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1040, 'valid_from', 'vtiger_sarvtargetlists', 2, '5', 'valid_from', 'LBL_VALID_FROM', 1, 2, '', 100, 7, 136, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1041, 'valid_to', 'vtiger_sarvtargetlists', 2, '5', 'valid_to', 'LBL_VALID_TO', 1, 2, '', 100, 8, 136, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1042, 'filter_definition', 'vtiger_sarvtargetlists', 2, '19', 'filter_definition', 'LBL_FILTER_DEFINITION', 1, 2, '', 100, 9, 136, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(56, 1043, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 10, 136, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(56, 1044, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 11, 136, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(56, 1045, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 12, 136, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(56, 1046, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 137, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1047, 'bankaccount_no', 'vtiger_sarvbankaccounts', 2, '4', 'bankaccount_no', 'LBL_BANKACCOUNT_NO', 1, 0, '', 100, 1, 138, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(57, 1048, 'subject', 'vtiger_sarvbankaccounts', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 138, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(57, 1049, 'accountid', 'vtiger_sarvbankaccounts', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 138, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(57, 1050, 'holder_name', 'vtiger_sarvbankaccounts', 2, '1', 'holder_name', 'LBL_HOLDER_NAME', 1, 2, '', 100, 4, 138, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1051, 'bank_name', 'vtiger_sarvbankaccounts', 2, '1', 'bank_name', 'LBL_BANK_NAME', 1, 2, '', 100, 5, 138, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1052, 'iban_input', 'vtiger_sarvbankaccounts', 2, '1', 'iban_input', 'LBL_IBAN_INPUT', 1, 2, '', 100, 6, 138, 1, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(57, 1053, 'iban_last4', 'vtiger_sarvbankaccounts', 2, '1', 'iban_last4', 'LBL_IBAN_LAST4', 1, 2, '', 100, 7, 138, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(57, 1054, 'iban_hash', 'vtiger_sarvbankaccounts', 2, '1', 'iban_hash', 'LBL_IBAN_HASH', 1, 2, '', 100, 8, 138, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(57, 1055, 'iban_ciphertext', 'vtiger_sarvbankaccounts', 2, '19', 'iban_ciphertext', 'LBL_IBAN_CIPHERTEXT', 1, 2, '', 100, 9, 138, 3, 'V~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(57, 1056, 'account_type', 'vtiger_sarvbankaccounts', 2, '15', 'account_type', 'LBL_ACCOUNT_TYPE', 1, 2, '', 100, 10, 138, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1057, 'account_status', 'vtiger_sarvbankaccounts', 2, '15', 'account_status', 'LBL_STATUS', 1, 2, '', 100, 11, 138, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1058, 'is_primary', 'vtiger_sarvbankaccounts', 2, '56', 'is_primary', 'LBL_PRIMARY', 1, 2, '0', 100, 12, 138, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1059, 'verified_at', 'vtiger_sarvbankaccounts', 2, '70', 'verified_at', 'LBL_VERIFIED_AT', 1, 2, '', 100, 13, 138, 1, 'DT~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(57, 1060, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 14, 138, 1, 'V~M', 0, 5, 'BAS', 1, '', 0, 0, 0),
(57, 1061, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 15, 138, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(57, 1062, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 16, 138, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(57, 1063, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 139, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1064, 'deposit_no', 'vtiger_sarvdeposits', 2, '4', 'deposit_no', 'LBL_DEPOSIT_NO', 1, 0, '', 100, 1, 140, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(58, 1065, 'subject', 'vtiger_sarvdeposits', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 140, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(58, 1066, 'accountid', 'vtiger_sarvdeposits', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 140, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(58, 1067, 'contactid', 'vtiger_sarvdeposits', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 140, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1068, 'relatedto', 'vtiger_sarvdeposits', 2, '10', 'related_to', 'LBL_RELATED_TO', 1, 2, '', 100, 5, 140, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1069, 'deposit_type', 'vtiger_sarvdeposits', 2, '15', 'deposit_type', 'LBL_DEPOSIT_TYPE', 1, 2, '', 100, 6, 140, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1070, 'deposit_status', 'vtiger_sarvdeposits', 2, '15', 'deposit_status', 'LBL_STATUS', 1, 2, '', 100, 7, 140, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1071, 'received_date', 'vtiger_sarvdeposits', 2, '5', 'received_date', 'LBL_RECEIVED_DATE', 1, 2, '', 100, 8, 140, 1, 'D~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1072, 'maturity_date', 'vtiger_sarvdeposits', 2, '5', 'maturity_date', 'LBL_MATURITY_DATE', 1, 2, '', 100, 9, 140, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1073, 'expiry_date', 'vtiger_sarvdeposits', 2, '5', 'expiry_date', 'LBL_EXPIRY_DATE', 1, 2, '', 100, 10, 140, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1074, 'amount', 'vtiger_sarvdeposits', 2, '71', 'amount', 'LBL_AMOUNT', 1, 2, '', 100, 11, 140, 1, 'N~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1075, 'applied_amount', 'vtiger_sarvdeposits', 2, '71', 'applied_amount', 'LBL_APPLIED_AMOUNT', 1, 2, '0', 100, 12, 140, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1076, 'returned_amount', 'vtiger_sarvdeposits', 2, '71', 'returned_amount', 'LBL_RETURNED_AMOUNT', 1, 2, '0', 100, 13, 140, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1077, 'currency_id', 'vtiger_sarvdeposits', 2, '117', 'currency_id', 'LBL_CURRENCY', 1, 2, '', 100, 14, 140, 1, 'I~M', 0, 4, 'BAS', 0, '', 0, 0, 0),
(58, 1078, 'conversion_rate', 'vtiger_sarvdeposits', 2, '1', 'conversion_rate', 'LBL_CONVERSION_RATE', 1, 2, '1', 100, 15, 140, 1, 'N~M', 0, 5, 'BAS', 0, '', 0, 0, 0),
(58, 1079, 'paymentid', 'vtiger_sarvdeposits', 2, '10', 'payment_id', 'LBL_PAYMENT', 1, 2, '', 100, 16, 140, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1080, 'reference_no', 'vtiger_sarvdeposits', 2, '1', 'reference_no', 'LBL_REFERENCE_NO', 1, 2, '', 100, 17, 140, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1081, 'released_date', 'vtiger_sarvdeposits', 2, '5', 'released_date', 'LBL_RELEASED_DATE', 1, 2, '', 100, 18, 140, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(58, 1082, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 19, 140, 1, 'V~M', 0, 6, 'BAS', 1, '', 0, 0, 0),
(58, 1083, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 20, 140, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(58, 1084, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 21, 140, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(58, 1085, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 141, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1086, 'location_no', 'vtiger_sarvbusinesslocations', 2, '4', 'location_no', 'LBL_LOCATION_NO', 1, 0, '', 100, 1, 142, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(59, 1087, 'subject', 'vtiger_sarvbusinesslocations', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 142, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(59, 1088, 'accountid', 'vtiger_sarvbusinesslocations', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 142, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(59, 1089, 'location_type', 'vtiger_sarvbusinesslocations', 2, '15', 'location_type', 'LBL_LOCATION_TYPE', 1, 2, '', 100, 4, 142, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1090, 'parentlocationid', 'vtiger_sarvbusinesslocations', 2, '10', 'parent_location_id', 'LBL_PARENT_LOCATION', 1, 2, '', 100, 5, 142, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1091, 'location_status', 'vtiger_sarvbusinesslocations', 2, '15', 'location_status', 'LBL_STATUS', 1, 2, '', 100, 6, 142, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1092, 'managercontactid', 'vtiger_sarvbusinesslocations', 2, '10', 'manager_contact_id', 'LBL_MANAGER', 1, 2, '', 100, 7, 142, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1093, 'phone', 'vtiger_sarvbusinesslocations', 2, '11', 'phone', 'LBL_PHONE', 1, 2, '', 100, 8, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1094, 'email', 'vtiger_sarvbusinesslocations', 2, '13', 'email', 'LBL_EMAIL', 1, 2, '', 100, 9, 142, 1, 'E~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1095, 'country', 'vtiger_sarvbusinesslocations', 2, '1', 'country', 'LBL_COUNTRY', 1, 2, '', 100, 10, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1096, 'state', 'vtiger_sarvbusinesslocations', 2, '1', 'state', 'LBL_STATE', 1, 2, '', 100, 11, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1097, 'city', 'vtiger_sarvbusinesslocations', 2, '1', 'city', 'LBL_CITY', 1, 2, '', 100, 12, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1098, 'street', 'vtiger_sarvbusinesslocations', 2, '19', 'street', 'LBL_STREET', 1, 2, '', 100, 13, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1099, 'postal_code', 'vtiger_sarvbusinesslocations', 2, '1', 'postal_code', 'LBL_POSTAL_CODE', 1, 2, '', 100, 14, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1100, 'latitude', 'vtiger_sarvbusinesslocations', 2, '7', 'latitude', 'LBL_LATITUDE', 1, 2, '', 100, 15, 142, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1101, 'longitude', 'vtiger_sarvbusinesslocations', 2, '7', 'longitude', 'LBL_LONGITUDE', 1, 2, '', 100, 16, 142, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1102, 'timezone', 'vtiger_sarvbusinesslocations', 2, '1', 'timezone', 'LBL_TIMEZONE', 1, 2, 'Asia/Tehran', 100, 17, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1103, 'daily_capacity', 'vtiger_sarvbusinesslocations', 2, '7', 'daily_capacity', 'LBL_DAILY_CAPACITY', 1, 2, '0', 100, 18, 142, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1104, 'sales_channel', 'vtiger_sarvbusinesslocations', 2, '15', 'sales_channel', 'LBL_SALES_CHANNEL', 1, 2, '', 100, 19, 142, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1105, 'is_primary', 'vtiger_sarvbusinesslocations', 2, '56', 'is_primary', 'LBL_PRIMARY', 1, 2, '0', 100, 20, 142, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(59, 1106, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 21, 142, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(59, 1107, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 22, 142, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(59, 1108, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 23, 142, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(59, 1109, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 143, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1110, 'reservation_no', 'vtiger_sarvtimereservations', 2, '4', 'reservation_no', 'LBL_RESERVATION_NO', 1, 0, '', 100, 1, 144, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(60, 1111, 'subject', 'vtiger_sarvtimereservations', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 144, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(60, 1112, 'accountid', 'vtiger_sarvtimereservations', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 144, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(60, 1113, 'contactid', 'vtiger_sarvtimereservations', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 144, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1114, 'locationid', 'vtiger_sarvtimereservations', 2, '10', 'location_id', 'LBL_LOCATION', 1, 2, '', 100, 5, 144, 1, 'I~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1115, 'serviceid', 'vtiger_sarvtimereservations', 2, '10', 'service_id', 'LBL_SERVICE', 1, 2, '', 100, 6, 144, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1116, 'reservation_status', 'vtiger_sarvtimereservations', 2, '15', 'reservation_status', 'LBL_STATUS', 1, 2, '', 100, 7, 144, 1, 'V~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1117, 'start_datetime', 'vtiger_sarvtimereservations', 2, '70', 'start_datetime', 'LBL_START_DATETIME', 1, 2, '', 100, 8, 144, 1, 'DT~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1118, 'end_datetime', 'vtiger_sarvtimereservations', 2, '70', 'end_datetime', 'LBL_END_DATETIME', 1, 2, '', 100, 9, 144, 1, 'DT~M', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1119, 'duration_minutes', 'vtiger_sarvtimereservations', 2, '7', 'duration_minutes', 'LBL_DURATION_MINUTES', 1, 2, '', 100, 10, 144, 3, 'I~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(60, 1120, 'timezone', 'vtiger_sarvtimereservations', 2, '1', 'timezone', 'LBL_TIMEZONE', 1, 2, 'Asia/Tehran', 100, 11, 144, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1121, 'party_size', 'vtiger_sarvtimereservations', 2, '7', 'party_size', 'LBL_PARTY_SIZE', 1, 2, '1', 100, 12, 144, 1, 'I~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1122, 'channel', 'vtiger_sarvtimereservations', 2, '15', 'channel', 'LBL_CHANNEL', 1, 2, '', 100, 13, 144, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(60, 1123, 'confirmation_code', 'vtiger_sarvtimereservations', 2, '1', 'confirmation_code', 'LBL_CONFIRMATION_CODE', 1, 2, '', 100, 14, 144, 1, 'V~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1124, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 15, 144, 1, 'V~M', 0, 5, 'BAS', 1, '', 0, 0, 0),
(60, 1125, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 16, 144, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1126, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 17, 144, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(60, 1127, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 145, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1128, 'gift_no', 'vtiger_sarvgifts', 2, '4', 'gift_no', 'LBL_GIFT_NO', 1, 0, '', 100, 1, 146, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(61, 1129, 'subject', 'vtiger_sarvgifts', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 146, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(61, 1130, 'accountid', 'vtiger_sarvgifts', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 146, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(61, 1131, 'contactid', 'vtiger_sarvgifts', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 146, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1132, 'campaignid', 'vtiger_sarvgifts', 2, '10', 'campaign_id', 'LBL_CAMPAIGN', 1, 2, '', 100, 5, 146, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1133, 'productid', 'vtiger_sarvgifts', 2, '10', 'product_id', 'LBL_PRODUCT', 1, 2, '', 100, 6, 146, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1134, 'quantity', 'vtiger_sarvgifts', 2, '7', 'quantity', 'LBL_QUANTITY', 1, 2, '', 100, 7, 146, 1, 'N~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1135, 'unit_cost', 'vtiger_sarvgifts', 2, '71', 'unit_cost', 'LBL_UNIT_COST', 1, 2, '', 100, 8, 146, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1136, 'reason', 'vtiger_sarvgifts', 2, '1', 'reason', 'LBL_REASON', 1, 2, '', 100, 9, 146, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1137, 'gift_status', 'vtiger_sarvgifts', 2, '15', 'gift_status', 'LBL_STATUS', 1, 2, '', 100, 10, 146, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1138, 'request_date', 'vtiger_sarvgifts', 2, '5', 'request_date', 'LBL_REQUEST_DATE', 1, 2, '', 100, 11, 146, 1, 'D~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1139, 'dispatch_date', 'vtiger_sarvgifts', 2, '5', 'dispatch_date', 'LBL_DISPATCH_DATE', 1, 2, '', 100, 12, 146, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1140, 'delivery_date', 'vtiger_sarvgifts', 2, '5', 'delivery_date', 'LBL_DELIVERY_DATE', 1, 2, '', 100, 13, 146, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1141, 'return_date', 'vtiger_sarvgifts', 2, '5', 'return_date', 'LBL_RETURN_DATE', 1, 2, '', 100, 14, 146, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1142, 'tracking_no', 'vtiger_sarvgifts', 2, '1', 'tracking_no', 'LBL_TRACKING_NO', 1, 2, '', 100, 15, 146, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(61, 1143, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 16, 146, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(61, 1144, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 17, 146, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(61, 1145, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 18, 146, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(61, 1146, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 147, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1147, 'sample_no', 'vtiger_sarvproductsamples', 2, '4', 'sample_no', 'LBL_SAMPLE_NO', 1, 0, '', 100, 1, 148, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(62, 1148, 'subject', 'vtiger_sarvproductsamples', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 148, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(62, 1149, 'accountid', 'vtiger_sarvproductsamples', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 148, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(62, 1150, 'contactid', 'vtiger_sarvproductsamples', 2, '10', 'contact_id', 'LBL_CONTACT', 1, 2, '', 100, 4, 148, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1151, 'potentialid', 'vtiger_sarvproductsamples', 2, '10', 'potential_id', 'LBL_POTENTIAL', 1, 2, '', 100, 5, 148, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1152, 'campaignid', 'vtiger_sarvproductsamples', 2, '10', 'campaign_id', 'LBL_CAMPAIGN', 1, 2, '', 100, 6, 148, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1153, 'productid', 'vtiger_sarvproductsamples', 2, '10', 'product_id', 'LBL_PRODUCT', 1, 2, '', 100, 7, 148, 1, 'I~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1154, 'quantity', 'vtiger_sarvproductsamples', 2, '7', 'quantity', 'LBL_QUANTITY', 1, 2, '', 100, 8, 148, 1, 'N~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1155, 'unit_name', 'vtiger_sarvproductsamples', 2, '1', 'unit_name', 'LBL_UNIT', 1, 2, '', 100, 9, 148, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1156, 'sample_status', 'vtiger_sarvproductsamples', 2, '15', 'sample_status', 'LBL_STATUS', 1, 2, '', 100, 10, 148, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1157, 'request_date', 'vtiger_sarvproductsamples', 2, '5', 'request_date', 'LBL_REQUEST_DATE', 1, 2, '', 100, 11, 148, 1, 'D~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1158, 'dispatch_date', 'vtiger_sarvproductsamples', 2, '5', 'dispatch_date', 'LBL_DISPATCH_DATE', 1, 2, '', 100, 12, 148, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1159, 'return_due_date', 'vtiger_sarvproductsamples', 2, '5', 'return_due_date', 'LBL_RETURN_DUE_DATE', 1, 2, '', 100, 13, 148, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1160, 'return_date', 'vtiger_sarvproductsamples', 2, '5', 'return_date', 'LBL_RETURN_DATE', 1, 2, '', 100, 14, 148, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1161, 'cost', 'vtiger_sarvproductsamples', 2, '71', 'cost', 'LBL_COST', 1, 2, '', 100, 15, 148, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1162, 'tracking_no', 'vtiger_sarvproductsamples', 2, '1', 'tracking_no', 'LBL_TRACKING_NO', 1, 2, '', 100, 16, 148, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(62, 1163, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 17, 148, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(62, 1164, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 18, 148, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(62, 1165, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 19, 148, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(62, 1166, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 149, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(63, 1167, 'grant_no', 'vtiger_sarvaccessgrants', 2, '4', 'grant_no', 'LBL_GRANT_NO', 1, 0, '', 100, 1, 150, 1, 'V~O', 3, 1, 'BAS', 0, '', 0, 0, 0),
(63, 1168, 'subject', 'vtiger_sarvaccessgrants', 2, '2', 'subject', 'LBL_SUBJECT', 1, 2, '', 100, 2, 150, 3, 'V~O', 3, 2, 'BAS', 0, '', 0, 0, 0),
(63, 1169, 'accountid', 'vtiger_sarvaccessgrants', 2, '10', 'account_id', 'LBL_ACCOUNT', 1, 2, '', 100, 3, 150, 1, 'I~M', 0, 3, 'BAS', 0, '', 0, 0, 0),
(63, 1170, 'groupid', 'vtiger_sarvaccessgrants', 2, '1001', 'group_id', 'LBL_GROUP_ID', 1, 2, '', 100, 4, 150, 1, 'I~M', 0, 0, 'BAS', 0, '', 0, 0, 0),
(63, 1171, 'group_name', 'vtiger_sarvaccessgrants', 2, '1', 'group_name', 'LBL_GROUP_NAME', 1, 2, '', 100, 5, 150, 3, 'V~O', 3, 0, 'BAS', 0, '', 0, 0, 0),
(63, 1172, 'access_level', 'vtiger_sarvaccessgrants', 2, '15', 'access_level', 'LBL_ACCESS_LEVEL', 1, 2, 'Read', 100, 6, 150, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(63, 1173, 'grant_status', 'vtiger_sarvaccessgrants', 2, '15', 'grant_status', 'LBL_STATUS', 1, 2, 'Active', 100, 7, 150, 1, 'V~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(63, 1174, 'valid_from', 'vtiger_sarvaccessgrants', 2, '5', 'valid_from', 'LBL_VALID_FROM', 1, 2, '', 100, 8, 150, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(63, 1175, 'valid_to', 'vtiger_sarvaccessgrants', 2, '5', 'valid_to', 'LBL_VALID_TO', 1, 2, '', 100, 9, 150, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(63, 1176, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 10, 150, 1, 'V~M', 0, 4, 'BAS', 1, '', 0, 0, 0),
(63, 1177, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 11, 150, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(63, 1178, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 12, 150, 2, 'T~O', 1, 0, 'BAS', 0, '', 0, 0, 0),
(63, 1179, 'description', 'vtiger_crmentity', 2, '19', 'description', 'Description', 1, 2, '', 100, 1, 151, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1180, 'cf_national_code', 'vtiger_contactscf', 2, '1', 'cf_national_code', 'LBL_NATIONAL_CODE', 1, 2, '', 100, 1, 5, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1181, 'cf_grouping1', 'vtiger_contactscf', 2, '15', 'cf_grouping1', 'LBL_GROUPING_1', 1, 2, '', 100, 2, 5, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1182, 'cf_grouping2', 'vtiger_contactscf', 2, '15', 'cf_grouping2', 'LBL_GROUPING_2', 1, 2, '', 100, 3, 5, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1183, 'cf_website', 'vtiger_contactscf', 2, '17', 'cf_website', 'LBL_WEBSITE', 1, 2, '', 100, 4, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1184, 'cf_linkedin', 'vtiger_contactscf', 2, '17', 'cf_linkedin', 'LBL_LINKEDIN', 1, 2, '', 100, 5, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1185, 'cf_blog', 'vtiger_contactscf', 2, '17', 'cf_blog', 'LBL_BLOG', 1, 2, '', 100, 6, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1186, 'cf_twitter', 'vtiger_contactscf', 2, '17', 'cf_twitter', 'LBL_TWITTER', 1, 2, '', 100, 7, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1187, 'cf_instagram', 'vtiger_contactscf', 2, '17', 'cf_instagram', 'LBL_INSTAGRAM', 1, 2, '', 100, 8, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1188, 'cf_facebook', 'vtiger_contactscf', 2, '17', 'cf_facebook', 'LBL_FACEBOOK', 1, 2, '', 100, 9, 152, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1189, 'sarv_po_date', 'vtiger_purchaseordercf', 2, '5', 'sarv_po_date', 'LBL_SARV_PO_DATE', 1, 2, '', 100, 6, 55, 1, 'D~M', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1190, 'sarv_opportunity_id', 'vtiger_purchaseordercf', 2, '10', 'sarv_opportunity_id', 'LBL_SARV_FOR_OPPORTUNITY', 1, 2, '', 100, 8, 55, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1191, 'sarv_for_contact_id', 'vtiger_purchaseordercf', 2, '10', 'sarv_for_contact_id', 'LBL_SARV_FOR_CONTACT', 1, 2, '', 100, 9, 55, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1192, 'sarv_sms_reminder', 'vtiger_purchaseordercf', 2, '15', 'sarv_sms_reminder', 'LBL_SARV_SMS_REMINDER', 1, 2, '', 100, 1, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1193, 'sarv_shipping_method', 'vtiger_purchaseordercf', 2, '15', 'sarv_shipping_method', 'LBL_SARV_SHIPPING_METHOD', 1, 2, '', 100, 6, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1194, 'sarv_delivery_format', 'vtiger_purchaseordercf', 2, '15', 'sarv_delivery_format', 'LBL_SARV_DELIVERY_FORMAT', 1, 2, '', 100, 7, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1195, 'sarv_partial_delivery', 'vtiger_purchaseordercf', 2, '56', 'sarv_partial_delivery', 'LBL_SARV_PARTIAL_DELIVERY', 1, 2, '', 100, 8, 153, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1196, 'sarv_payment_method', 'vtiger_purchaseordercf', 2, '15', 'sarv_payment_method', 'LBL_SARV_PAYMENT_METHOD', 1, 2, '', 100, 9, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1197, 'sarv_payment_status', 'vtiger_purchaseordercf', 2, '15', 'sarv_payment_status', 'LBL_SARV_PAYMENT_STATUS', 1, 2, '', 100, 10, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1198, 'sarv_payment_notes', 'vtiger_purchaseordercf', 2, '19', 'sarv_payment_notes', 'LBL_SARV_PAYMENT_NOTES', 1, 2, '', 100, 11, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1199, 'sarv_po_category', 'vtiger_purchaseordercf', 2, '15', 'sarv_po_category', 'LBL_SARV_PO_CATEGORY', 1, 2, '', 100, 12, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1200, 'sarv_print_template', 'vtiger_purchaseordercf', 2, '15', 'sarv_print_template', 'LBL_SARV_PRINT_TEMPLATE', 1, 2, '', 100, 13, 153, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1201, 'sarv_bill_geo_area', 'vtiger_purchaseordercf', 2, '1', 'sarv_bill_geo_area', 'LBL_SARV_BILL_GEO_AREA', 1, 2, '', 100, 3, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1202, 'sarv_ship_geo_area', 'vtiger_purchaseordercf', 2, '1', 'sarv_ship_geo_area', 'LBL_SARV_SHIP_GEO_AREA', 1, 2, '', 100, 4, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1203, 'sarv_bill_latitude', 'vtiger_purchaseordercf', 2, '1', 'sarv_bill_latitude', 'LBL_SARV_BILL_LATITUDE', 1, 2, '', 100, 13, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1204, 'sarv_ship_latitude', 'vtiger_purchaseordercf', 2, '1', 'sarv_ship_latitude', 'LBL_SARV_SHIP_LATITUDE', 1, 2, '', 100, 14, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1205, 'sarv_bill_longitude', 'vtiger_purchaseordercf', 2, '1', 'sarv_bill_longitude', 'LBL_SARV_BILL_LONGITUDE', 1, 2, '', 100, 15, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1206, 'sarv_ship_longitude', 'vtiger_purchaseordercf', 2, '1', 'sarv_ship_longitude', 'LBL_SARV_SHIP_LONGITUDE', 1, 2, '', 100, 16, 57, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(21, 1207, 'sarv_copy_address', 'vtiger_purchaseordercf', 2, '56', 'sarv_copy_address', 'LBL_SARV_COPY_ADDRESS', 1, 2, '', 100, 17, 57, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 1208, 'cf_bill_geo_area', 'vtiger_quotescf', 2, '1', 'cf_bill_geo_area', 'LBL_SARV_BILL_GEO_AREA', 1, 2, '', 100, 3, 51, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 1209, 'cf_ship_geo_area', 'vtiger_quotescf', 2, '1', 'cf_ship_geo_area', 'LBL_SARV_SHIP_GEO_AREA', 1, 2, '', 100, 4, 51, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 1210, 'cf_copy_address', 'vtiger_quotescf', 2, '56', 'cf_copy_address', 'LBL_SARV_COPY_ADDRESS', 1, 2, '', 100, 17, 51, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 1211, 'cf_credit_limit', 'vtiger_quotescf', 2, '71', 'cf_credit_limit', 'LBL_SARV_CREDIT_LIMIT', 1, 2, '', 100, 1, 154, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(20, 1212, 'cf_receivable_total', 'vtiger_quotescf', 2, '71', 'cf_receivable_total', 'LBL_SARV_RECEIVABLE_TOTAL', 1, 2, '', 100, 2, 154, 1, 'N~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1213, 'branch_id', 'vtiger_contactscf', 2, '10', 'branch_id', 'شعبه', 1, 2, '', 100, 33, 4, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(4, 1214, 'cf_primary_region', 'vtiger_contactscf', 2, '1', 'cf_primary_region', 'منطقه جغرافیایی اصلی', 1, 2, '', 100, 13, 7, 1, 'V~O', 0, 10, 'ADV', 0, '', 0, 0, 0),
(4, 1215, 'cf_other_region', 'vtiger_contactscf', 2, '1', 'cf_other_region', 'منطقه جغرافیایی دیگر', 1, 2, '', 100, 14, 7, 1, 'V~O', 0, 11, 'ADV', 0, '', 0, 0, 0),
(4, 1216, 'cf_primary_lat', 'vtiger_contactscf', 2, '1', 'cf_primary_lat', 'عرض جغرافیایی اصلی', 1, 2, '', 100, 15, 7, 1, 'N~O', 0, 12, 'ADV', 0, '', 0, 0, 0),
(4, 1217, 'cf_primary_lng', 'vtiger_contactscf', 2, '1', 'cf_primary_lng', 'طول جغرافیایی اصلی', 1, 2, '', 100, 16, 7, 1, 'N~O', 0, 13, 'ADV', 0, '', 0, 0, 0),
(4, 1218, 'cf_other_lat', 'vtiger_contactscf', 2, '1', 'cf_other_lat', 'عرض جغرافیایی دیگر', 1, 2, '', 100, 17, 7, 1, 'N~O', 0, 14, 'ADV', 0, '', 0, 0, 0),
(4, 1219, 'cf_other_lng', 'vtiger_contactscf', 2, '1', 'cf_other_lng', 'طول جغرافیایی دیگر', 1, 2, '', 100, 18, 7, 1, 'N~O', 0, 15, 'ADV', 0, '', 0, 0, 0),
(65, 1220, 'name', 'vtiger_communications', 2, '2', 'name', 'Name', 1, 0, '', 100, 1, 155, 1, 'V~M', 0, 1, 'BAS', 1, '', 0, 0, 0),
(65, 1221, 'enabled', 'vtiger_communications', 2, '56', 'enabled', 'Enabled', 1, 2, '', 100, 2, 155, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1222, 'parent_type', 'vtiger_communications', 2, '1', 'parent_type', 'Parent Module', 1, 2, '', 100, 3, 155, 1, 'V~M', 0, 2, 'BAS', 1, '', 0, 0, 0),
(65, 1223, 'type', 'vtiger_communications', 2, '1', 'type', 'Record Type', 1, 2, '', 100, 4, 155, 1, 'V~M', 0, 3, 'BAS', 1, '', 0, 0, 0),
(65, 1224, 'condition_name', 'vtiger_communications', 2, '1', 'condition_name', 'Condition', 1, 2, '', 100, 5, 155, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1225, 'condition_value', 'vtiger_communications', 2, '1', 'condition_value', 'Condition Value', 1, 2, '', 100, 6, 155, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1226, 'sms_message_flag', 'vtiger_communications', 2, '56', 'sms_message_flag', 'Send SMS', 1, 2, '', 100, 1, 156, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1227, 'email_message_flag', 'vtiger_communications', 2, '56', 'email_message_flag', 'Send Email', 1, 2, '', 100, 2, 156, 1, 'C~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1228, 'sms_title', 'vtiger_communications', 2, '1', 'sms_title', 'SMS Title', 1, 2, '', 100, 3, 156, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1229, 'email_title', 'vtiger_communications', 2, '1', 'email_title', 'Email Title', 1, 2, '', 100, 4, 156, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1230, 'template', 'vtiger_communications', 2, '1', 'template', 'Template', 1, 2, '', 100, 5, 156, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(65, 1231, 'template_id', 'vtiger_communications', 2, '7', 'template_id', 'Template Id', 1, 2, '', 100, 6, 156, 3, 'I~O', 3, 4, 'BAS', 0, '', 0, 0, 0),
(65, 1232, 'smownerid', 'vtiger_crmentity', 2, '53', 'assigned_user_id', 'Assigned To', 1, 2, '', 100, 7, 155, 1, 'V~M', 0, 5, 'BAS', 1, '', 0, 0, 0),
(65, 1233, 'createdtime', 'vtiger_crmentity', 2, '70', 'createdtime', 'Created Time', 1, 2, '', 100, 8, 155, 2, 'T~O', 3, 6, 'BAS', 0, '', 0, 0, 0),
(65, 1234, 'modifiedtime', 'vtiger_crmentity', 2, '70', 'modifiedtime', 'Modified Time', 1, 2, '', 100, 9, 155, 2, 'T~O', 3, 7, 'BAS', 0, '', 0, 0, 0),
(2, 1235, 'cf_opportunity_currency', 'vtiger_potentialscf', 2, '15', 'cf_opportunity_currency', 'LBL_GOOYA_OPPORTUNITY_CURRENCY', 1, 2, '', 100, 1, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1236, 'cf_price_basis', 'vtiger_potentialscf', 2, '10', 'cf_price_basis', 'LBL_GOOYA_PRICE_BASIS', 1, 2, '', 100, 2, 157, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1237, 'cf_sales_process', 'vtiger_potentialscf', 2, '15', 'cf_sales_process', 'LBL_GOOYA_SALES_PROCESS', 1, 2, '', 100, 3, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1238, 'cf_opportunity_priority', 'vtiger_potentialscf', 2, '15', 'cf_opportunity_priority', 'LBL_GOOYA_OPPORTUNITY_PRIORITY', 1, 2, '', 100, 4, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1239, 'cf_project_id', 'vtiger_potentialscf', 2, '10', 'cf_project_id', 'LBL_GOOYA_PROJECT', 1, 2, '', 100, 5, 157, 1, 'I~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1240, 'cf_loss_reason', 'vtiger_potentialscf', 2, '15', 'cf_loss_reason', 'LBL_GOOYA_LOSS_REASON', 1, 2, '', 100, 6, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1241, 'cf_forecast_category', 'vtiger_potentialscf', 2, '15', 'cf_forecast_category', 'LBL_GOOYA_FORECAST_CATEGORY', 1, 2, '', 100, 7, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1242, 'cf_invoice_cycles', 'vtiger_potentialscf', 2, '15', 'cf_invoice_cycles', 'LBL_GOOYA_INVOICE_CYCLES', 1, 2, '', 100, 8, 157, 1, 'V~O', 1, 0, 'BAS', 1, '', 0, 0, 0),
(2, 1243, 'cf_payment_end_date', 'vtiger_potentialscf', 2, '5', 'cf_payment_end_date', 'LBL_GOOYA_PAYMENT_END_DATE', 1, 2, '', 100, 9, 157, 1, 'D~O', 1, 0, 'BAS', 1, '', 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_fieldmodulerel`
--

DROP TABLE IF EXISTS `vtiger_fieldmodulerel`;
CREATE TABLE `vtiger_fieldmodulerel` (
  `fieldid` int(11) NOT NULL,
  `module` varchar(100) NOT NULL,
  `relmodule` varchar(100) NOT NULL,
  `status` varchar(10) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_fieldmodulerel`
--

INSERT IGNORE INTO `vtiger_fieldmodulerel` (`fieldid`, `module`, `relmodule`, `status`, `sequence`) VALUES
(113, 'Potentials', 'Accounts', NULL, 0),
(535, 'PBXManager', 'Leads', NULL, NULL),
(535, 'PBXManager', 'Contacts', NULL, NULL),
(535, 'PBXManager', 'Accounts', NULL, NULL),
(549, 'ServiceContracts', 'Contacts', NULL, NULL),
(549, 'ServiceContracts', 'Accounts', NULL, NULL),
(589, 'Assets', 'Products', NULL, NULL),
(595, 'Assets', 'Invoice', NULL, NULL),
(600, 'Assets', 'Accounts', NULL, NULL),
(601, 'Assets', 'Contacts', NULL, NULL),
(613, 'ModComments', 'Leads', NULL, NULL),
(613, 'ModComments', 'Contacts', NULL, NULL),
(613, 'ModComments', 'Accounts', NULL, NULL),
(615, 'ModComments', 'ModComments', NULL, NULL),
(613, 'ModComments', 'Potentials', NULL, NULL),
(619, 'ProjectMilestone', 'Project', NULL, NULL),
(633, 'ProjectTask', 'Project', NULL, NULL),
(613, 'ModComments', 'ProjectTask', NULL, NULL),
(654, 'Project', 'Accounts', NULL, NULL),
(654, 'Project', 'Contacts', NULL, NULL),
(613, 'ModComments', 'Project', NULL, NULL),
(676, 'Invoice', 'Products', NULL, NULL),
(676, 'Invoice', 'Services', NULL, NULL),
(685, 'SalesOrder', 'Products', NULL, NULL),
(685, 'SalesOrder', 'Services', NULL, NULL),
(694, 'PurchaseOrder', 'Products', NULL, NULL),
(694, 'PurchaseOrder', 'Services', NULL, NULL),
(703, 'Quotes', 'Products', NULL, NULL),
(703, 'Quotes', 'Services', NULL, NULL),
(714, 'ModComments', 'Contacts', NULL, NULL),
(613, 'ModComments', 'HelpDesk', NULL, NULL),
(613, 'ModComments', 'Faq', NULL, NULL),
(740, 'Potentials', 'Contacts', NULL, NULL),
(157, 'HelpDesk', 'Accounts', NULL, NULL),
(741, 'HelpDesk', 'Contacts', NULL, NULL),
(238, 'Accounts', 'Calendar', NULL, NULL),
(238, 'Leads', 'Calendar', NULL, NULL),
(238, 'HelpDesk', 'Calendar', NULL, NULL),
(238, 'Campaigns', 'Calendar', NULL, NULL),
(238, 'Potentials', 'Calendar', NULL, NULL),
(238, 'PurchaseOrder', 'Calendar', NULL, NULL),
(238, 'SalesOrder', 'Calendar', NULL, NULL),
(238, 'Quotes', 'Calendar', NULL, NULL),
(238, 'Invoice', 'Calendar', NULL, NULL),
(239, 'Contacts', 'Calendar', NULL, NULL),
(774, 'Invoice', 'Potentials', NULL, NULL),
(613, 'ModComments', 'Invoice', NULL, NULL),
(613, 'ModComments', 'Quotes', NULL, NULL),
(613, 'ModComments', 'PurchaseOrder', NULL, NULL),
(613, 'ModComments', 'SalesOrder', NULL, NULL),
(849, 'Project', 'Potentials', NULL, NULL),
(930, 'SarvPayments', 'Accounts', NULL, NULL),
(931, 'SarvPayments', 'Contacts', NULL, NULL),
(953, 'PurchaseOrder', 'Accounts', NULL, NULL),
(956, 'SarvParticipations', 'Accounts', NULL, NULL),
(957, 'SarvParticipations', 'Contacts', NULL, NULL),
(958, 'SarvParticipations', 'Project', NULL, NULL),
(958, 'SarvParticipations', 'Campaigns', NULL, NULL),
(958, 'SarvParticipations', 'ServiceContracts', NULL, NULL),
(972, 'SarvSurveyResponses', 'Accounts', NULL, NULL),
(973, 'SarvSurveyResponses', 'Contacts', NULL, NULL),
(988, 'SarvSalesContracts', 'Accounts', NULL, NULL),
(989, 'SarvSalesContracts', 'Contacts', NULL, NULL),
(990, 'SarvSalesContracts', 'Potentials', NULL, NULL),
(991, 'SarvSalesContracts', 'Quotes', NULL, NULL),
(992, 'SarvSalesContracts', 'SalesOrder', NULL, NULL),
(1036, 'SarvTargetLists', 'Accounts', NULL, NULL),
(1049, 'SarvBankAccounts', 'Accounts', NULL, NULL),
(1066, 'SarvDeposits', 'Accounts', NULL, NULL),
(1067, 'SarvDeposits', 'Contacts', NULL, NULL),
(1068, 'SarvDeposits', 'Invoice', NULL, NULL),
(1068, 'SarvDeposits', 'SalesOrder', NULL, NULL),
(1068, 'SarvDeposits', 'ServiceContracts', NULL, NULL),
(1079, 'SarvDeposits', 'SarvPayments', NULL, NULL),
(1088, 'SarvBusinessLocations', 'Accounts', NULL, NULL),
(1090, 'SarvBusinessLocations', 'SarvBusinessLocations', NULL, NULL),
(1092, 'SarvBusinessLocations', 'Contacts', NULL, NULL),
(1112, 'SarvTimeReservations', 'Accounts', NULL, NULL),
(1113, 'SarvTimeReservations', 'Contacts', NULL, NULL),
(1114, 'SarvTimeReservations', 'SarvBusinessLocations', NULL, NULL),
(1115, 'SarvTimeReservations', 'Services', NULL, NULL),
(1130, 'SarvGifts', 'Accounts', NULL, NULL),
(1131, 'SarvGifts', 'Contacts', NULL, NULL),
(1132, 'SarvGifts', 'Campaigns', NULL, NULL),
(1133, 'SarvGifts', 'Products', NULL, NULL),
(1149, 'SarvProductSamples', 'Accounts', NULL, NULL),
(1150, 'SarvProductSamples', 'Contacts', NULL, NULL),
(1151, 'SarvProductSamples', 'Potentials', NULL, NULL),
(1152, 'SarvProductSamples', 'Campaigns', NULL, NULL),
(1153, 'SarvProductSamples', 'Products', NULL, NULL),
(1169, 'SarvAccessGrants', 'Accounts', NULL, NULL),
(1190, 'PurchaseOrder', 'Potentials', NULL, NULL),
(1191, 'PurchaseOrder', 'Contacts', NULL, NULL),
(1213, 'Contacts', 'SarvBusinessLocations', NULL, NULL),
(1236, 'Potentials', 'PriceBooks', NULL, NULL),
(1239, 'Potentials', 'Project', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_field_seq`
--

DROP TABLE IF EXISTS `vtiger_field_seq`;
CREATE TABLE `vtiger_field_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_field_seq`
--

INSERT IGNORE INTO `vtiger_field_seq` (`id`) VALUES
(1243);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_freetagged_objects`
--

DROP TABLE IF EXISTS `vtiger_freetagged_objects`;
CREATE TABLE `vtiger_freetagged_objects` (
  `tag_id` int(20) NOT NULL DEFAULT 0,
  `tagger_id` int(20) NOT NULL DEFAULT 0,
  `object_id` int(20) NOT NULL DEFAULT 0,
  `tagged_on` timestamp NOT NULL DEFAULT current_timestamp(),
  `module` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_freetags`
--

DROP TABLE IF EXISTS `vtiger_freetags`;
CREATE TABLE `vtiger_freetags` (
  `id` int(19) NOT NULL,
  `tag` varchar(50) NOT NULL DEFAULT '',
  `raw_tag` varchar(50) NOT NULL DEFAULT '',
  `visibility` varchar(100) NOT NULL DEFAULT 'PRIVATE',
  `owner` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_freetags_seq`
--

DROP TABLE IF EXISTS `vtiger_freetags_seq`;
CREATE TABLE `vtiger_freetags_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_freetags_seq`
--

INSERT IGNORE INTO `vtiger_freetags_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_gift_status`
--

DROP TABLE IF EXISTS `vtiger_gift_status`;
CREATE TABLE `vtiger_gift_status` (
  `gift_statusid` int(11) NOT NULL,
  `gift_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_gift_status`
--

INSERT IGNORE INTO `vtiger_gift_status` (`gift_statusid`, `gift_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Requested', 1, 451, 1, NULL),
(2, 'Approved', 1, 452, 2, NULL),
(3, 'Dispatched', 1, 453, 3, NULL),
(4, 'Delivered', 1, 454, 4, NULL),
(5, 'Returned', 1, 455, 5, NULL),
(6, 'Cancelled', 1, 456, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_gift_status_seq`
--

DROP TABLE IF EXISTS `vtiger_gift_status_seq`;
CREATE TABLE `vtiger_gift_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_gift_status_seq`
--

INSERT IGNORE INTO `vtiger_gift_status_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_glacct`
--

DROP TABLE IF EXISTS `vtiger_glacct`;
CREATE TABLE `vtiger_glacct` (
  `glacctid` int(19) NOT NULL,
  `glacct` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_glacct`
--

INSERT IGNORE INTO `vtiger_glacct` (`glacctid`, `glacct`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, '300-Sales-Software', 1, 51, 0, NULL),
(2, '301-Sales-Hardware', 1, 52, 1, NULL),
(3, '302-Rental-Income', 1, 53, 2, NULL),
(4, '303-Interest-Income', 1, 54, 3, NULL),
(5, '304-Sales-Software-Support', 1, 55, 4, NULL),
(6, '305-Sales Other', 1, 56, 5, NULL),
(7, '306-Internet Sales', 1, 57, 6, NULL),
(8, '307-Service-Hardware Labor', 1, 58, 7, NULL),
(9, '308-Sales-Books', 1, 59, 8, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_glacct_seq`
--

DROP TABLE IF EXISTS `vtiger_glacct_seq`;
CREATE TABLE `vtiger_glacct_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_glacct_seq`
--

INSERT IGNORE INTO `vtiger_glacct_seq` (`id`) VALUES
(9);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_google_event_calendar_mapping`
--

DROP TABLE IF EXISTS `vtiger_google_event_calendar_mapping`;
CREATE TABLE `vtiger_google_event_calendar_mapping` (
  `event_id` varchar(255) DEFAULT NULL,
  `calendar_id` varchar(255) DEFAULT NULL,
  `user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_google_map`
--

DROP TABLE IF EXISTS `vtiger_google_map`;
CREATE TABLE `vtiger_google_map` (
  `module` varchar(255) DEFAULT NULL,
  `parameter_name` varchar(255) DEFAULT NULL,
  `parameter_field` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_google_map`
--

INSERT IGNORE INTO `vtiger_google_map` (`module`, `parameter_name`, `parameter_field`) VALUES
('Contacts', 'street', 'mailingstreet'),
('Contacts', 'city', 'mailingcity'),
('Contacts', 'state', 'mailingstate'),
('Contacts', 'zip', 'mailingzip'),
('Contacts', 'country', 'mailingcountry'),
('Leads', 'street', 'lane'),
('Leads', 'city', 'city'),
('Leads', 'state', 'state'),
('Leads', 'zip', 'code'),
('Leads', 'country', 'country'),
('Accounts', 'street', 'bill_street'),
('Accounts', 'city', 'bill_city'),
('Accounts', 'state', 'bill_state'),
('Accounts', 'zip', 'bill_code'),
('Accounts', 'country', 'bill_country');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_google_oauth2`
--

DROP TABLE IF EXISTS `vtiger_google_oauth2`;
CREATE TABLE `vtiger_google_oauth2` (
  `service` varchar(20) DEFAULT NULL,
  `access_token` varchar(500) DEFAULT NULL,
  `refresh_token` varchar(500) DEFAULT NULL,
  `userid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_google_sync_fieldmapping`
--

DROP TABLE IF EXISTS `vtiger_google_sync_fieldmapping`;
CREATE TABLE `vtiger_google_sync_fieldmapping` (
  `vtiger_field` varchar(255) DEFAULT NULL,
  `google_field` varchar(255) DEFAULT NULL,
  `google_field_type` varchar(255) DEFAULT NULL,
  `google_custom_label` varchar(255) DEFAULT NULL,
  `user` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_google_sync_settings`
--

DROP TABLE IF EXISTS `vtiger_google_sync_settings`;
CREATE TABLE `vtiger_google_sync_settings` (
  `user` int(11) DEFAULT NULL,
  `module` varchar(50) DEFAULT NULL,
  `clientgroup` varchar(255) DEFAULT NULL,
  `direction` varchar(50) DEFAULT NULL,
  `enabled` tinyint(3) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_gooyagoals`
--

DROP TABLE IF EXISTS `vtiger_gooyagoals`;
CREATE TABLE `vtiger_gooyagoals` (
  `id` int(11) NOT NULL,
  `jyear` int(11) NOT NULL,
  `jmonth` tinyint(4) NOT NULL,
  `userid` int(11) NOT NULL,
  `amount` decimal(25,2) NOT NULL DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_gooyagoals`
--

INSERT IGNORE INTO `vtiger_gooyagoals` (`id`, `jyear`, `jmonth`, `userid`, `amount`) VALUES
(1, 1405, 1, 1, 300000000.00),
(2, 1405, 2, 1, 300000000.00),
(3, 1405, 3, 1, 300000000.00),
(4, 1405, 4, 1, 300000000.00),
(5, 1405, 5, 1, 300000000.00),
(6, 1405, 6, 1, 300000000.00),
(7, 1405, 7, 1, 300000000.00),
(8, 1405, 8, 1, 300000000.00),
(9, 1405, 9, 1, 300000000.00),
(10, 1405, 10, 1, 300000000.00),
(11, 1405, 11, 1, 300000000.00),
(12, 1405, 12, 1, 300000000.00),
(13, 1405, 1, 5, 250000000.00),
(14, 1405, 2, 5, 250000000.00),
(15, 1405, 3, 5, 250000000.00),
(16, 1405, 4, 5, 250000000.00),
(17, 1405, 5, 5, 250000000.00),
(18, 1405, 6, 5, 250000000.00),
(19, 1405, 7, 5, 250000000.00),
(20, 1405, 8, 5, 250000000.00),
(21, 1405, 9, 5, 250000000.00),
(22, 1405, 10, 5, 250000000.00),
(23, 1405, 11, 5, 250000000.00),
(24, 1405, 12, 5, 250000000.00),
(25, 1405, 1, 6, 200000000.00),
(26, 1405, 2, 6, 200000000.00),
(27, 1405, 3, 6, 200000000.00),
(28, 1405, 4, 6, 200000000.00),
(29, 1405, 5, 6, 200000000.00),
(30, 1405, 6, 6, 200000000.00),
(31, 1405, 7, 6, 200000000.00),
(32, 1405, 8, 6, 200000000.00),
(33, 1405, 9, 6, 200000000.00),
(34, 1405, 10, 6, 200000000.00),
(35, 1405, 11, 6, 200000000.00),
(36, 1405, 12, 6, 200000000.00),
(37, 1405, 1, 7, 150000000.00),
(38, 1405, 2, 7, 150000000.00),
(39, 1405, 3, 7, 150000000.00),
(40, 1405, 4, 7, 150000000.00),
(41, 1405, 5, 7, 150000000.00),
(42, 1405, 6, 7, 150000000.00),
(43, 1405, 7, 7, 150000000.00),
(44, 1405, 8, 7, 150000000.00),
(45, 1405, 9, 7, 150000000.00),
(46, 1405, 10, 7, 150000000.00),
(47, 1405, 11, 7, 150000000.00),
(48, 1405, 12, 7, 150000000.00);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_gooyanotes`
--

DROP TABLE IF EXISTS `vtiger_gooyanotes`;
CREATE TABLE `vtiger_gooyanotes` (
  `gooyanotesid` int(19) NOT NULL,
  `notetitle` varchar(255) DEFAULT NULL,
  `related_to` int(19) DEFAULT NULL,
  `notecontent` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_gooyanotescf`
--

DROP TABLE IF EXISTS `vtiger_gooyanotescf`;
CREATE TABLE `vtiger_gooyanotescf` (
  `gooyanotesid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_grant_status`
--

DROP TABLE IF EXISTS `vtiger_grant_status`;
CREATE TABLE `vtiger_grant_status` (
  `grant_statusid` int(11) NOT NULL,
  `grant_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_grant_status`
--

INSERT IGNORE INTO `vtiger_grant_status` (`grant_statusid`, `grant_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Active', 1, 466, 1, NULL),
(2, 'Expired', 1, 467, 2, NULL),
(3, 'Revoked', 1, 468, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_grant_status_seq`
--

DROP TABLE IF EXISTS `vtiger_grant_status_seq`;
CREATE TABLE `vtiger_grant_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_grant_status_seq`
--

INSERT IGNORE INTO `vtiger_grant_status_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_group2grouprel`
--

DROP TABLE IF EXISTS `vtiger_group2grouprel`;
CREATE TABLE `vtiger_group2grouprel` (
  `groupid` int(19) NOT NULL,
  `containsgroupid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_group2role`
--

DROP TABLE IF EXISTS `vtiger_group2role`;
CREATE TABLE `vtiger_group2role` (
  `groupid` int(19) NOT NULL,
  `roleid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_group2role`
--

INSERT IGNORE INTO `vtiger_group2role` (`groupid`, `roleid`) VALUES
(2, 'H4'),
(3, 'H2'),
(4, 'H3');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_group2rs`
--

DROP TABLE IF EXISTS `vtiger_group2rs`;
CREATE TABLE `vtiger_group2rs` (
  `groupid` int(19) NOT NULL,
  `roleandsubid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_group2rs`
--

INSERT IGNORE INTO `vtiger_group2rs` (`groupid`, `roleandsubid`) VALUES
(2, 'H5'),
(3, 'H3'),
(4, 'H3');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_groups`
--

DROP TABLE IF EXISTS `vtiger_groups`;
CREATE TABLE `vtiger_groups` (
  `groupid` int(19) NOT NULL,
  `groupname` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_groups`
--

INSERT IGNORE INTO `vtiger_groups` (`groupid`, `groupname`, `description`) VALUES
(2, 'Team Selling', 'Group Related to Sales'),
(3, 'Marketing Group', 'Group Related to Marketing Activities'),
(4, 'Support Group', 'Group Related to providing Support to Customers');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homedashbd`
--

DROP TABLE IF EXISTS `vtiger_homedashbd`;
CREATE TABLE `vtiger_homedashbd` (
  `stuffid` int(19) NOT NULL DEFAULT 0,
  `dashbdname` varchar(100) DEFAULT NULL,
  `dashbdtype` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homedefault`
--

DROP TABLE IF EXISTS `vtiger_homedefault`;
CREATE TABLE `vtiger_homedefault` (
  `stuffid` int(19) NOT NULL DEFAULT 0,
  `hometype` varchar(30) NOT NULL,
  `maxentries` int(19) DEFAULT NULL,
  `setype` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_homedefault`
--

INSERT IGNORE INTO `vtiger_homedefault` (`stuffid`, `hometype`, `maxentries`, `setype`) VALUES
(1, 'ALVT', 5, 'Accounts'),
(2, 'HDB', 5, 'Dashboard'),
(3, 'PLVT', 5, 'Potentials'),
(4, 'QLTQ', 5, 'Quotes'),
(5, 'CVLVT', 5, 'NULL'),
(6, 'HLT', 5, 'HelpDesk'),
(7, 'UA', 5, 'Calendar'),
(8, 'GRT', 5, 'NULL'),
(9, 'OLTSO', 5, 'SalesOrder'),
(10, 'ILTI', 5, 'Invoice'),
(11, 'MNL', 5, 'Leads'),
(12, 'OLTPO', 5, 'PurchaseOrder'),
(13, 'PA', 5, 'Calendar'),
(14, 'LTFAQ', 5, 'Faq'),
(16, 'ALVT', 5, 'Accounts'),
(17, 'HDB', 5, 'Dashboard'),
(18, 'PLVT', 5, 'Potentials'),
(19, 'QLTQ', 5, 'Quotes'),
(20, 'CVLVT', 5, 'NULL'),
(21, 'HLT', 5, 'HelpDesk'),
(22, 'UA', 5, 'Calendar'),
(23, 'GRT', 5, 'NULL'),
(24, 'OLTSO', 5, 'SalesOrder'),
(25, 'ILTI', 5, 'Invoice'),
(26, 'MNL', 5, 'Leads'),
(27, 'OLTPO', 5, 'PurchaseOrder'),
(28, 'PA', 5, 'Calendar'),
(29, 'LTFAQ', 5, 'Faq');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homemodule`
--

DROP TABLE IF EXISTS `vtiger_homemodule`;
CREATE TABLE `vtiger_homemodule` (
  `stuffid` int(19) NOT NULL,
  `modulename` varchar(100) DEFAULT NULL,
  `maxentries` int(19) NOT NULL,
  `customviewid` int(19) NOT NULL,
  `setype` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homemoduleflds`
--

DROP TABLE IF EXISTS `vtiger_homemoduleflds`;
CREATE TABLE `vtiger_homemoduleflds` (
  `stuffid` int(19) DEFAULT NULL,
  `fieldname` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homereportchart`
--

DROP TABLE IF EXISTS `vtiger_homereportchart`;
CREATE TABLE `vtiger_homereportchart` (
  `stuffid` int(11) NOT NULL,
  `reportid` int(19) DEFAULT NULL,
  `reportcharttype` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homerss`
--

DROP TABLE IF EXISTS `vtiger_homerss`;
CREATE TABLE `vtiger_homerss` (
  `stuffid` int(19) NOT NULL DEFAULT 0,
  `url` varchar(100) DEFAULT NULL,
  `maxentries` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homestuff`
--

DROP TABLE IF EXISTS `vtiger_homestuff`;
CREATE TABLE `vtiger_homestuff` (
  `stuffid` int(19) NOT NULL DEFAULT 0,
  `stuffsequence` int(19) NOT NULL DEFAULT 0,
  `stufftype` varchar(100) DEFAULT NULL,
  `userid` int(19) NOT NULL,
  `visible` int(10) NOT NULL DEFAULT 0,
  `stufftitle` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_homestuff`
--

INSERT IGNORE INTO `vtiger_homestuff` (`stuffid`, `stuffsequence`, `stufftype`, `userid`, `visible`, `stufftitle`) VALUES
(1, 1, 'Default', 1, 1, 'Top Accounts'),
(2, 2, 'Default', 1, 1, 'Home Page Dashboard'),
(3, 3, 'Default', 1, 1, 'Top Potentials'),
(4, 4, 'Default', 1, 1, 'Top Quotes'),
(5, 5, 'Default', 1, 1, 'Key Metrics'),
(6, 6, 'Default', 1, 1, 'Top Trouble Tickets'),
(7, 7, 'Default', 1, 1, 'Upcoming Activities'),
(8, 8, 'Default', 1, 1, 'My Group Allocation'),
(9, 9, 'Default', 1, 1, 'Top Sales Orders'),
(10, 10, 'Default', 1, 1, 'Top Invoices'),
(11, 11, 'Default', 1, 1, 'My New Leads'),
(12, 12, 'Default', 1, 1, 'Top Purchase Orders'),
(13, 13, 'Default', 1, 1, 'Pending Activities'),
(14, 14, 'Default', 1, 1, 'My Recent FAQs'),
(15, 15, 'Tag Cloud', 1, 0, 'Tag Cloud'),
(16, 1, 'Default', 5, 1, 'Top Accounts'),
(17, 2, 'Default', 5, 1, 'Home Page Dashboard'),
(18, 3, 'Default', 5, 1, 'Top Potentials'),
(19, 4, 'Default', 5, 1, 'Top Quotes'),
(20, 5, 'Default', 5, 1, 'Key Metrics'),
(21, 6, 'Default', 5, 1, 'Top Trouble Tickets'),
(22, 7, 'Default', 5, 1, 'Upcoming Activities'),
(23, 8, 'Default', 5, 1, 'My Group Allocation'),
(24, 9, 'Default', 5, 1, 'Top Sales Orders'),
(25, 10, 'Default', 5, 1, 'Top Invoices'),
(26, 11, 'Default', 5, 1, 'My New Leads'),
(27, 12, 'Default', 5, 1, 'Top Purchase Orders'),
(28, 13, 'Default', 5, 1, 'Pending Activities'),
(29, 14, 'Default', 5, 1, 'My Recent FAQs'),
(30, 15, 'Tag Cloud', 5, 0, 'Tag Cloud');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_homestuff_seq`
--

DROP TABLE IF EXISTS `vtiger_homestuff_seq`;
CREATE TABLE `vtiger_homestuff_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_homestuff_seq`
--

INSERT IGNORE INTO `vtiger_homestuff_seq` (`id`) VALUES
(30);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_home_layout`
--

DROP TABLE IF EXISTS `vtiger_home_layout`;
CREATE TABLE `vtiger_home_layout` (
  `userid` int(19) NOT NULL,
  `layout` int(19) NOT NULL DEFAULT 4
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_hour_format`
--

DROP TABLE IF EXISTS `vtiger_hour_format`;
CREATE TABLE `vtiger_hour_format` (
  `hour_formatid` int(11) NOT NULL,
  `hour_format` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_hour_format`
--

INSERT IGNORE INTO `vtiger_hour_format` (`hour_formatid`, `hour_format`, `sortorderid`, `presence`) VALUES
(1, '12', 0, 1),
(2, '24', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_hour_format_seq`
--

DROP TABLE IF EXISTS `vtiger_hour_format_seq`;
CREATE TABLE `vtiger_hour_format_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_hour_format_seq`
--

INSERT IGNORE INTO `vtiger_hour_format_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_import_locks`
--

DROP TABLE IF EXISTS `vtiger_import_locks`;
CREATE TABLE `vtiger_import_locks` (
  `vtiger_import_lock_id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `importid` int(11) NOT NULL,
  `locked_since` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_import_maps`
--

DROP TABLE IF EXISTS `vtiger_import_maps`;
CREATE TABLE `vtiger_import_maps` (
  `id` int(19) NOT NULL,
  `name` varchar(36) NOT NULL,
  `module` varchar(36) NOT NULL,
  `content` longblob DEFAULT NULL,
  `has_header` int(1) NOT NULL DEFAULT 1,
  `deleted` int(1) NOT NULL DEFAULT 0,
  `date_entered` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `date_modified` datetime DEFAULT NULL,
  `assigned_user_id` varchar(36) DEFAULT NULL,
  `is_published` varchar(3) NOT NULL DEFAULT 'no'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_import_queue`
--

DROP TABLE IF EXISTS `vtiger_import_queue`;
CREATE TABLE `vtiger_import_queue` (
  `importid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `field_mapping` text DEFAULT NULL,
  `default_values` text DEFAULT NULL,
  `merge_type` int(11) DEFAULT NULL,
  `merge_fields` text DEFAULT NULL,
  `status` int(11) DEFAULT 0,
  `lineitem_currency_id` int(5) DEFAULT NULL,
  `paging` int(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_industry`
--

DROP TABLE IF EXISTS `vtiger_industry`;
CREATE TABLE `vtiger_industry` (
  `industryid` int(19) NOT NULL,
  `industry` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_industry`
--

INSERT IGNORE INTO `vtiger_industry` (`industryid`, `industry`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Apparel', 1, 61, 1, NULL),
(3, 'Banking', 1, 62, 2, NULL),
(4, 'Biotechnology', 1, 63, 3, NULL),
(5, 'Chemicals', 1, 64, 4, NULL),
(6, 'Communications', 1, 65, 5, NULL),
(7, 'Construction', 1, 66, 6, NULL),
(8, 'Consulting', 1, 67, 7, NULL),
(9, 'Education', 1, 68, 8, NULL),
(10, 'Electronics', 1, 69, 9, NULL),
(11, 'Energy', 1, 70, 10, NULL),
(12, 'Engineering', 1, 71, 11, NULL),
(13, 'Entertainment', 1, 72, 12, NULL),
(14, 'Environmental', 1, 73, 13, NULL),
(15, 'Finance', 1, 74, 14, NULL),
(16, 'Food & Beverage', 1, 75, 15, NULL),
(17, 'Government', 1, 76, 16, NULL),
(18, 'Healthcare', 1, 77, 17, NULL),
(19, 'Hospitality', 1, 78, 18, NULL),
(20, 'Insurance', 1, 79, 19, NULL),
(21, 'Machinery', 1, 80, 20, NULL),
(22, 'Manufacturing', 1, 81, 21, NULL),
(23, 'Media', 1, 82, 22, NULL),
(24, 'Not For Profit', 1, 83, 23, NULL),
(25, 'Recreation', 1, 84, 24, NULL),
(26, 'Retail', 1, 85, 25, NULL),
(27, 'Shipping', 1, 86, 26, NULL),
(28, 'Technology', 1, 87, 27, NULL),
(29, 'Telecommunications', 1, 88, 28, NULL),
(30, 'Transportation', 1, 89, 29, NULL),
(31, 'Utilities', 1, 90, 30, NULL),
(32, 'Other', 1, 91, 31, NULL),
(33, 'تولید فرایندی', 1, 336, 32, NULL),
(34, 'تولید گسسته', 1, 337, 33, NULL),
(35, 'خدماتی', 1, 338, 34, NULL),
(36, 'خدمات عمومی', 1, 339, 35, NULL),
(37, 'مصرفی', 1, 340, 36, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_industry_seq`
--

DROP TABLE IF EXISTS `vtiger_industry_seq`;
CREATE TABLE `vtiger_industry_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_industry_seq`
--

INSERT IGNORE INTO `vtiger_industry_seq` (`id`) VALUES
(32);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorycharges`
--

DROP TABLE IF EXISTS `vtiger_inventorycharges`;
CREATE TABLE `vtiger_inventorycharges` (
  `chargeid` int(5) NOT NULL,
  `name` varchar(100) NOT NULL,
  `format` varchar(10) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL,
  `value` decimal(12,5) DEFAULT NULL,
  `regions` text DEFAULT NULL,
  `istaxable` int(1) NOT NULL DEFAULT 1,
  `taxes` varchar(1024) DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventorycharges`
--

INSERT IGNORE INTO `vtiger_inventorycharges` (`chargeid`, `name`, `format`, `type`, `value`, `regions`, `istaxable`, `taxes`, `deleted`) VALUES
(1, 'Shipping & Handling', 'Flat', 'Fixed', 0.00000, '[]', 1, '[\"1\",\"2\",\"3\"]', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorychargesrel`
--

DROP TABLE IF EXISTS `vtiger_inventorychargesrel`;
CREATE TABLE `vtiger_inventorychargesrel` (
  `recordid` int(19) NOT NULL,
  `charges` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventorychargesrel`
--

INSERT IGNORE INTO `vtiger_inventorychargesrel` (`recordid`, `charges`) VALUES
(2025, '[]'),
(2054, '[]'),
(2147, '[]'),
(2150, '{\"1\":{\"value\":\"0\",\"taxes\":{\"1\":\"4.500\",\"2\":\"10.000\",\"3\":\"12.500\"}}}'),
(2268, '[]'),
(2277, '{\"1\":{\"value\":\"0\",\"taxes\":{\"1\":\"4.500\",\"2\":\"10.000\",\"3\":\"12.500\"}}}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorynotification`
--

DROP TABLE IF EXISTS `vtiger_inventorynotification`;
CREATE TABLE `vtiger_inventorynotification` (
  `notificationid` int(19) NOT NULL,
  `notificationname` varchar(200) DEFAULT NULL,
  `notificationsubject` varchar(200) DEFAULT NULL,
  `notificationbody` text DEFAULT NULL,
  `label` varchar(50) DEFAULT NULL,
  `status` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_inventorynotification`
--

INSERT IGNORE INTO `vtiger_inventorynotification` (`notificationid`, `notificationname`, `notificationsubject`, `notificationbody`, `label`, `status`) VALUES
(1, 'InvoiceNotification', '{PRODUCTNAME} Stock Level is Low', 'Dear {HANDLER},\n\nThe current stock of {PRODUCTNAME} in our warehouse is {CURRENTSTOCK}. Kindly procure required number of units as the stock level is below reorder level {REORDERLEVELVALUE}.\n\nPlease treat this information as Urgent as the invoice is already sent  to the customer.\n\nSeverity: Critical\n\nThanks,\n{CURRENTUSER} ', 'InvoiceNotificationDescription', NULL),
(2, 'QuoteNotification', 'Quote given for {PRODUCTNAME}', 'Dear {HANDLER},\n\nQuote is generated for {QUOTEQUANTITY} units of {PRODUCTNAME}. The current stock of {PRODUCTNAME} in our warehouse is {CURRENTSTOCK}.\n\nSeverity: Minor\n\nThanks,\n{CURRENTUSER} ', 'QuoteNotificationDescription', NULL),
(3, 'SalesOrderNotification', 'Sales Order generated for {PRODUCTNAME}', 'Dear {HANDLER},\n\nSalesOrder is generated for {SOQUANTITY} units of {PRODUCTNAME}. The current stock of {PRODUCTNAME} in our warehouse is {CURRENTSTOCK}.\n\nPlease treat this information  with priority as the sales order is already generated.\n\nSeverity: Major\n\nThanks,\n{CURRENTUSER} ', 'SalesOrderNotificationDescription', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorynotification_seq`
--

DROP TABLE IF EXISTS `vtiger_inventorynotification_seq`;
CREATE TABLE `vtiger_inventorynotification_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventorynotification_seq`
--

INSERT IGNORE INTO `vtiger_inventorynotification_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventoryproductrel`
--

DROP TABLE IF EXISTS `vtiger_inventoryproductrel`;
CREATE TABLE `vtiger_inventoryproductrel` (
  `id` int(19) DEFAULT NULL,
  `productid` int(19) DEFAULT NULL,
  `sequence_no` int(4) DEFAULT NULL,
  `quantity` decimal(25,3) DEFAULT NULL,
  `listprice` decimal(27,8) DEFAULT NULL,
  `discount_percent` decimal(7,3) DEFAULT NULL,
  `discount_amount` decimal(27,8) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `incrementondel` int(11) NOT NULL DEFAULT 0,
  `lineitem_id` int(11) NOT NULL,
  `tax1` decimal(7,3) DEFAULT NULL,
  `tax2` decimal(7,3) DEFAULT NULL,
  `tax3` decimal(7,3) DEFAULT NULL,
  `image` varchar(2) DEFAULT NULL,
  `purchase_cost` decimal(27,8) DEFAULT NULL,
  `margin` decimal(27,8) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_inventoryproductrel`
--

INSERT IGNORE INTO `vtiger_inventoryproductrel` (`id`, `productid`, `sequence_no`, `quantity`, `listprice`, `discount_percent`, `discount_amount`, `comment`, `description`, `incrementondel`, `lineitem_id`, `tax1`, `tax2`, `tax3`, `image`, `purchase_cost`, `margin`) VALUES
(2025, 27, 1, 2.000, 80000000.00000000, NULL, NULL, '', '', 0, 2, 0.000, 0.000, 0.000, NULL, 0.00000000, 0.00000000),
(1027, 2053, 1, 8.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 3, NULL, NULL, NULL, NULL, NULL, NULL),
(1028, 2053, 1, 9.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 4, NULL, NULL, NULL, NULL, NULL, NULL),
(1029, 2053, 1, 6.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 5, NULL, NULL, NULL, NULL, NULL, NULL),
(1030, 2053, 1, 5.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 6, NULL, NULL, NULL, NULL, NULL, NULL),
(1031, 2053, 1, 6.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 7, NULL, NULL, NULL, NULL, NULL, NULL),
(1032, 2053, 1, 5.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 8, NULL, NULL, NULL, NULL, NULL, NULL),
(1033, 2053, 1, 6.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 9, NULL, NULL, NULL, NULL, NULL, NULL),
(1034, 2053, 1, 1.000, 15000000.00000000, NULL, NULL, NULL, NULL, 0, 10, NULL, NULL, NULL, NULL, NULL, NULL),
(2054, 27, 1, 3.000, 80000000.00000000, NULL, NULL, '', '', 1, 12, 0.000, 0.000, 0.000, NULL, 0.00000000, 0.00000000),
(2147, 2053, 1, 1.000, 15000000.00000000, NULL, NULL, 'Gouya phase 01 real inventory line', '', 1, 13, 0.000, 0.000, 0.000, NULL, 0.00000000, 0.00000000),
(2150, 2053, 1, 1.000, 15000000.00000000, NULL, NULL, 'قلم آزمایشی فاز ۲', '', 0, 110, 0.000, 0.000, 0.000, NULL, 0.00000000, 0.00000000),
(2268, 26, 1, 2.000, 50000000.00000000, NULL, NULL, 'ردیف نمونه برای آزمون کامل سفارش خرید', 'ثبت عملی، محاسبه مالیات و کنترل ارتباط دیتابیس', 0, 164, 0.000, 10.000, 0.000, NULL, 50000000.00000000, 0.00000000),
(2277, 27, 1, 2.000, 80000000.00000000, 5.000, NULL, '', '', 0, 166, 0.000, 10.000, 0.000, NULL, 0.00000000, 0.00000000);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventoryproductrel_seq`
--

DROP TABLE IF EXISTS `vtiger_inventoryproductrel_seq`;
CREATE TABLE `vtiger_inventoryproductrel_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventoryproductrel_seq`
--

INSERT IGNORE INTO `vtiger_inventoryproductrel_seq` (`id`) VALUES
(0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventoryshippingrel`
--

DROP TABLE IF EXISTS `vtiger_inventoryshippingrel`;
CREATE TABLE `vtiger_inventoryshippingrel` (
  `id` int(19) DEFAULT NULL,
  `shtax1` decimal(7,3) DEFAULT NULL,
  `shtax2` decimal(7,3) DEFAULT NULL,
  `shtax3` decimal(7,3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorysubproductrel`
--

DROP TABLE IF EXISTS `vtiger_inventorysubproductrel`;
CREATE TABLE `vtiger_inventorysubproductrel` (
  `id` int(19) NOT NULL,
  `sequence_no` int(10) NOT NULL,
  `productid` int(19) NOT NULL,
  `quantity` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorytaxinfo`
--

DROP TABLE IF EXISTS `vtiger_inventorytaxinfo`;
CREATE TABLE `vtiger_inventorytaxinfo` (
  `taxid` int(3) NOT NULL,
  `taxname` varchar(50) DEFAULT NULL,
  `taxlabel` varchar(50) DEFAULT NULL,
  `percentage` decimal(7,3) DEFAULT NULL,
  `deleted` int(1) DEFAULT NULL,
  `method` varchar(10) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL,
  `compoundon` varchar(400) DEFAULT NULL,
  `regions` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_inventorytaxinfo`
--

INSERT IGNORE INTO `vtiger_inventorytaxinfo` (`taxid`, `taxname`, `taxlabel`, `percentage`, `deleted`, `method`, `type`, `compoundon`, `regions`) VALUES
(1, 'tax1', 'VAT', 4.500, 0, 'Simple', 'Fixed', '[]', '[]'),
(2, 'tax2', 'Sales', 10.000, 0, 'Simple', 'Fixed', '[]', '[]'),
(3, 'tax3', 'Service', 12.500, 0, 'Simple', 'Fixed', '[]', '[]');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventorytaxinfo_seq`
--

DROP TABLE IF EXISTS `vtiger_inventorytaxinfo_seq`;
CREATE TABLE `vtiger_inventorytaxinfo_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventorytaxinfo_seq`
--

INSERT IGNORE INTO `vtiger_inventorytaxinfo_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventory_tandc`
--

DROP TABLE IF EXISTS `vtiger_inventory_tandc`;
CREATE TABLE `vtiger_inventory_tandc` (
  `id` int(19) NOT NULL,
  `type` varchar(30) NOT NULL,
  `tandc` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_inventory_tandc`
--

INSERT IGNORE INTO `vtiger_inventory_tandc` (`id`, `type`, `tandc`) VALUES
(2, 'Invoice', '\n - Unless otherwise agreed in writing by the supplier all invoices are payable within thirty (30) days of the date of invoice, in the currency of the invoice, drawn on a bank based in India or by such other method as is agreed in advance by the Supplier.\n\n - All prices are not inclusive of VAT which shall be payable in addition by the Customer at the applicable rate.'),
(3, 'Quotes', '\n - Unless otherwise agreed in writing by the supplier all invoices are payable within thirty (30) days of the date of invoice, in the currency of the invoice, drawn on a bank based in India or by such other method as is agreed in advance by the Supplier.\n\n - All prices are not inclusive of VAT which shall be payable in addition by the Customer at the applicable rate.'),
(4, 'PurchaseOrder', '\n - Unless otherwise agreed in writing by the supplier all invoices are payable within thirty (30) days of the date of invoice, in the currency of the invoice, drawn on a bank based in India or by such other method as is agreed in advance by the Supplier.\n\n - All prices are not inclusive of VAT which shall be payable in addition by the Customer at the applicable rate.'),
(5, 'SalesOrder', '\n - Unless otherwise agreed in writing by the supplier all invoices are payable within thirty (30) days of the date of invoice, in the currency of the invoice, drawn on a bank based in India or by such other method as is agreed in advance by the Supplier.\n\n - All prices are not inclusive of VAT which shall be payable in addition by the Customer at the applicable rate.');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_inventory_tandc_seq`
--

DROP TABLE IF EXISTS `vtiger_inventory_tandc_seq`;
CREATE TABLE `vtiger_inventory_tandc_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_inventory_tandc_seq`
--

INSERT IGNORE INTO `vtiger_inventory_tandc_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invitees`
--

DROP TABLE IF EXISTS `vtiger_invitees`;
CREATE TABLE `vtiger_invitees` (
  `activityid` int(19) NOT NULL,
  `inviteeid` int(19) NOT NULL,
  `status` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoice`
--

DROP TABLE IF EXISTS `vtiger_invoice`;
CREATE TABLE `vtiger_invoice` (
  `invoiceid` int(19) NOT NULL DEFAULT 0,
  `subject` varchar(100) DEFAULT NULL,
  `salesorderid` int(19) DEFAULT NULL,
  `customerno` varchar(100) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `notes` varchar(100) DEFAULT NULL,
  `invoicedate` date DEFAULT NULL,
  `duedate` date DEFAULT NULL,
  `invoiceterms` varchar(100) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `adjustment` decimal(25,8) DEFAULT NULL,
  `salescommission` decimal(25,3) DEFAULT NULL,
  `exciseduty` decimal(25,3) DEFAULT NULL,
  `subtotal` decimal(25,8) DEFAULT NULL,
  `total` decimal(25,8) DEFAULT NULL,
  `taxtype` varchar(25) DEFAULT NULL,
  `discount_percent` decimal(25,3) DEFAULT NULL,
  `discount_amount` decimal(25,8) DEFAULT NULL,
  `s_h_amount` decimal(25,8) DEFAULT NULL,
  `shipping` varchar(100) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `purchaseorder` varchar(200) DEFAULT NULL,
  `invoicestatus` varchar(200) DEFAULT NULL,
  `invoice_no` varchar(100) DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `conversion_rate` decimal(10,3) NOT NULL DEFAULT 1.000,
  `compound_taxes_info` text DEFAULT NULL,
  `pre_tax_total` decimal(25,8) DEFAULT NULL,
  `received` decimal(25,8) DEFAULT NULL,
  `balance` decimal(25,8) DEFAULT NULL,
  `s_h_percent` decimal(25,8) DEFAULT NULL,
  `potential_id` varchar(100) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `region_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_invoice`
--

INSERT IGNORE INTO `vtiger_invoice` (`invoiceid`, `subject`, `salesorderid`, `customerno`, `contactid`, `notes`, `invoicedate`, `duedate`, `invoiceterms`, `type`, `adjustment`, `salescommission`, `exciseduty`, `subtotal`, `total`, `taxtype`, `discount_percent`, `discount_amount`, `s_h_amount`, `shipping`, `accountid`, `terms_conditions`, `purchaseorder`, `invoicestatus`, `invoice_no`, `currency_id`, `conversion_rate`, `compound_taxes_info`, `pre_tax_total`, `received`, `balance`, `s_h_percent`, `potential_id`, `tags`, `region_id`) VALUES
(1027, 'فرایند سازان ایران فردا - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-06-21', '2026-06-30', NULL, NULL, 0.00000000, NULL, NULL, 120000000.00000000, 120000000.00000000, NULL, NULL, NULL, NULL, NULL, 20, NULL, NULL, 'Approved', '1', 1, 1.000, NULL, 120000000.00000000, 80000000.00000000, 40000000.00000000, NULL, NULL, NULL, NULL),
(1028, 'پیشگامان صنعت داده - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-06-11', '2026-07-07', NULL, NULL, 9000000.00000000, NULL, NULL, 135000000.00000000, 144000000.00000000, NULL, NULL, NULL, NULL, NULL, 21, NULL, NULL, 'Approved', '2', 1, 1.000, NULL, 135000000.00000000, 100000000.00000000, 44000000.00000000, NULL, NULL, NULL, NULL),
(1029, 'پیشگامان صنعت داده - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-06-07', '2026-07-20', NULL, NULL, 10000000.00000000, NULL, NULL, 90000000.00000000, 100000000.00000000, NULL, NULL, NULL, NULL, NULL, 21, NULL, NULL, 'Approved', '3', 1, 1.000, NULL, 90000000.00000000, 100000000.00000000, 0.00000000, NULL, NULL, NULL, NULL),
(1030, 'شرکت فرایند گستران شرق - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-07-12', '2026-07-04', NULL, NULL, 0.00000000, NULL, NULL, 75000000.00000000, 75000000.00000000, NULL, NULL, NULL, NULL, NULL, 22, NULL, NULL, 'Approved', '4', 1, 1.000, NULL, 75000000.00000000, 60000000.00000000, 15000000.00000000, NULL, NULL, NULL, NULL),
(1031, 'شرکت فرایند گستران شرق - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-07-11', '2026-07-10', NULL, NULL, 10000000.00000000, NULL, NULL, 90000000.00000000, 100000000.00000000, NULL, NULL, NULL, NULL, NULL, 22, NULL, NULL, 'Approved', '5', 1, 1.000, NULL, 90000000.00000000, 100000000.00000000, 0.00000000, NULL, NULL, NULL, NULL),
(1032, 'شرکت الکترونیک گستر - فاکتور (مثال)', NULL, NULL, NULL, NULL, '2026-06-07', '2026-07-10', NULL, NULL, 9000000.00000000, NULL, NULL, 75000000.00000000, 84000000.00000000, NULL, NULL, NULL, NULL, NULL, 23, NULL, NULL, 'Approved', '6', 1, 1.000, NULL, 75000000.00000000, 0.00000000, 84000000.00000000, NULL, NULL, NULL, NULL),
(1033, 'اورنگ (مثال) - فرصت', NULL, NULL, NULL, NULL, '2026-06-03', '2026-06-29', NULL, NULL, 8100000.00000000, NULL, NULL, 90000000.00000000, 98100000.00000000, NULL, NULL, NULL, NULL, NULL, 24, NULL, NULL, 'Approved', '7', 1, 1.000, NULL, 90000000.00000000, 58000000.00000000, 40100000.00000000, NULL, NULL, NULL, NULL),
(1034, 'کیان (مثال) - فرصت', NULL, NULL, NULL, NULL, '2026-06-12', '2026-07-01', NULL, NULL, 5000000.00000000, NULL, NULL, 15000000.00000000, 20000000.00000000, NULL, NULL, NULL, NULL, NULL, 25, NULL, NULL, 'Approved', '8', 1, 1.000, NULL, 15000000.00000000, 20000000.00000000, 0.00000000, NULL, NULL, NULL, NULL),
(2054, 'تست سیستم - ویرایش شده', NULL, NULL, 11, NULL, '2026-07-04', NULL, NULL, NULL, 2000000.00000000, NULL, NULL, 240000000.00000000, 229050000.00000000, 'group', NULL, 1000000.00000000, 0.00000000, NULL, 23, 'یادداشت تستی', NULL, 'Approved', '10', 2, 1.000, '[]', 239000000.00000000, 59900000.00000000, 169150000.00000000, 0.00000000, '0', NULL, NULL),
(2147, 'تست واقعی فاکتور خرده‌فروشی - حساب ۲۰۳۶ [Gouya-PHASE01]', NULL, '', 0, NULL, '2026-07-15', '2026-07-22', NULL, NULL, 0.00000000, 0.000, 0.000, 15000000.00000000, 15000000.00000000, 'group', NULL, 0.00000000, 0.00000000, NULL, 2036, '', '', 'Approved', '10', 2, 1.000, '[]', 15000000.00000000, 5000000.00000000, 10000000.00000000, 0.00000000, '0', '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoicebillads`
--

DROP TABLE IF EXISTS `vtiger_invoicebillads`;
CREATE TABLE `vtiger_invoicebillads` (
  `invoicebilladdressid` int(19) NOT NULL DEFAULT 0,
  `bill_city` varchar(30) DEFAULT NULL,
  `bill_code` varchar(30) DEFAULT NULL,
  `bill_country` varchar(30) DEFAULT NULL,
  `bill_state` varchar(30) DEFAULT NULL,
  `bill_street` varchar(250) DEFAULT NULL,
  `bill_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_invoicebillads`
--

INSERT IGNORE INTO `vtiger_invoicebillads` (`invoicebilladdressid`, `bill_city`, `bill_code`, `bill_country`, `bill_state`, `bill_street`, `bill_pobox`) VALUES
(2054, 'تهران', '1234567890', 'ایران', 'تهران', 'خیابان ولیعصر، پلاک ۱۰', NULL),
(2147, '', '', '', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoicecf`
--

DROP TABLE IF EXISTS `vtiger_invoicecf`;
CREATE TABLE `vtiger_invoicecf` (
  `invoiceid` int(19) NOT NULL DEFAULT 0,
  `cf_accounting_no` varchar(100) DEFAULT NULL,
  `cf_ref_code` varchar(100) DEFAULT NULL,
  `cf_quote_id` int(19) DEFAULT NULL,
  `cf_project` varchar(255) DEFAULT NULL,
  `cf_sms_reminder` varchar(100) DEFAULT NULL,
  `cf_payment_terms` varchar(100) DEFAULT NULL,
  `cf_shipping_type` varchar(100) DEFAULT NULL,
  `cf_sender_company` varchar(150) DEFAULT NULL,
  `cf_print_template` varchar(100) DEFAULT NULL,
  `cf_insurance_percent` decimal(7,3) DEFAULT NULL,
  `cf_insurance_amount` decimal(25,8) DEFAULT NULL,
  `cf_retention_percent` decimal(7,3) DEFAULT NULL,
  `cf_retention_amount` decimal(25,8) DEFAULT NULL,
  `cf_invoice_kind` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_invoicecf`
--

INSERT IGNORE INTO `vtiger_invoicecf` (`invoiceid`, `cf_accounting_no`, `cf_ref_code`, `cf_quote_id`, `cf_project`, `cf_sms_reminder`, `cf_payment_terms`, `cf_shipping_type`, `cf_sender_company`, `cf_print_template`, `cf_insurance_percent`, `cf_insurance_amount`, `cf_retention_percent`, `cf_retention_amount`, `cf_invoice_kind`) VALUES
(1027, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1028, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1029, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1030, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1031, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1032, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1033, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(1034, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Standard'),
(2054, 'سند-۱۰۱', 'REF-10', 2025, '', '', 'نقدی', '', '', '', 5.000, 11950000.00000000, 0.000, 0.00000000, 'Standard'),
(2147, '', '', 0, '', '', '', '', '', '', 0.000, 0.00000000, 0.000, 0.00000000, 'Retail');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoiceshipads`
--

DROP TABLE IF EXISTS `vtiger_invoiceshipads`;
CREATE TABLE `vtiger_invoiceshipads` (
  `invoiceshipaddressid` int(19) NOT NULL DEFAULT 0,
  `ship_city` varchar(30) DEFAULT NULL,
  `ship_code` varchar(30) DEFAULT NULL,
  `ship_country` varchar(30) DEFAULT NULL,
  `ship_state` varchar(30) DEFAULT NULL,
  `ship_street` varchar(250) DEFAULT NULL,
  `ship_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_invoiceshipads`
--

INSERT IGNORE INTO `vtiger_invoiceshipads` (`invoiceshipaddressid`, `ship_city`, `ship_code`, `ship_country`, `ship_state`, `ship_street`, `ship_pobox`) VALUES
(2054, 'تهران', '1234567890', 'ایران', 'تهران', 'خیابان ولیعصر، پلاک ۱۰', NULL),
(2147, '', '', '', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoicestatus`
--

DROP TABLE IF EXISTS `vtiger_invoicestatus`;
CREATE TABLE `vtiger_invoicestatus` (
  `invoicestatusid` int(19) NOT NULL,
  `invoicestatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_invoicestatus`
--

INSERT IGNORE INTO `vtiger_invoicestatus` (`invoicestatusid`, `invoicestatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'AutoCreated', 0, 92, 0, NULL),
(2, 'Created', 0, 93, 1, NULL),
(3, 'Approved', 0, 94, 2, NULL),
(4, 'Sent', 0, 95, 3, NULL),
(5, 'Credit Invoice', 0, 96, 4, NULL),
(6, 'Paid', 0, 97, 5, NULL),
(7, 'Cancel', 1, 288, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoicestatushistory`
--

DROP TABLE IF EXISTS `vtiger_invoicestatushistory`;
CREATE TABLE `vtiger_invoicestatushistory` (
  `historyid` int(19) NOT NULL,
  `invoiceid` int(19) NOT NULL,
  `accountname` varchar(100) DEFAULT NULL,
  `total` decimal(10,0) DEFAULT NULL,
  `invoicestatus` varchar(200) DEFAULT NULL,
  `lastmodified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoicestatus_seq`
--

DROP TABLE IF EXISTS `vtiger_invoicestatus_seq`;
CREATE TABLE `vtiger_invoicestatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_invoicestatus_seq`
--

INSERT IGNORE INTO `vtiger_invoicestatus_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_invoice_recurring_info`
--

DROP TABLE IF EXISTS `vtiger_invoice_recurring_info`;
CREATE TABLE `vtiger_invoice_recurring_info` (
  `salesorderid` int(11) NOT NULL,
  `recurring_frequency` varchar(200) DEFAULT NULL,
  `start_period` date DEFAULT NULL,
  `end_period` date DEFAULT NULL,
  `last_recurring_date` date DEFAULT NULL,
  `payment_duration` varchar(200) DEFAULT NULL,
  `invoice_status` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_language`
--

DROP TABLE IF EXISTS `vtiger_language`;
CREATE TABLE `vtiger_language` (
  `id` int(11) NOT NULL,
  `name` varchar(50) DEFAULT NULL,
  `prefix` varchar(10) DEFAULT NULL,
  `label` varchar(30) DEFAULT NULL,
  `lastupdated` datetime DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL,
  `isdefault` int(1) DEFAULT NULL,
  `active` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_language`
--

INSERT IGNORE INTO `vtiger_language` (`id`, `name`, `prefix`, `label`, `lastupdated`, `sequence`, `isdefault`, `active`) VALUES
(1, 'English', 'en_us', 'US English', '2026-06-12 20:06:56', NULL, 1, 1),
(2, 'Arabic', 'ar_ae', 'Arabic', '2026-06-12 20:08:34', NULL, 0, 1),
(3, 'Brazilian', 'pt_br', 'PT Brasil', '2026-06-12 20:08:10', NULL, 0, 1),
(4, 'British English', 'en_gb', 'British English', '2026-06-12 20:07:45', NULL, 0, 1),
(5, 'Deutsch', 'de_de', 'DE Deutsch', '2026-06-12 20:07:46', NULL, 0, 1),
(6, 'Dutch', 'nl_nl', 'NL-Dutch', '2026-06-12 20:07:46', NULL, 0, 1),
(7, 'Pack de langue français', 'fr_fr', 'Pack de langue français', '2026-06-12 20:08:10', NULL, 0, 1),
(8, 'Hungarian', 'hu_hu', 'HU Magyar', '2026-06-12 20:07:48', NULL, 0, 1),
(9, 'Italian', 'it_it', 'IT Italian', '2026-06-12 20:07:48', NULL, 0, 1),
(10, 'Mexican Spanish', 'es_mx', 'ES Mexico', '2026-06-12 20:07:49', NULL, 0, 1),
(11, 'Język Polski', 'pl_pl', 'Język Polski', '2026-06-12 20:08:10', NULL, 0, 1),
(12, 'Romana', 'ro_ro', 'Romana', '2026-06-12 20:08:10', NULL, 0, 1),
(13, 'Russian', 'ru_ru', 'Russian', '2026-06-12 20:08:02', NULL, 0, 1),
(14, 'Spanish', 'es_es', 'ES Spanish', '2026-06-12 20:08:04', NULL, 0, 1),
(15, 'Swedish', 'sv_se', 'Swedish', '2026-06-12 20:08:35', NULL, 0, 1),
(16, 'Turkce', 'tr_tr', 'Turkce Dil Paketi', '2026-06-12 20:08:05', NULL, 0, 1),
(17, 'فارسی', 'fa_ir', 'Persian', '2026-06-12 22:46:45', NULL, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_language_seq`
--

DROP TABLE IF EXISTS `vtiger_language_seq`;
CREATE TABLE `vtiger_language_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_language_seq`
--

INSERT IGNORE INTO `vtiger_language_seq` (`id`) VALUES
(16);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadaddress`
--

DROP TABLE IF EXISTS `vtiger_leadaddress`;
CREATE TABLE `vtiger_leadaddress` (
  `leadaddressid` int(19) NOT NULL DEFAULT 0,
  `city` varchar(30) DEFAULT NULL,
  `code` varchar(30) DEFAULT NULL,
  `state` varchar(30) DEFAULT NULL,
  `pobox` varchar(30) DEFAULT NULL,
  `country` varchar(30) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `mobile` varchar(50) DEFAULT NULL,
  `fax` varchar(50) DEFAULT NULL,
  `lane` varchar(250) DEFAULT NULL,
  `leadaddresstype` varchar(30) DEFAULT 'Billing'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leadaddress`
--

INSERT IGNORE INTO `vtiger_leadaddress` (`leadaddressid`, `city`, `code`, `state`, `pobox`, `country`, `phone`, `mobile`, `fax`, `lane`, `leadaddresstype`) VALUES
(2, 'مشهد', '', 'خراسان رضوی', '', 'ایران', '+98 915 555 5555', '09119090378', '', '', 'Billing'),
(1000, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 21 2222 2222', NULL, NULL, NULL, 'Billing'),
(1001, 'یزد', NULL, 'یزد', NULL, 'ایران', '+98 35 2020 2525', NULL, NULL, NULL, 'Billing'),
(1002, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 912 202 2234', NULL, NULL, NULL, 'Billing'),
(1003, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 935 202 2253', NULL, NULL, NULL, 'Billing'),
(1004, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 912 202 0202', NULL, NULL, NULL, 'Billing'),
(1005, 'تبریز', NULL, 'آذربایجان شرقی', NULL, 'ایران', '+98 41 2020 0202', NULL, NULL, NULL, 'Billing'),
(1006, 'تهران', NULL, 'تهران', NULL, 'ایران', '98352 0202252', NULL, NULL, NULL, 'Billing'),
(1007, 'یزد', NULL, 'یزد', NULL, 'ایران', '+98 935 202 0203', NULL, NULL, NULL, 'Billing'),
(1008, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 912 202 0204', NULL, NULL, NULL, 'Billing'),
(1009, 'فومن', NULL, 'گیلان', NULL, 'ایران', '+98 13 2020 0205', NULL, NULL, NULL, 'Billing'),
(1010, 'بجنورد', NULL, 'خراسان شمالی', NULL, 'ایران', '+98 58 2020 0206', NULL, NULL, NULL, 'Billing'),
(1011, 'تبریز', NULL, 'آذربایجان شرقی', NULL, 'ایران', '+98 41 2020 0207', NULL, NULL, NULL, 'Billing'),
(1012, 'آستارا', NULL, 'گیلان', NULL, 'ایران', '+98 13 2020 0208', NULL, NULL, NULL, 'Billing'),
(1013, 'تهران', NULL, 'تهران', NULL, 'ایران', '(102) 2222 2232 98+', NULL, NULL, NULL, 'Billing'),
(1014, 'تهران', NULL, 'تهران', NULL, 'ایران', '(123) 1010 1010 98+', NULL, NULL, NULL, 'Billing'),
(2055, 'تهران', NULL, 'تهران', NULL, 'ایران', '+98 910 000 0000', NULL, NULL, NULL, 'Billing'),
(2056, 'مشهد', NULL, 'خراسان رضوی', NULL, 'ایران', '+98 21 2222 2223', NULL, NULL, NULL, 'Billing'),
(2057, 'یزد', NULL, 'یزد', NULL, 'ایران', '+98 35 2020 2559', NULL, NULL, NULL, 'Billing'),
(2058, 'همدان', NULL, 'همدان', NULL, 'ایران', '+98 81 2222 2224', NULL, NULL, NULL, 'Billing'),
(2059, 'شیراز', NULL, 'فارس', NULL, 'ایران', '+98 71 2222 2225', NULL, NULL, NULL, 'Billing'),
(2060, 'یزد', NULL, 'یزد', NULL, 'ایران', '+98 35 2020 2558', NULL, NULL, NULL, 'Billing'),
(2063, 'کرج', '3149857693', 'تهران', '14515-775', 'ایران', '021-55554444', '0912-0000000', '', 'بلوار اصلی، خیابان نمونه، پلاک ۱۲', 'Billing'),
(2064, 'اصفهان', NULL, 'اصفهان', NULL, 'ایران', '031-1111111', NULL, NULL, NULL, 'Billing'),
(2065, 'تهران', NULL, 'تهران', NULL, 'ایران', '021-2222222', NULL, NULL, NULL, 'Billing'),
(2152, '', '', '', '', '', '', '', '', '', 'Billing'),
(2157, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2162, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2169, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2173, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2175, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2179, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2181, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2185, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2187, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2191, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2193, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2197, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2201, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2205, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2209, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2213, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2272, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2274, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2297, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2302, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2307, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2311, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2315, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2319, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2323, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2327, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2331, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2335, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2339, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2343, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2347, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing'),
(2351, '', '', '', '', '', '+989121234567', '+989351234567', '', '', 'Billing'),
(2363, 'تهران', '1111111111', 'تهران', '', 'ایران', '+989129998877', '+989129998877', '02166554433', 'آدرس اصلی تست', 'Billing');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leaddetails`
--

DROP TABLE IF EXISTS `vtiger_leaddetails`;
CREATE TABLE `vtiger_leaddetails` (
  `leadid` int(19) NOT NULL,
  `lead_no` varchar(100) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `interest` varchar(50) DEFAULT NULL,
  `firstname` varchar(40) DEFAULT NULL,
  `salutation` varchar(200) DEFAULT NULL,
  `lastname` varchar(80) NOT NULL,
  `company` varchar(100) NOT NULL,
  `annualrevenue` decimal(25,8) DEFAULT NULL,
  `industry` varchar(200) DEFAULT NULL,
  `campaign` varchar(30) DEFAULT NULL,
  `rating` varchar(200) DEFAULT NULL,
  `leadstatus` varchar(200) DEFAULT NULL,
  `leadsource` varchar(200) DEFAULT NULL,
  `converted` int(1) DEFAULT 0,
  `designation` varchar(50) DEFAULT 'SalesMan',
  `licencekeystatus` varchar(50) DEFAULT NULL,
  `space` varchar(250) DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `priority` varchar(50) DEFAULT NULL,
  `demorequest` varchar(50) DEFAULT NULL,
  `partnercontact` varchar(50) DEFAULT NULL,
  `productversion` varchar(20) DEFAULT NULL,
  `product` varchar(50) DEFAULT NULL,
  `maildate` date DEFAULT NULL,
  `nextstepdate` date DEFAULT NULL,
  `fundingsituation` varchar(50) DEFAULT NULL,
  `purpose` varchar(50) DEFAULT NULL,
  `evaluationstatus` varchar(50) DEFAULT NULL,
  `transferdate` date DEFAULT NULL,
  `revenuetype` varchar(50) DEFAULT NULL,
  `noofemployees` int(50) DEFAULT NULL,
  `secondaryemail` varchar(100) DEFAULT NULL,
  `assignleadchk` int(1) DEFAULT 0,
  `emailoptout` varchar(3) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leaddetails`
--

INSERT IGNORE INTO `vtiger_leaddetails` (`leadid`, `lead_no`, `email`, `interest`, `firstname`, `salutation`, `lastname`, `company`, `annualrevenue`, `industry`, `campaign`, `rating`, `leadstatus`, `leadsource`, `converted`, `designation`, `licencekeystatus`, `space`, `comments`, `priority`, `demorequest`, `partnercontact`, `productversion`, `product`, `maildate`, `nextstepdate`, `fundingsituation`, `purpose`, `evaluationstatus`, `transferdate`, `revenuetype`, `noofemployees`, `secondaryemail`, `assignleadchk`, `emailoptout`, `tags`) VALUES
(2, 'LEA1', 'lead186@test.com', NULL, 'آقای', '', 'کامران دادجو (مثال)', 'آقای کامران دادجو (مثال)', 0.00000000, 'مصرفی', NULL, 'زیاد', 'تبدیل شده', 'وب سایت', 1, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(1000, 'LEA1000', 'lead843@test.com', NULL, 'احسان', NULL, 'محمدی (مثال)', 'بازرگانی پویا (مثال)', NULL, 'تولید فرایندی', NULL, 'زیاد', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1001, 'LEA1001', 'lead281@test.com', NULL, 'آقای', NULL, 'فلاح نژاد (مثال)', 'ابزار یدک (مثال)', NULL, 'تولید گسسته', NULL, 'متوسط', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1002, 'LEA1002', 'lead508@test.com', NULL, 'بهام', NULL, 'خمسه (مثال)', 'صنعتی غزال (مثال)', NULL, 'مصرفی', NULL, 'کم', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1003, 'LEA1003', 'lead912@test.com', NULL, 'آقای', NULL, 'خادمی (مثال)', 'نارین (مثال)', NULL, 'خدمات عمومی', NULL, 'زیاد', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1004, 'LEA1004', 'lead108@test.com', NULL, 'لاله', NULL, 'حسینی (مثال)', 'پالایش نفت (مثال)', NULL, 'تولید فرایندی', NULL, 'متوسط', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1005, 'LEA1005', 'lead280@test.com', NULL, 'آقای', NULL, 'رحیمی (مثال)', 'پارت (مثال)', NULL, 'تولید فرایندی', NULL, 'کم', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1006, 'LEA1006', 'lead925@test.com', NULL, 'آرش', NULL, 'لوایی (مثال)', 'شرکت بازرگانی صنایع ایران (مثال)', NULL, 'خدماتی', NULL, 'زیاد', 'اختصاص یافته', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1007, 'LEA1007', 'lead868@test.com', NULL, 'فریده', NULL, 'بیات (مثال)', 'آبتیک (مثال)', NULL, 'تولید گسسته', NULL, 'متوسط', 'اختصاص یافته', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1008, 'LEA1008', 'lead416@test.com', NULL, 'مهندس', NULL, 'غلامرضا عباسی (مثال)', 'راوند گستران فردا (مثال)', NULL, 'خدماتی', NULL, 'زیاد', 'اختصاص یافته', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1009, 'LEA1009', 'lead670@test.com', NULL, 'خانم', NULL, 'مریم شفیع (مثال)', 'ماشین سازی فومن (مثال)', NULL, 'تولید فرایندی', NULL, 'کم', 'درجریان', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1010, 'LEA1010', 'lead369@test.com', NULL, 'هادی', NULL, 'شاهدی (مثال)', 'تک سنگ (مثال)', NULL, 'مصرفی', NULL, 'متوسط', 'درجریان', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1011, 'LEA1011', 'lead902@test.com', NULL, 'ارمین', NULL, 'حسنی (مثال)', 'ویرا آرتا (مثال)', NULL, 'خدماتی', NULL, 'کم', 'درجریان', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1012, 'LEA1012', 'lead315@test.com', NULL, 'خانم', NULL, 'زینب بهاری (مثال)', 'دنیای کودک (مثال)', NULL, 'مصرفی', NULL, 'زیاد', 'از دست رفته', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1013, 'LEA1013', 'lead787@test.com', NULL, 'خانم', NULL, 'خالقی (مثال)', 'شباهنگ (مثال)', NULL, 'تولید گسسته', NULL, 'زیاد', 'تبدیل شده', 'وب سایت', 1, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(1014, 'LEA1014', 'lead245@test.com', NULL, 'آقای', NULL, 'پورعلی (مثال)', 'کیان (مثال)', NULL, 'خدماتی', NULL, 'متوسط', 'تبدیل شده', 'وب سایت', 1, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2055, 'LEA3', 'lead595@test.com', NULL, 'مهندس', NULL, 'قاضی (مثال)', 'آذر مهر (مثال)', NULL, 'خدماتی', NULL, 'متوسط', 'تبدیل شده', 'نمایشگاه', 1, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2056, 'LEA4', 'lead4@test.com', NULL, 'رضا', NULL, 'منوچهری (مثال)', 'رهپویان شرق فردا (مثال)', NULL, 'خدمات عمومی', NULL, 'کم', 'تبدیل شده', 'نمایشگاه', 1, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2057, 'LEA5', 'lead381@test.com', NULL, 'ابوالفضل', NULL, 'صادقی (مثال)', 'گروه صنعتی حمید (مثال)', NULL, 'تولید فرایندی', NULL, 'متوسط', 'از دست رفته', 'نمایشگاه', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2058, 'LEA6', 'lead516@test.com', NULL, 'خانم', NULL, 'تقی زاده (مثال)', 'فناوری زیست محیط (مثال)', NULL, 'تولید فرایندی', NULL, 'کم', 'از دست رفته', 'نمایشگاه', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2059, 'LEA7', 'lead243@test.com', NULL, 'آقای', NULL, 'احمدیان (مثال)', 'گروه صنعتی هوشمند (مثال)', NULL, 'مصرفی', NULL, 'کم', 'از دست رفته', 'نمایشگاه', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2060, 'LEA8', 'lead776@test.com', NULL, 'آقای', NULL, 'آزادگانی (مثال)', 'نگار فلز (مثال)', NULL, 'تولید گسسته', NULL, 'متوسط', 'از دست رفته', 'نمایشگاه', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2063, 'LEA1100', 'lead-test@gooya.com', NULL, 'تست', 'مهندس', 'سرنخ گویا', 'شرکت آزمایشی گویا - ویرایش', 2500000000.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', 'تبلیغات', 0, 'مدیر فروش', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 45, 'backup@gooya.com', 0, '0', ''),
(2064, 'LEA1102', 'l1@test.com', NULL, 'علی', NULL, 'سرنخ ورودی L1', 'واردات شرق (مثال)', NULL, 'مصرفی', NULL, 'زیاد', 'جدید', 'نمایشگاه', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2065, 'LEA1103', 'l2@test.com', NULL, '', NULL, 'سرنخ ورودی L2', 'تجهیز صنعت (مثال)', NULL, 'خدماتی', NULL, 'متوسط', 'جدید', 'وب سایت', 0, 'SalesMan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2152, 'LEA1103', '', NULL, 'سرنخ', '', 'مشارکت حساب ۲۰۳۶ [Gouya-PHASE03]', 'حساب نمونه ۲۰۳۶', 0.00000000, NULL, NULL, NULL, 'اختصاص یافته', 'Referral', 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2157, 'LEA1104', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718040333-5938', 0.00000000, 'خدماتی', NULL, 'زیاد', 'درجریان', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2162, 'LEA1105', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718040406-5955', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2169, 'LEA1106', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718040648-8253', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2173, 'LEA1107', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718040648-8253-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2175, 'LEA1108', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718040939-3209', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2179, 'LEA1109', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718040939-3209-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2181, 'LEA1110', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718043251-9053', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2185, 'LEA1111', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718043251-9053-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2187, 'LEA1112', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718043314-6749', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2191, 'LEA1113', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718043314-6749-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2193, 'LEA1114', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718043336-8174', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2197, 'LEA1115', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718043336-8174-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2201, 'LEA1116', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718043458-8234', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2205, 'LEA1117', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718043458-8234-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2209, 'LEA1118', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'Gouya-LEAD-SMOKE-20260718043554-3440', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2213, 'LEA1119', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'Gouya-LEAD-SMOKE-20260718043554-3440-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2272, 'LEA1120', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260730063600-5929', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2274, 'LEA1121', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260730063600-5929-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2297, 'LEA1122', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809060946-7013', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2302, 'LEA1123', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809061248-2728', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2307, 'LEA1124', 'lead-updated@example.test', NULL, 'آزمون', '', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809061344-4881', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2311, 'LEA1125', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809061344-4881-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2315, 'LEA1126', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809062044-1209', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2319, 'LEA1127', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809062044-1209-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2323, 'LEA1128', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809062220-7570', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2327, 'LEA1129', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809062220-7570-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2331, 'LEA1130', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809062704-6866', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2335, 'LEA1131', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809062704-6866-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2339, 'LEA1132', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809063037-9459', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2343, 'LEA1133', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809063037-9459-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2347, 'LEA1134', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809063122-8988', 0.00000000, 'خدماتی', NULL, 'زیاد', 'تبدیل شده', NULL, 1, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2351, 'LEA1135', 'csv-import@example.test', NULL, '', '', 'ورودی استاندارد', 'SARV-LEAD-SMOKE-20260809063122-8988-IMPORT', 0.00000000, NULL, NULL, NULL, 'جدید', NULL, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', ''),
(2363, 'LEA1136', 'lead-updated@example.test', NULL, 'آزمون', 'Mr.', 'یکپارچگی سرنخ', 'SARV-LEAD-SMOKE-20260809084321-3905', 0.00000000, 'خدماتی', NULL, 'زیاد', 'مجدد فعال شده', NULL, 0, 'مدیر تست', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, '', 0, '0', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadscf`
--

DROP TABLE IF EXISTS `vtiger_leadscf`;
CREATE TABLE `vtiger_leadscf` (
  `leadid` int(19) NOT NULL DEFAULT 0,
  `cf_lead_party_type` varchar(200) DEFAULT NULL,
  `cf_referred_by` varchar(190) DEFAULT NULL,
  `cf_sub_industry` varchar(200) DEFAULT NULL,
  `cf_birth_date` date DEFAULT NULL,
  `cf_national_code` varchar(20) DEFAULT NULL,
  `cf_economic_code` varchar(30) DEFAULT NULL,
  `cf_registration_no` varchar(100) DEFAULT NULL,
  `cf_national_id` varchar(20) DEFAULT NULL,
  `cf_foreign_national` varchar(3) DEFAULT NULL,
  `cf_follower_user` int(19) DEFAULT NULL,
  `cf_primary_region` varchar(150) DEFAULT NULL,
  `cf_primary_lat` decimal(10,7) DEFAULT NULL,
  `cf_primary_lng` decimal(10,7) DEFAULT NULL,
  `cf_other_region` varchar(150) DEFAULT NULL,
  `cf_other_country` varchar(100) DEFAULT NULL,
  `cf_other_state` varchar(100) DEFAULT NULL,
  `cf_other_city` varchar(100) DEFAULT NULL,
  `cf_other_code` varchar(30) DEFAULT NULL,
  `cf_other_street` text DEFAULT NULL,
  `cf_other_lat` decimal(10,7) DEFAULT NULL,
  `cf_other_lng` decimal(10,7) DEFAULT NULL,
  `cf_linkedin` varchar(255) DEFAULT NULL,
  `cf_blog` varchar(255) DEFAULT NULL,
  `cf_twitter` varchar(255) DEFAULT NULL,
  `cf_instagram` varchar(255) DEFAULT NULL,
  `cf_facebook` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leadscf`
--

INSERT IGNORE INTO `vtiger_leadscf` (`leadid`, `cf_lead_party_type`, `cf_referred_by`, `cf_sub_industry`, `cf_birth_date`, `cf_national_code`, `cf_economic_code`, `cf_registration_no`, `cf_national_id`, `cf_foreign_national`, `cf_follower_user`, `cf_primary_region`, `cf_primary_lat`, `cf_primary_lng`, `cf_other_region`, `cf_other_country`, `cf_other_state`, `cf_other_city`, `cf_other_code`, `cf_other_street`, `cf_other_lat`, `cf_other_lng`, `cf_linkedin`, `cf_blog`, `cf_twitter`, `cf_instagram`, `cf_facebook`) VALUES
(2, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1000, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1001, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1002, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1003, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1004, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1005, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1006, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1007, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1008, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1009, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1010, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1011, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1012, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1013, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1014, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2055, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2056, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2057, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2058, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2059, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2060, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2063, 'حقوقی', 'Email marketing', 'نرم‌افزار و خدمات ابری', '1990-03-21', '0012345678', '411234567890', '123456', '10101234567', '0', 1, 'منطقه ۵ تهران', 35.8400000, 50.9391000, 'منطقه ۲', 'ایران', 'اصفهان', 'اصفهان', '8158777777', 'خیابان چهارباغ، کوچه دوم، واحد ۳', 32.6539000, 51.6660000, 'https://linkedin.com/company/gooya', 'https://blog.gooya.com', 'https://twitter.com/gooya', 'https://instagram.com/gooya', 'https://facebook.com/gooya'),
(2064, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2065, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2152, 'حقوقی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2157, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2162, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2169, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2173, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2175, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2179, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2181, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2185, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2187, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2191, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2193, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2197, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2201, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2205, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2209, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2213, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2272, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2274, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2297, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2302, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2307, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2311, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2315, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2319, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2323, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2327, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2331, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2335, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2339, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2343, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2347, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', ''),
(2351, 'حقیقی', '', '', NULL, '', '', '', '', '0', 0, '', 0.0000000, 0.0000000, '', '', '', '', '', '', 0.0000000, 0.0000000, '', '', '', '', ''),
(2363, 'حقوقی', '', '', NULL, '', '411111111111', '98765', '10101010101', '0', 0, 'منطقه یک', 35.6892000, 51.3890000, 'منطقه دو', 'ایران', 'البرز', 'کرج', '2222222222', 'آدرس دوم تست', 35.8400000, 50.9391000, 'https://linkedin.com/company/example', '', '', 'https://instagram.com/example', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadsource`
--

DROP TABLE IF EXISTS `vtiger_leadsource`;
CREATE TABLE `vtiger_leadsource` (
  `leadsourceid` int(19) NOT NULL,
  `leadsource` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leadsource`
--

INSERT IGNORE INTO `vtiger_leadsource` (`leadsourceid`, `leadsource`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Cold Call', 1, 99, 1, NULL),
(3, 'Existing Customer', 1, 100, 2, NULL),
(4, 'Self Generated', 1, 101, 3, NULL),
(5, 'Employee', 1, 102, 4, NULL),
(6, 'Partner', 1, 103, 5, NULL),
(7, 'Public Relations', 1, 104, 6, NULL),
(8, 'Direct Mail', 1, 105, 7, NULL),
(9, 'Conference', 1, 106, 8, NULL),
(10, 'Trade Show', 1, 107, 9, NULL),
(11, 'Web Site', 1, 108, 10, NULL),
(12, 'Word of mouth', 1, 109, 11, NULL),
(13, 'Other', 1, 110, 12, NULL),
(14, 'وب سایت', 1, 320, 13, NULL),
(15, 'تماس سرد', 1, 321, 14, NULL),
(16, 'مشتری موجود', 1, 322, 15, NULL),
(17, 'نمایشگاه', 1, 323, 16, NULL),
(18, 'معرفی / توصیه', 1, 324, 17, NULL),
(19, 'تبلیغات', 1, 325, 18, NULL),
(20, 'سایر', 1, 326, 19, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadsource_seq`
--

DROP TABLE IF EXISTS `vtiger_leadsource_seq`;
CREATE TABLE `vtiger_leadsource_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_leadsource_seq`
--

INSERT IGNORE INTO `vtiger_leadsource_seq` (`id`) VALUES
(13);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadstage`
--

DROP TABLE IF EXISTS `vtiger_leadstage`;
CREATE TABLE `vtiger_leadstage` (
  `leadstageid` int(19) NOT NULL,
  `stage` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadstatus`
--

DROP TABLE IF EXISTS `vtiger_leadstatus`;
CREATE TABLE `vtiger_leadstatus` (
  `leadstatusid` int(19) NOT NULL,
  `leadstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leadstatus`
--

INSERT IGNORE INTO `vtiger_leadstatus` (`leadstatusid`, `leadstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Attempted to Contact', 0, 112, 1, NULL),
(3, 'Cold', 0, 113, 2, NULL),
(4, 'Contact in Future', 0, 114, 3, NULL),
(5, 'Contacted', 0, 115, 4, NULL),
(6, 'Hot', 0, 116, 5, NULL),
(7, 'Junk Lead', 0, 117, 6, NULL),
(8, 'Lost Lead', 0, 118, 7, NULL),
(9, 'Not Contacted', 0, 119, 8, NULL),
(10, 'Pre Qualified', 0, 120, 9, NULL),
(11, 'Qualified', 0, 121, 10, NULL),
(12, 'Warm', 0, 122, 11, NULL),
(13, 'جدید', 1, 327, 12, NULL),
(14, 'اختصاص یافته', 1, 328, 13, NULL),
(15, 'درجریان', 1, 329, 14, NULL),
(16, 'تبدیل شده', 1, 330, 15, NULL),
(17, 'مجدد فعال شده', 1, 331, 16, NULL),
(18, 'از دست رفته', 1, 332, 17, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_leadstatus_seq`;
CREATE TABLE `vtiger_leadstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_leadstatus_seq`
--

INSERT IGNORE INTO `vtiger_leadstatus_seq` (`id`) VALUES
(12);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_leadsubdetails`
--

DROP TABLE IF EXISTS `vtiger_leadsubdetails`;
CREATE TABLE `vtiger_leadsubdetails` (
  `leadsubscriptionid` int(19) NOT NULL DEFAULT 0,
  `website` varchar(255) DEFAULT NULL,
  `callornot` int(1) DEFAULT 0,
  `readornot` int(1) DEFAULT 0,
  `empct` int(10) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_leadsubdetails`
--

INSERT IGNORE INTO `vtiger_leadsubdetails` (`leadsubscriptionid`, `website`, `callornot`, `readornot`, `empct`) VALUES
(2, '', 0, 0, 0),
(1000, NULL, 0, 0, 0),
(1001, NULL, 0, 0, 0),
(1002, NULL, 0, 0, 0),
(1003, NULL, 0, 0, 0),
(1004, NULL, 0, 0, 0),
(1005, NULL, 0, 0, 0),
(1006, NULL, 0, 0, 0),
(1007, NULL, 0, 0, 0),
(1008, NULL, 0, 0, 0),
(1009, NULL, 0, 0, 0),
(1010, NULL, 0, 0, 0),
(1011, NULL, 0, 0, 0),
(1012, NULL, 0, 0, 0),
(1013, NULL, 0, 0, 0),
(1014, NULL, 0, 0, 0),
(2055, '', 0, 0, 0),
(2056, '', 0, 0, 0),
(2057, '', 0, 0, 0),
(2058, '', 0, 0, 0),
(2059, '', 0, 0, 0),
(2060, '', 0, 0, 0),
(2063, 'https://www.gooya.com', 0, 0, 0),
(2064, '', 0, 0, 0),
(2065, '', 0, 0, 0),
(2152, '', 0, 0, 0),
(2157, 'https://example.test', 0, 0, 0),
(2162, 'https://example.test', 0, 0, 0),
(2169, 'https://example.test', 0, 0, 0),
(2173, '', 0, 0, 0),
(2175, 'https://example.test', 0, 0, 0),
(2179, '', 0, 0, 0),
(2181, 'https://example.test', 0, 0, 0),
(2185, '', 0, 0, 0),
(2187, 'https://example.test', 0, 0, 0),
(2191, '', 0, 0, 0),
(2193, 'https://example.test', 0, 0, 0),
(2197, '', 0, 0, 0),
(2201, 'https://example.test', 0, 0, 0),
(2205, '', 0, 0, 0),
(2209, 'https://example.test', 0, 0, 0),
(2213, '', 0, 0, 0),
(2272, 'https://example.test', 0, 0, 0),
(2274, '', 0, 0, 0),
(2297, 'https://example.test', 0, 0, 0),
(2302, 'https://example.test', 0, 0, 0),
(2307, 'https://example.test', 0, 0, 0),
(2311, '', 0, 0, 0),
(2315, 'https://example.test', 0, 0, 0),
(2319, '', 0, 0, 0),
(2323, 'https://example.test', 0, 0, 0),
(2327, '', 0, 0, 0),
(2331, 'https://example.test', 0, 0, 0),
(2335, '', 0, 0, 0),
(2339, 'https://example.test', 0, 0, 0),
(2343, '', 0, 0, 0),
(2347, 'https://example.test', 0, 0, 0),
(2351, '', 0, 0, 0),
(2363, 'https://example.test', 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_lead_view`
--

DROP TABLE IF EXISTS `vtiger_lead_view`;
CREATE TABLE `vtiger_lead_view` (
  `lead_viewid` int(19) NOT NULL,
  `lead_view` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_lead_view`
--

INSERT IGNORE INTO `vtiger_lead_view` (`lead_viewid`, `lead_view`, `sortorderid`, `presence`) VALUES
(1, 'Today', 0, 1),
(2, 'Last 2 Days', 1, 1),
(3, 'Last Week', 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_lead_view_seq`
--

DROP TABLE IF EXISTS `vtiger_lead_view_seq`;
CREATE TABLE `vtiger_lead_view_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_lead_view_seq`
--

INSERT IGNORE INTO `vtiger_lead_view_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_links`
--

DROP TABLE IF EXISTS `vtiger_links`;
CREATE TABLE `vtiger_links` (
  `linkid` int(11) NOT NULL,
  `tabid` int(11) DEFAULT NULL,
  `linktype` varchar(50) DEFAULT NULL,
  `linklabel` varchar(50) DEFAULT NULL,
  `linkurl` varchar(255) DEFAULT NULL,
  `linkicon` varchar(100) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL,
  `handler_path` varchar(128) DEFAULT NULL,
  `handler_class` varchar(50) DEFAULT NULL,
  `handler` varchar(50) DEFAULT NULL,
  `parent_link` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_links`
--

INSERT IGNORE INTO `vtiger_links` (`linkid`, `tabid`, `linktype`, `linklabel`, `linkurl`, `linkicon`, `sequence`, `handler_path`, `handler_class`, `handler`, `parent_link`) VALUES
(2, 6, 'DETAILVIEW', 'LBL_SHOW_ACCOUNT_HIERARCHY', 'index.php?module=Accounts&action=AccountHierarchy&accountid=$RECORD$', '', 0, NULL, NULL, NULL, NULL),
(5, 0, 'HEADERSCRIPT', 'Incoming Calls', 'modules/PBXManager/resources/PBXManagerJS.js', '', 0, 'modules/PBXManager/PBXManager.php', 'PBXManager', 'checkLinkPermission', NULL),
(6, 4, 'DETAILVIEWSIDEBARWIDGET', 'Google Map', 'module=Google&view=Map&mode=showMap&viewtype=detail', '', 0, NULL, NULL, NULL, NULL),
(7, 7, 'DETAILVIEWSIDEBARWIDGET', 'Google Map', 'module=Google&view=Map&mode=showMap&viewtype=detail', '', 0, NULL, NULL, NULL, NULL),
(8, 6, 'DETAILVIEWSIDEBARWIDGET', 'Google Map', 'module=Google&view=Map&mode=showMap&viewtype=detail', '', 0, NULL, NULL, NULL, NULL),
(9, 4, 'LISTVIEWSIDEBARWIDGET', 'Google Contacts', 'module=Google&view=List&sourcemodule=Contacts', '', 0, NULL, NULL, NULL, NULL),
(10, 9, 'LISTVIEWSIDEBARWIDGET', 'Google Calendar', 'module=Google&view=List&sourcemodule=Calendar', '', 0, NULL, NULL, NULL, NULL),
(11, 7, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(12, 4, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(13, 6, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(14, 2, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(15, 42, 'HEADERSCRIPT', 'ModCommentsCommonHeaderScript', 'modules/ModComments/ModCommentsCommon.js', '', 0, NULL, NULL, NULL, NULL),
(21, 47, 'HEADERSCRIPT', 'SMSNotifierCommonJS', 'modules/SMSNotifier/SMSNotifierCommon.js', '', 0, NULL, NULL, NULL, NULL),
(22, 7, 'LISTVIEWBASIC', 'Send SMS', 'SMSNotifierCommon.displaySelectWizard(this, \'$MODULE$\');', '', 0, NULL, NULL, NULL, NULL),
(23, 7, 'DETAILVIEW', 'Send SMS', 'javascript:SMSNotifierCommon.displaySelectWizard_DetailView(\'$MODULE$\', \'$RECORD$\');', '', 0, NULL, NULL, NULL, NULL),
(24, 4, 'LISTVIEWBASIC', 'Send SMS', 'SMSNotifierCommon.displaySelectWizard(this, \'$MODULE$\');', '', 0, NULL, NULL, NULL, NULL),
(25, 4, 'DETAILVIEW', 'Send SMS', 'javascript:SMSNotifierCommon.displaySelectWizard_DetailView(\'$MODULE$\', \'$RECORD$\');', '', 0, NULL, NULL, NULL, NULL),
(26, 6, 'LISTVIEWBASIC', 'Send SMS', 'SMSNotifierCommon.displaySelectWizard(this, \'$MODULE$\');', '', 0, NULL, NULL, NULL, NULL),
(27, 6, 'DETAILVIEW', 'Send SMS', 'javascript:SMSNotifierCommon.displaySelectWizard_DetailView(\'$MODULE$\', \'$RECORD$\');', '', 0, NULL, NULL, NULL, NULL),
(28, 49, 'HEADERSCRIPT', 'ExtensionStoreCommonHeaderScript', 'modules/ExtensionStore/ExtensionStore.js', '', 0, NULL, NULL, NULL, NULL),
(30, 44, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(31, 45, 'DETAILVIEWBASIC', 'Add Project Task', 'index.php?module=ProjectTask&action=EditView&projectid=$RECORD$&return_module=Project&return_action=DetailView&return_id=$RECORD$', '', 0, 'modules/ProjectTask/ProjectTask.php', 'ProjectTask', 'isLinkPermitted', NULL),
(33, 45, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(34, 2, 'DASHBOARDWIDGET', 'History', 'index.php?module=Potentials&view=ShowWidget&name=History', '', 1, NULL, NULL, NULL, NULL),
(35, 2, 'DASHBOARDWIDGET', 'Upcoming Activities', 'index.php?module=Potentials&view=ShowWidget&name=CalendarActivities', '', 2, NULL, NULL, NULL, NULL),
(36, 2, 'DASHBOARDWIDGET', 'Funnel', 'index.php?module=Potentials&view=ShowWidget&name=GroupedBySalesStage', '', 3, NULL, NULL, NULL, NULL),
(37, 2, 'DASHBOARDWIDGET', 'Potentials by Stage', 'index.php?module=Potentials&view=ShowWidget&name=GroupedBySalesPerson', '', 4, NULL, NULL, NULL, NULL),
(38, 2, 'DASHBOARDWIDGET', 'Pipelined Amount', 'index.php?module=Potentials&view=ShowWidget&name=PipelinedAmountPerSalesPerson', '', 5, NULL, NULL, NULL, NULL),
(39, 2, 'DASHBOARDWIDGET', 'Total Revenue', 'index.php?module=Potentials&view=ShowWidget&name=TotalRevenuePerSalesPerson', '', 6, NULL, NULL, NULL, NULL),
(40, 2, 'DASHBOARDWIDGET', 'Top Potentials', 'index.php?module=Potentials&view=ShowWidget&name=TopPotentials', '', 7, NULL, NULL, NULL, NULL),
(41, 2, 'DASHBOARDWIDGET', 'Overdue Activities', 'index.php?module=Potentials&view=ShowWidget&name=OverdueActivities', '', 9, NULL, NULL, NULL, NULL),
(42, 6, 'DASHBOARDWIDGET', 'History', 'index.php?module=Accounts&view=ShowWidget&name=History', '', 1, NULL, NULL, NULL, NULL),
(43, 6, 'DASHBOARDWIDGET', 'Upcoming Activities', 'index.php?module=Accounts&view=ShowWidget&name=CalendarActivities', '', 2, NULL, NULL, NULL, NULL),
(44, 6, 'DASHBOARDWIDGET', 'Overdue Activities', 'index.php?module=Accounts&view=ShowWidget&name=OverdueActivities', '', 3, NULL, NULL, NULL, NULL),
(45, 4, 'DASHBOARDWIDGET', 'History', 'index.php?module=Contacts&view=ShowWidget&name=History', '', 1, NULL, NULL, NULL, NULL),
(46, 4, 'DASHBOARDWIDGET', 'Upcoming Activities', 'index.php?module=Contacts&view=ShowWidget&name=CalendarActivities', '', 2, NULL, NULL, NULL, NULL),
(47, 4, 'DASHBOARDWIDGET', 'Overdue Activities', 'index.php?module=Contacts&view=ShowWidget&name=OverdueActivities', '', 3, NULL, NULL, NULL, NULL),
(48, 7, 'DASHBOARDWIDGET', 'History', 'index.php?module=Leads&view=ShowWidget&name=History', '', 1, NULL, NULL, NULL, NULL),
(49, 7, 'DASHBOARDWIDGET', 'Upcoming Activities', 'index.php?module=Leads&view=ShowWidget&name=CalendarActivities', '', 2, NULL, NULL, NULL, NULL),
(50, 7, 'DASHBOARDWIDGET', 'Leads by Status', 'index.php?module=Leads&view=ShowWidget&name=LeadsByStatus', '', 4, NULL, NULL, NULL, NULL),
(51, 7, 'DASHBOARDWIDGET', 'Leads by Source', 'index.php?module=Leads&view=ShowWidget&name=LeadsBySource', '', 5, NULL, NULL, NULL, NULL),
(52, 7, 'DASHBOARDWIDGET', 'Leads by Industry', 'index.php?module=Leads&view=ShowWidget&name=LeadsByIndustry', '', 6, NULL, NULL, NULL, NULL),
(53, 7, 'DASHBOARDWIDGET', 'Overdue Activities', 'index.php?module=Leads&view=ShowWidget&name=OverdueActivities', '', 7, NULL, NULL, NULL, NULL),
(54, 13, 'DASHBOARDWIDGET', 'Tickets by Status', 'index.php?module=HelpDesk&view=ShowWidget&name=TicketsByStatus', '', 1, NULL, NULL, NULL, NULL),
(55, 13, 'DASHBOARDWIDGET', 'Open Tickets', 'index.php?module=HelpDesk&view=ShowWidget&name=OpenTickets', '', 2, NULL, NULL, NULL, NULL),
(56, 3, 'DASHBOARDWIDGET', 'History', 'index.php?module=Home&view=ShowWidget&name=History', '', 1, NULL, NULL, NULL, NULL),
(57, 3, 'DASHBOARDWIDGET', 'Upcoming Activities', 'index.php?module=Home&view=ShowWidget&name=CalendarActivities', '', 2, NULL, NULL, NULL, NULL),
(58, 3, 'DASHBOARDWIDGET', 'Funnel', 'index.php?module=Potentials&view=ShowWidget&name=GroupedBySalesStage', '', 3, NULL, NULL, NULL, NULL),
(59, 3, 'DASHBOARDWIDGET', 'Potentials by Stage', 'index.php?module=Potentials&view=ShowWidget&name=GroupedBySalesPerson', '', 4, NULL, NULL, NULL, NULL),
(60, 3, 'DASHBOARDWIDGET', 'Pipelined Amount', 'index.php?module=Potentials&view=ShowWidget&name=PipelinedAmountPerSalesPerson', '', 5, NULL, NULL, NULL, NULL),
(61, 3, 'DASHBOARDWIDGET', 'Total Revenue', 'index.php?module=Potentials&view=ShowWidget&name=TotalRevenuePerSalesPerson', '', 6, NULL, NULL, NULL, NULL),
(62, 3, 'DASHBOARDWIDGET', 'Top Potentials', 'index.php?module=Potentials&view=ShowWidget&name=TopPotentials', '', 7, NULL, NULL, NULL, NULL),
(63, 3, 'DASHBOARDWIDGET', 'Leads by Status', 'index.php?module=Leads&view=ShowWidget&name=LeadsByStatus', '', 10, NULL, NULL, NULL, NULL),
(64, 3, 'DASHBOARDWIDGET', 'Leads by Source', 'index.php?module=Leads&view=ShowWidget&name=LeadsBySource', '', 11, NULL, NULL, NULL, NULL),
(65, 3, 'DASHBOARDWIDGET', 'Leads by Industry', 'index.php?module=Leads&view=ShowWidget&name=LeadsByIndustry', '', 12, NULL, NULL, NULL, NULL),
(66, 3, 'DASHBOARDWIDGET', 'Overdue Activities', 'index.php?module=Home&view=ShowWidget&name=OverdueActivities', '', 13, NULL, NULL, NULL, NULL),
(67, 3, 'DASHBOARDWIDGET', 'Tickets by Status', 'index.php?module=HelpDesk&view=ShowWidget&name=TicketsByStatus', '', 13, NULL, NULL, NULL, NULL),
(68, 3, 'DASHBOARDWIDGET', 'Open Tickets', 'index.php?module=HelpDesk&view=ShowWidget&name=OpenTickets', '', 14, NULL, NULL, NULL, NULL),
(69, 13, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(70, 15, 'DETAILVIEWWIDGET', 'DetailViewBlockCommentWidget', 'block://ModComments:modules/ModComments/ModComments.php', '', 0, NULL, NULL, NULL, NULL),
(99, 3, 'DASHBOARDWIDGET', 'Key Metrics', 'index.php?module=Home&view=ShowWidget&name=KeyMetrics', '', 0, NULL, NULL, NULL, NULL),
(100, 3, 'DASHBOARDWIDGET', 'Mini List', 'index.php?module=Home&view=ShowWidget&name=MiniList', '', 0, NULL, NULL, NULL, NULL),
(101, 3, 'DASHBOARDWIDGET', 'Tag Cloud', 'index.php?module=Home&view=ShowWidget&name=TagCloud', '', 0, NULL, NULL, NULL, NULL),
(102, 2, 'DASHBOARDWIDGET', 'Funnel Amount', 'index.php?module=Potentials&view=ShowWidget&name=FunnelAmount', '', 10, NULL, NULL, NULL, NULL),
(103, 3, 'DASHBOARDWIDGET', 'Funnel Amount', 'index.php?module=Potentials&view=ShowWidget&name=FunnelAmount', '', 10, NULL, NULL, NULL, NULL),
(104, 3, 'DASHBOARDWIDGET', 'Notebook', 'index.php?module=Home&view=ShowWidget&name=Notebook', '', 0, NULL, NULL, NULL, NULL),
(105, 25, 'LISTVIEWBASIC', 'LBL_ADD_RECORD', '', '', 0, NULL, NULL, NULL, NULL),
(106, 25, 'LISTVIEWBASIC', 'LBL_DETAIL_REPORT', 'javascript:Reports_List_Js.addReport(\"index.php?module=Reports&view=Edit\")', '', 0, 'modules/Reports/models/Module.php', 'Reports_Module_Model', 'checkLinkAccess', 105),
(107, 25, 'LISTVIEWBASIC', 'LBL_CHARTS', 'javascript:Reports_List_Js.addReport(\"index.php?module=Reports&view=ChartEdit\")', '', 0, 'modules/Reports/models/Module.php', 'Reports_Module_Model', 'checkLinkAccess', 105),
(108, 25, 'LISTVIEWBASIC', 'LBL_ADD_FOLDER', 'javascript:Reports_List_Js.triggerAddFolder(\"index.php?module=Reports&view=EditFolder\")', '', 0, 'modules/Reports/models/Module.php', 'Reports_Module_Model', 'checkLinkAccess', NULL),
(109, 4, 'EXTENSIONLINK', 'Google', 'index.php?module=Contacts&view=Extension&extensionModule=Google&extensionView=Index', '', 0, NULL, NULL, NULL, NULL),
(110, 9, 'EXTENSIONLINK', 'Google', 'index.php?module=Calendar&view=Extension&extensionModule=Google&extensionView=Index', '', 0, NULL, NULL, NULL, NULL),
(111, 52, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(112, 53, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(113, 54, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(114, 55, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(115, 56, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(116, 57, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(117, 58, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(118, 59, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(119, 60, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(120, 61, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(121, 62, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(122, 63, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL),
(123, 65, 'DETAILVIEWBASIC', 'View History', 'javascript:ModTrackerCommon.showhistory(\'$RECORD$\')', '', 0, 'modules/ModTracker/ModTracker.php', 'ModTracker', 'isViewPermitted', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_links_seq`
--

DROP TABLE IF EXISTS `vtiger_links_seq`;
CREATE TABLE `vtiger_links_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_links_seq`
--

INSERT IGNORE INTO `vtiger_links_seq` (`id`) VALUES
(123);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_list_status`
--

DROP TABLE IF EXISTS `vtiger_list_status`;
CREATE TABLE `vtiger_list_status` (
  `list_statusid` int(11) NOT NULL,
  `list_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_list_status`
--

INSERT IGNORE INTO `vtiger_list_status` (`list_statusid`, `list_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Draft', 1, 411, 1, NULL),
(2, 'Active', 1, 412, 2, NULL),
(3, 'Archived', 1, 413, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_list_status_seq`
--

DROP TABLE IF EXISTS `vtiger_list_status_seq`;
CREATE TABLE `vtiger_list_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_list_status_seq`
--

INSERT IGNORE INTO `vtiger_list_status_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_list_type`
--

DROP TABLE IF EXISTS `vtiger_list_type`;
CREATE TABLE `vtiger_list_type` (
  `list_typeid` int(11) NOT NULL,
  `list_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_list_type`
--

INSERT IGNORE INTO `vtiger_list_type` (`list_typeid`, `list_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Static', 1, 409, 1, NULL),
(2, 'Dynamic', 1, 410, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_list_type_seq`
--

DROP TABLE IF EXISTS `vtiger_list_type_seq`;
CREATE TABLE `vtiger_list_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_list_type_seq`
--

INSERT IGNORE INTO `vtiger_list_type_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_location_status`
--

DROP TABLE IF EXISTS `vtiger_location_status`;
CREATE TABLE `vtiger_location_status` (
  `location_statusid` int(11) NOT NULL,
  `location_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_location_status`
--

INSERT IGNORE INTO `vtiger_location_status` (`location_statusid`, `location_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Planned', 1, 433, 1, NULL),
(2, 'Active', 1, 434, 2, NULL),
(3, 'Inactive', 1, 435, 3, NULL),
(4, 'Closed', 1, 436, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_location_status_seq`
--

DROP TABLE IF EXISTS `vtiger_location_status_seq`;
CREATE TABLE `vtiger_location_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_location_status_seq`
--

INSERT IGNORE INTO `vtiger_location_status_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_location_type`
--

DROP TABLE IF EXISTS `vtiger_location_type`;
CREATE TABLE `vtiger_location_type` (
  `location_typeid` int(11) NOT NULL,
  `location_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_location_type`
--

INSERT IGNORE INTO `vtiger_location_type` (`location_typeid`, `location_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Branch', 1, 431, 1, NULL),
(2, 'ServiceCenter', 1, 432, 2, NULL),
(3, 'SalesCenter', 1, 441, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_location_type_seq`
--

DROP TABLE IF EXISTS `vtiger_location_type_seq`;
CREATE TABLE `vtiger_location_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_location_type_seq`
--

INSERT IGNORE INTO `vtiger_location_type_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_loginhistory`
--

DROP TABLE IF EXISTS `vtiger_loginhistory`;
CREATE TABLE `vtiger_loginhistory` (
  `login_id` int(11) NOT NULL,
  `user_name` varchar(255) DEFAULT NULL,
  `user_ip` varchar(25) NOT NULL,
  `logout_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `login_time` datetime DEFAULT NULL,
  `status` varchar(25) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_loginhistory`
--

INSERT IGNORE INTO `vtiger_loginhistory` (`login_id`, `user_name`, `user_ip`, `logout_time`, `login_time`, `status`) VALUES
(1, 'admin', '::1', '2026-06-13 02:40:44', '2026-06-12 19:09:42', 'Signed off'),
(2, 'admin', '::1', '2026-06-13 02:42:14', '2026-06-12 19:42:14', 'Signed in'),
(3, 'admin', '::1', '2026-06-13 02:53:10', '2026-06-12 19:42:19', 'Signed off'),
(4, 'admin', '::1', '2026-06-13 02:57:25', '2026-06-12 19:57:25', 'Signed in'),
(5, 'admin', '::1', '2026-06-13 02:58:33', '2026-06-12 19:58:33', 'Signed in'),
(6, 'admin', '::1', '2026-06-13 03:01:33', '2026-06-12 20:01:33', 'Signed in'),
(7, 'admin', '::1', '2026-06-13 13:40:49', '2026-06-13 05:36:05', 'Signed off'),
(8, 'admin', '::1', '2026-06-13 13:41:11', '2026-06-13 06:41:11', 'Signed in'),
(9, 'admin', '127.0.0.1', '2026-06-13 14:18:37', '2026-06-13 07:12:40', 'Signed off'),
(10, 'admin', '127.0.0.1', '2026-06-13 14:22:19', '2026-06-13 07:20:56', 'Signed off'),
(11, 'admin', '::1', '2026-06-13 19:23:32', '2026-06-13 12:11:58', 'Signed off'),
(12, 'admin', '127.0.0.1', '2026-06-13 19:17:11', '2026-06-13 12:17:11', 'Signed in'),
(13, 'admin', '::1', '2026-06-13 19:23:45', '2026-06-13 12:23:45', 'Signed in'),
(14, 'admin', '::1', '2026-06-14 12:46:57', '2026-06-14 05:46:57', 'Signed in'),
(15, 'admin', '::1', '2026-06-15 00:31:11', '2026-06-14 16:53:20', 'Signed off'),
(16, 'admin', '::1', '2026-06-15 00:37:25', '2026-06-14 17:37:25', 'Signed in'),
(17, 'admin', '::1', '2026-06-15 00:37:27', '2026-06-14 17:37:27', 'Signed in'),
(18, 'admin', '::1', '2026-06-15 13:06:09', '2026-06-15 06:06:09', 'Signed in'),
(19, 'admin', '::1', '2026-06-22 00:16:35', '2026-06-21 17:16:35', 'Signed in'),
(20, 'admin', '::1', '2026-06-22 02:32:44', '2026-06-21 19:32:44', 'Signed in'),
(21, 'admin', '::1', '2026-06-22 12:58:48', '2026-06-22 05:58:48', 'Signed in'),
(22, 'admin', '::1', '2026-06-22 18:13:02', '2026-06-22 07:04:03', 'Signed off'),
(23, 'admin', '::1', '2026-06-22 18:22:14', '2026-06-22 11:22:13', 'Signed off'),
(24, 'admin', '::1', '2026-06-22 18:37:32', '2026-06-22 11:22:23', 'Signed off'),
(25, 'admin', '::1', '2026-06-22 18:46:29', '2026-06-22 11:46:29', 'Signed in'),
(26, 'admin', '::1', '2026-06-22 19:07:39', '2026-06-22 12:01:13', 'Signed off'),
(27, 'admin', '::1', '2026-06-22 19:30:57', '2026-06-22 12:30:48', 'Signed off'),
(28, 'admin', '::1', '2026-06-22 19:39:21', '2026-06-22 12:39:18', 'Signed off'),
(29, 'admin', '::1', '2026-06-23 00:36:39', '2026-06-22 17:17:14', 'Signed off'),
(30, 'admin', '::1', '2026-06-23 01:17:05', '2026-06-22 18:15:00', 'Signed off'),
(31, 'admin', '::1', '2026-06-23 01:19:39', '2026-06-22 18:17:26', 'Signed off'),
(32, 'admin', '::1', '2026-06-23 01:43:40', '2026-06-22 18:23:39', 'Signed off'),
(33, 'a.zare', '::1', '2026-06-23 01:44:31', '2026-06-22 18:44:20', 'Signed off'),
(34, 'admin', '::1', '2026-06-23 02:01:12', '2026-06-22 19:01:12', 'Signed in'),
(35, 'admin', '::1', '2026-06-23 13:10:42', '2026-06-23 06:10:42', 'Signed in'),
(36, 'admin', '::1', '2026-06-23 23:16:11', '2026-06-23 16:11:53', 'Signed off'),
(37, 'admin', '::1', '2026-06-27 23:06:45', '2026-06-27 16:06:45', 'Signed in'),
(38, 'admin', '::1', '2026-06-28 13:11:49', '2026-06-28 06:11:49', 'Signed in'),
(39, 'admin', '::1', '2026-06-28 17:07:56', '2026-06-28 10:07:56', 'Signed in'),
(40, 'admin', '::1', '2026-06-28 22:45:07', '2026-06-28 15:45:07', 'Signed in'),
(41, 'admin', '::1', '2026-06-29 03:12:00', '2026-06-28 20:12:00', 'Signed in'),
(42, 'admin', '::1', '2026-06-30 00:47:11', '2026-06-29 17:47:11', 'Signed in'),
(43, 'admin', '::1', '2026-06-30 12:27:34', '2026-06-30 05:27:34', 'Signed in'),
(44, 'admin', '::1', '2026-06-30 18:41:31', '2026-06-30 11:41:31', 'Signed in'),
(45, 'admin', '::1', '2026-07-03 05:51:14', '2026-07-02 22:51:14', 'Signed in'),
(46, 'admin', '::1', '2026-07-07 23:46:25', '2026-07-07 16:46:25', 'Signed in'),
(47, 'admin', '::1', '2026-07-11 14:44:09', '2026-07-11 07:44:09', 'Signed in'),
(48, 'admin', '::1', '2026-07-12 01:10:59', '2026-07-11 18:10:59', 'Signed in'),
(49, 'admin', '::1', '2026-07-14 15:50:13', '2026-07-14 08:50:13', 'Signed in'),
(50, 'admin', '::1', '2026-07-14 05:55:30', '2026-07-14 09:25:30', 'Signed in'),
(51, 'admin', '::1', '2026-07-14 09:29:22', '2026-07-14 12:55:13', 'Signed off'),
(52, 'admin', '::1', '2026-07-14 09:40:11', '2026-07-14 13:08:41', 'Signed off'),
(53, 'admin', '::1', '2026-07-14 09:42:34', '2026-07-14 13:11:32', 'Signed off'),
(54, 'admin', '::1', '2026-07-14 09:54:28', '2026-07-14 13:24:28', 'Signed in'),
(55, 'admin', '::1', '2026-07-14 12:27:47', '2026-07-14 15:57:47', 'Signed in'),
(56, 'admin', '::1', '2026-07-15 06:29:20', '2026-07-15 09:59:20', 'Signed in'),
(57, 'admin', '::1', '2026-07-15 19:01:06', '2026-07-15 22:31:06', 'Signed in'),
(58, 'admin', '::1', '2026-07-15 20:32:09', '2026-07-16 00:02:09', 'Signed in'),
(59, 'admin', '::1', '2026-07-15 21:05:55', '2026-07-16 00:35:55', 'Signed in'),
(60, 'admin', '::1', '2026-07-15 21:36:36', '2026-07-16 01:06:36', 'Signed in'),
(61, 'admin', '::1', '2026-07-17 18:26:55', '2026-07-17 21:56:55', 'Signed in'),
(62, 'admin', '::1', '2026-07-17 18:28:46', '2026-07-17 21:58:46', 'Signed in'),
(63, 'admin', '::1', '2026-07-17 23:21:34', '2026-07-18 02:51:34', 'Signed in'),
(64, 'admin', '::1', '2026-07-18 05:56:35', '2026-07-18 09:26:35', 'Signed in'),
(65, 'admin', '::1', '2026-07-18 18:18:21', '2026-07-18 21:48:21', 'Signed in'),
(66, 'admin', '::1', '2026-07-19 23:13:04', '2026-07-18 22:21:45', 'Signed off'),
(67, 'admin', '::1', '2026-07-20 00:12:22', '2026-07-20 02:44:21', 'Signed off'),
(68, 'admin', '::1', '2026-07-20 00:14:08', '2026-07-20 03:44:08', 'Signed in'),
(69, 'admin', '::1', '2026-07-20 19:30:11', '2026-07-20 23:00:11', 'Signed in'),
(70, 'admin', '::1', '2026-07-21 01:05:10', '2026-07-21 04:35:10', 'Signed in'),
(71, 'admin', '::1', '2026-07-21 18:24:21', '2026-07-21 21:54:21', 'Signed in'),
(72, 'admin', '::1', '2026-07-21 21:08:18', '2026-07-22 00:38:18', 'Signed in'),
(73, 'admin', '::1', '2026-07-23 01:30:36', '2026-07-23 04:55:42', 'Signed off'),
(74, 'admin', '::1', '2026-07-24 20:25:30', '2026-07-24 23:55:30', 'Signed in'),
(75, 'admin', '::1', '2026-07-26 03:09:03', '2026-07-26 06:39:03', 'Signed in'),
(76, 'admin', '::1', '2026-07-26 14:41:43', '2026-07-26 18:11:43', 'Signed in'),
(77, 'admin', '::1', '2026-07-26 15:18:24', '2026-07-26 18:48:24', 'Signed in'),
(78, 'admin', '::1', '2026-07-26 15:18:25', '2026-07-26 18:48:25', 'Signed in'),
(79, 'admin', '::1', '2026-07-27 02:43:23', '2026-07-27 06:13:23', 'Signed in'),
(80, 'admin', '::1', '2026-07-28 02:38:09', '2026-07-28 06:08:09', 'Signed in'),
(81, 'admin', '::1', '2026-07-28 03:09:29', '2026-07-28 06:39:29', 'Signed in'),
(82, 'admin', '::1', '2026-07-28 03:09:31', '2026-07-28 06:39:31', 'Signed in'),
(83, 'admin', '::1', '2026-07-28 05:33:44', '2026-07-28 09:03:44', 'Signed in'),
(84, 'admin', '::1', '2026-07-28 06:11:23', '2026-07-28 09:41:23', 'Signed in'),
(85, 'admin', '::1', '2026-07-28 12:28:53', '2026-07-28 15:58:53', 'Signed in'),
(86, 'admin', '::1', '2026-07-29 03:28:17', '2026-07-29 06:58:17', 'Signed in'),
(87, 'admin', '::1', '2026-08-17 06:48:25', '2026-08-17 10:18:25', 'Signed in');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailer_queue`
--

DROP TABLE IF EXISTS `vtiger_mailer_queue`;
CREATE TABLE `vtiger_mailer_queue` (
  `id` int(11) NOT NULL,
  `fromname` varchar(100) DEFAULT NULL,
  `fromemail` varchar(100) DEFAULT NULL,
  `mailer` varchar(10) DEFAULT NULL,
  `content_type` varchar(15) DEFAULT NULL,
  `subject` varchar(999) DEFAULT NULL,
  `body` text DEFAULT NULL,
  `relcrmid` int(11) DEFAULT NULL,
  `failed` int(1) NOT NULL DEFAULT 0,
  `failreason` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailer_queueattachments`
--

DROP TABLE IF EXISTS `vtiger_mailer_queueattachments`;
CREATE TABLE `vtiger_mailer_queueattachments` (
  `id` int(11) DEFAULT NULL,
  `path` text DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `encoding` varchar(50) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailer_queueinfo`
--

DROP TABLE IF EXISTS `vtiger_mailer_queueinfo`;
CREATE TABLE `vtiger_mailer_queueinfo` (
  `id` int(11) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `type` varchar(7) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailmanager_mailattachments`
--

DROP TABLE IF EXISTS `vtiger_mailmanager_mailattachments`;
CREATE TABLE `vtiger_mailmanager_mailattachments` (
  `userid` int(11) DEFAULT NULL,
  `muid` int(11) DEFAULT NULL,
  `aname` varchar(100) DEFAULT NULL,
  `lastsavedtime` int(11) DEFAULT NULL,
  `attachid` int(19) NOT NULL,
  `path` varchar(200) NOT NULL,
  `cid` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailmanager_mailrecord`
--

DROP TABLE IF EXISTS `vtiger_mailmanager_mailrecord`;
CREATE TABLE `vtiger_mailmanager_mailrecord` (
  `userid` int(11) DEFAULT NULL,
  `mfrom` varchar(255) DEFAULT NULL,
  `mto` varchar(255) DEFAULT NULL,
  `mcc` varchar(500) DEFAULT NULL,
  `mbcc` varchar(500) DEFAULT NULL,
  `mdate` varchar(20) DEFAULT NULL,
  `msubject` varchar(500) DEFAULT NULL,
  `mbody` text DEFAULT NULL,
  `mcharset` varchar(10) DEFAULT NULL,
  `misbodyhtml` int(1) DEFAULT NULL,
  `mplainmessage` int(1) DEFAULT NULL,
  `mhtmlmessage` int(1) DEFAULT NULL,
  `muniqueid` varchar(500) DEFAULT NULL,
  `mbodyparsed` int(1) DEFAULT NULL,
  `muid` int(11) DEFAULT NULL,
  `lastsavedtime` int(11) DEFAULT NULL,
  `folder` varchar(250) DEFAULT NULL,
  `mfolder` varchar(250) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailmanager_mailrel`
--

DROP TABLE IF EXISTS `vtiger_mailmanager_mailrel`;
CREATE TABLE `vtiger_mailmanager_mailrel` (
  `mailuid` varchar(999) DEFAULT NULL,
  `crmid` int(11) DEFAULT NULL,
  `emailid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner`
--

DROP TABLE IF EXISTS `vtiger_mailscanner`;
CREATE TABLE `vtiger_mailscanner` (
  `scannerid` int(11) NOT NULL,
  `scannername` varchar(30) DEFAULT NULL,
  `server` varchar(100) DEFAULT NULL,
  `protocol` varchar(10) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `ssltype` varchar(10) DEFAULT NULL,
  `sslmethod` varchar(30) DEFAULT NULL,
  `auth_type` varchar(20) DEFAULT NULL,
  `auth_expireson` tinyint(4) DEFAULT NULL,
  `mail_proxy` varchar(50) DEFAULT NULL,
  `connecturl` varchar(255) DEFAULT NULL,
  `searchfor` varchar(10) DEFAULT NULL,
  `markas` varchar(10) DEFAULT NULL,
  `isvalid` int(1) DEFAULT NULL,
  `scanfrom` varchar(10) DEFAULT 'ALL',
  `time_zone` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner_actions`
--

DROP TABLE IF EXISTS `vtiger_mailscanner_actions`;
CREATE TABLE `vtiger_mailscanner_actions` (
  `actionid` int(11) NOT NULL,
  `scannerid` int(11) DEFAULT NULL,
  `actiontype` varchar(10) DEFAULT NULL,
  `module` varchar(30) DEFAULT NULL,
  `lookup` varchar(30) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner_folders`
--

DROP TABLE IF EXISTS `vtiger_mailscanner_folders`;
CREATE TABLE `vtiger_mailscanner_folders` (
  `folderid` int(11) NOT NULL,
  `scannerid` int(11) DEFAULT NULL,
  `foldername` varchar(255) DEFAULT NULL,
  `lastscan` varchar(30) DEFAULT NULL,
  `rescan` int(1) DEFAULT NULL,
  `enabled` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner_ids`
--

DROP TABLE IF EXISTS `vtiger_mailscanner_ids`;
CREATE TABLE `vtiger_mailscanner_ids` (
  `scannerid` int(11) DEFAULT NULL,
  `messageid` varchar(512) DEFAULT NULL,
  `crmid` int(11) DEFAULT NULL,
  `refids` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner_ruleactions`
--

DROP TABLE IF EXISTS `vtiger_mailscanner_ruleactions`;
CREATE TABLE `vtiger_mailscanner_ruleactions` (
  `ruleid` int(11) DEFAULT NULL,
  `actionid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mailscanner_rules`
--

DROP TABLE IF EXISTS `vtiger_mailscanner_rules`;
CREATE TABLE `vtiger_mailscanner_rules` (
  `ruleid` int(11) NOT NULL,
  `scannerid` int(11) DEFAULT NULL,
  `fromaddress` varchar(255) DEFAULT NULL,
  `toaddress` varchar(255) DEFAULT NULL,
  `subjectop` varchar(20) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `bodyop` varchar(20) DEFAULT NULL,
  `body` varchar(255) DEFAULT NULL,
  `matchusing` varchar(5) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL,
  `assigned_to` int(10) DEFAULT NULL,
  `cc` varchar(255) DEFAULT NULL,
  `bcc` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mail_accounts`
--

DROP TABLE IF EXISTS `vtiger_mail_accounts`;
CREATE TABLE `vtiger_mail_accounts` (
  `account_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `display_name` varchar(50) DEFAULT NULL,
  `mail_id` varchar(50) DEFAULT NULL,
  `account_name` varchar(50) DEFAULT NULL,
  `mail_protocol` varchar(20) DEFAULT NULL,
  `mail_username` varchar(50) NOT NULL,
  `mail_password` text DEFAULT NULL,
  `mail_servername` varchar(50) DEFAULT NULL,
  `auth_type` varchar(20) DEFAULT NULL,
  `auth_expireson` tinyint(4) DEFAULT NULL,
  `mail_proxy` varchar(50) DEFAULT NULL,
  `box_refresh` int(10) DEFAULT NULL,
  `mails_per_page` int(10) DEFAULT NULL,
  `ssltype` varchar(50) DEFAULT NULL,
  `sslmeth` varchar(50) DEFAULT NULL,
  `int_mailer` int(1) DEFAULT 0,
  `status` varchar(10) DEFAULT NULL,
  `set_default` int(2) DEFAULT NULL,
  `sent_folder` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_manufacturer`
--

DROP TABLE IF EXISTS `vtiger_manufacturer`;
CREATE TABLE `vtiger_manufacturer` (
  `manufacturerid` int(19) NOT NULL,
  `manufacturer` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_manufacturer`
--

INSERT IGNORE INTO `vtiger_manufacturer` (`manufacturerid`, `manufacturer`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'AltvetPet Inc.', 1, 124, 1, NULL),
(3, 'LexPon Inc.', 1, 125, 2, NULL),
(4, 'MetBeat Corp', 1, 126, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_manufacturer_seq`
--

DROP TABLE IF EXISTS `vtiger_manufacturer_seq`;
CREATE TABLE `vtiger_manufacturer_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_manufacturer_seq`
--

INSERT IGNORE INTO `vtiger_manufacturer_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_mobile_alerts`
--

DROP TABLE IF EXISTS `vtiger_mobile_alerts`;
CREATE TABLE `vtiger_mobile_alerts` (
  `id` int(11) NOT NULL,
  `handler_path` varchar(500) DEFAULT NULL,
  `handler_class` varchar(50) DEFAULT NULL,
  `sequence` int(11) DEFAULT NULL,
  `deleted` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_mobile_alerts`
--

INSERT IGNORE INTO `vtiger_mobile_alerts` (`id`, `handler_path`, `handler_class`, `sequence`, `deleted`) VALUES
(1, 'modules/Mobile/api/ws/models/alerts/IdleTicketsOfMine.php', 'Mobile_WS_AlertModel_IdleTicketsOfMine', NULL, 0),
(2, 'modules/Mobile/api/ws/models/alerts/NewTicketOfMine.php', 'Mobile_WS_AlertModel_NewTicketOfMine', NULL, 0),
(3, 'modules/Mobile/api/ws/models/alerts/PendingTicketsOfMine.php', 'Mobile_WS_AlertModel_PendingTicketsOfMine', NULL, 0),
(4, 'modules/Mobile/api/ws/models/alerts/PotentialsDueIn5Days.php', 'Mobile_WS_AlertModel_PotentialsDueIn5Days', NULL, 0),
(5, 'modules/Mobile/api/ws/models/alerts/EventsOfMineToday.php', 'Mobile_WS_AlertModel_EventsOfMineToday', NULL, 0),
(6, 'modules/Mobile/api/ws/models/alerts/ProjectTasksOfMine.php', 'Mobile_WS_AlertModel_ProjectTasksOfMine', NULL, 0),
(7, 'modules/Mobile/api/ws/models/alerts/Projects.php', 'Mobile_WS_AlertModel_Projects', NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modcomments`
--

DROP TABLE IF EXISTS `vtiger_modcomments`;
CREATE TABLE `vtiger_modcomments` (
  `modcommentsid` int(11) DEFAULT NULL,
  `commentcontent` text DEFAULT NULL,
  `related_to` int(19) DEFAULT NULL,
  `parent_comments` int(19) DEFAULT NULL,
  `customer` int(19) DEFAULT NULL,
  `userid` int(19) DEFAULT NULL,
  `reasontoedit` varchar(100) DEFAULT NULL,
  `is_private` int(1) DEFAULT 0,
  `filename` varchar(255) DEFAULT NULL,
  `related_email_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modcomments`
--

INSERT IGNORE INTO `vtiger_modcomments` (`modcommentsid`, `commentcontent`, `related_to`, `parent_comments`, `customer`, `userid`, `reasontoedit`, `is_private`, `filename`, `related_email_id`) VALUES
(2232, 'تماس اولیه انجام شد؛ مشتری برای جلسه دمو اعلام آمادگی کرد. [GOOYA-TEST]', 2063, 0, NULL, 1, NULL, 0, NULL, NULL),
(2234, 'fdfd', 2152, 0, 0, 1, '', 1, '', 0),
(2261, 'هماهنگی اولیه انجام شد؛ مدارک تا پایان هفته تکمیل می‌شود. [GOOYA-TEST]', 2247, 0, NULL, 1, NULL, 0, NULL, NULL),
(2266, 'مشتری به پکیج علاقه‌مند است؛ منتظر تأیید بودجه. [GOOYA-TEST]', 2052, 0, NULL, 1, NULL, 0, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modcommentscf`
--

DROP TABLE IF EXISTS `vtiger_modcommentscf`;
CREATE TABLE `vtiger_modcommentscf` (
  `modcommentsid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modcommentscf`
--

INSERT IGNORE INTO `vtiger_modcommentscf` (`modcommentsid`) VALUES
(2234);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modentity_num`
--

DROP TABLE IF EXISTS `vtiger_modentity_num`;
CREATE TABLE `vtiger_modentity_num` (
  `num_id` int(19) NOT NULL,
  `semodule` varchar(100) DEFAULT NULL,
  `prefix` varchar(50) NOT NULL DEFAULT '',
  `start_id` varchar(50) NOT NULL,
  `cur_id` varchar(50) NOT NULL,
  `active` varchar(2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modentity_num`
--

INSERT IGNORE INTO `vtiger_modentity_num` (`num_id`, `semodule`, `prefix`, `start_id`, `cur_id`, `active`) VALUES
(1, 'Leads', 'LEA', '1', '1137', '1'),
(2, 'Accounts', 'ACC', '1', '16', '1'),
(3, 'Campaigns', 'CAM', '1', '23', '1'),
(4, 'Contacts', 'CON', '1', '94', '1'),
(5, 'Potentials', 'POT', '1', '1106', '1'),
(6, 'HelpDesk', 'TT', '1', '10', '1'),
(7, 'Quotes', '', '1', '12', '1'),
(8, 'SalesOrder', 'SO', '1', '1', '1'),
(9, 'PurchaseOrder', 'PO', '1', '3', '1'),
(10, 'Invoice', '', '1', '11', '1'),
(11, 'Products', 'PRO', '1', '1', '1'),
(12, 'Vendors', 'VEN', '1', '5', '1'),
(13, 'PriceBooks', 'PB', '1', '1', '1'),
(14, 'Faq', 'FAQ', '1', '1', '1'),
(15, 'Documents', 'DOC', '1', '20', '1'),
(16, 'ServiceContracts', 'SERCON', '1', '1', '1'),
(17, 'Services', 'SER', '1', '1', '1'),
(18, 'Assets', 'ASSET', '1', '1', '1'),
(19, 'ProjectMilestone', 'PM', '1', '1', '1'),
(20, 'ProjectTask', 'PT', '1', '1', '1'),
(21, 'Project', 'PROJ', '1', '3', '1'),
(22, 'SarvPayments', 'PAY', '1', '12', '1'),
(23, 'SarvParticipations', 'PAR', '1', '2', '1'),
(24, 'SarvSurveyResponses', 'SRV', '1', '2', '1'),
(25, 'SarvSalesContracts', 'SC', '1', '2', '1'),
(26, 'SarvTargetLists', 'TL', '1', '2', '1'),
(27, 'SarvBankAccounts', 'BA', '1', '3', '1'),
(28, 'SarvDeposits', 'DEP', '1', '2', '1'),
(29, 'SarvBusinessLocations', 'LOC', '1', '4', '1'),
(30, 'SarvTimeReservations', 'RSV', '1', '2', '1'),
(31, 'SarvGifts', 'GFT', '1', '2', '1'),
(32, 'SarvProductSamples', 'SMP', '1', '2', '1'),
(33, 'SarvAccessGrants', 'AGR', '1', '2', '1');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modentity_num_seq`
--

DROP TABLE IF EXISTS `vtiger_modentity_num_seq`;
CREATE TABLE `vtiger_modentity_num_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_modentity_num_seq`
--

INSERT IGNORE INTO `vtiger_modentity_num_seq` (`id`) VALUES
(33);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modtracker_basic`
--

DROP TABLE IF EXISTS `vtiger_modtracker_basic`;
CREATE TABLE `vtiger_modtracker_basic` (
  `id` int(20) NOT NULL,
  `crmid` int(20) DEFAULT NULL,
  `module` varchar(50) DEFAULT NULL,
  `whodid` int(20) DEFAULT NULL,
  `changedon` datetime DEFAULT NULL,
  `status` int(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modtracker_basic`
--

INSERT IGNORE INTO `vtiger_modtracker_basic` (`id`, `crmid`, `module`, `whodid`, `changedon`, `status`) VALUES
(1, 2, 'Leads', 1, '2026-06-22 09:34:34', 2),
(2, 3, 'SMSNotifier', 1, '2026-06-22 09:37:50', 2),
(3, 3, 'SMSNotifier', 1, '2026-06-22 09:37:50', 4),
(4, 3, 'SMSNotifier', 1, '2026-06-22 09:37:50', 4),
(5, 4, 'SMSNotifier', 1, '2026-06-22 09:39:53', 2),
(6, 4, 'SMSNotifier', 1, '2026-06-22 09:39:53', 4),
(7, 4, 'SMSNotifier', 1, '2026-06-22 09:39:53', 4),
(8, 5, 'SMSNotifier', 1, '2026-06-22 09:40:11', 2),
(9, 5, 'SMSNotifier', 1, '2026-06-22 09:40:11', 4),
(10, 5, 'SMSNotifier', 1, '2026-06-22 09:40:11', 4),
(11, 6, 'SMSNotifier', 1, '2026-06-22 09:40:25', 2),
(12, 6, 'SMSNotifier', 1, '2026-06-22 09:40:25', 4),
(13, 6, 'SMSNotifier', 1, '2026-06-22 09:40:25', 4),
(14, 7, 'SMSNotifier', 1, '2026-06-22 09:47:37', 2),
(15, 7, 'SMSNotifier', 1, '2026-06-22 09:47:37', 4),
(16, 7, 'SMSNotifier', 1, '2026-06-22 09:47:37', 4),
(17, 8, 'SMSNotifier', 1, '2026-06-22 10:16:47', 2),
(18, 8, 'SMSNotifier', 1, '2026-06-22 10:16:48', 4),
(19, 8, 'SMSNotifier', 1, '2026-06-22 10:16:48', 4),
(20, 9, 'Calendar', 1, '2026-06-22 10:23:42', 2),
(21, 2, 'Leads', 1, '2026-06-22 10:23:42', 4),
(22, 10, 'Calendar', 1, '2026-06-22 10:37:02', 2),
(23, 2, 'Leads', 1, '2026-06-22 10:37:02', 4),
(24, 11, 'Contacts', 1, '2026-06-22 18:16:52', 2),
(25, 14, 'Events', 1, '2026-06-29 18:12:24', 2),
(26, 15, 'Events', 1, '2026-06-29 18:21:35', 2),
(27, 16, 'Events', 1, '2026-06-30 06:01:11', 2),
(28, 17, 'Events', 1, '2026-06-30 09:50:30', 2),
(29, 18, 'Events', 1, '2026-06-30 12:36:47', 2),
(30, 19, 'Calendar', 1, '2026-06-30 13:15:47', 2),
(31, 2025, 'Quotes', 1, '2026-07-03 21:58:09', 2),
(32, 2025, 'Quotes', 1, '2026-07-03 22:38:38', 0),
(33, 2046, 'Potentials', 1, '2026-07-04 08:03:34', 2),
(34, 2049, 'Potentials', 1, '2026-07-04 08:14:04', 2),
(35, 2050, 'Potentials', 1, '2026-07-04 08:14:32', 2),
(36, 2046, 'Potentials', 1, '2026-07-04 08:15:26', 0),
(37, 2063, 'Leads', 1, '2026-07-05 05:56:21', 2),
(38, 2063, 'Leads', 1, '2026-07-05 12:36:30', 0),
(39, 2054, 'Invoice', 1, '2026-07-05 12:36:56', 0),
(40, 2066, 'Contacts', 1, '2026-07-10 20:54:59', 2),
(41, 2067, 'Contacts', 1, '2026-07-10 20:55:05', 2),
(42, 2068, 'Contacts', 1, '2026-07-10 20:55:06', 2),
(43, 2069, 'Contacts', 1, '2026-07-10 20:55:06', 2),
(44, 2070, 'Contacts', 1, '2026-07-10 20:55:07', 2),
(45, 2071, 'Contacts', 1, '2026-07-10 20:55:07', 2),
(46, 2072, 'Contacts', 1, '2026-07-10 20:55:07', 2),
(47, 2073, 'Contacts', 1, '2026-07-10 20:55:08', 2),
(48, 2074, 'Contacts', 1, '2026-07-10 20:55:08', 2),
(49, 2075, 'Contacts', 1, '2026-07-10 20:55:08', 2),
(50, 2076, 'Contacts', 1, '2026-07-10 20:55:09', 2),
(51, 2077, 'Contacts', 1, '2026-07-10 20:55:09', 2),
(52, 2078, 'Contacts', 1, '2026-07-10 20:55:09', 2),
(53, 2079, 'Contacts', 1, '2026-07-10 20:55:10', 2),
(54, 2080, 'Contacts', 1, '2026-07-10 20:55:10', 2),
(55, 2081, 'Contacts', 1, '2026-07-10 20:55:10', 2),
(56, 2082, 'Contacts', 1, '2026-07-10 20:55:11', 2),
(57, 2083, 'Contacts', 1, '2026-07-10 20:55:11', 2),
(58, 2084, 'Contacts', 1, '2026-07-10 20:55:12', 2),
(59, 2085, 'Contacts', 1, '2026-07-10 20:55:12', 2),
(60, 2086, 'Contacts', 1, '2026-07-10 20:55:13', 2),
(61, 2087, 'Contacts', 1, '2026-07-10 20:55:13', 2),
(62, 2088, 'Contacts', 1, '2026-07-10 20:55:14', 2),
(63, 2089, 'Contacts', 1, '2026-07-10 21:01:35', 2),
(64, 2090, 'Contacts', 1, '2026-07-10 21:01:37', 2),
(65, 2066, 'Contacts', 1, '2026-07-11 15:46:58', 1),
(66, 2067, 'Contacts', 1, '2026-07-11 15:47:00', 1),
(67, 2068, 'Contacts', 1, '2026-07-11 15:47:00', 1),
(68, 2069, 'Contacts', 1, '2026-07-11 15:47:00', 1),
(69, 2070, 'Contacts', 1, '2026-07-11 15:47:01', 1),
(70, 2071, 'Contacts', 1, '2026-07-11 15:47:01', 1),
(71, 2072, 'Contacts', 1, '2026-07-11 15:47:01', 1),
(72, 2073, 'Contacts', 1, '2026-07-11 15:47:01', 1),
(73, 2074, 'Contacts', 1, '2026-07-11 15:47:01', 1),
(74, 2075, 'Contacts', 1, '2026-07-11 15:47:02', 1),
(75, 2076, 'Contacts', 1, '2026-07-11 15:47:02', 1),
(76, 2077, 'Contacts', 1, '2026-07-11 15:47:02', 1),
(77, 2078, 'Contacts', 1, '2026-07-11 15:47:02', 1),
(78, 2079, 'Contacts', 1, '2026-07-11 15:47:03', 1),
(79, 2080, 'Contacts', 1, '2026-07-11 15:47:03', 1),
(80, 2081, 'Contacts', 1, '2026-07-11 15:47:03', 1),
(81, 2082, 'Contacts', 1, '2026-07-11 15:47:04', 1),
(82, 2083, 'Contacts', 1, '2026-07-11 15:47:04', 1),
(83, 2084, 'Contacts', 1, '2026-07-11 15:47:04', 1),
(84, 2085, 'Contacts', 1, '2026-07-11 15:47:04', 1),
(85, 2086, 'Contacts', 1, '2026-07-11 15:47:05', 1),
(86, 2087, 'Contacts', 1, '2026-07-11 15:47:06', 1),
(87, 2088, 'Contacts', 1, '2026-07-11 15:47:06', 1),
(88, 2089, 'Contacts', 1, '2026-07-11 15:47:06', 1),
(89, 2090, 'Contacts', 1, '2026-07-11 15:47:06', 1),
(90, 2092, 'HelpDesk', 1, '2026-07-11 15:47:11', 2),
(91, 2091, 'Contacts', 1, '2026-07-11 15:47:07', 2),
(92, 2093, 'Contacts', 1, '2026-07-11 15:47:25', 2),
(93, 2094, 'HelpDesk', 1, '2026-07-11 15:47:26', 2),
(94, 2095, 'Contacts', 1, '2026-07-11 15:47:26', 2),
(95, 2096, 'Contacts', 1, '2026-07-11 15:47:28', 2),
(96, 2097, 'HelpDesk', 1, '2026-07-11 15:47:28', 2),
(97, 2098, 'Contacts', 1, '2026-07-11 15:47:31', 2),
(98, 2099, 'HelpDesk', 1, '2026-07-11 15:47:35', 2),
(99, 2100, 'Contacts', 1, '2026-07-11 15:47:35', 2),
(100, 2102, 'Contacts', 1, '2026-07-11 15:47:38', 2),
(101, 2101, 'HelpDesk', 1, '2026-07-11 15:47:38', 2),
(102, 2103, 'Contacts', 1, '2026-07-11 15:47:41', 2),
(103, 2104, 'HelpDesk', 1, '2026-07-11 15:47:42', 2),
(104, 2105, 'Contacts', 1, '2026-07-11 15:47:42', 2),
(105, 2106, 'HelpDesk', 1, '2026-07-11 15:47:43', 2),
(106, 2107, 'Contacts', 1, '2026-07-11 15:47:44', 2),
(107, 2108, 'Contacts', 1, '2026-07-11 15:47:45', 2),
(108, 2109, 'HelpDesk', 1, '2026-07-11 15:47:45', 2),
(109, 2110, 'Contacts', 1, '2026-07-11 15:47:46', 2),
(110, 2111, 'Contacts', 1, '2026-07-11 15:47:47', 2),
(111, 2113, 'Contacts', 1, '2026-07-11 15:47:49', 2),
(112, 2112, 'Calendar', 1, '2026-07-11 15:47:49', 2),
(113, 2114, 'Contacts', 1, '2026-07-11 15:47:50', 2),
(114, 2115, 'Calendar', 1, '2026-07-11 15:47:51', 2),
(115, 2116, 'Contacts', 1, '2026-07-11 15:47:51', 2),
(116, 2117, 'Contacts', 1, '2026-07-11 15:47:54', 2),
(117, 2118, 'Contacts', 1, '2026-07-11 15:47:54', 2),
(118, 2119, 'Contacts', 1, '2026-07-11 15:47:55', 2),
(119, 2120, 'Contacts', 1, '2026-07-11 15:47:55', 2),
(120, 2121, 'Contacts', 1, '2026-07-11 15:47:56', 2),
(121, 2122, 'Contacts', 1, '2026-07-11 15:47:56', 2),
(122, 2123, 'Contacts', 1, '2026-07-11 15:47:57', 2),
(123, 2124, 'Contacts', 1, '2026-07-11 15:47:57', 2),
(124, 2125, 'Contacts', 1, '2026-07-11 15:47:57', 2),
(125, 1050, 'Calendar', 1, '2026-07-11 18:17:02', 0),
(126, 2065, 'Leads', 1, '2026-07-11 18:47:18', 0),
(127, 2065, 'Leads', 1, '2026-07-11 18:48:10', 0),
(128, 2052, 'Potentials', 1, '2026-07-11 18:49:18', 0),
(129, 2052, 'Potentials', 1, '2026-07-11 18:50:24', 0),
(130, 2050, 'Potentials', 1, '2026-07-11 18:56:30', 0),
(131, 2050, 'Potentials', 1, '2026-07-11 18:56:48', 0),
(132, 2126, 'Vendors', 1, '2026-07-12 09:32:30', 2),
(133, 2127, 'Vendors', 1, '2026-07-12 09:32:45', 2),
(134, 2128, 'Vendors', 1, '2026-07-12 09:32:46', 2),
(135, 2129, 'Vendors', 1, '2026-07-12 09:32:47', 2),
(136, 2130, 'Project', 1, '2026-07-12 10:20:44', 2),
(137, 2131, 'Project', 1, '2026-07-12 10:20:57', 2),
(138, 2132, 'Events', 1, '2026-07-14 16:14:14', 2),
(139, 2133, 'Calendar', 1, '2026-07-14 16:17:28', 2),
(140, 2134, 'Events', 1, '2026-07-14 16:39:08', 2),
(148, 2139, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(149, 2140, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(150, 2141, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(151, 2142, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(152, 2143, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(153, 2144, 'SarvPayments', 1, '2026-07-15 21:49:44', 2),
(154, 2145, 'SarvPayments', 1, '2026-07-15 21:49:45', 2),
(155, 2146, 'SarvPayments', 1, '2026-07-15 21:49:45', 2),
(156, 2147, 'Invoice', 1, '2026-07-15 22:04:29', 2),
(157, 2148, 'SarvPayments', 1, '2026-07-15 22:04:30', 2),
(158, 2149, 'HelpDesk', 1, '2026-07-16 00:38:10', 2),
(159, 2150, 'PurchaseOrder', 1, '2026-07-16 00:38:10', 2),
(160, 2151, 'SarvParticipations', 1, '2026-07-18 01:04:54', 2),
(161, 2152, 'Leads', 1, '2026-07-18 01:04:54', 2),
(162, 2036, 'Accounts', 1, '2026-07-18 01:04:54', 4),
(163, 2153, 'SarvSurveyResponses', 1, '2026-07-18 03:03:33', 2),
(164, 2154, 'SarvSalesContracts', 1, '2026-07-18 03:03:33', 2),
(165, 2155, 'Campaigns', 1, '2026-07-18 04:03:00', 2),
(166, 2155, 'Campaigns', 1, '2026-07-18 04:03:00', 1),
(167, 2156, 'Campaigns', 1, '2026-07-18 04:03:33', 2),
(168, 2157, 'Leads', 1, '2026-07-18 04:03:34', 2),
(169, 2158, 'Documents', 1, '2026-07-18 04:03:34', 2),
(170, 2157, 'Leads', 1, '2026-07-18 04:03:34', 4),
(171, 2157, 'Leads', 1, '2026-07-18 04:03:34', 0),
(172, 2160, 'Calendar', 1, '2026-07-18 04:03:34', 2),
(173, 2160, 'Calendar', 1, '2026-07-18 04:03:34', 1),
(174, 2158, 'Documents', 1, '2026-07-18 04:03:34', 1),
(175, 2157, 'Leads', 1, '2026-07-18 04:03:34', 1),
(176, 2156, 'Campaigns', 1, '2026-07-18 04:03:34', 1),
(177, 2161, 'Campaigns', 1, '2026-07-18 04:04:06', 2),
(178, 2162, 'Leads', 1, '2026-07-18 04:04:06', 2),
(179, 2163, 'Documents', 1, '2026-07-18 04:04:06', 2),
(180, 2162, 'Leads', 1, '2026-07-18 04:04:06', 4),
(181, 2162, 'Leads', 1, '2026-07-18 04:04:06', 0),
(182, 2165, 'Calendar', 1, '2026-07-18 04:04:06', 2),
(183, 2162, 'Leads', 1, '2026-07-18 04:04:06', 0),
(184, 2166, 'Accounts', 1, '2026-07-18 04:04:07', 2),
(185, 2167, 'Contacts', 1, '2026-07-18 04:04:07', 2),
(186, 2165, 'Calendar', 1, '2026-07-18 04:04:07', 1),
(187, 2163, 'Documents', 1, '2026-07-18 04:04:07', 1),
(188, 2167, 'Contacts', 1, '2026-07-18 04:04:07', 1),
(189, 2166, 'Accounts', 1, '2026-07-18 04:04:07', 1),
(190, 2162, 'Leads', 1, '2026-07-18 04:04:07', 1),
(191, 2161, 'Campaigns', 1, '2026-07-18 04:04:07', 1),
(192, 2168, 'Campaigns', 1, '2026-07-18 04:06:48', 2),
(193, 2169, 'Leads', 1, '2026-07-18 04:06:48', 2),
(194, 2170, 'Documents', 1, '2026-07-18 04:06:48', 2),
(195, 2169, 'Leads', 1, '2026-07-18 04:06:48', 4),
(196, 2169, 'Leads', 1, '2026-07-18 04:06:48', 0),
(197, 2172, 'Calendar', 1, '2026-07-18 04:06:48', 2),
(198, 2169, 'Leads', 1, '2026-07-18 04:06:49', 0),
(199, 2173, 'Leads', 1, '2026-07-18 04:06:49', 2),
(200, 2172, 'Calendar', 1, '2026-07-18 04:06:49', 1),
(201, 2170, 'Documents', 1, '2026-07-18 04:06:49', 1),
(202, 2173, 'Leads', 1, '2026-07-18 04:06:49', 1),
(203, 2169, 'Leads', 1, '2026-07-18 04:06:49', 1),
(204, 2168, 'Campaigns', 1, '2026-07-18 04:06:49', 1),
(205, 2174, 'Campaigns', 1, '2026-07-18 04:09:39', 2),
(206, 2175, 'Leads', 1, '2026-07-18 04:09:40', 2),
(207, 2176, 'Documents', 1, '2026-07-18 04:09:40', 2),
(208, 2175, 'Leads', 1, '2026-07-18 04:09:40', 4),
(209, 2175, 'Leads', 1, '2026-07-18 04:09:40', 0),
(210, 2178, 'Calendar', 1, '2026-07-18 04:09:40', 2),
(211, 2175, 'Leads', 1, '2026-07-18 04:09:40', 0),
(212, 2179, 'Leads', 1, '2026-07-18 04:09:40', 2),
(213, 2178, 'Calendar', 1, '2026-07-18 04:09:40', 1),
(214, 2176, 'Documents', 1, '2026-07-18 04:09:40', 1),
(215, 2179, 'Leads', 1, '2026-07-18 04:09:40', 1),
(216, 2175, 'Leads', 1, '2026-07-18 04:09:40', 1),
(217, 2174, 'Campaigns', 1, '2026-07-18 04:09:40', 1),
(218, 2180, 'Campaigns', 1, '2026-07-18 04:32:51', 2),
(219, 2181, 'Leads', 1, '2026-07-18 04:32:51', 2),
(220, 2182, 'Documents', 1, '2026-07-18 04:32:51', 2),
(221, 2181, 'Leads', 1, '2026-07-18 04:32:52', 4),
(222, 2181, 'Leads', 1, '2026-07-18 04:32:52', 0),
(223, 2184, 'Calendar', 1, '2026-07-18 04:32:52', 2),
(224, 2181, 'Leads', 1, '2026-07-18 04:32:52', 0),
(225, 2185, 'Leads', 1, '2026-07-18 04:32:52', 2),
(226, 2184, 'Calendar', 1, '2026-07-18 04:32:52', 1),
(227, 2182, 'Documents', 1, '2026-07-18 04:32:52', 1),
(228, 2185, 'Leads', 1, '2026-07-18 04:32:52', 1),
(229, 2181, 'Leads', 1, '2026-07-18 04:32:52', 1),
(230, 2180, 'Campaigns', 1, '2026-07-18 04:32:52', 1),
(231, 2186, 'Campaigns', 1, '2026-07-18 04:33:14', 2),
(232, 2187, 'Leads', 1, '2026-07-18 04:33:14', 2),
(233, 2188, 'Documents', 1, '2026-07-18 04:33:14', 2),
(234, 2187, 'Leads', 1, '2026-07-18 04:33:14', 4),
(235, 2187, 'Leads', 1, '2026-07-18 04:33:14', 0),
(236, 2190, 'Calendar', 1, '2026-07-18 04:33:14', 2),
(237, 2187, 'Leads', 1, '2026-07-18 04:33:15', 0),
(238, 2191, 'Leads', 1, '2026-07-18 04:33:15', 2),
(239, 2190, 'Calendar', 1, '2026-07-18 04:33:15', 1),
(240, 2188, 'Documents', 1, '2026-07-18 04:33:15', 1),
(241, 2191, 'Leads', 1, '2026-07-18 04:33:15', 1),
(242, 2187, 'Leads', 1, '2026-07-18 04:33:15', 1),
(243, 2186, 'Campaigns', 1, '2026-07-18 04:33:15', 1),
(244, 2192, 'Campaigns', 1, '2026-07-18 04:33:36', 2),
(245, 2193, 'Leads', 1, '2026-07-18 04:33:36', 2),
(246, 2194, 'Documents', 1, '2026-07-18 04:33:36', 2),
(247, 2193, 'Leads', 1, '2026-07-18 04:33:37', 4),
(248, 2193, 'Leads', 1, '2026-07-18 04:33:37', 0),
(249, 2196, 'Calendar', 1, '2026-07-18 04:33:37', 2),
(250, 2193, 'Leads', 1, '2026-07-18 04:33:37', 0),
(251, 2197, 'Leads', 1, '2026-07-18 04:33:37', 2),
(252, 2198, 'Accounts', 1, '2026-07-18 04:33:37', 2),
(253, 2199, 'Contacts', 1, '2026-07-18 04:33:37', 2),
(254, 2196, 'Calendar', 1, '2026-07-18 04:33:38', 1),
(255, 2194, 'Documents', 1, '2026-07-18 04:33:38', 1),
(256, 2199, 'Contacts', 1, '2026-07-18 04:33:38', 1),
(257, 2198, 'Accounts', 1, '2026-07-18 04:33:38', 1),
(258, 2197, 'Leads', 1, '2026-07-18 04:33:38', 1),
(259, 2193, 'Leads', 1, '2026-07-18 04:33:38', 1),
(260, 2192, 'Campaigns', 1, '2026-07-18 04:33:38', 1),
(261, 2200, 'Campaigns', 1, '2026-07-18 04:34:58', 2),
(262, 2201, 'Leads', 1, '2026-07-18 04:34:58', 2),
(263, 2202, 'Documents', 1, '2026-07-18 04:34:58', 2),
(264, 2201, 'Leads', 1, '2026-07-18 04:34:58', 4),
(265, 2201, 'Leads', 1, '2026-07-18 04:34:58', 0),
(266, 2204, 'Calendar', 1, '2026-07-18 04:34:58', 2),
(267, 2201, 'Leads', 1, '2026-07-18 04:34:59', 0),
(268, 2205, 'Leads', 1, '2026-07-18 04:34:59', 2),
(269, 2206, 'Accounts', 1, '2026-07-18 04:34:59', 2),
(270, 2207, 'Contacts', 1, '2026-07-18 04:34:59', 2),
(271, 2204, 'Calendar', 1, '2026-07-18 04:34:59', 1),
(272, 2202, 'Documents', 1, '2026-07-18 04:34:59', 1),
(273, 2207, 'Contacts', 1, '2026-07-18 04:34:59', 1),
(274, 2206, 'Accounts', 1, '2026-07-18 04:34:59', 1),
(275, 2205, 'Leads', 1, '2026-07-18 04:34:59', 1),
(276, 2201, 'Leads', 1, '2026-07-18 04:35:00', 1),
(277, 2200, 'Campaigns', 1, '2026-07-18 04:35:00', 1),
(278, 2208, 'Campaigns', 1, '2026-07-18 04:35:55', 2),
(279, 2209, 'Leads', 1, '2026-07-18 04:35:55', 2),
(280, 2210, 'Documents', 1, '2026-07-18 04:35:55', 2),
(281, 2209, 'Leads', 1, '2026-07-18 04:35:55', 4),
(282, 2209, 'Leads', 1, '2026-07-18 04:35:55', 0),
(283, 2212, 'Calendar', 1, '2026-07-18 04:35:55', 2),
(284, 2209, 'Leads', 1, '2026-07-18 04:35:55', 0),
(285, 2213, 'Leads', 1, '2026-07-18 04:35:55', 2),
(286, 2214, 'Accounts', 1, '2026-07-18 04:35:56', 2),
(287, 2215, 'Contacts', 1, '2026-07-18 04:35:56', 2),
(288, 2212, 'Calendar', 1, '2026-07-18 04:35:56', 1),
(289, 2210, 'Documents', 1, '2026-07-18 04:35:56', 1),
(290, 2215, 'Contacts', 1, '2026-07-18 04:35:56', 1),
(291, 2214, 'Accounts', 1, '2026-07-18 04:35:56', 1),
(292, 2213, 'Leads', 1, '2026-07-18 04:35:56', 1),
(293, 2209, 'Leads', 1, '2026-07-18 04:35:56', 1),
(294, 2208, 'Campaigns', 1, '2026-07-18 04:35:56', 1),
(295, 2216, 'SarvTargetLists', 1, '2026-07-18 04:56:10', 2),
(296, 2217, 'SarvBankAccounts', 1, '2026-07-18 04:56:10', 2),
(297, 2218, 'SarvBankAccounts', 1, '2026-07-18 04:57:31', 2),
(298, 2219, 'SarvPayments', 1, '2026-07-18 07:46:05', 2),
(299, 2220, 'SarvDeposits', 1, '2026-07-18 07:46:05', 2),
(300, 2221, 'Accounts', 1, '2026-07-18 07:46:05', 2),
(301, 2222, 'SarvBusinessLocations', 1, '2026-07-18 08:21:37', 2),
(302, 2223, 'SarvBusinessLocations', 1, '2026-07-18 08:21:37', 2),
(303, 2224, 'SarvBusinessLocations', 1, '2026-07-18 08:45:43', 2),
(304, 2225, 'SarvTimeReservations', 1, '2026-07-18 08:45:43', 2),
(305, 2226, 'SarvGifts', 1, '2026-07-18 09:06:00', 2),
(306, 2226, 'SarvGifts', 1, '2026-07-18 09:06:00', 0),
(307, 2226, 'SarvGifts', 1, '2026-07-18 09:06:00', 0),
(308, 2226, 'SarvGifts', 1, '2026-07-18 09:06:00', 0),
(309, 2227, 'SarvProductSamples', 1, '2026-07-18 09:06:00', 2),
(310, 2227, 'SarvProductSamples', 1, '2026-07-18 09:06:01', 0),
(311, 2227, 'SarvProductSamples', 1, '2026-07-18 09:06:01', 0),
(312, 2227, 'SarvProductSamples', 1, '2026-07-18 09:06:01', 0),
(313, 2227, 'SarvProductSamples', 1, '2026-07-18 09:06:01', 0),
(314, 2228, 'SarvAccessGrants', 1, '2026-07-18 09:40:14', 2),
(315, 2152, 'Leads', 1, '2026-07-18 22:26:34', 4),
(316, 2234, 'ModComments', 1, '2026-07-18 22:26:34', 2),
(317, 1012, 'Leads', 1, '2026-07-20 03:45:32', 0),
(318, 2057, 'Leads', 1, '2026-07-20 03:45:34', 0),
(319, 1012, 'Leads', 1, '2026-07-20 03:45:38', 0),
(320, 2052, 'Potentials', 1, '2026-07-20 03:49:58', 0),
(321, 2268, 'PurchaseOrder', 1, '2026-07-29 12:55:23', 2),
(322, 2269, 'Campaigns', 1, '2026-07-30 06:31:15', 2),
(323, 2269, 'Campaigns', 1, '2026-07-30 06:31:16', 1),
(324, 2270, 'Campaigns', 1, '2026-07-30 06:33:03', 2),
(325, 2270, 'Campaigns', 1, '2026-07-30 06:33:04', 1),
(326, 2271, 'Campaigns', 1, '2026-07-30 06:36:01', 2),
(327, 2272, 'Leads', 1, '2026-07-30 06:36:01', 2),
(328, 2272, 'Leads', 1, '2026-07-30 06:36:01', 0),
(329, 2273, 'Calendar', 1, '2026-07-30 06:36:01', 2),
(330, 2272, 'Leads', 1, '2026-07-30 06:36:01', 0),
(331, 2274, 'Leads', 1, '2026-07-30 06:36:02', 2),
(332, 2275, 'Accounts', 1, '2026-07-30 06:36:02', 2),
(333, 2276, 'Contacts', 1, '2026-07-30 06:36:02', 2),
(334, 2273, 'Calendar', 1, '2026-07-30 06:36:02', 1),
(335, 2276, 'Contacts', 1, '2026-07-30 06:36:02', 1),
(336, 2275, 'Accounts', 1, '2026-07-30 06:36:03', 1),
(337, 2274, 'Leads', 1, '2026-07-30 06:36:03', 1),
(338, 2272, 'Leads', 1, '2026-07-30 06:36:03', 1),
(339, 2271, 'Campaigns', 1, '2026-07-30 06:36:03', 1),
(340, 2277, 'Quotes', 1, '2026-07-30 08:40:25', 2),
(341, 2279, 'Contacts', 1, '2026-08-01 18:06:22', 2),
(342, 2279, 'Contacts', 1, '2026-08-01 18:06:22', 0),
(343, 2279, 'Contacts', 1, '2026-08-01 18:06:23', 1),
(344, 2280, 'Contacts', 1, '2026-08-02 06:19:45', 2),
(345, 2280, 'Contacts', 1, '2026-08-02 06:19:46', 0),
(346, 2280, 'Contacts', 1, '2026-08-02 06:19:46', 1),
(347, 2281, 'Contacts', 1, '2026-08-02 06:52:07', 2),
(348, 2281, 'Contacts', 1, '2026-08-02 06:52:07', 0),
(349, 2281, 'Contacts', 1, '2026-08-02 06:52:07', 1),
(350, 2282, 'Contacts', 1, '2026-08-02 07:16:42', 2),
(351, 2282, 'Contacts', 1, '2026-08-02 07:16:42', 0),
(352, 2282, 'Contacts', 1, '2026-08-02 07:16:42', 1),
(353, 2283, 'Contacts', 1, '2026-08-02 07:25:36', 2),
(354, 2283, 'Contacts', 1, '2026-08-02 07:25:36', 0),
(355, 2283, 'Contacts', 1, '2026-08-02 07:25:36', 1),
(356, 2284, 'Contacts', 1, '2026-08-02 08:06:31', 2),
(357, 2284, 'Contacts', 1, '2026-08-02 08:06:31', 0),
(358, 2284, 'Contacts', 1, '2026-08-02 08:06:31', 1),
(359, 2285, 'Contacts', 1, '2026-08-02 17:02:58', 2),
(360, 2285, 'Contacts', 1, '2026-08-02 17:02:59', 0),
(361, 2285, 'Contacts', 1, '2026-08-02 17:02:59', 1),
(362, 2286, 'Contacts', 1, '2026-08-02 17:23:29', 2),
(363, 2287, 'Contacts', 1, '2026-08-02 17:30:55', 2),
(364, 2287, 'Contacts', 1, '2026-08-02 17:30:56', 0),
(365, 2287, 'Contacts', 1, '2026-08-02 17:30:57', 1),
(366, 2288, 'Communications', 1, '2026-08-02 17:54:56', 2),
(367, 2289, 'Communications', 1, '2026-08-02 18:01:25', 2),
(368, 2290, 'Events', 1, '2026-08-03 06:41:54', 2),
(369, 2291, 'Events', 1, '2026-08-03 06:46:54', 2),
(370, 2292, 'Events', 1, '2026-08-03 06:55:24', 2),
(371, 2293, 'Events', 1, '2026-08-03 06:59:49', 2),
(372, 2294, 'Events', 1, '2026-08-03 07:05:39', 2),
(373, 2295, 'Events', 1, '2026-08-03 07:08:10', 2),
(374, 2296, 'Campaigns', 1, '2026-08-09 06:09:47', 2),
(375, 2297, 'Leads', 1, '2026-08-09 06:09:47', 2),
(376, 2298, 'Documents', 1, '2026-08-09 06:09:47', 2),
(377, 2297, 'Leads', 1, '2026-08-09 06:09:47', 4),
(378, 2297, 'Leads', 1, '2026-08-09 06:09:48', 0),
(379, 2300, 'Calendar', 1, '2026-08-09 06:09:48', 2),
(380, 2297, 'Leads', 1, '2026-08-09 06:09:48', 0),
(381, 2300, 'Calendar', 1, '2026-08-09 06:09:48', 1),
(382, 2298, 'Documents', 1, '2026-08-09 06:09:48', 1),
(383, 2297, 'Leads', 1, '2026-08-09 06:09:48', 1),
(384, 2296, 'Campaigns', 1, '2026-08-09 06:09:48', 1),
(385, 2301, 'Campaigns', 1, '2026-08-09 06:12:48', 2),
(386, 2302, 'Leads', 1, '2026-08-09 06:12:49', 2),
(387, 2303, 'Documents', 1, '2026-08-09 06:12:49', 2),
(388, 2302, 'Leads', 1, '2026-08-09 06:12:49', 4),
(389, 2302, 'Leads', 1, '2026-08-09 06:12:49', 0),
(390, 2305, 'Calendar', 1, '2026-08-09 06:12:49', 2),
(391, 2302, 'Leads', 1, '2026-08-09 06:12:49', 0),
(392, 2305, 'Calendar', 1, '2026-08-09 06:12:49', 1),
(393, 2303, 'Documents', 1, '2026-08-09 06:12:49', 1),
(394, 2302, 'Leads', 1, '2026-08-09 06:12:49', 1),
(395, 2301, 'Campaigns', 1, '2026-08-09 06:12:49', 1),
(396, 2306, 'Campaigns', 1, '2026-08-09 06:13:45', 2),
(397, 2307, 'Leads', 1, '2026-08-09 06:13:45', 2),
(398, 2308, 'Documents', 1, '2026-08-09 06:13:45', 2),
(399, 2307, 'Leads', 1, '2026-08-09 06:13:45', 4),
(400, 2307, 'Leads', 1, '2026-08-09 06:13:45', 0),
(401, 2310, 'Calendar', 1, '2026-08-09 06:13:46', 2),
(402, 2307, 'Leads', 1, '2026-08-09 06:13:46', 0),
(403, 2311, 'Leads', 1, '2026-08-09 06:13:46', 2),
(404, 2312, 'Accounts', 1, '2026-08-09 06:13:46', 2),
(405, 2313, 'Contacts', 1, '2026-08-09 06:13:47', 2),
(406, 2310, 'Calendar', 1, '2026-08-09 06:13:47', 1),
(407, 2308, 'Documents', 1, '2026-08-09 06:13:47', 1),
(408, 2313, 'Contacts', 1, '2026-08-09 06:13:47', 1),
(409, 2312, 'Accounts', 1, '2026-08-09 06:13:48', 1),
(410, 2311, 'Leads', 1, '2026-08-09 06:13:48', 1),
(411, 2307, 'Leads', 1, '2026-08-09 06:13:48', 1),
(412, 2306, 'Campaigns', 1, '2026-08-09 06:13:48', 1),
(413, 2314, 'Campaigns', 1, '2026-08-09 06:20:44', 2),
(414, 2315, 'Leads', 1, '2026-08-09 06:20:44', 2),
(415, 2316, 'Documents', 1, '2026-08-09 06:20:44', 2),
(416, 2315, 'Leads', 1, '2026-08-09 06:20:44', 4),
(417, 2315, 'Leads', 1, '2026-08-09 06:20:44', 0),
(418, 2318, 'Calendar', 1, '2026-08-09 06:20:44', 2),
(419, 2315, 'Leads', 1, '2026-08-09 06:20:44', 0),
(420, 2319, 'Leads', 1, '2026-08-09 06:20:45', 2),
(421, 2320, 'Accounts', 1, '2026-08-09 06:20:45', 2),
(422, 2321, 'Contacts', 1, '2026-08-09 06:20:45', 2),
(423, 2318, 'Calendar', 1, '2026-08-09 06:20:45', 1),
(424, 2316, 'Documents', 1, '2026-08-09 06:20:45', 1),
(425, 2321, 'Contacts', 1, '2026-08-09 06:20:45', 1),
(426, 2320, 'Accounts', 1, '2026-08-09 06:20:46', 1),
(427, 2319, 'Leads', 1, '2026-08-09 06:20:46', 1),
(428, 2315, 'Leads', 1, '2026-08-09 06:20:46', 1),
(429, 2314, 'Campaigns', 1, '2026-08-09 06:20:46', 1),
(430, 2322, 'Campaigns', 1, '2026-08-09 06:22:20', 2),
(431, 2323, 'Leads', 1, '2026-08-09 06:22:21', 2),
(432, 2324, 'Documents', 1, '2026-08-09 06:22:21', 2),
(433, 2323, 'Leads', 1, '2026-08-09 06:22:21', 4),
(434, 2323, 'Leads', 1, '2026-08-09 06:22:21', 0),
(435, 2326, 'Calendar', 1, '2026-08-09 06:22:21', 2),
(436, 2323, 'Leads', 1, '2026-08-09 06:22:21', 0),
(437, 2327, 'Leads', 1, '2026-08-09 06:22:21', 2),
(438, 2328, 'Accounts', 1, '2026-08-09 06:22:21', 2),
(439, 2329, 'Contacts', 1, '2026-08-09 06:22:21', 2),
(440, 2326, 'Calendar', 1, '2026-08-09 06:22:22', 1),
(441, 2324, 'Documents', 1, '2026-08-09 06:22:22', 1),
(442, 2329, 'Contacts', 1, '2026-08-09 06:22:22', 1),
(443, 2328, 'Accounts', 1, '2026-08-09 06:22:22', 1),
(444, 2327, 'Leads', 1, '2026-08-09 06:22:22', 1),
(445, 2323, 'Leads', 1, '2026-08-09 06:22:22', 1),
(446, 2322, 'Campaigns', 1, '2026-08-09 06:22:22', 1),
(447, 2330, 'Campaigns', 1, '2026-08-09 06:27:04', 2),
(448, 2331, 'Leads', 1, '2026-08-09 06:27:05', 2),
(449, 2332, 'Documents', 1, '2026-08-09 06:27:05', 2),
(450, 2331, 'Leads', 1, '2026-08-09 06:27:05', 4),
(451, 2331, 'Leads', 1, '2026-08-09 06:27:05', 0),
(452, 2334, 'Calendar', 1, '2026-08-09 06:27:05', 2),
(453, 2331, 'Leads', 1, '2026-08-09 06:27:05', 0),
(454, 2335, 'Leads', 1, '2026-08-09 06:27:05', 2),
(455, 2336, 'Accounts', 1, '2026-08-09 06:27:06', 2),
(456, 2337, 'Contacts', 1, '2026-08-09 06:27:06', 2),
(457, 2334, 'Calendar', 1, '2026-08-09 06:27:06', 1),
(458, 2332, 'Documents', 1, '2026-08-09 06:27:06', 1),
(459, 2337, 'Contacts', 1, '2026-08-09 06:27:06', 1),
(460, 2336, 'Accounts', 1, '2026-08-09 06:27:06', 1),
(461, 2335, 'Leads', 1, '2026-08-09 06:27:07', 1),
(462, 2331, 'Leads', 1, '2026-08-09 06:27:07', 1),
(463, 2330, 'Campaigns', 1, '2026-08-09 06:27:07', 1),
(464, 2338, 'Campaigns', 1, '2026-08-09 06:30:37', 2),
(465, 2339, 'Leads', 1, '2026-08-09 06:30:37', 2),
(466, 2340, 'Documents', 1, '2026-08-09 06:30:38', 2),
(467, 2339, 'Leads', 1, '2026-08-09 06:30:38', 4),
(468, 2339, 'Leads', 1, '2026-08-09 06:30:38', 0),
(469, 2342, 'Calendar', 1, '2026-08-09 06:30:38', 2),
(470, 2339, 'Leads', 1, '2026-08-09 06:30:38', 0),
(471, 2343, 'Leads', 1, '2026-08-09 06:30:38', 2),
(472, 2344, 'Accounts', 1, '2026-08-09 06:30:38', 2),
(473, 2345, 'Contacts', 1, '2026-08-09 06:30:38', 2),
(474, 2342, 'Calendar', 1, '2026-08-09 06:30:39', 1),
(475, 2340, 'Documents', 1, '2026-08-09 06:30:39', 1),
(476, 2345, 'Contacts', 1, '2026-08-09 06:30:39', 1),
(477, 2344, 'Accounts', 1, '2026-08-09 06:30:39', 1),
(478, 2343, 'Leads', 1, '2026-08-09 06:30:39', 1),
(479, 2339, 'Leads', 1, '2026-08-09 06:30:39', 1),
(480, 2338, 'Campaigns', 1, '2026-08-09 06:30:39', 1),
(481, 2346, 'Campaigns', 1, '2026-08-09 06:31:23', 2),
(482, 2347, 'Leads', 1, '2026-08-09 06:31:23', 2),
(483, 2348, 'Documents', 1, '2026-08-09 06:31:23', 2),
(484, 2347, 'Leads', 1, '2026-08-09 06:31:23', 4),
(485, 2347, 'Leads', 1, '2026-08-09 06:31:23', 0),
(486, 2350, 'Calendar', 1, '2026-08-09 06:31:23', 2),
(487, 2347, 'Leads', 1, '2026-08-09 06:31:23', 0),
(488, 2351, 'Leads', 1, '2026-08-09 06:31:24', 2),
(489, 2352, 'Accounts', 1, '2026-08-09 06:31:24', 2),
(490, 2353, 'Contacts', 1, '2026-08-09 06:31:24', 2),
(491, 2350, 'Calendar', 1, '2026-08-09 06:31:24', 1),
(492, 2348, 'Documents', 1, '2026-08-09 06:31:24', 1),
(493, 2353, 'Contacts', 1, '2026-08-09 06:31:24', 1),
(494, 2352, 'Accounts', 1, '2026-08-09 06:31:25', 1),
(495, 2351, 'Leads', 1, '2026-08-09 06:31:25', 1),
(496, 2347, 'Leads', 1, '2026-08-09 06:31:25', 1),
(497, 2346, 'Campaigns', 1, '2026-08-09 06:31:25', 1),
(505, 2362, 'Campaigns', 1, '2026-08-09 08:43:07', 2),
(506, 2363, 'Leads', 1, '2026-08-09 08:43:21', 2),
(507, 2364, 'Documents', 1, '2026-08-09 08:43:21', 2),
(508, 2363, 'Leads', 1, '2026-08-09 08:43:21', 4),
(509, 2363, 'Leads', 1, '2026-08-09 08:43:22', 0),
(510, 2366, 'Calendar', 1, '2026-08-09 08:43:22', 2),
(511, 2363, 'Leads', 1, '2026-08-09 08:43:22', 0),
(512, 2366, 'Calendar', 1, '2026-08-09 08:43:22', 1),
(513, 2364, 'Documents', 1, '2026-08-09 08:43:22', 1),
(514, 2363, 'Leads', 1, '2026-08-09 08:43:22', 1),
(517, 2530, 'Potentials', 1, '2026-08-10 07:24:30', 2),
(518, 2530, 'Potentials', 1, '2026-08-10 07:24:46', 1),
(523, 2295, 'Events', 1, '2026-08-17 10:28:37', 0),
(524, 2061, 'Events', 1, '2026-08-17 10:28:40', 0),
(525, 16, 'Events', 1, '2026-08-17 10:28:45', 0),
(526, 15, 'Events', 1, '2026-08-17 10:29:01', 0),
(527, 1039, 'Events', 1, '2026-08-17 10:29:03', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modtracker_basic_seq`
--

DROP TABLE IF EXISTS `vtiger_modtracker_basic_seq`;
CREATE TABLE `vtiger_modtracker_basic_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_modtracker_basic_seq`
--

INSERT IGNORE INTO `vtiger_modtracker_basic_seq` (`id`) VALUES
(527);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modtracker_detail`
--

DROP TABLE IF EXISTS `vtiger_modtracker_detail`;
CREATE TABLE `vtiger_modtracker_detail` (
  `id` int(11) DEFAULT NULL,
  `fieldname` varchar(100) DEFAULT NULL,
  `prevalue` text DEFAULT NULL,
  `postvalue` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modtracker_detail`
--

INSERT IGNORE INTO `vtiger_modtracker_detail` (`id`, `fieldname`, `prevalue`, `postvalue`) VALUES
(1, 'label', NULL, 'Hossein FGH'),
(1, 'firstname', NULL, 'Hossein'),
(1, 'lead_no', NULL, 'LEA1'),
(1, 'lastname', NULL, 'FGH'),
(1, 'mobile', NULL, '09119090378'),
(1, 'email', NULL, 'hossein.fgh@gmail.com'),
(1, 'annualrevenue', NULL, '0.00000000'),
(1, 'assigned_user_id', NULL, '1'),
(1, 'createdtime', NULL, '2026-06-22 09:34:34'),
(1, 'modifiedby', NULL, '1'),
(1, 'source', NULL, 'CRM'),
(1, 'record_id', NULL, '2'),
(1, 'record_module', NULL, 'Leads'),
(2, 'label', NULL, 'قققق'),
(2, 'assigned_user_id', NULL, '1'),
(2, 'createdtime', NULL, '2026-06-22 09:37:50'),
(2, 'message', NULL, 'قققق'),
(2, 'modifiedby', NULL, '1'),
(2, 'source', NULL, 'CRM'),
(2, 'record_id', NULL, '3'),
(2, 'record_module', NULL, 'SMSNotifier'),
(5, 'label', NULL, 'لالالا'),
(5, 'assigned_user_id', NULL, '1'),
(5, 'createdtime', NULL, '2026-06-22 09:39:53'),
(5, 'message', NULL, 'لالالا'),
(5, 'modifiedby', NULL, '1'),
(5, 'source', NULL, 'CRM'),
(5, 'record_id', NULL, '4'),
(5, 'record_module', NULL, 'SMSNotifier'),
(8, 'label', NULL, 'سیسیس'),
(8, 'assigned_user_id', NULL, '1'),
(8, 'createdtime', NULL, '2026-06-22 09:40:11'),
(8, 'message', NULL, 'سیسیس'),
(8, 'modifiedby', NULL, '1'),
(8, 'source', NULL, 'CRM'),
(8, 'record_id', NULL, '5'),
(8, 'record_module', NULL, 'SMSNotifier'),
(11, 'label', NULL, 'سیسیس'),
(11, 'assigned_user_id', NULL, '1'),
(11, 'createdtime', NULL, '2026-06-22 09:40:25'),
(11, 'message', NULL, 'سیسیس'),
(11, 'modifiedby', NULL, '1'),
(11, 'source', NULL, 'CRM'),
(11, 'record_id', NULL, '6'),
(11, 'record_module', NULL, 'SMSNotifier'),
(14, 'label', NULL, 'لبلب'),
(14, 'assigned_user_id', NULL, '1'),
(14, 'createdtime', NULL, '2026-06-22 09:47:37'),
(14, 'message', NULL, 'لبلب'),
(14, 'modifiedby', NULL, '1'),
(14, 'source', NULL, 'CRM'),
(14, 'record_id', NULL, '7'),
(14, 'record_module', NULL, 'SMSNotifier'),
(17, 'label', NULL, 'رذذر'),
(17, 'assigned_user_id', NULL, '1'),
(17, 'createdtime', NULL, '2026-06-22 10:16:47'),
(17, 'message', NULL, 'رذذر'),
(17, 'modifiedby', NULL, '1'),
(17, 'source', NULL, 'CRM'),
(17, 'record_id', NULL, '8'),
(17, 'record_module', NULL, 'SMSNotifier'),
(20, 'label', NULL, 'تست'),
(20, 'subject', NULL, 'تست'),
(20, 'assigned_user_id', NULL, '1'),
(20, 'date_start', NULL, '2026-07-09'),
(20, 'time_start', NULL, '10:23:00'),
(20, 'due_date', NULL, '2026-07-10'),
(20, 'duration_hours', NULL, '34'),
(20, 'duration_minutes', NULL, '7'),
(20, 'parent_id', NULL, '2'),
(20, 'activitytype', NULL, 'Task'),
(20, 'createdtime', NULL, '2026-06-22 10:23:42'),
(20, 'visibility', NULL, 'Private'),
(20, 'modifiedby', NULL, '1'),
(20, 'source', NULL, 'CRM'),
(20, 'taskstatus', NULL, 'In Progress'),
(20, 'record_id', NULL, '9'),
(20, 'record_module', NULL, 'Calendar'),
(22, 'label', NULL, 'بیبیب'),
(22, 'subject', NULL, 'بیبیب'),
(22, 'assigned_user_id', NULL, '1'),
(22, 'date_start', NULL, '2026-06-22'),
(22, 'time_start', NULL, '10:36:00'),
(22, 'due_date', NULL, '2026-06-22'),
(22, 'duration_hours', NULL, '9'),
(22, 'duration_minutes', NULL, '54'),
(22, 'parent_id', NULL, '2'),
(22, 'activitytype', NULL, 'Task'),
(22, 'createdtime', NULL, '2026-06-22 10:37:02'),
(22, 'visibility', NULL, 'Private'),
(22, 'modifiedby', NULL, '1'),
(22, 'source', NULL, 'CRM'),
(22, 'taskstatus', NULL, 'In Progress'),
(22, 'record_id', NULL, '10'),
(22, 'record_module', NULL, 'Calendar'),
(24, 'label', NULL, 'عیسی زارع'),
(24, 'salutationtype', NULL, 'Mr.'),
(24, 'firstname', NULL, 'عیسی'),
(24, 'contact_no', NULL, 'CON1'),
(24, 'lastname', NULL, 'زارع'),
(24, 'mobile', NULL, '09119220020'),
(24, 'assigned_user_id', NULL, '1'),
(24, 'createdtime', NULL, '2026-06-22 18:16:52'),
(24, 'modifiedby', NULL, '1'),
(24, 'source', NULL, 'CRM'),
(24, 'record_id', NULL, '11'),
(24, 'record_module', NULL, 'Contacts'),
(25, 'label', NULL, 'تماس'),
(25, 'subject', NULL, 'تماس'),
(25, 'assigned_user_id', NULL, '1'),
(25, 'date_start', NULL, '2026-06-29'),
(25, 'time_start', NULL, '18:00'),
(25, 'due_date', NULL, '2026-06-29'),
(25, 'time_end', NULL, '18:15'),
(25, 'duration_minutes', NULL, '15'),
(25, 'eventstatus', NULL, 'Planned'),
(25, 'activitytype', NULL, 'Call'),
(25, 'createdtime', NULL, '2026-06-29 18:12:24'),
(25, 'visibility', NULL, 'Public'),
(25, 'modifiedby', NULL, '1'),
(25, 'source', NULL, 'CRM'),
(25, 'sms_remind_user', NULL, 'بدون'),
(25, 'sms_remind_invitees', NULL, 'بدون'),
(25, 'call_direction', NULL, 'خروجی'),
(25, 'record_id', NULL, '14'),
(25, 'record_module', NULL, 'Events'),
(26, 'label', NULL, 'تماس ساعت ۱۰'),
(26, 'subject', NULL, 'تماس ساعت ۱۰'),
(26, 'assigned_user_id', NULL, '1'),
(26, 'date_start', NULL, '2026-06-29'),
(26, 'time_start', NULL, '06:30'),
(26, 'due_date', NULL, '2026-06-29'),
(26, 'time_end', NULL, '06:45'),
(26, 'duration_minutes', NULL, '15'),
(26, 'eventstatus', NULL, 'Planned'),
(26, 'activitytype', NULL, 'Call'),
(26, 'createdtime', NULL, '2026-06-29 18:21:35'),
(26, 'visibility', NULL, 'Public'),
(26, 'modifiedby', NULL, '1'),
(26, 'source', NULL, 'CRM'),
(26, 'sms_remind_user', NULL, 'بدون'),
(26, 'sms_remind_invitees', NULL, 'بدون'),
(26, 'call_direction', NULL, 'خروجی'),
(26, 'record_id', NULL, '15'),
(26, 'record_module', NULL, 'Events'),
(27, 'label', NULL, 'تماس آزمایشی مرتبط با سرنخ'),
(27, 'subject', NULL, 'تماس آزمایشی مرتبط با سرنخ'),
(27, 'assigned_user_id', NULL, '1'),
(27, 'date_start', NULL, '2026-06-30'),
(27, 'time_start', NULL, '01:30'),
(27, 'due_date', NULL, '2026-06-30'),
(27, 'time_end', NULL, '01:45'),
(27, 'duration_minutes', NULL, '15'),
(27, 'eventstatus', NULL, 'Planned'),
(27, 'activitytype', NULL, 'Call'),
(27, 'createdtime', NULL, '2026-06-30 06:01:11'),
(27, 'visibility', NULL, 'Public'),
(27, 'modifiedby', NULL, '1'),
(27, 'source', NULL, 'CRM'),
(27, 'sms_remind_user', NULL, 'بدون'),
(27, 'sms_remind_invitees', NULL, 'بدون'),
(27, 'send_sms_invite', NULL, '1'),
(27, 'call_direction', NULL, 'خروجی'),
(27, 'record_id', NULL, '16'),
(27, 'record_module', NULL, 'Events'),
(28, 'label', NULL, 'جلسهٔ آزمایشی مرتبط'),
(28, 'subject', NULL, 'جلسهٔ آزمایشی مرتبط'),
(28, 'assigned_user_id', NULL, '1'),
(28, 'date_start', NULL, '2026-06-30'),
(28, 'time_start', NULL, '05:30'),
(28, 'due_date', NULL, '2026-06-30'),
(28, 'time_end', NULL, '05:45'),
(28, 'duration_minutes', NULL, '15'),
(28, 'eventstatus', NULL, 'Planned'),
(28, 'activitytype', NULL, 'Meeting'),
(28, 'location', NULL, 'اتاق جلسات شمارهٔ ۲'),
(28, 'createdtime', NULL, '2026-06-30 09:50:30'),
(28, 'visibility', NULL, 'Public'),
(28, 'modifiedby', NULL, '1'),
(28, 'source', NULL, 'CRM'),
(28, 'sms_remind_user', NULL, 'بدون'),
(28, 'sms_remind_invitees', NULL, 'بدون'),
(28, 'record_id', NULL, '17'),
(28, 'record_module', NULL, 'Events'),
(29, 'label', NULL, 'جلسه آزمایشی مرتبط با سرنخ'),
(29, 'subject', NULL, 'جلسه آزمایشی مرتبط با سرنخ'),
(29, 'assigned_user_id', NULL, '1'),
(29, 'date_start', NULL, '2026-06-30'),
(29, 'time_start', NULL, '08:30'),
(29, 'due_date', NULL, '2026-06-30'),
(29, 'time_end', NULL, '08:45'),
(29, 'duration_minutes', NULL, '15'),
(29, 'eventstatus', NULL, 'Planned'),
(29, 'activitytype', NULL, 'Meeting'),
(29, 'createdtime', NULL, '2026-06-30 12:36:47'),
(29, 'visibility', NULL, 'Public'),
(29, 'modifiedby', NULL, '1'),
(29, 'source', NULL, 'CRM'),
(29, 'sms_remind_user', NULL, 'بدون'),
(29, 'sms_remind_invitees', NULL, 'بدون'),
(29, 'send_sms_invite', NULL, '1'),
(29, 'record_id', NULL, '18'),
(29, 'record_module', NULL, 'Events'),
(30, 'label', NULL, 'وظیفه آزمایشی مرتبط با سرنخ'),
(30, 'subject', NULL, 'وظیفه آزمایشی مرتبط با سرنخ'),
(30, 'assigned_user_id', NULL, '1'),
(30, 'date_start', NULL, '2026-06-30'),
(30, 'time_start', NULL, '09:30'),
(30, 'due_date', NULL, '2026-06-30'),
(30, 'duration_hours', NULL, '11'),
(30, 'activitytype', NULL, 'Task'),
(30, 'createdtime', NULL, '2026-06-30 13:15:47'),
(30, 'taskpriority', NULL, 'Medium'),
(30, 'visibility', NULL, 'Public'),
(30, 'modifiedby', NULL, '1'),
(30, 'source', NULL, 'CRM'),
(30, 'sms_remind_user', NULL, 'بدون'),
(30, 'taskstatus', NULL, 'In Progress'),
(30, 'record_id', NULL, '19'),
(30, 'record_module', NULL, 'Calendar'),
(31, 'label', NULL, 'تست سیستم - پیش فاکتور گویا'),
(31, 'quote_no', NULL, 'QUO1'),
(31, 'subject', NULL, 'تست سیستم - پیش فاکتور گویا'),
(31, 'quotestage', NULL, 'مذاکره'),
(31, 'hdnSubTotal', NULL, '160000000.00000000'),
(31, 'txtAdjustment', NULL, '0.00000000'),
(31, 'hdnGrandTotal', NULL, '151050000.00000000'),
(31, 'hdnTaxType', NULL, 'group'),
(31, 'hdnDiscountAmount', NULL, '1000000.00000000'),
(31, 'hdnS_H_Amount', NULL, '0.00000000'),
(31, 'account_id', NULL, '23'),
(31, 'assigned_user_id', NULL, '1'),
(31, 'createdtime', NULL, '2026-07-03 21:58:09'),
(31, 'modifiedby', NULL, '1'),
(31, 'currency_id', NULL, '2'),
(31, 'conversion_rate', NULL, '1.000'),
(31, 'productid', NULL, '27'),
(31, 'quantity', NULL, '2.000'),
(31, 'listprice', NULL, '80000000.00000000'),
(31, 'tax1', NULL, '0.000'),
(31, 'tax2', NULL, '0.000'),
(31, 'tax3', NULL, '0.000'),
(31, 'pre_tax_total', NULL, '159000000.00000000'),
(31, 'hdnS_H_Percent', NULL, '0.000'),
(31, 'source', NULL, 'CRM'),
(31, 'cf_quote_date', NULL, '2026-07-03'),
(31, 'cf_invoice_status', NULL, 'فاکتور نشده'),
(31, 'cf_payment_terms', NULL, 'نقدی'),
(31, 'cf_insurance_percent', NULL, '5.000'),
(31, 'cf_insurance_amount', NULL, '7950000.00000000'),
(31, 'cf_retention_percent', NULL, '0.000'),
(31, 'cf_retention_amount', NULL, '0.00000000'),
(31, 'record_id', NULL, '2025'),
(31, 'record_module', NULL, 'Quotes'),
(32, 'label', 'تست سیستم - پیش فاکتور گویا', 'تست سیستم - ویرایش شده'),
(32, 'subject', 'تست سیستم - پیش فاکتور گویا', 'تست سیستم - ویرایش شده'),
(32, 'validtill', '', '2026-09-22'),
(32, 'contact_id', '', '11'),
(32, 'txtAdjustment', '0.00000000', '2000000.00000000'),
(32, 'hdnGrandTotal', '151050000.00000000', '153050000.00000000'),
(32, 'bill_street', '', 'خیابان ولیعصر، پلاک ۱۰'),
(32, 'ship_street', '', 'خیابان ولیعصر، پلاک ۱۰'),
(32, 'bill_city', '', 'تهران'),
(32, 'ship_city', '', 'تهران'),
(32, 'bill_state', '', 'تهران'),
(32, 'ship_state', '', 'تهران'),
(32, 'bill_code', '', '1234567890'),
(32, 'ship_code', '', '1234567890'),
(32, 'bill_country', '', 'ایران'),
(32, 'ship_country', '', 'ایران'),
(32, 'description', '', 'توضیح تستی ویرایش'),
(32, 'terms_conditions', '', 'یادداشت تستی'),
(32, 'cf_bill_lat', '', '35.7219'),
(32, 'cf_bill_lng', '', '51.3347'),
(32, 'cf_ship_lat', '', '35.7219'),
(32, 'cf_ship_lng', '', '51.3347'),
(33, 'label', NULL, 'تست سیستم - فرصت گویا'),
(33, 'potentialname', NULL, 'تست سیستم - فرصت گویا'),
(33, 'potential_no', NULL, 'POT9'),
(33, 'amount', NULL, '45000000.00000000'),
(33, 'related_to', NULL, '2034'),
(33, 'closingdate', NULL, '2026-07-27'),
(33, 'leadsource', NULL, 'نمایشگاه'),
(33, 'sales_stage', NULL, '۴.مذاکره نهایی'),
(33, 'assigned_user_id', NULL, '1'),
(33, 'probability', NULL, '80.000'),
(33, 'createdtime', NULL, '2026-07-04 08:03:31'),
(33, 'modifiedby', NULL, '1'),
(33, 'forecast_amount', NULL, '36000000.00000000'),
(33, 'source', NULL, 'CRM'),
(33, 'cf_sales_channel', NULL, 'تلفنی'),
(33, 'record_id', NULL, '2046'),
(33, 'record_module', NULL, 'Potentials'),
(34, 'label', NULL, 'نمونه تست B - فروش موفق تیر'),
(34, 'potentialname', NULL, 'نمونه تست B - فروش موفق تیر'),
(34, 'potential_no', NULL, 'POT12'),
(34, 'amount', NULL, '60000000.00000000'),
(34, 'related_to', NULL, '2028'),
(34, 'closingdate', NULL, '2026-07-11'),
(34, 'opportunity_type', NULL, 'مشتری موجود / تمدید'),
(34, 'leadsource', NULL, 'مشتری موجود'),
(34, 'sales_stage', NULL, '۵.الف.فروش موفق'),
(34, 'assigned_user_id', NULL, '1'),
(34, 'probability', NULL, '100.000'),
(34, 'createdtime', NULL, '2026-07-04 08:14:03'),
(34, 'modifiedby', NULL, '1'),
(34, 'forecast_amount', NULL, '60000000.00000000'),
(34, 'source', NULL, 'CRM'),
(34, 'cf_sales_channel', NULL, 'آنلاین'),
(34, 'record_id', NULL, '2049'),
(34, 'record_module', NULL, 'Potentials'),
(35, 'label', NULL, 'نمونه تست C - سررسید گذشته'),
(35, 'potentialname', NULL, 'نمونه تست C - سررسید گذشته'),
(35, 'potential_no', NULL, 'POT13'),
(35, 'amount', NULL, '33000000.00000000'),
(35, 'related_to', NULL, '2037'),
(35, 'closingdate', NULL, '2026-05-31'),
(35, 'nextstep', NULL, 'پیگیری تلفنی'),
(35, 'leadsource', NULL, 'تماس سرد'),
(35, 'sales_stage', NULL, '۳.ارائه پیشنهاد/پیش فاکتور'),
(35, 'assigned_user_id', NULL, '1'),
(35, 'probability', NULL, '50.000'),
(35, 'createdtime', NULL, '2026-07-04 08:14:30'),
(35, 'modifiedby', NULL, '1'),
(35, 'description', NULL, 'نمونه برای تست هشدار سررسید'),
(35, 'forecast_amount', NULL, '16500000.00000000'),
(35, 'source', NULL, 'CRM'),
(35, 'cf_sales_channel', NULL, 'حضوری'),
(35, 'record_id', NULL, '2050'),
(35, 'record_module', NULL, 'Potentials'),
(36, 'amount', '45000000.00000000', '48500000.00000000'),
(36, 'description', '', 'ویرایش تست'),
(36, 'forecast_amount', '36000000.00000000', '48500000.00000000'),
(36, 'cf_sales_channel', 'تلفنی', 'نمایندگی'),
(37, 'label', NULL, 'تست سرنخ گویا'),
(37, 'salutationtype', NULL, 'مهندس'),
(37, 'firstname', NULL, 'تست'),
(37, 'lead_no', NULL, 'LEA1100'),
(37, 'phone', NULL, '021-55554444'),
(37, 'lastname', NULL, 'سرنخ گویا'),
(37, 'company', NULL, 'شرکت آزمایشی گویا'),
(37, 'email', NULL, 'lead-test@gooya.com'),
(37, 'leadsource', NULL, 'تبلیغات'),
(37, 'industry', NULL, 'خدماتی'),
(37, 'leadstatus', NULL, 'اختصاص یافته'),
(37, 'annualrevenue', NULL, '0.00000000'),
(37, 'rating', NULL, 'زیاد'),
(37, 'assigned_user_id', NULL, '1'),
(37, 'createdtime', NULL, '2026-07-05 05:56:21'),
(37, 'modifiedby', NULL, '1'),
(37, 'city', NULL, 'تهران'),
(37, 'country', NULL, 'ایران'),
(37, 'state', NULL, 'تهران'),
(37, 'description', NULL, 'سرنخ تست سیستم'),
(37, 'source', NULL, 'CRM'),
(37, 'record_id', NULL, '2063'),
(37, 'record_module', NULL, 'Leads'),
(38, 'mobile', '', '0912-0000000'),
(38, 'company', 'شرکت آزمایشی گویا', 'شرکت آزمایشی گویا - ویرایش'),
(38, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(38, 'city', 'تهران', 'کرج'),
(39, 'hdnSubTotal', '160000000.00000000', '240000000.00000000'),
(39, 'hdnGrandTotal', '153050000.00000000', '229050000.00000000'),
(39, 'quantity', '2.000', '3.000'),
(39, 'tax1', '', '0.000'),
(39, 'tax2', '', '0.000'),
(39, 'tax3', '', '0.000'),
(39, 'pre_tax_total', '159000000.00000000', '239000000.00000000'),
(39, 'cf_accounting_no', '', 'سند-۱۰۱'),
(39, 'cf_ref_code', '', 'REF-10'),
(39, 'cf_insurance_amount', '7950000.00000000', '11950000.00000000'),
(40, 'label', NULL, 'علی محمدی'),
(40, 'firstname', NULL, 'علی'),
(40, 'contact_no', NULL, 'CON2'),
(40, 'lastname', NULL, 'محمدی'),
(40, 'assigned_user_id', NULL, '1'),
(40, 'createdtime', NULL, '2026-07-10 20:54:59'),
(40, 'modifiedby', NULL, '1'),
(40, 'description', NULL, 'SYNC_FROM_USERS v1'),
(40, 'source', NULL, 'CRM'),
(40, 'record_id', NULL, '2066'),
(40, 'record_module', NULL, 'Contacts'),
(41, 'label', NULL, 'سارا احمدی'),
(41, 'firstname', NULL, 'سارا'),
(41, 'contact_no', NULL, 'CON3'),
(41, 'lastname', NULL, 'احمدی'),
(41, 'assigned_user_id', NULL, '1'),
(41, 'createdtime', NULL, '2026-07-10 20:55:05'),
(41, 'modifiedby', NULL, '1'),
(41, 'description', NULL, 'SYNC_FROM_USERS v1'),
(41, 'source', NULL, 'CRM'),
(41, 'record_id', NULL, '2067'),
(41, 'record_module', NULL, 'Contacts'),
(42, 'label', NULL, 'رضا کریمی'),
(42, 'firstname', NULL, 'رضا'),
(42, 'contact_no', NULL, 'CON4'),
(42, 'lastname', NULL, 'کریمی'),
(42, 'assigned_user_id', NULL, '1'),
(42, 'createdtime', NULL, '2026-07-10 20:55:06'),
(42, 'modifiedby', NULL, '1'),
(42, 'description', NULL, 'SYNC_FROM_USERS v1'),
(42, 'source', NULL, 'CRM'),
(42, 'record_id', NULL, '2068'),
(42, 'record_module', NULL, 'Contacts'),
(43, 'label', NULL, 'رضا محمدیان'),
(43, 'firstname', NULL, 'رضا'),
(43, 'contact_no', NULL, 'CON5'),
(43, 'lastname', NULL, 'محمدیان'),
(43, 'email', NULL, 'kpiseed_mgr@example.local'),
(43, 'assigned_user_id', NULL, '1'),
(43, 'createdtime', NULL, '2026-07-10 20:55:06'),
(43, 'modifiedby', NULL, '1'),
(43, 'description', NULL, 'SYNC_FROM_USERS v1'),
(43, 'source', NULL, 'CRM'),
(43, 'record_id', NULL, '2069'),
(43, 'record_module', NULL, 'Contacts'),
(44, 'label', NULL, 'علی کریمی'),
(44, 'firstname', NULL, 'علی'),
(44, 'contact_no', NULL, 'CON6'),
(44, 'lastname', NULL, 'کریمی'),
(44, 'email', NULL, 'kpiseed_sup1@example.local'),
(44, 'assigned_user_id', NULL, '1'),
(44, 'createdtime', NULL, '2026-07-10 20:55:07'),
(44, 'modifiedby', NULL, '1'),
(44, 'description', NULL, 'SYNC_FROM_USERS v1'),
(44, 'source', NULL, 'CRM'),
(44, 'record_id', NULL, '2070'),
(44, 'record_module', NULL, 'Contacts'),
(45, 'label', NULL, 'نیما قاسمی'),
(45, 'firstname', NULL, 'نیما'),
(45, 'contact_no', NULL, 'CON7'),
(45, 'lastname', NULL, 'قاسمی'),
(45, 'email', NULL, 'kpiseed_emp1@example.local'),
(45, 'assigned_user_id', NULL, '1'),
(45, 'createdtime', NULL, '2026-07-10 20:55:07'),
(45, 'modifiedby', NULL, '1'),
(45, 'description', NULL, 'SYNC_FROM_USERS v1'),
(45, 'source', NULL, 'CRM'),
(45, 'record_id', NULL, '2071'),
(45, 'record_module', NULL, 'Contacts'),
(46, 'label', NULL, 'زهرا مرادی'),
(46, 'firstname', NULL, 'زهرا'),
(46, 'contact_no', NULL, 'CON8'),
(46, 'lastname', NULL, 'مرادی'),
(46, 'email', NULL, 'kpiseed_emp2@example.local'),
(46, 'assigned_user_id', NULL, '1'),
(46, 'createdtime', NULL, '2026-07-10 20:55:07'),
(46, 'modifiedby', NULL, '1'),
(46, 'description', NULL, 'SYNC_FROM_USERS v1'),
(46, 'source', NULL, 'CRM'),
(46, 'record_id', NULL, '2072'),
(46, 'record_module', NULL, 'Contacts'),
(47, 'label', NULL, 'امیر صادقی'),
(47, 'firstname', NULL, 'امیر'),
(47, 'contact_no', NULL, 'CON9'),
(47, 'lastname', NULL, 'صادقی'),
(47, 'email', NULL, 'kpiseed_emp3@example.local'),
(47, 'assigned_user_id', NULL, '1'),
(47, 'createdtime', NULL, '2026-07-10 20:55:08'),
(47, 'modifiedby', NULL, '1'),
(47, 'description', NULL, 'SYNC_FROM_USERS v1'),
(47, 'source', NULL, 'CRM'),
(47, 'record_id', NULL, '2073'),
(47, 'record_module', NULL, 'Contacts'),
(48, 'label', NULL, 'فاطمه کاظمی'),
(48, 'firstname', NULL, 'فاطمه'),
(48, 'contact_no', NULL, 'CON10'),
(48, 'lastname', NULL, 'کاظمی'),
(48, 'email', NULL, 'kpiseed_emp4@example.local'),
(48, 'assigned_user_id', NULL, '1'),
(48, 'createdtime', NULL, '2026-07-10 20:55:08'),
(48, 'modifiedby', NULL, '1'),
(48, 'description', NULL, 'SYNC_FROM_USERS v1'),
(48, 'source', NULL, 'CRM'),
(48, 'record_id', NULL, '2074'),
(48, 'record_module', NULL, 'Contacts'),
(49, 'label', NULL, 'سینا یوسفی'),
(49, 'firstname', NULL, 'سینا'),
(49, 'contact_no', NULL, 'CON11'),
(49, 'lastname', NULL, 'یوسفی'),
(49, 'email', NULL, 'kpiseed_emp5@example.local'),
(49, 'assigned_user_id', NULL, '1'),
(49, 'createdtime', NULL, '2026-07-10 20:55:08'),
(49, 'modifiedby', NULL, '1'),
(49, 'description', NULL, 'SYNC_FROM_USERS v1'),
(49, 'source', NULL, 'CRM'),
(49, 'record_id', NULL, '2075'),
(49, 'record_module', NULL, 'Contacts'),
(50, 'label', NULL, 'الهام جعفری'),
(50, 'firstname', NULL, 'الهام'),
(50, 'contact_no', NULL, 'CON12'),
(50, 'lastname', NULL, 'جعفری'),
(50, 'email', NULL, 'kpiseed_emp6@example.local'),
(50, 'assigned_user_id', NULL, '1'),
(50, 'createdtime', NULL, '2026-07-10 20:55:09'),
(50, 'modifiedby', NULL, '1'),
(50, 'description', NULL, 'SYNC_FROM_USERS v1'),
(50, 'source', NULL, 'CRM'),
(50, 'record_id', NULL, '2076'),
(50, 'record_module', NULL, 'Contacts'),
(51, 'label', NULL, 'حسن رضایی'),
(51, 'firstname', NULL, 'حسن'),
(51, 'contact_no', NULL, 'CON13'),
(51, 'lastname', NULL, 'رضایی'),
(51, 'email', NULL, 'kpiseed_sup3@example.local'),
(51, 'assigned_user_id', NULL, '1'),
(51, 'createdtime', NULL, '2026-07-10 20:55:09'),
(51, 'modifiedby', NULL, '1'),
(51, 'description', NULL, 'SYNC_FROM_USERS v1'),
(51, 'source', NULL, 'CRM'),
(51, 'record_id', NULL, '2077'),
(51, 'record_module', NULL, 'Contacts'),
(52, 'label', NULL, 'بهرام اکبری'),
(52, 'firstname', NULL, 'بهرام'),
(52, 'contact_no', NULL, 'CON14'),
(52, 'lastname', NULL, 'اکبری'),
(52, 'email', NULL, 'kpiseed_emp7@example.local'),
(52, 'assigned_user_id', NULL, '1'),
(52, 'createdtime', NULL, '2026-07-10 20:55:09'),
(52, 'modifiedby', NULL, '1'),
(52, 'description', NULL, 'SYNC_FROM_USERS v1'),
(52, 'source', NULL, 'CRM'),
(52, 'record_id', NULL, '2078'),
(52, 'record_module', NULL, 'Contacts'),
(53, 'label', NULL, 'نگار شریفی'),
(53, 'firstname', NULL, 'نگار'),
(53, 'contact_no', NULL, 'CON15'),
(53, 'lastname', NULL, 'شریفی'),
(53, 'email', NULL, 'kpiseed_emp8@example.local'),
(53, 'assigned_user_id', NULL, '1'),
(53, 'createdtime', NULL, '2026-07-10 20:55:10'),
(53, 'modifiedby', NULL, '1'),
(53, 'description', NULL, 'SYNC_FROM_USERS v1'),
(53, 'source', NULL, 'CRM'),
(53, 'record_id', NULL, '2079'),
(53, 'record_module', NULL, 'Contacts'),
(54, 'label', NULL, 'پیمان بابایی'),
(54, 'firstname', NULL, 'پیمان'),
(54, 'contact_no', NULL, 'CON16'),
(54, 'lastname', NULL, 'بابایی'),
(54, 'email', NULL, 'kpiseed_emp9@example.local'),
(54, 'assigned_user_id', NULL, '1'),
(54, 'createdtime', NULL, '2026-07-10 20:55:10'),
(54, 'modifiedby', NULL, '1'),
(54, 'description', NULL, 'SYNC_FROM_USERS v1'),
(54, 'source', NULL, 'CRM'),
(54, 'record_id', NULL, '2080'),
(54, 'record_module', NULL, 'Contacts'),
(55, 'label', NULL, 'مریم حسینی'),
(55, 'firstname', NULL, 'مریم'),
(55, 'contact_no', NULL, 'CON17'),
(55, 'lastname', NULL, 'حسینی'),
(55, 'email', NULL, 'kpiseed_sup4@example.local'),
(55, 'assigned_user_id', NULL, '1'),
(55, 'createdtime', NULL, '2026-07-10 20:55:10'),
(55, 'modifiedby', NULL, '1'),
(55, 'description', NULL, 'SYNC_FROM_USERS v1'),
(55, 'source', NULL, 'CRM'),
(55, 'record_id', NULL, '2081'),
(55, 'record_module', NULL, 'Contacts'),
(56, 'label', NULL, 'مینا رستمی'),
(56, 'firstname', NULL, 'مینا'),
(56, 'contact_no', NULL, 'CON18'),
(56, 'lastname', NULL, 'رستمی'),
(56, 'email', NULL, 'kpiseed_emp10@example.local'),
(56, 'assigned_user_id', NULL, '1'),
(56, 'createdtime', NULL, '2026-07-10 20:55:11'),
(56, 'modifiedby', NULL, '1'),
(56, 'description', NULL, 'SYNC_FROM_USERS v1'),
(56, 'source', NULL, 'CRM'),
(56, 'record_id', NULL, '2082'),
(56, 'record_module', NULL, 'Contacts'),
(57, 'label', NULL, 'کیان عباسی'),
(57, 'firstname', NULL, 'کیان'),
(57, 'contact_no', NULL, 'CON19'),
(57, 'lastname', NULL, 'عباسی'),
(57, 'email', NULL, 'kpiseed_emp11@example.local'),
(57, 'assigned_user_id', NULL, '1'),
(57, 'createdtime', NULL, '2026-07-10 20:55:11'),
(57, 'modifiedby', NULL, '1'),
(57, 'description', NULL, 'SYNC_FROM_USERS v1'),
(57, 'source', NULL, 'CRM'),
(57, 'record_id', NULL, '2083'),
(57, 'record_module', NULL, 'Contacts'),
(58, 'label', NULL, 'رها نادری'),
(58, 'firstname', NULL, 'رها'),
(58, 'contact_no', NULL, 'CON20'),
(58, 'lastname', NULL, 'نادری'),
(58, 'email', NULL, 'kpiseed_emp12@example.local'),
(58, 'assigned_user_id', NULL, '1'),
(58, 'createdtime', NULL, '2026-07-10 20:55:12'),
(58, 'modifiedby', NULL, '1'),
(58, 'description', NULL, 'SYNC_FROM_USERS v1'),
(58, 'source', NULL, 'CRM'),
(58, 'record_id', NULL, '2084'),
(58, 'record_module', NULL, 'Contacts'),
(59, 'label', NULL, 'کاوه نوری'),
(59, 'firstname', NULL, 'کاوه'),
(59, 'contact_no', NULL, 'CON21'),
(59, 'lastname', NULL, 'نوری'),
(59, 'email', NULL, 'kpiseed_sup5@example.local'),
(59, 'assigned_user_id', NULL, '1'),
(59, 'createdtime', NULL, '2026-07-10 20:55:12'),
(59, 'modifiedby', NULL, '1'),
(59, 'description', NULL, 'SYNC_FROM_USERS v1'),
(59, 'source', NULL, 'CRM'),
(59, 'record_id', NULL, '2085'),
(59, 'record_module', NULL, 'Contacts'),
(60, 'label', NULL, 'آرش فلاحی'),
(60, 'firstname', NULL, 'آرش'),
(60, 'contact_no', NULL, 'CON22'),
(60, 'lastname', NULL, 'فلاحی'),
(60, 'email', NULL, 'kpiseed_emp13@example.local'),
(60, 'assigned_user_id', NULL, '1'),
(60, 'createdtime', NULL, '2026-07-10 20:55:13'),
(60, 'modifiedby', NULL, '1'),
(60, 'description', NULL, 'SYNC_FROM_USERS v1'),
(60, 'source', NULL, 'CRM'),
(60, 'record_id', NULL, '2086'),
(60, 'record_module', NULL, 'Contacts'),
(61, 'label', NULL, 'سحر زارع'),
(61, 'firstname', NULL, 'سحر'),
(61, 'contact_no', NULL, 'CON23'),
(61, 'lastname', NULL, 'زارع'),
(61, 'email', NULL, 'kpiseed_emp14@example.local'),
(61, 'assigned_user_id', NULL, '1'),
(61, 'createdtime', NULL, '2026-07-10 20:55:13'),
(61, 'modifiedby', NULL, '1'),
(61, 'description', NULL, 'SYNC_FROM_USERS v1'),
(61, 'source', NULL, 'CRM'),
(61, 'record_id', NULL, '2087'),
(61, 'record_module', NULL, 'Contacts'),
(62, 'label', NULL, 'وحید محمودی'),
(62, 'firstname', NULL, 'وحید'),
(62, 'contact_no', NULL, 'CON24'),
(62, 'lastname', NULL, 'محمودی'),
(62, 'email', NULL, 'kpiseed_emp15@example.local'),
(62, 'assigned_user_id', NULL, '1'),
(62, 'createdtime', NULL, '2026-07-10 20:55:14'),
(62, 'modifiedby', NULL, '1'),
(62, 'description', NULL, 'SYNC_FROM_USERS v1'),
(62, 'source', NULL, 'CRM'),
(62, 'record_id', NULL, '2088'),
(62, 'record_module', NULL, 'Contacts'),
(63, 'label', NULL, 'حسین فغان پور'),
(63, 'firstname', NULL, 'حسین'),
(63, 'contact_no', NULL, 'CON25'),
(63, 'lastname', NULL, 'فغان پور'),
(63, 'email', NULL, 'hossein.fgh@gmail.com'),
(63, 'assigned_user_id', NULL, '1'),
(63, 'createdtime', NULL, '2026-07-10 21:01:35'),
(63, 'modifiedby', NULL, '1'),
(63, 'description', NULL, 'SYNC_FROM_USERS v1 [user:admin]'),
(63, 'source', NULL, 'CRM'),
(63, 'record_id', NULL, '2089'),
(63, 'record_module', NULL, 'Contacts'),
(64, 'label', NULL, 'سارا احمدی'),
(64, 'firstname', NULL, 'سارا'),
(64, 'contact_no', NULL, 'CON26'),
(64, 'lastname', NULL, 'احمدی'),
(64, 'email', NULL, 'kpiseed_sup2@example.local'),
(64, 'assigned_user_id', NULL, '1'),
(64, 'createdtime', NULL, '2026-07-10 21:01:37'),
(64, 'modifiedby', NULL, '1'),
(64, 'description', NULL, 'SYNC_FROM_USERS v1 [user:kpiseed_sup2]'),
(64, 'source', NULL, 'CRM'),
(64, 'record_id', NULL, '2090'),
(64, 'record_module', NULL, 'Contacts'),
(91, 'label', NULL, 'خانم افروز محمدی (مثال)'),
(90, 'label', NULL, 'درخواست پشتیبانی نصب (مثال)'),
(91, 'firstname', NULL, 'خانم افروز'),
(90, 'ticket_no', NULL, 'TT1'),
(90, 'assigned_user_id', NULL, '1'),
(91, 'contact_no', NULL, 'CON27'),
(90, 'parent_id', NULL, '20'),
(90, 'ticketpriorities', NULL, 'High'),
(91, 'lastname', NULL, 'محمدی (مثال)'),
(91, 'account_id', NULL, '22'),
(90, 'ticketstatus', NULL, 'Open'),
(90, 'hours', NULL, '0.00000000'),
(91, 'title', NULL, 'مدیرمالی'),
(90, 'days', NULL, '0.00000000'),
(91, 'email', NULL, 'afrooz@test.com'),
(91, 'assigned_user_id', NULL, '5'),
(91, 'createdtime', NULL, '2026-07-11 15:47:07'),
(91, 'modifiedby', NULL, '1'),
(90, 'createdtime', NULL, '2026-07-11 15:47:11'),
(91, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(90, 'modifiedby', NULL, '1'),
(91, 'source', NULL, 'CRM'),
(91, 'record_id', NULL, '2091'),
(90, 'ticket_title', NULL, 'درخواست پشتیبانی نصب (مثال)'),
(91, 'record_module', NULL, 'Contacts'),
(90, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(90, 'source', NULL, 'CRM'),
(90, 'record_id', NULL, '2092'),
(90, 'record_module', NULL, 'HelpDesk'),
(92, 'label', NULL, 'خانم رویا نیک رفتار (مثال)'),
(92, 'firstname', NULL, 'خانم رویا'),
(92, 'contact_no', NULL, 'CON28'),
(92, 'lastname', NULL, 'نیک رفتار (مثال)'),
(92, 'account_id', NULL, '23'),
(92, 'title', NULL, 'مدیر مالی'),
(92, 'email', NULL, 'roya@test.com'),
(92, 'assigned_user_id', NULL, '5'),
(92, 'createdtime', NULL, '2026-07-11 15:47:25'),
(92, 'modifiedby', NULL, '1'),
(92, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(92, 'source', NULL, 'CRM'),
(92, 'record_id', NULL, '2093'),
(92, 'record_module', NULL, 'Contacts'),
(93, 'label', NULL, 'مشکل ورود به سامانه (مثال)'),
(93, 'ticket_no', NULL, 'TT2'),
(94, 'label', NULL, 'مهندس قاضی (مثال)'),
(93, 'assigned_user_id', NULL, '2'),
(94, 'firstname', NULL, 'مهندس'),
(94, 'contact_no', NULL, 'CON29'),
(93, 'parent_id', NULL, '21'),
(94, 'lastname', NULL, 'قاضی (مثال)'),
(93, 'ticketpriorities', NULL, 'Urgent'),
(93, 'ticketstatus', NULL, 'In Progress'),
(93, 'hours', NULL, '0.00000000'),
(94, 'account_id', NULL, '2034'),
(93, 'days', NULL, '0.00000000'),
(94, 'email', NULL, 'ghazi@test.com'),
(93, 'createdtime', NULL, '2026-07-11 15:47:26'),
(94, 'assigned_user_id', NULL, '5'),
(94, 'createdtime', NULL, '2026-07-11 15:47:26'),
(93, 'modifiedby', NULL, '1'),
(93, 'ticket_title', NULL, 'مشکل ورود به سامانه (مثال)'),
(94, 'modifiedby', NULL, '1'),
(94, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(93, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(93, 'source', NULL, 'CRM'),
(94, 'source', NULL, 'CRM'),
(93, 'record_id', NULL, '2094'),
(94, 'record_id', NULL, '2095'),
(94, 'record_module', NULL, 'Contacts'),
(93, 'record_module', NULL, 'HelpDesk'),
(95, 'label', NULL, 'آقای مهدی فروزش (مثال)'),
(95, 'firstname', NULL, 'آقای مهدی'),
(95, 'contact_no', NULL, 'CON30'),
(95, 'lastname', NULL, 'فروزش (مثال)'),
(95, 'account_id', NULL, '20'),
(95, 'title', NULL, 'مدیر فروش'),
(95, 'email', NULL, 'forouzesh@test.com'),
(95, 'assigned_user_id', NULL, '5'),
(95, 'createdtime', NULL, '2026-07-11 15:47:28'),
(95, 'modifiedby', NULL, '1'),
(95, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(95, 'source', NULL, 'CRM'),
(95, 'record_id', NULL, '2096'),
(95, 'record_module', NULL, 'Contacts'),
(96, 'label', NULL, 'درخواست آموزش کاربری (مثال)'),
(96, 'ticket_no', NULL, 'TT3'),
(96, 'assigned_user_id', NULL, '3'),
(96, 'parent_id', NULL, '22'),
(96, 'ticketpriorities', NULL, 'Normal'),
(96, 'ticketstatus', NULL, 'Wait For Response'),
(96, 'hours', NULL, '0.00000000'),
(96, 'days', NULL, '0.00000000'),
(96, 'createdtime', NULL, '2026-07-11 15:47:28'),
(96, 'modifiedby', NULL, '1'),
(96, 'ticket_title', NULL, 'درخواست آموزش کاربری (مثال)'),
(96, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(96, 'source', NULL, 'CRM'),
(96, 'record_id', NULL, '2097'),
(96, 'record_module', NULL, 'HelpDesk'),
(97, 'label', NULL, 'آقای محمد کابینی (مثال)'),
(97, 'firstname', NULL, 'آقای محمد'),
(97, 'contact_no', NULL, 'CON31'),
(97, 'lastname', NULL, 'کابینی (مثال)'),
(97, 'account_id', NULL, '2032'),
(97, 'title', NULL, 'استراتژیست'),
(97, 'email', NULL, 'ayini@test.com'),
(97, 'assigned_user_id', NULL, '6'),
(97, 'createdtime', NULL, '2026-07-11 15:47:31'),
(97, 'modifiedby', NULL, '1'),
(97, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(97, 'source', NULL, 'CRM'),
(97, 'record_id', NULL, '2098'),
(97, 'record_module', NULL, 'Contacts'),
(98, 'label', NULL, 'خطای چاپ فاکتور (مثال)'),
(98, 'ticket_no', NULL, 'TT4'),
(98, 'assigned_user_id', NULL, '4'),
(98, 'parent_id', NULL, '23'),
(99, 'label', NULL, 'مهندس زامیاد (مثال)'),
(98, 'ticketpriorities', NULL, 'Normal'),
(98, 'ticketstatus', NULL, 'Closed'),
(98, 'hours', NULL, '0.00000000'),
(99, 'firstname', NULL, 'مهندس'),
(98, 'days', NULL, '0.00000000'),
(98, 'createdtime', NULL, '2026-07-11 15:47:35'),
(99, 'contact_no', NULL, 'CON32'),
(98, 'modifiedby', NULL, '1'),
(99, 'lastname', NULL, 'زامیاد (مثال)'),
(98, 'ticket_title', NULL, 'خطای چاپ فاکتور (مثال)'),
(99, 'account_id', NULL, '2037'),
(99, 'email', NULL, 'zamyad@test.com'),
(98, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(98, 'source', NULL, 'CRM'),
(99, 'assigned_user_id', NULL, '5'),
(99, 'createdtime', NULL, '2026-07-11 15:47:35'),
(98, 'record_id', NULL, '2099'),
(99, 'modifiedby', NULL, '1'),
(98, 'record_module', NULL, 'HelpDesk'),
(99, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(99, 'source', NULL, 'CRM'),
(99, 'record_id', NULL, '2100'),
(99, 'record_module', NULL, 'Contacts'),
(100, 'label', NULL, 'آقای غلامعلی عباسی (مثال)'),
(100, 'firstname', NULL, 'آقای غلامعلی'),
(100, 'contact_no', NULL, 'CON33'),
(100, 'lastname', NULL, 'عباسی (مثال)'),
(100, 'account_id', NULL, '21'),
(100, 'title', NULL, 'مدیرعامل'),
(100, 'email', NULL, 'abbasi@test.com'),
(100, 'assigned_user_id', NULL, '5'),
(100, 'createdtime', NULL, '2026-07-11 15:47:38'),
(100, 'modifiedby', NULL, '1'),
(100, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(100, 'source', NULL, 'CRM'),
(100, 'record_id', NULL, '2102'),
(100, 'record_module', NULL, 'Contacts'),
(101, 'label', NULL, 'درخواست گزارش اختصاصی (مثال)'),
(101, 'ticket_no', NULL, 'TT5'),
(101, 'assigned_user_id', NULL, '5'),
(101, 'parent_id', NULL, '24'),
(101, 'ticketpriorities', NULL, 'Low'),
(101, 'ticketstatus', NULL, 'Open'),
(101, 'hours', NULL, '0.00000000'),
(101, 'days', NULL, '0.00000000'),
(101, 'createdtime', NULL, '2026-07-11 15:47:38'),
(101, 'modifiedby', NULL, '1'),
(101, 'ticket_title', NULL, 'درخواست گزارش اختصاصی (مثال)'),
(101, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(101, 'source', NULL, 'CRM'),
(101, 'record_id', NULL, '2101'),
(101, 'record_module', NULL, 'HelpDesk'),
(102, 'label', NULL, 'آقای محمدآبادی (مثال)'),
(102, 'firstname', NULL, 'آقای'),
(102, 'contact_no', NULL, 'CON34'),
(102, 'lastname', NULL, 'محمدآبادی (مثال)'),
(102, 'account_id', NULL, '2029'),
(102, 'email', NULL, 'mohammadabadi@test.com'),
(102, 'assigned_user_id', NULL, '5'),
(102, 'createdtime', NULL, '2026-07-11 15:47:41'),
(102, 'modifiedby', NULL, '1'),
(102, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(102, 'source', NULL, 'CRM'),
(102, 'record_id', NULL, '2103'),
(102, 'record_module', NULL, 'Contacts'),
(103, 'label', NULL, 'کندی سیستم در ساعات اوج (مثال)'),
(103, 'ticket_no', NULL, 'TT6'),
(103, 'assigned_user_id', NULL, '2'),
(103, 'parent_id', NULL, '25'),
(103, 'ticketpriorities', NULL, 'High'),
(103, 'ticketstatus', NULL, 'In Progress'),
(103, 'hours', NULL, '0.00000000'),
(103, 'days', NULL, '0.00000000'),
(103, 'createdtime', NULL, '2026-07-11 15:47:42'),
(103, 'modifiedby', NULL, '1'),
(103, 'ticket_title', NULL, 'کندی سیستم در ساعات اوج (مثال)'),
(103, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(103, 'source', NULL, 'CRM'),
(103, 'record_id', NULL, '2104'),
(103, 'record_module', NULL, 'HelpDesk'),
(104, 'label', NULL, 'خانم لعیا خسروآبادی (مثال)'),
(104, 'firstname', NULL, 'خانم لعیا'),
(104, 'contact_no', NULL, 'CON35'),
(104, 'lastname', NULL, 'خسروآبادی (مثال)'),
(104, 'account_id', NULL, '21'),
(104, 'title', NULL, 'مدیر تدارکات'),
(104, 'email', NULL, 'laya@test.com'),
(104, 'assigned_user_id', NULL, '5'),
(104, 'createdtime', NULL, '2026-07-11 15:47:42'),
(104, 'modifiedby', NULL, '1'),
(104, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(104, 'source', NULL, 'CRM'),
(104, 'record_id', NULL, '2105'),
(104, 'record_module', NULL, 'Contacts'),
(105, 'label', NULL, 'تمدید قرارداد پشتیبانی (مثال)'),
(105, 'ticket_no', NULL, 'TT7'),
(105, 'assigned_user_id', NULL, '1'),
(106, 'label', NULL, 'آقای کامران دادجو (مثال)'),
(105, 'parent_id', NULL, '2028'),
(106, 'firstname', NULL, 'آقای کامران'),
(105, 'ticketpriorities', NULL, 'Normal'),
(106, 'contact_no', NULL, 'CON36'),
(105, 'ticketstatus', NULL, 'Closed'),
(106, 'lastname', NULL, 'دادجو (مثال)'),
(105, 'hours', NULL, '0.00000000'),
(106, 'account_id', NULL, '2036'),
(105, 'days', NULL, '0.00000000'),
(106, 'email', NULL, 'dadjoo@test.com'),
(105, 'createdtime', NULL, '2026-07-11 15:47:43'),
(106, 'assigned_user_id', NULL, '5'),
(105, 'modifiedby', NULL, '1'),
(106, 'createdtime', NULL, '2026-07-11 15:47:44'),
(106, 'modifiedby', NULL, '1'),
(106, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(106, 'source', NULL, 'CRM'),
(106, 'record_id', NULL, '2107'),
(105, 'ticket_title', NULL, 'تمدید قرارداد پشتیبانی (مثال)'),
(105, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(106, 'record_module', NULL, 'Contacts'),
(105, 'source', NULL, 'CRM'),
(105, 'record_id', NULL, '2106'),
(105, 'record_module', NULL, 'HelpDesk'),
(107, 'label', NULL, 'آقای علی ملامحمدی (مثال)'),
(107, 'firstname', NULL, 'آقای علی'),
(107, 'contact_no', NULL, 'CON37'),
(107, 'lastname', NULL, 'ملامحمدی (مثال)'),
(107, 'account_id', NULL, '23'),
(107, 'title', NULL, 'مدیر تدارکات'),
(107, 'email', NULL, 'ali@test.com'),
(107, 'assigned_user_id', NULL, '5'),
(107, 'createdtime', NULL, '2026-07-11 15:47:45'),
(107, 'modifiedby', NULL, '1'),
(107, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(107, 'source', NULL, 'CRM'),
(107, 'record_id', NULL, '2108'),
(107, 'record_module', NULL, 'Contacts'),
(108, 'label', NULL, 'درخواست فعال&zwnj;سازی ماژول جدید (مثال)'),
(108, 'ticket_no', NULL, 'TT8'),
(108, 'assigned_user_id', NULL, '3'),
(108, 'parent_id', NULL, '2029'),
(108, 'ticketpriorities', NULL, 'Normal'),
(108, 'ticketstatus', NULL, 'Open'),
(108, 'hours', NULL, '0.00000000'),
(108, 'days', NULL, '0.00000000'),
(108, 'createdtime', NULL, '2026-07-11 15:47:45'),
(108, 'modifiedby', NULL, '1'),
(108, 'ticket_title', NULL, 'درخواست فعال&zwnj;سازی ماژول جدید (مثال)'),
(108, 'description', NULL, 'SEED_GOOYA_TICKETS v1'),
(108, 'source', NULL, 'CRM'),
(108, 'record_id', NULL, '2109'),
(108, 'record_module', NULL, 'HelpDesk'),
(109, 'label', NULL, 'آقای رضا منوچهری (مثال)'),
(109, 'firstname', NULL, 'آقای رضا'),
(109, 'contact_no', NULL, 'CON38'),
(109, 'lastname', NULL, 'منوچهری (مثال)'),
(109, 'title', NULL, 'کارشناس فنی'),
(109, 'email', NULL, 'reza@test.com'),
(109, 'assigned_user_id', NULL, '5'),
(109, 'createdtime', NULL, '2026-07-11 15:47:46'),
(109, 'modifiedby', NULL, '1'),
(109, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(109, 'source', NULL, 'CRM'),
(109, 'record_id', NULL, '2110'),
(109, 'record_module', NULL, 'Contacts'),
(110, 'label', NULL, 'آقای محسن غفاری (مثال)'),
(110, 'firstname', NULL, 'آقای محسن'),
(110, 'contact_no', NULL, 'CON39'),
(110, 'lastname', NULL, 'غفاری (مثال)'),
(110, 'title', NULL, 'مدیرعامل'),
(110, 'assigned_user_id', NULL, '5'),
(110, 'createdtime', NULL, '2026-07-11 15:47:47'),
(110, 'modifiedby', NULL, '1'),
(110, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(110, 'source', NULL, 'CRM'),
(110, 'record_id', NULL, '2111'),
(110, 'record_module', NULL, 'Contacts'),
(111, 'label', NULL, 'خانم پورعلی (مثال)'),
(111, 'firstname', NULL, 'خانم'),
(111, 'contact_no', NULL, 'CON40'),
(111, 'lastname', NULL, 'پورعلی (مثال)'),
(111, 'account_id', NULL, '25'),
(111, 'email', NULL, 'pourali@test.com'),
(111, 'assigned_user_id', NULL, '5'),
(111, 'createdtime', NULL, '2026-07-11 15:47:49'),
(111, 'modifiedby', NULL, '1'),
(111, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(111, 'source', NULL, 'CRM'),
(111, 'record_id', NULL, '2113'),
(111, 'record_module', NULL, 'Contacts'),
(112, 'label', NULL, 'وظیفه ارسال مستندات (مثال)'),
(112, 'subject', NULL, 'وظیفه ارسال مستندات (مثال)'),
(112, 'assigned_user_id', NULL, '2'),
(112, 'date_start', NULL, '2026-07-13'),
(112, 'time_start', NULL, '10:00'),
(113, 'label', NULL, 'خانم خالقی (مثال)'),
(112, 'due_date', NULL, '2026-07-14'),
(113, 'firstname', NULL, 'خانم'),
(112, 'time_end', NULL, '11:00'),
(113, 'contact_no', NULL, 'CON41'),
(112, 'duration_hours', NULL, '25'),
(113, 'lastname', NULL, 'خالقی (مثال)'),
(112, 'activitytype', NULL, 'Task'),
(113, 'account_id', NULL, '2033'),
(112, 'createdtime', NULL, '2026-07-11 15:47:49'),
(113, 'email', NULL, 'khaleghi@test.com'),
(112, 'taskpriority', NULL, 'Normal'),
(113, 'assigned_user_id', NULL, '5'),
(112, 'visibility', NULL, 'Public'),
(113, 'createdtime', NULL, '2026-07-11 15:47:50'),
(112, 'modifiedby', NULL, '1'),
(113, 'modifiedby', NULL, '1'),
(112, 'description', NULL, 'SEED_GOOYA_TASKS v1'),
(112, 'source', NULL, 'CRM'),
(113, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(112, 'taskstatus', NULL, 'Pending Input'),
(113, 'source', NULL, 'CRM'),
(112, 'record_id', NULL, '2112'),
(113, 'record_id', NULL, '2114'),
(112, 'record_module', NULL, 'Calendar'),
(113, 'record_module', NULL, 'Contacts'),
(115, 'label', NULL, 'مهندس توکلی (مثال)'),
(115, 'firstname', NULL, 'مهندس'),
(114, 'label', NULL, 'پیگیری تاییدیه مشتری (مثال)'),
(115, 'contact_no', NULL, 'CON42'),
(114, 'subject', NULL, 'پیگیری تاییدیه مشتری (مثال)'),
(115, 'lastname', NULL, 'توکلی (مثال)'),
(114, 'assigned_user_id', NULL, '5'),
(115, 'account_id', NULL, '24'),
(114, 'date_start', NULL, '2026-07-15'),
(115, 'email', NULL, 'tavakoli@test.com'),
(114, 'time_start', NULL, '10:00'),
(115, 'assigned_user_id', NULL, '5'),
(114, 'due_date', NULL, '2026-07-16'),
(115, 'createdtime', NULL, '2026-07-11 15:47:51'),
(114, 'time_end', NULL, '11:00'),
(114, 'duration_hours', NULL, '25'),
(115, 'modifiedby', NULL, '1'),
(114, 'activitytype', NULL, 'Task'),
(115, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(114, 'createdtime', NULL, '2026-07-11 15:47:51'),
(115, 'source', NULL, 'CRM'),
(114, 'taskpriority', NULL, 'Normal'),
(115, 'record_id', NULL, '2116'),
(114, 'visibility', NULL, 'Public'),
(115, 'record_module', NULL, 'Contacts'),
(114, 'modifiedby', NULL, '1'),
(114, 'description', NULL, 'SEED_GOOYA_TASKS v1'),
(114, 'source', NULL, 'CRM'),
(114, 'taskstatus', NULL, 'Pending Input'),
(114, 'record_id', NULL, '2115'),
(114, 'record_module', NULL, 'Calendar'),
(116, 'label', NULL, 'خانم شایان صادقی نژاد (مثال)'),
(116, 'firstname', NULL, 'خانم شایان'),
(116, 'contact_no', NULL, 'CON43'),
(116, 'lastname', NULL, 'صادقی نژاد (مثال)'),
(116, 'account_id', NULL, '2035'),
(116, 'title', NULL, 'مدیر فروش'),
(116, 'assigned_user_id', NULL, '6'),
(116, 'createdtime', NULL, '2026-07-11 15:47:54'),
(116, 'modifiedby', NULL, '1'),
(116, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(116, 'source', NULL, 'CRM'),
(116, 'record_id', NULL, '2117'),
(116, 'record_module', NULL, 'Contacts'),
(117, 'label', NULL, 'خانم شریف (مثال)'),
(117, 'firstname', NULL, 'خانم'),
(117, 'contact_no', NULL, 'CON44'),
(117, 'lastname', NULL, 'شریف (مثال)'),
(117, 'email', NULL, 'sharif@test.com'),
(117, 'assigned_user_id', NULL, '5'),
(117, 'createdtime', NULL, '2026-07-11 15:47:54'),
(117, 'modifiedby', NULL, '1'),
(117, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(117, 'source', NULL, 'CRM'),
(117, 'record_id', NULL, '2118'),
(117, 'record_module', NULL, 'Contacts'),
(118, 'label', NULL, 'خانم رقیه کاظم زاده (مثال)'),
(118, 'firstname', NULL, 'خانم رقیه'),
(118, 'contact_no', NULL, 'CON45'),
(118, 'lastname', NULL, 'کاظم زاده (مثال)'),
(118, 'title', NULL, 'رئیس هیئت مدیره'),
(118, 'email', NULL, 'kazemzadeh@test.com'),
(118, 'assigned_user_id', NULL, '6'),
(118, 'createdtime', NULL, '2026-07-11 15:47:55'),
(118, 'modifiedby', NULL, '1'),
(118, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(118, 'source', NULL, 'CRM'),
(118, 'record_id', NULL, '2119'),
(118, 'record_module', NULL, 'Contacts'),
(119, 'label', NULL, 'آقای جواد نیکتابیک (مثال)'),
(119, 'firstname', NULL, 'آقای جواد'),
(119, 'contact_no', NULL, 'CON46'),
(119, 'lastname', NULL, 'نیکتابیک (مثال)'),
(119, 'account_id', NULL, '2030'),
(119, 'title', NULL, 'کارمند خدمات'),
(119, 'assigned_user_id', NULL, '7'),
(119, 'createdtime', NULL, '2026-07-11 15:47:55'),
(119, 'modifiedby', NULL, '1'),
(119, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(119, 'source', NULL, 'CRM'),
(119, 'record_id', NULL, '2120'),
(119, 'record_module', NULL, 'Contacts'),
(120, 'label', NULL, 'خانم ملیکا زاهدی (مثال)'),
(120, 'firstname', NULL, 'خانم ملیکا'),
(120, 'contact_no', NULL, 'CON47'),
(120, 'lastname', NULL, 'زاهدی (مثال)'),
(120, 'account_id', NULL, '2031'),
(120, 'title', NULL, 'منشی مدیرعامل'),
(120, 'email', NULL, 'zahedi@test.com'),
(120, 'assigned_user_id', NULL, '7'),
(120, 'createdtime', NULL, '2026-07-11 15:47:56'),
(120, 'modifiedby', NULL, '1'),
(120, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(120, 'source', NULL, 'CRM'),
(120, 'record_id', NULL, '2121'),
(120, 'record_module', NULL, 'Contacts'),
(121, 'label', NULL, 'آقای عباس رعفتی (مثال)'),
(121, 'firstname', NULL, 'آقای عباس'),
(121, 'contact_no', NULL, 'CON48'),
(121, 'lastname', NULL, 'رعفتی (مثال)'),
(121, 'account_id', NULL, '20'),
(121, 'title', NULL, 'مدیرعامل'),
(121, 'email', NULL, 'alii@test.com'),
(121, 'assigned_user_id', NULL, '5'),
(121, 'createdtime', NULL, '2026-07-11 15:47:56'),
(121, 'modifiedby', NULL, '1'),
(121, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(121, 'source', NULL, 'CRM'),
(121, 'record_id', NULL, '2122'),
(121, 'record_module', NULL, 'Contacts'),
(122, 'label', NULL, 'آقای منوچهر انصاری (مثال)'),
(122, 'firstname', NULL, 'آقای منوچهر'),
(122, 'contact_no', NULL, 'CON49'),
(122, 'lastname', NULL, 'انصاری (مثال)'),
(122, 'account_id', NULL, '22'),
(122, 'title', NULL, 'مدیر بازرگانی'),
(122, 'assigned_user_id', NULL, '5'),
(122, 'createdtime', NULL, '2026-07-11 15:47:57'),
(122, 'modifiedby', NULL, '1'),
(122, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(122, 'source', NULL, 'CRM'),
(122, 'record_id', NULL, '2123'),
(122, 'record_module', NULL, 'Contacts'),
(123, 'label', NULL, 'آقای صابر احمدیان (مثال)'),
(123, 'firstname', NULL, 'آقای صابر'),
(123, 'contact_no', NULL, 'CON50'),
(123, 'lastname', NULL, 'احمدیان (مثال)'),
(123, 'title', NULL, 'مدیر پروژه'),
(123, 'email', NULL, 'ahmadian@test.com'),
(123, 'assigned_user_id', NULL, '6'),
(123, 'createdtime', NULL, '2026-07-11 15:47:57'),
(123, 'modifiedby', NULL, '1'),
(123, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(123, 'source', NULL, 'CRM'),
(123, 'record_id', NULL, '2124'),
(123, 'record_module', NULL, 'Contacts'),
(124, 'label', NULL, 'آقای ابوالفضل سلیمی (مثال)'),
(124, 'firstname', NULL, 'آقای ابوالفضل'),
(124, 'contact_no', NULL, 'CON51'),
(124, 'lastname', NULL, 'سلیمی (مثال)'),
(124, 'account_id', NULL, '2028'),
(124, 'title', NULL, 'نایب رئیس هیئت مدیره'),
(124, 'email', NULL, 'salimi@test.com'),
(124, 'assigned_user_id', NULL, '6'),
(124, 'createdtime', NULL, '2026-07-11 15:47:57'),
(124, 'modifiedby', NULL, '1'),
(124, 'description', NULL, 'SEED_GOOYA_CONTACTS v1'),
(124, 'source', NULL, 'CRM'),
(124, 'record_id', NULL, '2125'),
(124, 'record_module', NULL, 'Contacts'),
(125, 'duration_hours', '', '1'),
(125, 'taskstatus', 'Not Started', 'Pending Input'),
(126, 'leadstatus', 'جدید', 'اختصاص یافته'),
(127, 'leadstatus', 'اختصاص یافته', 'جدید'),
(128, 'sales_stage', '۱.آشنایی اولیه', '۴.مذاکره نهایی'),
(128, 'forecast_amount', '', '1800000.00000000'),
(129, 'sales_stage', '۴.مذاکره نهایی', '۱.آشنایی اولیه'),
(130, 'closingdate', '2026-05-31', '2026-08-01'),
(130, 'forecast_amount', '16500000.00000000', '9900000.00000000'),
(131, 'closingdate', '2026-08-01', '2026-05-31'),
(132, 'label', NULL, 'بازرگانی پارت تامین (مثال)'),
(132, 'vendorname', NULL, 'بازرگانی پارت تامین (مثال)'),
(132, 'vendor_no', NULL, 'VEN1'),
(132, 'phone', NULL, '021-44556677'),
(132, 'email', NULL, 'part@test.com'),
(132, 'category', NULL, 'قطعات'),
(132, 'createdtime', NULL, '2026-07-12 09:32:30'),
(132, 'modifiedby', NULL, '1'),
(132, 'description', NULL, 'SEED_GOOYA_VENDORS v1'),
(132, 'assigned_user_id', NULL, '1'),
(132, 'source', NULL, 'CRM'),
(132, 'record_id', NULL, '2126'),
(132, 'record_module', NULL, 'Vendors'),
(133, 'label', NULL, 'صنایع فلزی آریا (مثال)'),
(133, 'vendorname', NULL, 'صنایع فلزی آریا (مثال)'),
(133, 'vendor_no', NULL, 'VEN2'),
(133, 'phone', NULL, '021-88997766'),
(133, 'email', NULL, 'arya@test.com'),
(133, 'category', NULL, 'مواد اولیه'),
(133, 'createdtime', NULL, '2026-07-12 09:32:45'),
(133, 'modifiedby', NULL, '1'),
(133, 'description', NULL, 'SEED_GOOYA_VENDORS v1'),
(133, 'assigned_user_id', NULL, '1'),
(133, 'source', NULL, 'CRM'),
(133, 'record_id', NULL, '2127'),
(133, 'record_module', NULL, 'Vendors'),
(134, 'label', NULL, 'پخش البرز (مثال)'),
(134, 'vendorname', NULL, 'پخش البرز (مثال)'),
(134, 'vendor_no', NULL, 'VEN3'),
(134, 'phone', NULL, '026-32221100'),
(134, 'email', NULL, 'alborz@test.com'),
(134, 'category', NULL, 'توزیع'),
(134, 'createdtime', NULL, '2026-07-12 09:32:46'),
(134, 'modifiedby', NULL, '1'),
(134, 'description', NULL, 'SEED_GOOYA_VENDORS v1'),
(134, 'assigned_user_id', NULL, '1'),
(134, 'source', NULL, 'CRM'),
(134, 'record_id', NULL, '2128'),
(134, 'record_module', NULL, 'Vendors'),
(135, 'label', NULL, 'تجهیزات نوین صنعت (مثال)'),
(135, 'vendorname', NULL, 'تجهیزات نوین صنعت (مثال)'),
(135, 'vendor_no', NULL, 'VEN4'),
(135, 'phone', NULL, '031-36667788'),
(135, 'email', NULL, 'novin@test.com'),
(135, 'category', NULL, 'تجهیزات'),
(135, 'createdtime', NULL, '2026-07-12 09:32:47'),
(135, 'modifiedby', NULL, '1'),
(135, 'description', NULL, 'SEED_GOOYA_VENDORS v1'),
(135, 'assigned_user_id', NULL, '1'),
(135, 'source', NULL, 'CRM'),
(135, 'record_id', NULL, '2129'),
(135, 'record_module', NULL, 'Vendors'),
(136, 'label', NULL, 'استقرار CRM الکترونیک گستر (مثال)'),
(136, 'projectname', NULL, 'استقرار CRM الکترونیک گستر (مثال)'),
(136, 'startdate', NULL, '2026-06-22'),
(136, 'targetenddate', NULL, '2026-08-21'),
(136, 'projectstatus', NULL, 'in progress'),
(136, 'linktoaccountscontacts', NULL, '20'),
(136, 'assigned_user_id', NULL, '1'),
(136, 'project_no', NULL, 'PROJ1'),
(136, 'projectpriority', NULL, 'high'),
(136, 'createdtime', NULL, '2026-07-12 10:20:44'),
(136, 'modifiedby', NULL, '1'),
(136, 'description', NULL, 'SEED_GOOYA_PROJECTS v1'),
(136, 'source', NULL, 'CRM'),
(136, 'record_id', NULL, '2130'),
(136, 'record_module', NULL, 'Project'),
(137, 'label', NULL, 'راه&zwnj;اندازی پرتال مشتریان کیان (مثال)'),
(137, 'projectname', NULL, 'راه&zwnj;اندازی پرتال مشتریان کیان (مثال)'),
(137, 'startdate', NULL, '2026-07-07'),
(137, 'targetenddate', NULL, '2026-09-10'),
(137, 'projectstatus', NULL, 'prospecting'),
(137, 'linktoaccountscontacts', NULL, '21'),
(137, 'assigned_user_id', NULL, '5'),
(137, 'project_no', NULL, 'PROJ2'),
(137, 'projectpriority', NULL, 'normal'),
(137, 'createdtime', NULL, '2026-07-12 10:20:57'),
(137, 'modifiedby', NULL, '1'),
(137, 'description', NULL, 'SEED_GOOYA_PROJECTS v1'),
(137, 'source', NULL, 'CRM'),
(137, 'record_id', NULL, '2131'),
(137, 'record_module', NULL, 'Project'),
(138, 'label', NULL, 'جلسه'),
(138, 'subject', NULL, 'جلسه'),
(138, 'assigned_user_id', NULL, '1'),
(138, 'date_start', NULL, '2026-07-14'),
(138, 'time_start', NULL, '08:30'),
(138, 'due_date', NULL, '2026-07-14'),
(138, 'time_end', NULL, '08:45'),
(138, 'duration_minutes', NULL, '15'),
(138, 'eventstatus', NULL, 'Planned'),
(138, 'activitytype', NULL, 'Meeting'),
(138, 'createdtime', NULL, '2026-07-14 16:14:14'),
(138, 'visibility', NULL, 'Public'),
(138, 'modifiedby', NULL, '1'),
(138, 'source', NULL, 'CRM'),
(138, 'sms_remind_user', NULL, 'بدون'),
(138, 'sms_remind_invitees', NULL, 'بدون'),
(138, 'record_id', NULL, '2132'),
(138, 'record_module', NULL, 'Events'),
(139, 'label', NULL, 'وظیفه'),
(139, 'subject', NULL, 'وظیفه'),
(139, 'assigned_user_id', NULL, '1'),
(139, 'date_start', NULL, '2026-07-14'),
(139, 'time_start', NULL, '12:30'),
(139, 'due_date', NULL, '2026-07-14'),
(139, 'duration_hours', NULL, '8'),
(139, 'activitytype', NULL, 'Task'),
(139, 'createdtime', NULL, '2026-07-14 16:17:28'),
(139, 'taskpriority', NULL, 'Medium'),
(139, 'visibility', NULL, 'Public'),
(139, 'modifiedby', NULL, '1'),
(139, 'source', NULL, 'CRM'),
(139, 'sms_remind_user', NULL, 'بدون'),
(139, 'taskstatus', NULL, 'Not Started'),
(139, 'record_id', NULL, '2133'),
(139, 'record_module', NULL, 'Calendar'),
(140, 'label', NULL, 'جلسه'),
(140, 'subject', NULL, 'جلسه'),
(140, 'assigned_user_id', NULL, '1'),
(140, 'date_start', NULL, '2026-07-14'),
(140, 'time_start', NULL, '12:30'),
(140, 'due_date', NULL, '2026-07-14'),
(140, 'time_end', NULL, '12:45'),
(140, 'duration_minutes', NULL, '15'),
(140, 'eventstatus', NULL, 'Planned'),
(140, 'activitytype', NULL, 'Meeting'),
(140, 'createdtime', NULL, '2026-07-14 16:39:08'),
(140, 'visibility', NULL, 'Public'),
(140, 'modifiedby', NULL, '1'),
(140, 'source', NULL, 'CRM'),
(140, 'sms_remind_user', NULL, 'بدون'),
(140, 'sms_remind_invitees', NULL, 'بدون'),
(140, 'record_id', NULL, '2134'),
(140, 'record_module', NULL, 'Events'),
(148, 'label', NULL, 'پرداخت (مثال)'),
(148, 'subject', NULL, 'پرداخت (مثال)'),
(148, 'payment_direction', NULL, 'Incoming'),
(148, 'payment_status', NULL, 'Paid'),
(148, 'expected_date', NULL, '2026-06-21'),
(148, 'payment_date', NULL, '2026-06-21'),
(148, 'amount', NULL, '50000000.00000000'),
(148, 'payment_method', NULL, 'Cash'),
(148, 'payment_type', NULL, 'InvoicePayment'),
(148, 'sms_reminder', NULL, 'None'),
(148, 'assigned_user_id', NULL, '1'),
(148, 'createdtime', NULL, '2026-07-15 21:49:44'),
(148, 'record_id', NULL, '2139'),
(148, 'record_module', NULL, 'GouyaPayments'),
(149, 'label', NULL, 'پیشگامان صنعت داده (مثال) - پرداخت'),
(149, 'subject', NULL, 'پیشگامان صنعت داده (مثال) - پرداخت'),
(149, 'account_id', NULL, '21'),
(149, 'payment_direction', NULL, 'Incoming'),
(149, 'payment_status', NULL, 'Paid'),
(149, 'expected_date', NULL, '2026-06-21'),
(149, 'amount', NULL, '200000000.00000000'),
(149, 'payment_method', NULL, 'Cash'),
(149, 'payment_type', NULL, 'InvoicePayment'),
(149, 'sms_reminder', NULL, 'None'),
(149, 'assigned_user_id', NULL, '1'),
(149, 'createdtime', NULL, '2026-07-15 21:49:44'),
(149, 'record_id', NULL, '2140'),
(149, 'record_module', NULL, 'GouyaPayments'),
(150, 'label', NULL, 'اورنگ (مثال) - پرداخت'),
(150, 'subject', NULL, 'اورنگ (مثال) - پرداخت'),
(150, 'account_id', NULL, '24');
INSERT IGNORE INTO `vtiger_modtracker_detail` (`id`, `fieldname`, `prevalue`, `postvalue`) VALUES
(150, 'payment_direction', NULL, 'Incoming'),
(150, 'payment_status', NULL, 'Paid'),
(150, 'expected_date', NULL, '2026-06-14'),
(150, 'amount', NULL, '58000000.00000000'),
(150, 'payment_method', NULL, 'Cash'),
(150, 'payment_type', NULL, 'InvoicePayment'),
(150, 'sms_reminder', NULL, 'None'),
(150, 'assigned_user_id', NULL, '1'),
(150, 'createdtime', NULL, '2026-07-15 21:49:44'),
(150, 'record_id', NULL, '2141'),
(150, 'record_module', NULL, 'GouyaPayments'),
(151, 'label', NULL, 'پرداخت قسط اول (مثال)'),
(151, 'subject', NULL, 'پرداخت قسط اول (مثال)'),
(151, 'account_id', NULL, '20'),
(151, 'payment_direction', NULL, 'Incoming'),
(151, 'payment_status', NULL, 'Paid'),
(151, 'expected_date', NULL, '2026-06-14'),
(151, 'payment_date', NULL, '2026-06-14'),
(151, 'amount', NULL, '80000000.00000000'),
(151, 'payment_method', NULL, 'Cash'),
(151, 'payment_type', NULL, 'InvoicePayment'),
(151, 'sms_reminder', NULL, 'None'),
(151, 'assigned_user_id', NULL, '1'),
(151, 'createdtime', NULL, '2026-07-15 21:49:44'),
(151, 'record_id', NULL, '2142'),
(151, 'record_module', NULL, 'GouyaPayments'),
(152, 'label', NULL, 'کیان (مثال) - پرداخت'),
(152, 'subject', NULL, 'کیان (مثال) - پرداخت'),
(152, 'account_id', NULL, '25'),
(152, 'payment_direction', NULL, 'Incoming'),
(152, 'payment_status', NULL, 'Paid'),
(152, 'expected_date', NULL, '2026-06-12'),
(152, 'payment_date', NULL, '2026-06-12'),
(152, 'amount', NULL, '20000000.00000000'),
(152, 'payment_method', NULL, 'Cash'),
(152, 'payment_type', NULL, 'InvoicePayment'),
(152, 'sms_reminder', NULL, 'None'),
(152, 'assigned_user_id', NULL, '1'),
(152, 'createdtime', NULL, '2026-07-15 21:49:44'),
(152, 'record_id', NULL, '2143'),
(152, 'record_module', NULL, 'GouyaPayments'),
(153, 'label', NULL, 'فرایند گستران شرق (مثال) - پرداخت'),
(153, 'subject', NULL, 'فرایند گستران شرق (مثال) - پرداخت'),
(153, 'account_id', NULL, '22'),
(153, 'payment_direction', NULL, 'Incoming'),
(153, 'payment_status', NULL, 'Paid'),
(153, 'expected_date', NULL, '2026-06-08'),
(153, 'amount', NULL, '100000000.00000000'),
(153, 'payment_method', NULL, 'Cash'),
(153, 'payment_type', NULL, 'InvoicePayment'),
(153, 'sms_reminder', NULL, 'None'),
(153, 'assigned_user_id', NULL, '1'),
(153, 'createdtime', NULL, '2026-07-15 21:49:44'),
(153, 'record_id', NULL, '2144'),
(153, 'record_module', NULL, 'GouyaPayments'),
(154, 'label', NULL, 'فرایند گستران شرق (مثال) - پرداخت'),
(154, 'subject', NULL, 'فرایند گستران شرق (مثال) - پرداخت'),
(154, 'account_id', NULL, '22'),
(154, 'payment_direction', NULL, 'Incoming'),
(154, 'payment_status', NULL, 'Paid'),
(154, 'expected_date', NULL, '2026-06-02'),
(154, 'amount', NULL, '60000000.00000000'),
(154, 'payment_method', NULL, 'Cash'),
(154, 'payment_type', NULL, 'InvoicePayment'),
(154, 'sms_reminder', NULL, 'None'),
(154, 'assigned_user_id', NULL, '1'),
(154, 'createdtime', NULL, '2026-07-15 21:49:45'),
(154, 'record_id', NULL, '2145'),
(154, 'record_module', NULL, 'GouyaPayments'),
(155, 'label', NULL, 'تست پرداخت - الکترونیک گستر'),
(155, 'subject', NULL, 'تست پرداخت - الکترونیک گستر'),
(155, 'account_id', NULL, '23'),
(155, 'payment_direction', NULL, 'Incoming'),
(155, 'payment_status', NULL, 'Paid'),
(155, 'expected_date', NULL, '2026-07-04'),
(155, 'payment_date', NULL, '2026-07-04'),
(155, 'amount', NULL, '100000000.00000000'),
(155, 'payment_method', NULL, 'Cash'),
(155, 'payment_type', NULL, 'InvoicePayment'),
(155, 'sms_reminder', NULL, 'None'),
(155, 'assigned_user_id', NULL, '1'),
(155, 'createdtime', NULL, '2026-07-15 21:49:45'),
(155, 'description', NULL, 'جابجایی تخصیص تست'),
(155, 'record_id', NULL, '2146'),
(155, 'record_module', NULL, 'GouyaPayments'),
(156, 'label', NULL, 'تست واقعی فاکتور خرده&zwnj;فروشی - حساب ۲۰۳۶ [Gouya-PHASE01]'),
(156, 'subject', NULL, 'تست واقعی فاکتور خرده&zwnj;فروشی - حساب ۲۰۳۶ [Gouya-PHASE01]'),
(156, 'invoicedate', NULL, '2026-07-15'),
(156, 'duedate', NULL, '2026-07-22'),
(156, 'txtAdjustment', NULL, '0.00000000'),
(156, 'salescommission', NULL, '0.000'),
(156, 'exciseduty', NULL, '0.000'),
(156, 'hdnSubTotal', NULL, '15000000.00000000'),
(156, 'hdnGrandTotal', NULL, '15000000.00000000'),
(156, 'hdnTaxType', NULL, 'group'),
(156, 'hdnDiscountAmount', NULL, '0.00000000'),
(156, 'hdnS_H_Amount', NULL, '0.00000000'),
(156, 'account_id', NULL, '2036'),
(156, 'invoicestatus', NULL, 'Approved'),
(156, 'assigned_user_id', NULL, '1'),
(156, 'createdtime', NULL, '2026-07-15 22:04:29'),
(156, 'modifiedby', NULL, '1'),
(156, 'currency_id', NULL, '2'),
(156, 'conversion_rate', NULL, '1.000'),
(156, 'description', NULL, 'آزمون واقعی مرحله اول؛ رکورد استاندارد Invoice با اقلام استاندارد.'),
(156, 'invoice_no', NULL, '10'),
(156, 'productid', NULL, '2053'),
(156, 'quantity', NULL, '1.000'),
(156, 'listprice', NULL, '15000000.00000000'),
(156, 'comment', NULL, 'Gouya phase 01 real inventory line'),
(156, 'tax1', NULL, '0.000'),
(156, 'tax2', NULL, '0.000'),
(156, 'tax3', NULL, '0.000'),
(156, 'pre_tax_total', NULL, '15000000.00000000'),
(156, 'received', NULL, '0.00000000'),
(156, 'balance', NULL, '0.00000000'),
(156, 'hdnS_H_Percent', NULL, '0.00000000'),
(156, 'source', NULL, 'CRM'),
(156, 'cf_insurance_percent', NULL, '0.000'),
(156, 'cf_insurance_amount', NULL, '0.00000000'),
(156, 'cf_retention_percent', NULL, '0.000'),
(156, 'cf_retention_amount', NULL, '0.00000000'),
(156, 'cf_invoice_kind', NULL, 'Retail'),
(156, 'record_id', NULL, '2147'),
(156, 'record_module', NULL, 'Invoice'),
(157, 'label', NULL, 'پرداخت واقعی فاکتور خرده&zwnj;فروشی حساب ۲۰۳۶ [Gouya-PHASE01]'),
(157, 'subject', NULL, 'پرداخت واقعی فاکتور خرده&zwnj;فروشی حساب ۲۰۳۶ [Gouya-PHASE01]'),
(157, 'account_id', NULL, '2036'),
(157, 'payment_direction', NULL, 'Incoming'),
(157, 'payment_status', NULL, 'Paid'),
(157, 'expected_date', NULL, '2026-07-15'),
(157, 'payment_date', NULL, '2026-07-15'),
(157, 'amount', NULL, '5000000.00000000'),
(157, 'payment_method', NULL, 'BankTransfer'),
(157, 'payment_type', NULL, 'InvoicePayment'),
(157, 'reference_no', NULL, 'Gouya-PHASE01-2036'),
(157, 'sms_reminder', NULL, 'None'),
(157, 'assigned_user_id', NULL, '1'),
(157, 'createdtime', NULL, '2026-07-15 22:04:30'),
(157, 'description', NULL, 'آزمون واقعی پرداخت و تخصیص تراکنشی به فاکتور.'),
(157, 'record_id', NULL, '2148'),
(157, 'record_module', NULL, 'GouyaPayments'),
(158, 'label', NULL, 'سرویس نصب و راه&zwnj;اندازی پکیج پیشرفته (نمونه فاز ۲)'),
(158, 'ticket_no', NULL, 'TT9'),
(158, 'assigned_user_id', NULL, '1'),
(158, 'parent_id', NULL, '2036'),
(158, 'ticketpriorities', NULL, 'High'),
(158, 'ticketseverities', NULL, 'Major'),
(158, 'ticketstatus', NULL, 'In Progress'),
(158, 'ticketcategories', NULL, 'Other Problem'),
(158, 'hours', NULL, '0.00000000'),
(158, 'days', NULL, '0.00000000'),
(158, 'createdtime', NULL, '2026-07-16 00:38:10'),
(158, 'modifiedby', NULL, '1'),
(158, 'ticket_title', NULL, 'سرویس نصب و راه&zwnj;اندازی پکیج پیشرفته (نمونه فاز ۲)'),
(158, 'description', NULL, 'درخواست عملیاتی سرویس برای آزمون ارتباط کامل حساب، فرد، تاریخچه و گردش وضعیت.'),
(158, 'contact_id', NULL, '2107'),
(158, 'source', NULL, 'CRM'),
(158, 'record_id', NULL, '2149'),
(158, 'record_module', NULL, 'HelpDesk'),
(159, 'label', NULL, 'سفارش خرید پکیج پیشرفته حساب کامران دادجو (نمونه فاز ۲)'),
(159, 'purchaseorder_no', NULL, 'PO1'),
(159, 'subject', NULL, 'سفارش خرید پکیج پیشرفته حساب کامران دادجو (نمونه فاز ۲)'),
(159, 'vendor_id', NULL, '2126'),
(159, 'requisition_no', NULL, 'Gouya-PHASE02-PO-2036'),
(159, 'contact_id', NULL, '2107'),
(159, 'duedate', NULL, '2026-07-30'),
(159, 'txtAdjustment', NULL, '0.00000000'),
(159, 'salescommission', NULL, '0.000'),
(159, 'exciseduty', NULL, '0.000'),
(159, 'hdnGrandTotal', NULL, '15000000.00000000'),
(159, 'hdnSubTotal', NULL, '15000000.00000000'),
(159, 'hdnTaxType', NULL, 'group'),
(159, 'hdnS_H_Amount', NULL, '0.00000000'),
(159, 'postatus', NULL, 'Approved'),
(159, 'assigned_user_id', NULL, '1'),
(159, 'createdtime', NULL, '2026-07-16 00:38:10'),
(159, 'modifiedby', NULL, '1'),
(159, 'currency_id', NULL, '2'),
(159, 'conversion_rate', NULL, '1.000'),
(159, 'bill_street', NULL, 'تهران'),
(159, 'ship_street', NULL, 'تهران'),
(159, 'description', NULL, 'سفارش خرید استاندارد دارای حساب، تأمین&zwnj;کننده، قلم کالا و تاریخچه وضعیت.'),
(159, 'productid', NULL, '2053'),
(159, 'quantity', NULL, '1.000'),
(159, 'listprice', NULL, '15000000.00000000'),
(159, 'comment', NULL, 'قلم آزمایشی فاز ۲'),
(159, 'tax1', NULL, '0.000'),
(159, 'tax2', NULL, '0.000'),
(159, 'tax3', NULL, '0.000'),
(159, 'pre_tax_total', NULL, '15000000.00000000'),
(159, 'paid', NULL, '0.00000000'),
(159, 'balance', NULL, '15000000.00000000'),
(159, 'hdnS_H_Percent', NULL, '0.000'),
(159, 'source', NULL, 'CRM'),
(159, 'account_id', NULL, '2036'),
(159, 'record_id', NULL, '2150'),
(159, 'record_module', NULL, 'PurchaseOrder'),
(160, 'label', NULL, 'مشارکت واقعی حساب ۲۰۳۶ [Gouya-PHASE03]'),
(160, 'participation_no', NULL, 'PAR1'),
(160, 'subject', NULL, 'مشارکت واقعی حساب ۲۰۳۶ [Gouya-PHASE03]'),
(160, 'account_id', NULL, '2036'),
(160, 'contact_id', NULL, '2107'),
(160, 'participation_type', NULL, 'Member'),
(160, 'role_name', NULL, 'عضو تجاری'),
(160, 'participation_status', NULL, 'Active'),
(160, 'start_date', NULL, '2026-07-18'),
(160, 'share_percent', NULL, '25.000'),
(160, 'contribution_amount', NULL, '2500000.00000000'),
(160, 'assigned_user_id', NULL, '1'),
(160, 'createdtime', NULL, '2026-07-18 01:04:54'),
(160, 'description', NULL, 'رکورد واقعی آزمون مرحله سوم کارتابل حساب.'),
(160, 'record_id', NULL, '2151'),
(160, 'record_module', NULL, 'GouyaParticipations'),
(161, 'label', NULL, 'سرنخ مشارکت حساب ۲۰۳۶ [Gouya-PHASE03]'),
(161, 'firstname', NULL, 'سرنخ'),
(161, 'lead_no', NULL, 'LEA1103'),
(161, 'lastname', NULL, 'مشارکت حساب ۲۰۳۶ [Gouya-PHASE03]'),
(161, 'company', NULL, 'حساب نمونه ۲۰۳۶'),
(161, 'leadsource', NULL, 'Referral'),
(161, 'leadstatus', NULL, 'Pre Qualified'),
(161, 'annualrevenue', NULL, '0.00000000'),
(161, 'assigned_user_id', NULL, '1'),
(161, 'createdtime', NULL, '2026-07-18 01:04:54'),
(161, 'modifiedby', NULL, '1'),
(161, 'source', NULL, 'CRM'),
(161, 'record_id', NULL, '2152'),
(161, 'record_module', NULL, 'Leads'),
(163, 'label', NULL, 'پاسخ واقعی نظرسنجی رضایت حساب 2036 [Gouya-PHASE04]'),
(163, 'response_no', NULL, 'SRV1'),
(163, 'subject', NULL, 'پاسخ واقعی نظرسنجی رضایت حساب 2036 [Gouya-PHASE04]'),
(163, 'account_id', NULL, '2036'),
(163, 'contact_id', NULL, '2107'),
(163, 'survey_title', NULL, 'سنجش رضایت از فرایند فروش'),
(163, 'response_status', NULL, 'Submitted'),
(163, 'channel', NULL, 'Web'),
(163, 'started_at', NULL, '2026-07-18 02:58:33'),
(163, 'submitted_at', NULL, '2026-07-18 03:03:33'),
(163, 'score', NULL, '92.50'),
(163, 'nps', NULL, '9'),
(163, 'answers_json', NULL, '{&quot;overall_satisfaction&quot;:9,&quot;recommendation&quot;:9,&quot;comment&quot;:&quot;پاسخ واقعی آزمایشی فاز چهارم&quot;}'),
(163, 'assigned_user_id', NULL, '1'),
(163, 'createdtime', NULL, '2026-07-18 03:03:33'),
(163, 'description', NULL, 'پاسخ واقعی جهت آزمون یکپارچگی کارتابل حساب.'),
(163, 'record_id', NULL, '2153'),
(163, 'record_module', NULL, 'GouyaSurveyResponses'),
(164, 'label', NULL, 'قرارداد فروش واقعی حساب 2036 [Gouya-PHASE04]'),
(164, 'contract_no', NULL, 'SC1'),
(164, 'subject', NULL, 'قرارداد فروش واقعی حساب 2036 [Gouya-PHASE04]'),
(164, 'account_id', NULL, '2036'),
(164, 'contact_id', NULL, '2107'),
(164, 'potential_id', NULL, '2040'),
(164, 'contract_status', NULL, 'Active'),
(164, 'contract_type', NULL, 'Sale'),
(164, 'start_date', NULL, '2026-07-18'),
(164, 'end_date', NULL, '2027-07-18'),
(164, 'signed_date', NULL, '2026-07-18'),
(164, 'renewal_date', NULL, '2027-06-18'),
(164, 'contract_value', NULL, '16350000.00000000'),
(164, 'currency_id', NULL, '1'),
(164, 'conversion_rate', NULL, '1.000'),
(164, 'version_no', NULL, '1'),
(164, 'assigned_user_id', NULL, '1'),
(164, 'createdtime', NULL, '2026-07-18 03:03:33'),
(164, 'description', NULL, 'قرارداد واقعی جهت آزمون چرخه عمر و ارتباطات حساب.'),
(164, 'record_id', NULL, '2154'),
(164, 'record_module', NULL, 'GouyaSalesContracts'),
(165, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040300-4657-Campaign'),
(165, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718040300-4657-Campaign'),
(165, 'campaign_no', NULL, 'CAM1'),
(165, 'campaignstatus', NULL, 'Planning'),
(165, 'assigned_user_id', NULL, '1'),
(165, 'createdtime', NULL, '2026-07-18 04:03:00'),
(165, 'modifiedby', NULL, '1'),
(165, 'expectedrevenue', NULL, '0.00000000'),
(165, 'budgetcost', NULL, '0.00000000'),
(165, 'actualcost', NULL, '0.00000000'),
(165, 'expectedroi', NULL, '0.00000000'),
(165, 'actualroi', NULL, '0.00000000'),
(165, 'source', NULL, 'CRM'),
(165, 'record_id', NULL, '2155'),
(165, 'record_module', NULL, 'Campaigns'),
(167, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938-Campaign'),
(167, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938-Campaign'),
(167, 'campaign_no', NULL, 'CAM2'),
(167, 'campaignstatus', NULL, 'Planning'),
(167, 'assigned_user_id', NULL, '1'),
(167, 'createdtime', NULL, '2026-07-18 04:03:33'),
(167, 'modifiedby', NULL, '1'),
(167, 'expectedrevenue', NULL, '0.00000000'),
(167, 'budgetcost', NULL, '0.00000000'),
(167, 'actualcost', NULL, '0.00000000'),
(167, 'expectedroi', NULL, '0.00000000'),
(167, 'actualroi', NULL, '0.00000000'),
(167, 'source', NULL, 'CRM'),
(167, 'record_id', NULL, '2156'),
(167, 'record_module', NULL, 'Campaigns'),
(168, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(168, 'firstname', NULL, 'آزمون'),
(168, 'lead_no', NULL, 'LEA1104'),
(168, 'phone', NULL, '+989121112233'),
(168, 'lastname', NULL, 'یکپارچگی سرنخ'),
(168, 'mobile', NULL, '+989121112233'),
(168, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938'),
(168, 'designation', NULL, 'مدیر تست'),
(168, 'email', NULL, 'lead-smoke@example.test'),
(168, 'website', NULL, 'https://example.test'),
(168, 'industry', NULL, 'خدماتی'),
(168, 'leadstatus', NULL, 'جدید'),
(168, 'annualrevenue', NULL, '0.00000000'),
(168, 'rating', NULL, 'زیاد'),
(168, 'assigned_user_id', NULL, '1'),
(168, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(168, 'createdtime', NULL, '2026-07-18 04:03:34'),
(168, 'modifiedby', NULL, '1'),
(168, 'lane', NULL, 'آدرس اصلی تست'),
(168, 'code', NULL, '1111111111'),
(168, 'city', NULL, 'تهران'),
(168, 'country', NULL, 'ایران'),
(168, 'state', NULL, 'تهران'),
(168, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040333-5938'),
(168, 'source', NULL, 'CRM'),
(168, 'cf_lead_party_type', NULL, 'حقوقی'),
(168, 'cf_economic_code', NULL, '411111111111'),
(168, 'cf_registration_no', NULL, '98765'),
(168, 'cf_national_id', NULL, '10101010101'),
(168, 'cf_primary_region', NULL, 'منطقه یک'),
(168, 'cf_primary_lat', NULL, '35.6892000'),
(168, 'cf_primary_lng', NULL, '51.3890000'),
(168, 'cf_other_region', NULL, 'منطقه دو'),
(168, 'cf_other_country', NULL, 'ایران'),
(168, 'cf_other_state', NULL, 'البرز'),
(168, 'cf_other_city', NULL, 'کرج'),
(168, 'cf_other_code', NULL, '2222222222'),
(168, 'cf_other_street', NULL, 'آدرس دوم تست'),
(168, 'cf_other_lat', NULL, '35.8400000'),
(168, 'cf_other_lng', NULL, '50.9391000'),
(168, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(168, 'cf_instagram', NULL, 'https://instagram.com/example'),
(168, 'record_id', NULL, '2157'),
(168, 'record_module', NULL, 'Leads'),
(169, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938.txt'),
(169, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938.txt'),
(169, 'createdtime', NULL, '2026-07-18 04:03:34'),
(169, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938.txt'),
(169, 'assigned_user_id', NULL, '1'),
(169, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(169, 'filetype', NULL, 'text/plain'),
(169, 'filesize', NULL, '69'),
(169, 'filelocationtype', NULL, 'I'),
(169, 'filestatus', NULL, '1'),
(169, 'folderid', NULL, '1'),
(169, 'note_no', NULL, 'DOC2'),
(169, 'modifiedby', NULL, '1'),
(169, 'source', NULL, 'Gouya LEADS'),
(169, 'record_id', NULL, '2158'),
(169, 'record_module', NULL, 'Documents'),
(171, 'phone', '+989121112233', '+989129998877'),
(171, 'mobile', '+989121112233', '+989129998877'),
(171, 'fax', '', '02166554433'),
(171, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(171, 'leadstatus', 'جدید', 'درجریان'),
(171, 'secondaryemail', 'finance-smoke@example.test', ''),
(172, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938-Task'),
(172, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718040333-5938-Task'),
(172, 'assigned_user_id', NULL, '1'),
(172, 'date_start', NULL, '2026-07-18'),
(172, 'time_start', NULL, '10:00'),
(172, 'due_date', NULL, '2026-07-18'),
(172, 'duration_hours', NULL, '10'),
(172, 'duration_minutes', NULL, '30'),
(172, 'activitytype', NULL, 'Task'),
(172, 'createdtime', NULL, '2026-07-18 04:03:34'),
(172, 'taskpriority', NULL, 'Medium'),
(172, 'visibility', NULL, 'Public'),
(172, 'modifiedby', NULL, '1'),
(172, 'source', NULL, 'CRM'),
(172, 'taskstatus', NULL, 'Not Started'),
(172, 'record_id', NULL, '2160'),
(172, 'record_module', NULL, 'Calendar'),
(177, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955-Campaign'),
(177, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955-Campaign'),
(177, 'campaign_no', NULL, 'CAM3'),
(177, 'campaignstatus', NULL, 'Planning'),
(177, 'assigned_user_id', NULL, '1'),
(177, 'createdtime', NULL, '2026-07-18 04:04:06'),
(177, 'modifiedby', NULL, '1'),
(177, 'expectedrevenue', NULL, '0.00000000'),
(177, 'budgetcost', NULL, '0.00000000'),
(177, 'actualcost', NULL, '0.00000000'),
(177, 'expectedroi', NULL, '0.00000000'),
(177, 'actualroi', NULL, '0.00000000'),
(177, 'source', NULL, 'CRM'),
(177, 'record_id', NULL, '2161'),
(177, 'record_module', NULL, 'Campaigns'),
(178, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(178, 'firstname', NULL, 'آزمون'),
(178, 'lead_no', NULL, 'LEA1105'),
(178, 'phone', NULL, '+989121112233'),
(178, 'lastname', NULL, 'یکپارچگی سرنخ'),
(178, 'mobile', NULL, '+989121112233'),
(178, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955'),
(178, 'designation', NULL, 'مدیر تست'),
(178, 'email', NULL, 'lead-smoke@example.test'),
(178, 'website', NULL, 'https://example.test'),
(178, 'industry', NULL, 'خدماتی'),
(178, 'leadstatus', NULL, 'جدید'),
(178, 'annualrevenue', NULL, '0.00000000'),
(178, 'rating', NULL, 'زیاد'),
(178, 'assigned_user_id', NULL, '1'),
(178, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(178, 'createdtime', NULL, '2026-07-18 04:04:06'),
(178, 'modifiedby', NULL, '1'),
(178, 'lane', NULL, 'آدرس اصلی تست'),
(178, 'code', NULL, '1111111111'),
(178, 'city', NULL, 'تهران'),
(178, 'country', NULL, 'ایران'),
(178, 'state', NULL, 'تهران'),
(178, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955'),
(178, 'source', NULL, 'CRM'),
(178, 'cf_lead_party_type', NULL, 'حقوقی'),
(178, 'cf_economic_code', NULL, '411111111111'),
(178, 'cf_registration_no', NULL, '98765'),
(178, 'cf_national_id', NULL, '10101010101'),
(178, 'cf_primary_region', NULL, 'منطقه یک'),
(178, 'cf_primary_lat', NULL, '35.6892000'),
(178, 'cf_primary_lng', NULL, '51.3890000'),
(178, 'cf_other_region', NULL, 'منطقه دو'),
(178, 'cf_other_country', NULL, 'ایران'),
(178, 'cf_other_state', NULL, 'البرز'),
(178, 'cf_other_city', NULL, 'کرج'),
(178, 'cf_other_code', NULL, '2222222222'),
(178, 'cf_other_street', NULL, 'آدرس دوم تست'),
(178, 'cf_other_lat', NULL, '35.8400000'),
(178, 'cf_other_lng', NULL, '50.9391000'),
(178, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(178, 'cf_instagram', NULL, 'https://instagram.com/example'),
(178, 'record_id', NULL, '2162'),
(178, 'record_module', NULL, 'Leads'),
(179, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955.txt'),
(179, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955.txt'),
(179, 'createdtime', NULL, '2026-07-18 04:04:06'),
(179, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955.txt'),
(179, 'assigned_user_id', NULL, '1'),
(179, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(179, 'filetype', NULL, 'text/plain'),
(179, 'filesize', NULL, '69'),
(179, 'filelocationtype', NULL, 'I'),
(179, 'filestatus', NULL, '1'),
(179, 'folderid', NULL, '1'),
(179, 'note_no', NULL, 'DOC3'),
(179, 'modifiedby', NULL, '1'),
(179, 'source', NULL, 'Gouya LEADS'),
(179, 'record_id', NULL, '2163'),
(179, 'record_module', NULL, 'Documents'),
(181, 'phone', '+989121112233', '+989129998877'),
(181, 'mobile', '+989121112233', '+989129998877'),
(181, 'fax', '', '02166554433'),
(181, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(181, 'leadstatus', 'جدید', 'درجریان'),
(181, 'secondaryemail', 'finance-smoke@example.test', ''),
(182, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955-Task'),
(182, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955-Task'),
(182, 'assigned_user_id', NULL, '1'),
(182, 'date_start', NULL, '2026-07-18'),
(182, 'time_start', NULL, '10:00'),
(182, 'due_date', NULL, '2026-07-18'),
(182, 'duration_hours', NULL, '10'),
(182, 'duration_minutes', NULL, '30'),
(182, 'activitytype', NULL, 'Task'),
(182, 'createdtime', NULL, '2026-07-18 04:04:06'),
(182, 'taskpriority', NULL, 'Medium'),
(182, 'visibility', NULL, 'Public'),
(182, 'modifiedby', NULL, '1'),
(182, 'source', NULL, 'CRM'),
(182, 'taskstatus', NULL, 'Not Started'),
(182, 'record_id', NULL, '2165'),
(182, 'record_module', NULL, 'Calendar'),
(183, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(184, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955'),
(184, 'accountname', NULL, 'Gouya-LEAD-SMOKE-20260718040406-5955'),
(184, 'account_no', NULL, 'ACC3'),
(184, 'phone', NULL, '+989129998877'),
(184, 'website', NULL, 'https://example.test'),
(184, 'fax', NULL, '02166554433'),
(184, 'email1', NULL, 'lead-updated@example.test'),
(184, 'rating', NULL, 'زیاد'),
(184, 'industry', NULL, 'خدماتی'),
(184, 'annual_revenue', NULL, '0.00000000'),
(184, 'assigned_user_id', NULL, '1'),
(184, 'createdtime', NULL, '2026-07-18 04:04:07'),
(184, 'modifiedby', NULL, '1'),
(184, 'bill_street', NULL, 'آدرس اصلی تست'),
(184, 'ship_street', NULL, 'آدرس دوم تست'),
(184, 'bill_city', NULL, 'تهران'),
(184, 'ship_city', NULL, 'کرج'),
(184, 'bill_state', NULL, 'تهران'),
(184, 'ship_state', NULL, 'البرز'),
(184, 'bill_code', NULL, '1111111111'),
(184, 'ship_code', NULL, '2222222222'),
(184, 'bill_country', NULL, 'ایران'),
(184, 'ship_country', NULL, 'ایران'),
(184, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955'),
(184, 'isconvertedfromlead', NULL, '1'),
(184, 'source', NULL, 'WEBSERVICE'),
(184, 'cf_party_type', NULL, 'حقوقی'),
(184, 'cf_first_name', NULL, 'آزمون'),
(184, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(184, 'cf_portal_visible', NULL, '1'),
(184, 'cf_registration_no', NULL, '98765'),
(184, 'cf_national_id', NULL, '10101010101'),
(184, 'cf_economic_code', NULL, '411111111111'),
(184, 'cf_bill_region', NULL, 'منطقه یک'),
(184, 'cf_ship_region', NULL, 'منطقه دو'),
(184, 'cf_bill_lat', NULL, '35.6900000'),
(184, 'cf_bill_lng', NULL, '51.3900000'),
(184, 'cf_ship_lat', NULL, '35.8400000'),
(184, 'cf_ship_lng', NULL, '50.9400000'),
(184, 'cf_credit_amount', NULL, '0.00000000'),
(184, 'cf_credit_limit', NULL, '0.00000000'),
(184, 'cf_sales_discount', NULL, '0.000'),
(184, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(184, 'cf_instagram', NULL, 'https://instagram.com/example'),
(184, 'record_id', NULL, '2166'),
(184, 'record_module', NULL, 'Accounts'),
(185, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(185, 'firstname', NULL, 'آزمون'),
(185, 'contact_no', NULL, 'CON52'),
(185, 'phone', NULL, '+989129998877'),
(185, 'lastname', NULL, 'یکپارچگی سرنخ'),
(185, 'mobile', NULL, '+989129998877'),
(185, 'account_id', NULL, '2166'),
(185, 'title', NULL, 'مدیر تست'),
(185, 'fax', NULL, '02166554433'),
(185, 'email', NULL, 'lead-updated@example.test'),
(185, 'assigned_user_id', NULL, '1'),
(185, 'createdtime', NULL, '2026-07-18 04:04:07'),
(185, 'modifiedby', NULL, '1'),
(185, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(185, 'mailingcity', NULL, 'تهران'),
(185, 'mailingstate', NULL, 'تهران'),
(185, 'mailingcountry', NULL, 'ایران'),
(185, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040406-5955'),
(185, 'isconvertedfromlead', NULL, '1'),
(185, 'source', NULL, 'WEBSERVICE'),
(185, 'record_id', NULL, '2167'),
(185, 'record_module', NULL, 'Contacts'),
(192, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253-Campaign'),
(192, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253-Campaign'),
(192, 'campaign_no', NULL, 'CAM4'),
(192, 'campaignstatus', NULL, 'Planning'),
(192, 'assigned_user_id', NULL, '1'),
(192, 'createdtime', NULL, '2026-07-18 04:06:48'),
(192, 'modifiedby', NULL, '1'),
(192, 'expectedrevenue', NULL, '0.00000000'),
(192, 'budgetcost', NULL, '0.00000000'),
(192, 'actualcost', NULL, '0.00000000'),
(192, 'expectedroi', NULL, '0.00000000'),
(192, 'actualroi', NULL, '0.00000000'),
(192, 'source', NULL, 'CRM'),
(192, 'record_id', NULL, '2168'),
(192, 'record_module', NULL, 'Campaigns'),
(193, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(193, 'firstname', NULL, 'آزمون'),
(193, 'lead_no', NULL, 'LEA1106'),
(193, 'phone', NULL, '+989121112233'),
(193, 'lastname', NULL, 'یکپارچگی سرنخ'),
(193, 'mobile', NULL, '+989121112233'),
(193, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253'),
(193, 'designation', NULL, 'مدیر تست'),
(193, 'email', NULL, 'lead-smoke@example.test'),
(193, 'website', NULL, 'https://example.test'),
(193, 'industry', NULL, 'خدماتی'),
(193, 'leadstatus', NULL, 'جدید'),
(193, 'annualrevenue', NULL, '0.00000000'),
(193, 'rating', NULL, 'زیاد'),
(193, 'assigned_user_id', NULL, '1'),
(193, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(193, 'createdtime', NULL, '2026-07-18 04:06:48'),
(193, 'modifiedby', NULL, '1'),
(193, 'lane', NULL, 'آدرس اصلی تست'),
(193, 'code', NULL, '1111111111'),
(193, 'city', NULL, 'تهران'),
(193, 'country', NULL, 'ایران'),
(193, 'state', NULL, 'تهران'),
(193, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040648-8253'),
(193, 'source', NULL, 'CRM'),
(193, 'cf_lead_party_type', NULL, 'حقوقی'),
(193, 'cf_economic_code', NULL, '411111111111'),
(193, 'cf_registration_no', NULL, '98765'),
(193, 'cf_national_id', NULL, '10101010101'),
(193, 'cf_primary_region', NULL, 'منطقه یک'),
(193, 'cf_primary_lat', NULL, '35.6892000'),
(193, 'cf_primary_lng', NULL, '51.3890000'),
(193, 'cf_other_region', NULL, 'منطقه دو'),
(193, 'cf_other_country', NULL, 'ایران'),
(193, 'cf_other_state', NULL, 'البرز'),
(193, 'cf_other_city', NULL, 'کرج'),
(193, 'cf_other_code', NULL, '2222222222'),
(193, 'cf_other_street', NULL, 'آدرس دوم تست'),
(193, 'cf_other_lat', NULL, '35.8400000'),
(193, 'cf_other_lng', NULL, '50.9391000'),
(193, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(193, 'cf_instagram', NULL, 'https://instagram.com/example'),
(193, 'record_id', NULL, '2169'),
(193, 'record_module', NULL, 'Leads'),
(194, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253.txt'),
(194, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253.txt'),
(194, 'createdtime', NULL, '2026-07-18 04:06:48'),
(194, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253.txt'),
(194, 'assigned_user_id', NULL, '1'),
(194, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(194, 'filetype', NULL, 'text/plain'),
(194, 'filesize', NULL, '69'),
(194, 'filelocationtype', NULL, 'I'),
(194, 'filestatus', NULL, '1'),
(194, 'folderid', NULL, '1'),
(194, 'note_no', NULL, 'DOC4'),
(194, 'modifiedby', NULL, '1'),
(194, 'source', NULL, 'Gouya LEADS'),
(194, 'record_id', NULL, '2170'),
(194, 'record_module', NULL, 'Documents'),
(196, 'phone', '+989121112233', '+989129998877'),
(196, 'mobile', '+989121112233', '+989129998877'),
(196, 'fax', '', '02166554433'),
(196, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(196, 'leadstatus', 'جدید', 'درجریان'),
(196, 'secondaryemail', 'finance-smoke@example.test', ''),
(197, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253-Task'),
(197, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253-Task'),
(197, 'assigned_user_id', NULL, '1'),
(197, 'date_start', NULL, '2026-07-18'),
(197, 'time_start', NULL, '10:00'),
(197, 'due_date', NULL, '2026-07-18'),
(197, 'duration_hours', NULL, '10'),
(197, 'duration_minutes', NULL, '30'),
(197, 'activitytype', NULL, 'Task'),
(197, 'createdtime', NULL, '2026-07-18 04:06:48'),
(197, 'taskpriority', NULL, 'Medium'),
(197, 'visibility', NULL, 'Public'),
(197, 'modifiedby', NULL, '1'),
(197, 'source', NULL, 'CRM'),
(197, 'taskstatus', NULL, 'Not Started'),
(197, 'record_id', NULL, '2172'),
(197, 'record_module', NULL, 'Calendar'),
(198, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(199, 'label', NULL, 'ورودی استاندارد'),
(199, 'lead_no', NULL, 'LEA1107'),
(199, 'phone', NULL, '+989121234567'),
(199, 'lastname', NULL, 'ورودی استاندارد'),
(199, 'mobile', NULL, '+989351234567'),
(199, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040648-8253-IMPORT'),
(199, 'email', NULL, 'csv-import@example.test'),
(199, 'leadstatus', NULL, 'جدید'),
(199, 'annualrevenue', NULL, '0.00000000'),
(199, 'assigned_user_id', NULL, '1'),
(199, 'createdtime', NULL, '2026-07-18 04:06:49'),
(199, 'modifiedby', NULL, '1'),
(199, 'source', NULL, 'CRM'),
(199, 'cf_lead_party_type', NULL, 'حقیقی'),
(199, 'cf_primary_lat', NULL, '0.0000000'),
(199, 'cf_primary_lng', NULL, '0.0000000'),
(199, 'cf_other_lat', NULL, '0.0000000'),
(199, 'cf_other_lng', NULL, '0.0000000'),
(199, 'record_id', NULL, '2173'),
(199, 'record_module', NULL, 'Leads'),
(205, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209-Campaign'),
(205, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209-Campaign'),
(205, 'campaign_no', NULL, 'CAM5'),
(205, 'campaignstatus', NULL, 'Planning'),
(205, 'assigned_user_id', NULL, '1'),
(205, 'createdtime', NULL, '2026-07-18 04:09:39'),
(205, 'modifiedby', NULL, '1'),
(205, 'expectedrevenue', NULL, '0.00000000'),
(205, 'budgetcost', NULL, '0.00000000'),
(205, 'actualcost', NULL, '0.00000000'),
(205, 'expectedroi', NULL, '0.00000000'),
(205, 'actualroi', NULL, '0.00000000'),
(205, 'source', NULL, 'CRM'),
(205, 'record_id', NULL, '2174'),
(205, 'record_module', NULL, 'Campaigns'),
(206, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(206, 'firstname', NULL, 'آزمون'),
(206, 'lead_no', NULL, 'LEA1108'),
(206, 'phone', NULL, '+989121112233'),
(206, 'lastname', NULL, 'یکپارچگی سرنخ'),
(206, 'mobile', NULL, '+989121112233'),
(206, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209'),
(206, 'designation', NULL, 'مدیر تست'),
(206, 'email', NULL, 'lead-smoke@example.test'),
(206, 'website', NULL, 'https://example.test'),
(206, 'industry', NULL, 'خدماتی'),
(206, 'leadstatus', NULL, 'جدید'),
(206, 'annualrevenue', NULL, '0.00000000'),
(206, 'rating', NULL, 'زیاد'),
(206, 'assigned_user_id', NULL, '1'),
(206, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(206, 'createdtime', NULL, '2026-07-18 04:09:40'),
(206, 'modifiedby', NULL, '1'),
(206, 'lane', NULL, 'آدرس اصلی تست'),
(206, 'code', NULL, '1111111111'),
(206, 'city', NULL, 'تهران'),
(206, 'country', NULL, 'ایران'),
(206, 'state', NULL, 'تهران'),
(206, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718040939-3209'),
(206, 'source', NULL, 'CRM'),
(206, 'cf_lead_party_type', NULL, 'حقوقی'),
(206, 'cf_economic_code', NULL, '411111111111'),
(206, 'cf_registration_no', NULL, '98765'),
(206, 'cf_national_id', NULL, '10101010101'),
(206, 'cf_primary_region', NULL, 'منطقه یک'),
(206, 'cf_primary_lat', NULL, '35.6892000'),
(206, 'cf_primary_lng', NULL, '51.3890000'),
(206, 'cf_other_region', NULL, 'منطقه دو'),
(206, 'cf_other_country', NULL, 'ایران'),
(206, 'cf_other_state', NULL, 'البرز'),
(206, 'cf_other_city', NULL, 'کرج'),
(206, 'cf_other_code', NULL, '2222222222'),
(206, 'cf_other_street', NULL, 'آدرس دوم تست'),
(206, 'cf_other_lat', NULL, '35.8400000'),
(206, 'cf_other_lng', NULL, '50.9391000'),
(206, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(206, 'cf_instagram', NULL, 'https://instagram.com/example'),
(206, 'record_id', NULL, '2175'),
(206, 'record_module', NULL, 'Leads'),
(207, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209.txt'),
(207, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209.txt'),
(207, 'createdtime', NULL, '2026-07-18 04:09:40'),
(207, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209.txt'),
(207, 'assigned_user_id', NULL, '1'),
(207, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(207, 'filetype', NULL, 'text/plain'),
(207, 'filesize', NULL, '69'),
(207, 'filelocationtype', NULL, 'I'),
(207, 'filestatus', NULL, '1'),
(207, 'folderid', NULL, '1'),
(207, 'note_no', NULL, 'DOC5'),
(207, 'modifiedby', NULL, '1'),
(207, 'source', NULL, 'Gouya LEADS'),
(207, 'record_id', NULL, '2176'),
(207, 'record_module', NULL, 'Documents'),
(209, 'phone', '+989121112233', '+989129998877'),
(209, 'mobile', '+989121112233', '+989129998877'),
(209, 'fax', '', '02166554433'),
(209, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(209, 'leadstatus', 'جدید', 'درجریان'),
(209, 'secondaryemail', 'finance-smoke@example.test', ''),
(210, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209-Task'),
(210, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209-Task'),
(210, 'assigned_user_id', NULL, '1'),
(210, 'date_start', NULL, '2026-07-18'),
(210, 'time_start', NULL, '10:00'),
(210, 'due_date', NULL, '2026-07-18'),
(210, 'duration_hours', NULL, '10'),
(210, 'duration_minutes', NULL, '30'),
(210, 'activitytype', NULL, 'Task'),
(210, 'createdtime', NULL, '2026-07-18 04:09:40'),
(210, 'taskpriority', NULL, 'Medium'),
(210, 'visibility', NULL, 'Public'),
(210, 'modifiedby', NULL, '1'),
(210, 'source', NULL, 'CRM'),
(210, 'taskstatus', NULL, 'Not Started'),
(210, 'record_id', NULL, '2178'),
(210, 'record_module', NULL, 'Calendar'),
(211, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(212, 'label', NULL, 'ورودی استاندارد'),
(212, 'lead_no', NULL, 'LEA1109'),
(212, 'phone', NULL, '+989121234567'),
(212, 'lastname', NULL, 'ورودی استاندارد'),
(212, 'mobile', NULL, '+989351234567'),
(212, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718040939-3209-IMPORT'),
(212, 'email', NULL, 'csv-import@example.test'),
(212, 'leadstatus', NULL, 'جدید'),
(212, 'annualrevenue', NULL, '0.00000000'),
(212, 'assigned_user_id', NULL, '1'),
(212, 'createdtime', NULL, '2026-07-18 04:09:40'),
(212, 'modifiedby', NULL, '1'),
(212, 'source', NULL, 'CRM'),
(212, 'cf_lead_party_type', NULL, 'حقیقی'),
(212, 'cf_primary_lat', NULL, '0.0000000'),
(212, 'cf_primary_lng', NULL, '0.0000000'),
(212, 'cf_other_lat', NULL, '0.0000000'),
(212, 'cf_other_lng', NULL, '0.0000000'),
(212, 'record_id', NULL, '2179'),
(212, 'record_module', NULL, 'Leads'),
(218, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053-Campaign'),
(218, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053-Campaign'),
(218, 'campaign_no', NULL, 'CAM6'),
(218, 'campaignstatus', NULL, 'Planning'),
(218, 'assigned_user_id', NULL, '1'),
(218, 'createdtime', NULL, '2026-07-18 04:32:51'),
(218, 'modifiedby', NULL, '1'),
(218, 'expectedrevenue', NULL, '0.00000000'),
(218, 'budgetcost', NULL, '0.00000000'),
(218, 'actualcost', NULL, '0.00000000'),
(218, 'expectedroi', NULL, '0.00000000'),
(218, 'actualroi', NULL, '0.00000000'),
(218, 'source', NULL, 'CRM'),
(218, 'record_id', NULL, '2180'),
(218, 'record_module', NULL, 'Campaigns'),
(219, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(219, 'firstname', NULL, 'آزمون'),
(219, 'lead_no', NULL, 'LEA1110'),
(219, 'phone', NULL, '+989121112233'),
(219, 'lastname', NULL, 'یکپارچگی سرنخ'),
(219, 'mobile', NULL, '+989121112233'),
(219, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053'),
(219, 'designation', NULL, 'مدیر تست'),
(219, 'email', NULL, 'lead-smoke@example.test'),
(219, 'website', NULL, 'https://example.test'),
(219, 'industry', NULL, 'خدماتی'),
(219, 'leadstatus', NULL, 'جدید'),
(219, 'annualrevenue', NULL, '0.00000000'),
(219, 'rating', NULL, 'زیاد'),
(219, 'assigned_user_id', NULL, '1'),
(219, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(219, 'createdtime', NULL, '2026-07-18 04:32:51'),
(219, 'modifiedby', NULL, '1'),
(219, 'lane', NULL, 'آدرس اصلی تست'),
(219, 'code', NULL, '1111111111'),
(219, 'city', NULL, 'تهران'),
(219, 'country', NULL, 'ایران'),
(219, 'state', NULL, 'تهران'),
(219, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043251-9053'),
(219, 'source', NULL, 'CRM'),
(219, 'cf_lead_party_type', NULL, 'حقوقی'),
(219, 'cf_economic_code', NULL, '411111111111'),
(219, 'cf_registration_no', NULL, '98765'),
(219, 'cf_national_id', NULL, '10101010101'),
(219, 'cf_primary_region', NULL, 'منطقه یک'),
(219, 'cf_primary_lat', NULL, '35.6892000'),
(219, 'cf_primary_lng', NULL, '51.3890000'),
(219, 'cf_other_region', NULL, 'منطقه دو'),
(219, 'cf_other_country', NULL, 'ایران'),
(219, 'cf_other_state', NULL, 'البرز'),
(219, 'cf_other_city', NULL, 'کرج'),
(219, 'cf_other_code', NULL, '2222222222'),
(219, 'cf_other_street', NULL, 'آدرس دوم تست'),
(219, 'cf_other_lat', NULL, '35.8400000'),
(219, 'cf_other_lng', NULL, '50.9391000'),
(219, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(219, 'cf_instagram', NULL, 'https://instagram.com/example'),
(219, 'record_id', NULL, '2181'),
(219, 'record_module', NULL, 'Leads'),
(220, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053.txt'),
(220, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053.txt'),
(220, 'createdtime', NULL, '2026-07-18 04:32:51'),
(220, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053.txt'),
(220, 'assigned_user_id', NULL, '1'),
(220, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(220, 'filetype', NULL, 'text/plain'),
(220, 'filesize', NULL, '69'),
(220, 'filelocationtype', NULL, 'I'),
(220, 'filestatus', NULL, '1'),
(220, 'folderid', NULL, '1'),
(220, 'note_no', NULL, 'DOC6'),
(220, 'modifiedby', NULL, '1'),
(220, 'source', NULL, 'Gouya LEADS'),
(220, 'record_id', NULL, '2182'),
(220, 'record_module', NULL, 'Documents'),
(222, 'phone', '+989121112233', '+989129998877'),
(222, 'mobile', '+989121112233', '+989129998877'),
(222, 'fax', '', '02166554433'),
(222, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(222, 'leadstatus', 'جدید', 'درجریان'),
(222, 'secondaryemail', 'finance-smoke@example.test', ''),
(223, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053-Task'),
(223, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053-Task'),
(223, 'assigned_user_id', NULL, '1'),
(223, 'date_start', NULL, '2026-07-18'),
(223, 'time_start', NULL, '10:00'),
(223, 'due_date', NULL, '2026-07-18'),
(223, 'duration_hours', NULL, '10'),
(223, 'duration_minutes', NULL, '30'),
(223, 'activitytype', NULL, 'Task'),
(223, 'createdtime', NULL, '2026-07-18 04:32:52'),
(223, 'taskpriority', NULL, 'Medium'),
(223, 'visibility', NULL, 'Public'),
(223, 'modifiedby', NULL, '1'),
(223, 'source', NULL, 'CRM'),
(223, 'taskstatus', NULL, 'Not Started'),
(223, 'record_id', NULL, '2184'),
(223, 'record_module', NULL, 'Calendar'),
(224, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(225, 'label', NULL, 'ورودی استاندارد'),
(225, 'lead_no', NULL, 'LEA1111'),
(225, 'phone', NULL, '+989121234567'),
(225, 'lastname', NULL, 'ورودی استاندارد'),
(225, 'mobile', NULL, '+989351234567'),
(225, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043251-9053-IMPORT'),
(225, 'email', NULL, 'csv-import@example.test'),
(225, 'leadstatus', NULL, 'جدید'),
(225, 'annualrevenue', NULL, '0.00000000'),
(225, 'assigned_user_id', NULL, '1'),
(225, 'createdtime', NULL, '2026-07-18 04:32:52'),
(225, 'modifiedby', NULL, '1'),
(225, 'source', NULL, 'CRM'),
(225, 'cf_lead_party_type', NULL, 'حقیقی'),
(225, 'cf_primary_lat', NULL, '0.0000000'),
(225, 'cf_primary_lng', NULL, '0.0000000'),
(225, 'cf_other_lat', NULL, '0.0000000'),
(225, 'cf_other_lng', NULL, '0.0000000'),
(225, 'record_id', NULL, '2185'),
(225, 'record_module', NULL, 'Leads'),
(231, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749-Campaign'),
(231, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749-Campaign'),
(231, 'campaign_no', NULL, 'CAM7'),
(231, 'campaignstatus', NULL, 'Planning'),
(231, 'assigned_user_id', NULL, '1'),
(231, 'createdtime', NULL, '2026-07-18 04:33:14'),
(231, 'modifiedby', NULL, '1'),
(231, 'expectedrevenue', NULL, '0.00000000'),
(231, 'budgetcost', NULL, '0.00000000'),
(231, 'actualcost', NULL, '0.00000000'),
(231, 'expectedroi', NULL, '0.00000000'),
(231, 'actualroi', NULL, '0.00000000'),
(231, 'source', NULL, 'CRM'),
(231, 'record_id', NULL, '2186'),
(231, 'record_module', NULL, 'Campaigns'),
(232, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(232, 'firstname', NULL, 'آزمون'),
(232, 'lead_no', NULL, 'LEA1112'),
(232, 'phone', NULL, '+989121112233'),
(232, 'lastname', NULL, 'یکپارچگی سرنخ'),
(232, 'mobile', NULL, '+989121112233'),
(232, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749'),
(232, 'designation', NULL, 'مدیر تست'),
(232, 'email', NULL, 'lead-smoke@example.test'),
(232, 'website', NULL, 'https://example.test'),
(232, 'industry', NULL, 'خدماتی'),
(232, 'leadstatus', NULL, 'جدید'),
(232, 'annualrevenue', NULL, '0.00000000'),
(232, 'rating', NULL, 'زیاد'),
(232, 'assigned_user_id', NULL, '1'),
(232, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(232, 'createdtime', NULL, '2026-07-18 04:33:14'),
(232, 'modifiedby', NULL, '1'),
(232, 'lane', NULL, 'آدرس اصلی تست'),
(232, 'code', NULL, '1111111111'),
(232, 'city', NULL, 'تهران'),
(232, 'country', NULL, 'ایران'),
(232, 'state', NULL, 'تهران'),
(232, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043314-6749'),
(232, 'source', NULL, 'CRM'),
(232, 'cf_lead_party_type', NULL, 'حقوقی'),
(232, 'cf_economic_code', NULL, '411111111111'),
(232, 'cf_registration_no', NULL, '98765'),
(232, 'cf_national_id', NULL, '10101010101'),
(232, 'cf_primary_region', NULL, 'منطقه یک'),
(232, 'cf_primary_lat', NULL, '35.6892000'),
(232, 'cf_primary_lng', NULL, '51.3890000'),
(232, 'cf_other_region', NULL, 'منطقه دو'),
(232, 'cf_other_country', NULL, 'ایران'),
(232, 'cf_other_state', NULL, 'البرز'),
(232, 'cf_other_city', NULL, 'کرج'),
(232, 'cf_other_code', NULL, '2222222222'),
(232, 'cf_other_street', NULL, 'آدرس دوم تست'),
(232, 'cf_other_lat', NULL, '35.8400000'),
(232, 'cf_other_lng', NULL, '50.9391000'),
(232, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(232, 'cf_instagram', NULL, 'https://instagram.com/example'),
(232, 'record_id', NULL, '2187'),
(232, 'record_module', NULL, 'Leads'),
(233, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749.txt'),
(233, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749.txt'),
(233, 'createdtime', NULL, '2026-07-18 04:33:14'),
(233, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749.txt'),
(233, 'assigned_user_id', NULL, '1'),
(233, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(233, 'filetype', NULL, 'text/plain'),
(233, 'filesize', NULL, '69'),
(233, 'filelocationtype', NULL, 'I'),
(233, 'filestatus', NULL, '1'),
(233, 'folderid', NULL, '1'),
(233, 'note_no', NULL, 'DOC7'),
(233, 'modifiedby', NULL, '1'),
(233, 'source', NULL, 'Gouya LEADS'),
(233, 'record_id', NULL, '2188'),
(233, 'record_module', NULL, 'Documents'),
(235, 'phone', '+989121112233', '+989129998877'),
(235, 'mobile', '+989121112233', '+989129998877'),
(235, 'fax', '', '02166554433'),
(235, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(235, 'leadstatus', 'جدید', 'درجریان'),
(235, 'secondaryemail', 'finance-smoke@example.test', ''),
(236, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749-Task'),
(236, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749-Task'),
(236, 'assigned_user_id', NULL, '1'),
(236, 'date_start', NULL, '2026-07-18'),
(236, 'time_start', NULL, '10:00'),
(236, 'due_date', NULL, '2026-07-18'),
(236, 'duration_hours', NULL, '10'),
(236, 'duration_minutes', NULL, '30'),
(236, 'activitytype', NULL, 'Task'),
(236, 'createdtime', NULL, '2026-07-18 04:33:14'),
(236, 'taskpriority', NULL, 'Medium'),
(236, 'visibility', NULL, 'Public'),
(236, 'modifiedby', NULL, '1'),
(236, 'source', NULL, 'CRM'),
(236, 'taskstatus', NULL, 'Not Started'),
(236, 'record_id', NULL, '2190'),
(236, 'record_module', NULL, 'Calendar'),
(237, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(238, 'label', NULL, 'ورودی استاندارد'),
(238, 'lead_no', NULL, 'LEA1113'),
(238, 'phone', NULL, '+989121234567'),
(238, 'lastname', NULL, 'ورودی استاندارد'),
(238, 'mobile', NULL, '+989351234567'),
(238, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043314-6749-IMPORT'),
(238, 'email', NULL, 'csv-import@example.test'),
(238, 'leadstatus', NULL, 'جدید'),
(238, 'annualrevenue', NULL, '0.00000000'),
(238, 'assigned_user_id', NULL, '1'),
(238, 'createdtime', NULL, '2026-07-18 04:33:15'),
(238, 'modifiedby', NULL, '1'),
(238, 'source', NULL, 'CRM'),
(238, 'cf_lead_party_type', NULL, 'حقیقی'),
(238, 'cf_primary_lat', NULL, '0.0000000'),
(238, 'cf_primary_lng', NULL, '0.0000000'),
(238, 'cf_other_lat', NULL, '0.0000000'),
(238, 'cf_other_lng', NULL, '0.0000000'),
(238, 'record_id', NULL, '2191'),
(238, 'record_module', NULL, 'Leads'),
(244, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174-Campaign'),
(244, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174-Campaign'),
(244, 'campaign_no', NULL, 'CAM8'),
(244, 'campaignstatus', NULL, 'Planning'),
(244, 'assigned_user_id', NULL, '1'),
(244, 'createdtime', NULL, '2026-07-18 04:33:36'),
(244, 'modifiedby', NULL, '1'),
(244, 'expectedrevenue', NULL, '0.00000000'),
(244, 'budgetcost', NULL, '0.00000000'),
(244, 'actualcost', NULL, '0.00000000'),
(244, 'expectedroi', NULL, '0.00000000'),
(244, 'actualroi', NULL, '0.00000000'),
(244, 'source', NULL, 'CRM'),
(244, 'record_id', NULL, '2192'),
(244, 'record_module', NULL, 'Campaigns'),
(245, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(245, 'firstname', NULL, 'آزمون'),
(245, 'lead_no', NULL, 'LEA1114'),
(245, 'phone', NULL, '+989121112233'),
(245, 'lastname', NULL, 'یکپارچگی سرنخ'),
(245, 'mobile', NULL, '+989121112233'),
(245, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174'),
(245, 'designation', NULL, 'مدیر تست'),
(245, 'email', NULL, 'lead-smoke@example.test'),
(245, 'website', NULL, 'https://example.test'),
(245, 'industry', NULL, 'خدماتی'),
(245, 'leadstatus', NULL, 'جدید'),
(245, 'annualrevenue', NULL, '0.00000000'),
(245, 'rating', NULL, 'زیاد'),
(245, 'assigned_user_id', NULL, '1'),
(245, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(245, 'createdtime', NULL, '2026-07-18 04:33:36'),
(245, 'modifiedby', NULL, '1'),
(245, 'lane', NULL, 'آدرس اصلی تست'),
(245, 'code', NULL, '1111111111'),
(245, 'city', NULL, 'تهران'),
(245, 'country', NULL, 'ایران'),
(245, 'state', NULL, 'تهران'),
(245, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174'),
(245, 'source', NULL, 'CRM'),
(245, 'cf_lead_party_type', NULL, 'حقوقی'),
(245, 'cf_economic_code', NULL, '411111111111'),
(245, 'cf_registration_no', NULL, '98765'),
(245, 'cf_national_id', NULL, '10101010101'),
(245, 'cf_primary_region', NULL, 'منطقه یک'),
(245, 'cf_primary_lat', NULL, '35.6892000'),
(245, 'cf_primary_lng', NULL, '51.3890000'),
(245, 'cf_other_region', NULL, 'منطقه دو'),
(245, 'cf_other_country', NULL, 'ایران'),
(245, 'cf_other_state', NULL, 'البرز'),
(245, 'cf_other_city', NULL, 'کرج'),
(245, 'cf_other_code', NULL, '2222222222'),
(245, 'cf_other_street', NULL, 'آدرس دوم تست'),
(245, 'cf_other_lat', NULL, '35.8400000'),
(245, 'cf_other_lng', NULL, '50.9391000'),
(245, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(245, 'cf_instagram', NULL, 'https://instagram.com/example'),
(245, 'record_id', NULL, '2193'),
(245, 'record_module', NULL, 'Leads'),
(246, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174.txt'),
(246, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174.txt'),
(246, 'createdtime', NULL, '2026-07-18 04:33:36'),
(246, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174.txt'),
(246, 'assigned_user_id', NULL, '1'),
(246, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(246, 'filetype', NULL, 'text/plain'),
(246, 'filesize', NULL, '69'),
(246, 'filelocationtype', NULL, 'I'),
(246, 'filestatus', NULL, '1'),
(246, 'folderid', NULL, '1'),
(246, 'note_no', NULL, 'DOC8'),
(246, 'modifiedby', NULL, '1'),
(246, 'source', NULL, 'Gouya LEADS'),
(246, 'record_id', NULL, '2194'),
(246, 'record_module', NULL, 'Documents'),
(248, 'phone', '+989121112233', '+989129998877'),
(248, 'mobile', '+989121112233', '+989129998877'),
(248, 'fax', '', '02166554433'),
(248, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(248, 'leadstatus', 'جدید', 'درجریان'),
(248, 'secondaryemail', 'finance-smoke@example.test', ''),
(249, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174-Task'),
(249, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174-Task'),
(249, 'assigned_user_id', NULL, '1'),
(249, 'date_start', NULL, '2026-07-18'),
(249, 'time_start', NULL, '10:00'),
(249, 'due_date', NULL, '2026-07-18'),
(249, 'duration_hours', NULL, '10'),
(249, 'duration_minutes', NULL, '30'),
(249, 'activitytype', NULL, 'Task'),
(249, 'createdtime', NULL, '2026-07-18 04:33:37'),
(249, 'taskpriority', NULL, 'Medium'),
(249, 'visibility', NULL, 'Public'),
(249, 'modifiedby', NULL, '1'),
(249, 'source', NULL, 'CRM'),
(249, 'taskstatus', NULL, 'Not Started'),
(249, 'record_id', NULL, '2196'),
(249, 'record_module', NULL, 'Calendar'),
(250, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(251, 'label', NULL, 'ورودی استاندارد'),
(251, 'lead_no', NULL, 'LEA1115'),
(251, 'phone', NULL, '+989121234567'),
(251, 'lastname', NULL, 'ورودی استاندارد'),
(251, 'mobile', NULL, '+989351234567'),
(251, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174-IMPORT'),
(251, 'email', NULL, 'csv-import@example.test'),
(251, 'leadstatus', NULL, 'جدید'),
(251, 'annualrevenue', NULL, '0.00000000'),
(251, 'assigned_user_id', NULL, '1'),
(251, 'createdtime', NULL, '2026-07-18 04:33:37'),
(251, 'modifiedby', NULL, '1'),
(251, 'source', NULL, 'CRM'),
(251, 'cf_lead_party_type', NULL, 'حقیقی'),
(251, 'cf_primary_lat', NULL, '0.0000000'),
(251, 'cf_primary_lng', NULL, '0.0000000'),
(251, 'cf_other_lat', NULL, '0.0000000'),
(251, 'cf_other_lng', NULL, '0.0000000'),
(251, 'record_id', NULL, '2197'),
(251, 'record_module', NULL, 'Leads'),
(252, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174'),
(252, 'accountname', NULL, 'Gouya-LEAD-SMOKE-20260718043336-8174'),
(252, 'account_no', NULL, 'ACC4'),
(252, 'phone', NULL, '+989129998877'),
(252, 'website', NULL, 'https://example.test'),
(252, 'fax', NULL, '02166554433'),
(252, 'email1', NULL, 'lead-updated@example.test'),
(252, 'rating', NULL, 'زیاد'),
(252, 'industry', NULL, 'خدماتی'),
(252, 'annual_revenue', NULL, '0.00000000'),
(252, 'assigned_user_id', NULL, '1'),
(252, 'createdtime', NULL, '2026-07-18 04:33:37'),
(252, 'modifiedby', NULL, '1'),
(252, 'bill_street', NULL, 'آدرس اصلی تست'),
(252, 'ship_street', NULL, 'آدرس دوم تست'),
(252, 'bill_city', NULL, 'تهران'),
(252, 'ship_city', NULL, 'کرج'),
(252, 'bill_state', NULL, 'تهران'),
(252, 'ship_state', NULL, 'البرز'),
(252, 'bill_code', NULL, '1111111111'),
(252, 'ship_code', NULL, '2222222222'),
(252, 'bill_country', NULL, 'ایران'),
(252, 'ship_country', NULL, 'ایران'),
(252, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174'),
(252, 'isconvertedfromlead', NULL, '1'),
(252, 'source', NULL, 'WEBSERVICE'),
(252, 'cf_party_type', NULL, 'حقوقی'),
(252, 'cf_first_name', NULL, 'آزمون'),
(252, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(252, 'cf_portal_visible', NULL, '1'),
(252, 'cf_registration_no', NULL, '98765'),
(252, 'cf_national_id', NULL, '10101010101'),
(252, 'cf_economic_code', NULL, '411111111111'),
(252, 'cf_bill_region', NULL, 'منطقه یک'),
(252, 'cf_ship_region', NULL, 'منطقه دو'),
(252, 'cf_bill_lat', NULL, '35.6900000'),
(252, 'cf_bill_lng', NULL, '51.3900000'),
(252, 'cf_ship_lat', NULL, '35.8400000'),
(252, 'cf_ship_lng', NULL, '50.9400000'),
(252, 'cf_credit_amount', NULL, '0.00000000'),
(252, 'cf_credit_limit', NULL, '0.00000000'),
(252, 'cf_sales_discount', NULL, '0.000'),
(252, 'cf_linkedin', NULL, 'https://linkedin.com/company/example');
INSERT IGNORE INTO `vtiger_modtracker_detail` (`id`, `fieldname`, `prevalue`, `postvalue`) VALUES
(252, 'cf_instagram', NULL, 'https://instagram.com/example'),
(252, 'record_id', NULL, '2198'),
(252, 'record_module', NULL, 'Accounts'),
(253, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(253, 'firstname', NULL, 'آزمون'),
(253, 'contact_no', NULL, 'CON53'),
(253, 'phone', NULL, '+989129998877'),
(253, 'lastname', NULL, 'یکپارچگی سرنخ'),
(253, 'mobile', NULL, '+989129998877'),
(253, 'account_id', NULL, '2198'),
(253, 'title', NULL, 'مدیر تست'),
(253, 'fax', NULL, '02166554433'),
(253, 'email', NULL, 'lead-updated@example.test'),
(253, 'assigned_user_id', NULL, '1'),
(253, 'createdtime', NULL, '2026-07-18 04:33:37'),
(253, 'modifiedby', NULL, '1'),
(253, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(253, 'mailingcity', NULL, 'تهران'),
(253, 'mailingstate', NULL, 'تهران'),
(253, 'mailingcountry', NULL, 'ایران'),
(253, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043336-8174'),
(253, 'isconvertedfromlead', NULL, '1'),
(253, 'source', NULL, 'WEBSERVICE'),
(253, 'record_id', NULL, '2199'),
(253, 'record_module', NULL, 'Contacts'),
(261, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234-Campaign'),
(261, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234-Campaign'),
(261, 'campaign_no', NULL, 'CAM9'),
(261, 'campaignstatus', NULL, 'Planning'),
(261, 'assigned_user_id', NULL, '1'),
(261, 'createdtime', NULL, '2026-07-18 04:34:58'),
(261, 'modifiedby', NULL, '1'),
(261, 'expectedrevenue', NULL, '0.00000000'),
(261, 'budgetcost', NULL, '0.00000000'),
(261, 'actualcost', NULL, '0.00000000'),
(261, 'expectedroi', NULL, '0.00000000'),
(261, 'actualroi', NULL, '0.00000000'),
(261, 'source', NULL, 'CRM'),
(261, 'record_id', NULL, '2200'),
(261, 'record_module', NULL, 'Campaigns'),
(262, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(262, 'firstname', NULL, 'آزمون'),
(262, 'lead_no', NULL, 'LEA1116'),
(262, 'phone', NULL, '+989121112233'),
(262, 'lastname', NULL, 'یکپارچگی سرنخ'),
(262, 'mobile', NULL, '+989121112233'),
(262, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234'),
(262, 'designation', NULL, 'مدیر تست'),
(262, 'email', NULL, 'lead-smoke@example.test'),
(262, 'website', NULL, 'https://example.test'),
(262, 'industry', NULL, 'خدماتی'),
(262, 'leadstatus', NULL, 'جدید'),
(262, 'annualrevenue', NULL, '0.00000000'),
(262, 'rating', NULL, 'زیاد'),
(262, 'assigned_user_id', NULL, '1'),
(262, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(262, 'createdtime', NULL, '2026-07-18 04:34:58'),
(262, 'modifiedby', NULL, '1'),
(262, 'lane', NULL, 'آدرس اصلی تست'),
(262, 'code', NULL, '1111111111'),
(262, 'city', NULL, 'تهران'),
(262, 'country', NULL, 'ایران'),
(262, 'state', NULL, 'تهران'),
(262, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234'),
(262, 'source', NULL, 'CRM'),
(262, 'cf_lead_party_type', NULL, 'حقوقی'),
(262, 'cf_economic_code', NULL, '411111111111'),
(262, 'cf_registration_no', NULL, '98765'),
(262, 'cf_national_id', NULL, '10101010101'),
(262, 'cf_primary_region', NULL, 'منطقه یک'),
(262, 'cf_primary_lat', NULL, '35.6892000'),
(262, 'cf_primary_lng', NULL, '51.3890000'),
(262, 'cf_other_region', NULL, 'منطقه دو'),
(262, 'cf_other_country', NULL, 'ایران'),
(262, 'cf_other_state', NULL, 'البرز'),
(262, 'cf_other_city', NULL, 'کرج'),
(262, 'cf_other_code', NULL, '2222222222'),
(262, 'cf_other_street', NULL, 'آدرس دوم تست'),
(262, 'cf_other_lat', NULL, '35.8400000'),
(262, 'cf_other_lng', NULL, '50.9391000'),
(262, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(262, 'cf_instagram', NULL, 'https://instagram.com/example'),
(262, 'record_id', NULL, '2201'),
(262, 'record_module', NULL, 'Leads'),
(263, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234.txt'),
(263, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234.txt'),
(263, 'createdtime', NULL, '2026-07-18 04:34:58'),
(263, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234.txt'),
(263, 'assigned_user_id', NULL, '1'),
(263, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(263, 'filetype', NULL, 'text/plain'),
(263, 'filesize', NULL, '69'),
(263, 'filelocationtype', NULL, 'I'),
(263, 'filestatus', NULL, '1'),
(263, 'folderid', NULL, '1'),
(263, 'note_no', NULL, 'DOC9'),
(263, 'modifiedby', NULL, '1'),
(263, 'source', NULL, 'Gouya LEADS'),
(263, 'record_id', NULL, '2202'),
(263, 'record_module', NULL, 'Documents'),
(265, 'phone', '+989121112233', '+989129998877'),
(265, 'mobile', '+989121112233', '+989129998877'),
(265, 'fax', '', '02166554433'),
(265, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(265, 'leadstatus', 'جدید', 'درجریان'),
(265, 'secondaryemail', 'finance-smoke@example.test', ''),
(266, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234-Task'),
(266, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234-Task'),
(266, 'assigned_user_id', NULL, '1'),
(266, 'date_start', NULL, '2026-07-18'),
(266, 'time_start', NULL, '10:00'),
(266, 'due_date', NULL, '2026-07-18'),
(266, 'duration_hours', NULL, '10'),
(266, 'duration_minutes', NULL, '30'),
(266, 'activitytype', NULL, 'Task'),
(266, 'createdtime', NULL, '2026-07-18 04:34:58'),
(266, 'taskpriority', NULL, 'Medium'),
(266, 'visibility', NULL, 'Public'),
(266, 'modifiedby', NULL, '1'),
(266, 'source', NULL, 'CRM'),
(266, 'taskstatus', NULL, 'Not Started'),
(266, 'record_id', NULL, '2204'),
(266, 'record_module', NULL, 'Calendar'),
(267, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(268, 'label', NULL, 'ورودی استاندارد'),
(268, 'lead_no', NULL, 'LEA1117'),
(268, 'phone', NULL, '+989121234567'),
(268, 'lastname', NULL, 'ورودی استاندارد'),
(268, 'mobile', NULL, '+989351234567'),
(268, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234-IMPORT'),
(268, 'email', NULL, 'csv-import@example.test'),
(268, 'leadstatus', NULL, 'جدید'),
(268, 'annualrevenue', NULL, '0.00000000'),
(268, 'assigned_user_id', NULL, '1'),
(268, 'createdtime', NULL, '2026-07-18 04:34:59'),
(268, 'modifiedby', NULL, '1'),
(268, 'source', NULL, 'CRM'),
(268, 'cf_lead_party_type', NULL, 'حقیقی'),
(268, 'cf_primary_lat', NULL, '0.0000000'),
(268, 'cf_primary_lng', NULL, '0.0000000'),
(268, 'cf_other_lat', NULL, '0.0000000'),
(268, 'cf_other_lng', NULL, '0.0000000'),
(268, 'record_id', NULL, '2205'),
(268, 'record_module', NULL, 'Leads'),
(269, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234'),
(269, 'accountname', NULL, 'Gouya-LEAD-SMOKE-20260718043458-8234'),
(269, 'account_no', NULL, 'ACC5'),
(269, 'phone', NULL, '+989129998877'),
(269, 'website', NULL, 'https://example.test'),
(269, 'fax', NULL, '02166554433'),
(269, 'email1', NULL, 'lead-updated@example.test'),
(269, 'rating', NULL, 'زیاد'),
(269, 'industry', NULL, 'خدماتی'),
(269, 'annual_revenue', NULL, '0.00000000'),
(269, 'assigned_user_id', NULL, '1'),
(269, 'createdtime', NULL, '2026-07-18 04:34:59'),
(269, 'modifiedby', NULL, '1'),
(269, 'bill_street', NULL, 'آدرس اصلی تست'),
(269, 'ship_street', NULL, 'آدرس دوم تست'),
(269, 'bill_city', NULL, 'تهران'),
(269, 'ship_city', NULL, 'کرج'),
(269, 'bill_state', NULL, 'تهران'),
(269, 'ship_state', NULL, 'البرز'),
(269, 'bill_code', NULL, '1111111111'),
(269, 'ship_code', NULL, '2222222222'),
(269, 'bill_country', NULL, 'ایران'),
(269, 'ship_country', NULL, 'ایران'),
(269, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234'),
(269, 'isconvertedfromlead', NULL, '1'),
(269, 'source', NULL, 'WEBSERVICE'),
(269, 'cf_party_type', NULL, 'حقوقی'),
(269, 'cf_first_name', NULL, 'آزمون'),
(269, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(269, 'cf_portal_visible', NULL, '1'),
(269, 'cf_registration_no', NULL, '98765'),
(269, 'cf_national_id', NULL, '10101010101'),
(269, 'cf_economic_code', NULL, '411111111111'),
(269, 'cf_bill_region', NULL, 'منطقه یک'),
(269, 'cf_ship_region', NULL, 'منطقه دو'),
(269, 'cf_bill_lat', NULL, '35.6900000'),
(269, 'cf_bill_lng', NULL, '51.3900000'),
(269, 'cf_ship_lat', NULL, '35.8400000'),
(269, 'cf_ship_lng', NULL, '50.9400000'),
(269, 'cf_credit_amount', NULL, '0.00000000'),
(269, 'cf_credit_limit', NULL, '0.00000000'),
(269, 'cf_sales_discount', NULL, '0.000'),
(269, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(269, 'cf_instagram', NULL, 'https://instagram.com/example'),
(269, 'record_id', NULL, '2206'),
(269, 'record_module', NULL, 'Accounts'),
(270, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(270, 'firstname', NULL, 'آزمون'),
(270, 'contact_no', NULL, 'CON54'),
(270, 'phone', NULL, '+989129998877'),
(270, 'lastname', NULL, 'یکپارچگی سرنخ'),
(270, 'mobile', NULL, '+989129998877'),
(270, 'account_id', NULL, '2206'),
(270, 'title', NULL, 'مدیر تست'),
(270, 'fax', NULL, '02166554433'),
(270, 'email', NULL, 'lead-updated@example.test'),
(270, 'assigned_user_id', NULL, '1'),
(270, 'createdtime', NULL, '2026-07-18 04:34:59'),
(270, 'modifiedby', NULL, '1'),
(270, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(270, 'mailingcity', NULL, 'تهران'),
(270, 'mailingstate', NULL, 'تهران'),
(270, 'mailingcountry', NULL, 'ایران'),
(270, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043458-8234'),
(270, 'isconvertedfromlead', NULL, '1'),
(270, 'source', NULL, 'WEBSERVICE'),
(270, 'record_id', NULL, '2207'),
(270, 'record_module', NULL, 'Contacts'),
(278, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440-Campaign'),
(278, 'campaignname', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440-Campaign'),
(278, 'campaign_no', NULL, 'CAM10'),
(278, 'campaignstatus', NULL, 'Planning'),
(278, 'assigned_user_id', NULL, '1'),
(278, 'createdtime', NULL, '2026-07-18 04:35:55'),
(278, 'modifiedby', NULL, '1'),
(278, 'expectedrevenue', NULL, '0.00000000'),
(278, 'budgetcost', NULL, '0.00000000'),
(278, 'actualcost', NULL, '0.00000000'),
(278, 'expectedroi', NULL, '0.00000000'),
(278, 'actualroi', NULL, '0.00000000'),
(278, 'source', NULL, 'CRM'),
(278, 'record_id', NULL, '2208'),
(278, 'record_module', NULL, 'Campaigns'),
(279, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(279, 'firstname', NULL, 'آزمون'),
(279, 'lead_no', NULL, 'LEA1118'),
(279, 'phone', NULL, '+989121112233'),
(279, 'lastname', NULL, 'یکپارچگی سرنخ'),
(279, 'mobile', NULL, '+989121112233'),
(279, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440'),
(279, 'designation', NULL, 'مدیر تست'),
(279, 'email', NULL, 'lead-smoke@example.test'),
(279, 'website', NULL, 'https://example.test'),
(279, 'industry', NULL, 'خدماتی'),
(279, 'leadstatus', NULL, 'جدید'),
(279, 'annualrevenue', NULL, '0.00000000'),
(279, 'rating', NULL, 'زیاد'),
(279, 'assigned_user_id', NULL, '1'),
(279, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(279, 'createdtime', NULL, '2026-07-18 04:35:55'),
(279, 'modifiedby', NULL, '1'),
(279, 'lane', NULL, 'آدرس اصلی تست'),
(279, 'code', NULL, '1111111111'),
(279, 'city', NULL, 'تهران'),
(279, 'country', NULL, 'ایران'),
(279, 'state', NULL, 'تهران'),
(279, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440'),
(279, 'source', NULL, 'CRM'),
(279, 'cf_lead_party_type', NULL, 'حقوقی'),
(279, 'cf_economic_code', NULL, '411111111111'),
(279, 'cf_registration_no', NULL, '98765'),
(279, 'cf_national_id', NULL, '10101010101'),
(279, 'cf_primary_region', NULL, 'منطقه یک'),
(279, 'cf_primary_lat', NULL, '35.6892000'),
(279, 'cf_primary_lng', NULL, '51.3890000'),
(279, 'cf_other_region', NULL, 'منطقه دو'),
(279, 'cf_other_country', NULL, 'ایران'),
(279, 'cf_other_state', NULL, 'البرز'),
(279, 'cf_other_city', NULL, 'کرج'),
(279, 'cf_other_code', NULL, '2222222222'),
(279, 'cf_other_street', NULL, 'آدرس دوم تست'),
(279, 'cf_other_lat', NULL, '35.8400000'),
(279, 'cf_other_lng', NULL, '50.9391000'),
(279, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(279, 'cf_instagram', NULL, 'https://instagram.com/example'),
(279, 'record_id', NULL, '2209'),
(279, 'record_module', NULL, 'Leads'),
(280, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440.txt'),
(280, 'notes_title', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440.txt'),
(280, 'createdtime', NULL, '2026-07-18 04:35:55'),
(280, 'filename', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440.txt'),
(280, 'assigned_user_id', NULL, '1'),
(280, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(280, 'filetype', NULL, 'text/plain'),
(280, 'filesize', NULL, '69'),
(280, 'filelocationtype', NULL, 'I'),
(280, 'filestatus', NULL, '1'),
(280, 'folderid', NULL, '1'),
(280, 'note_no', NULL, 'DOC10'),
(280, 'modifiedby', NULL, '1'),
(280, 'source', NULL, 'Gouya LEADS'),
(280, 'record_id', NULL, '2210'),
(280, 'record_module', NULL, 'Documents'),
(282, 'phone', '+989121112233', '+989129998877'),
(282, 'mobile', '+989121112233', '+989129998877'),
(282, 'fax', '', '02166554433'),
(282, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(282, 'leadstatus', 'جدید', 'درجریان'),
(282, 'secondaryemail', 'finance-smoke@example.test', ''),
(283, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440-Task'),
(283, 'subject', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440-Task'),
(283, 'assigned_user_id', NULL, '1'),
(283, 'date_start', NULL, '2026-07-18'),
(283, 'time_start', NULL, '10:00'),
(283, 'due_date', NULL, '2026-07-18'),
(283, 'duration_hours', NULL, '10'),
(283, 'duration_minutes', NULL, '30'),
(283, 'activitytype', NULL, 'Task'),
(283, 'createdtime', NULL, '2026-07-18 04:35:55'),
(283, 'taskpriority', NULL, 'Medium'),
(283, 'visibility', NULL, 'Public'),
(283, 'modifiedby', NULL, '1'),
(283, 'source', NULL, 'CRM'),
(283, 'taskstatus', NULL, 'Not Started'),
(283, 'record_id', NULL, '2212'),
(283, 'record_module', NULL, 'Calendar'),
(284, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(285, 'label', NULL, 'ورودی استاندارد'),
(285, 'lead_no', NULL, 'LEA1119'),
(285, 'phone', NULL, '+989121234567'),
(285, 'lastname', NULL, 'ورودی استاندارد'),
(285, 'mobile', NULL, '+989351234567'),
(285, 'company', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440-IMPORT'),
(285, 'email', NULL, 'csv-import@example.test'),
(285, 'leadstatus', NULL, 'جدید'),
(285, 'annualrevenue', NULL, '0.00000000'),
(285, 'assigned_user_id', NULL, '1'),
(285, 'createdtime', NULL, '2026-07-18 04:35:55'),
(285, 'modifiedby', NULL, '1'),
(285, 'source', NULL, 'CRM'),
(285, 'cf_lead_party_type', NULL, 'حقیقی'),
(285, 'cf_primary_lat', NULL, '0.0000000'),
(285, 'cf_primary_lng', NULL, '0.0000000'),
(285, 'cf_other_lat', NULL, '0.0000000'),
(285, 'cf_other_lng', NULL, '0.0000000'),
(285, 'record_id', NULL, '2213'),
(285, 'record_module', NULL, 'Leads'),
(286, 'label', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440'),
(286, 'accountname', NULL, 'Gouya-LEAD-SMOKE-20260718043554-3440'),
(286, 'account_no', NULL, 'ACC6'),
(286, 'phone', NULL, '+989129998877'),
(286, 'website', NULL, 'https://example.test'),
(286, 'fax', NULL, '02166554433'),
(286, 'email1', NULL, 'lead-updated@example.test'),
(286, 'rating', NULL, 'زیاد'),
(286, 'industry', NULL, 'خدماتی'),
(286, 'annual_revenue', NULL, '0.00000000'),
(286, 'assigned_user_id', NULL, '1'),
(286, 'createdtime', NULL, '2026-07-18 04:35:56'),
(286, 'modifiedby', NULL, '1'),
(286, 'bill_street', NULL, 'آدرس اصلی تست'),
(286, 'ship_street', NULL, 'آدرس دوم تست'),
(286, 'bill_city', NULL, 'تهران'),
(286, 'ship_city', NULL, 'کرج'),
(286, 'bill_state', NULL, 'تهران'),
(286, 'ship_state', NULL, 'البرز'),
(286, 'bill_code', NULL, '1111111111'),
(286, 'ship_code', NULL, '2222222222'),
(286, 'bill_country', NULL, 'ایران'),
(286, 'ship_country', NULL, 'ایران'),
(286, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440'),
(286, 'isconvertedfromlead', NULL, '1'),
(286, 'source', NULL, 'WEBSERVICE'),
(286, 'cf_party_type', NULL, 'حقوقی'),
(286, 'cf_first_name', NULL, 'آزمون'),
(286, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(286, 'cf_portal_visible', NULL, '1'),
(286, 'cf_registration_no', NULL, '98765'),
(286, 'cf_national_id', NULL, '10101010101'),
(286, 'cf_economic_code', NULL, '411111111111'),
(286, 'cf_bill_region', NULL, 'منطقه یک'),
(286, 'cf_ship_region', NULL, 'منطقه دو'),
(286, 'cf_bill_lat', NULL, '35.6900000'),
(286, 'cf_bill_lng', NULL, '51.3900000'),
(286, 'cf_ship_lat', NULL, '35.8400000'),
(286, 'cf_ship_lng', NULL, '50.9400000'),
(286, 'cf_credit_amount', NULL, '0.00000000'),
(286, 'cf_credit_limit', NULL, '0.00000000'),
(286, 'cf_sales_discount', NULL, '0.000'),
(286, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(286, 'cf_instagram', NULL, 'https://instagram.com/example'),
(286, 'record_id', NULL, '2214'),
(286, 'record_module', NULL, 'Accounts'),
(287, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(287, 'firstname', NULL, 'آزمون'),
(287, 'contact_no', NULL, 'CON55'),
(287, 'phone', NULL, '+989129998877'),
(287, 'lastname', NULL, 'یکپارچگی سرنخ'),
(287, 'mobile', NULL, '+989129998877'),
(287, 'account_id', NULL, '2214'),
(287, 'title', NULL, 'مدیر تست'),
(287, 'fax', NULL, '02166554433'),
(287, 'email', NULL, 'lead-updated@example.test'),
(287, 'assigned_user_id', NULL, '1'),
(287, 'createdtime', NULL, '2026-07-18 04:35:56'),
(287, 'modifiedby', NULL, '1'),
(287, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(287, 'mailingcity', NULL, 'تهران'),
(287, 'mailingstate', NULL, 'تهران'),
(287, 'mailingcountry', NULL, 'ایران'),
(287, 'description', NULL, 'Temporary integration record: Gouya-LEAD-SMOKE-20260718043554-3440'),
(287, 'isconvertedfromlead', NULL, '1'),
(287, 'source', NULL, 'WEBSERVICE'),
(287, 'record_id', NULL, '2215'),
(287, 'record_module', NULL, 'Contacts'),
(295, 'label', NULL, 'لیست هدف واقعی حساب ۲۰۳۶ [Gouya-PHASE05]'),
(295, 'targetlist_no', NULL, 'TL1'),
(295, 'subject', NULL, 'لیست هدف واقعی حساب ۲۰۳۶ [Gouya-PHASE05]'),
(295, 'account_id', NULL, '2036'),
(295, 'list_type', NULL, 'Dynamic'),
(295, 'purpose', NULL, 'پیگیری مشتریان فعال و دارای فرصت فروش'),
(295, 'list_status', NULL, 'Active'),
(295, 'valid_from', NULL, '2026-07-18'),
(295, 'valid_to', NULL, '2026-10-16'),
(295, 'filter_definition', NULL, '{&quot;version&quot;:1,&quot;match&quot;:&quot;all&quot;,&quot;conditions&quot;:[{&quot;field&quot;:&quot;accountstatus&quot;,&quot;operator&quot;:&quot;eq&quot;,&quot;value&quot;:&quot;Active&quot;}]}'),
(295, 'assigned_user_id', NULL, '1'),
(295, 'createdtime', NULL, '2026-07-18 04:56:10'),
(295, 'description', NULL, 'داده واقعی آزمایشی برای کنترل چرخه لیست هدف کارتابل حساب.'),
(295, 'record_id', NULL, '2216'),
(295, 'record_module', NULL, 'GouyaTargetLists'),
(296, 'label', NULL, 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(296, 'bankaccount_no', NULL, 'BA1'),
(296, 'subject', NULL, 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(296, 'account_id', NULL, '2036'),
(296, 'holder_name', NULL, 'آقای کامران دادجو (مثال)'),
(296, 'bank_name', NULL, 'بانک نمونه'),
(296, 'iban_last4', NULL, '0001'),
(296, 'account_type', NULL, 'Current'),
(296, 'account_status', NULL, 'Active'),
(296, 'is_primary', NULL, '1'),
(296, 'verified_at', NULL, '2026-07-18 04:56:10'),
(296, 'assigned_user_id', NULL, '1'),
(296, 'createdtime', NULL, '2026-07-18 04:56:10'),
(296, 'description', NULL, 'شبای ساختگی معتبر از نظر کنترلی؛ فقط برای آزمون رمزنگاری و ارتباط دیتابیس.'),
(296, 'record_id', NULL, '2217'),
(296, 'record_module', NULL, 'GouyaBankAccounts'),
(297, 'label', NULL, 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(297, 'bankaccount_no', NULL, 'BA2'),
(297, 'subject', NULL, 'حساب بانکی آزمایشی امن [Gouya-PHASE05]'),
(297, 'account_id', NULL, '2036'),
(297, 'holder_name', NULL, 'آقای کامران دادجو (مثال)'),
(297, 'bank_name', NULL, 'بانک نمونه'),
(297, 'iban_last4', NULL, '0001'),
(297, 'iban_hash', NULL, '38718b77be274571727c921a2024fc5296d4463c462fa783ce50bc7bf047785c'),
(297, 'iban_ciphertext', NULL, 'v1:v0GGNCKNCDc3dCD9:eaSN66HkKoPSpXAmRaTLAA==:luUaefA+Po1UqlimBTG0VtbGtA6TIUExzf8='),
(297, 'account_type', NULL, 'Current'),
(297, 'account_status', NULL, 'Active'),
(297, 'is_primary', NULL, '1'),
(297, 'verified_at', NULL, '2026-07-18 04:57:31'),
(297, 'assigned_user_id', NULL, '1'),
(297, 'createdtime', NULL, '2026-07-18 04:57:31'),
(297, 'description', NULL, 'شبای ساختگی معتبر از نظر کنترلی؛ فقط برای آزمون رمزنگاری و ارتباط دیتابیس.'),
(297, 'record_id', NULL, '2218'),
(297, 'record_module', NULL, 'GouyaBankAccounts'),
(298, 'label', NULL, 'پرداخت واقعی ودیعه حساب ۲۰۳۶ [Gouya-PHASE06]'),
(298, 'payment_no', NULL, 'PAY11'),
(298, 'subject', NULL, 'پرداخت واقعی ودیعه حساب ۲۰۳۶ [Gouya-PHASE06]'),
(298, 'account_id', NULL, '2036'),
(298, 'contact_id', NULL, '2107'),
(298, 'payment_direction', NULL, 'Incoming'),
(298, 'payment_status', NULL, 'Paid'),
(298, 'expected_date', NULL, '2026-07-18'),
(298, 'payment_date', NULL, '2026-07-18'),
(298, 'amount', NULL, '3000000.00000000'),
(298, 'currency_id', NULL, '2'),
(298, 'conversion_rate', NULL, '1.000'),
(298, 'payment_method', NULL, 'BankTransfer'),
(298, 'payment_type', NULL, 'AdvancePayment'),
(298, 'reference_no', NULL, 'Gouya-PHASE06-DEP-2036'),
(298, 'sms_reminder', NULL, 'None'),
(298, 'idempotency_key', NULL, 'Gouya-phase06-deposit-account-2036'),
(298, 'assigned_user_id', NULL, '1'),
(298, 'createdtime', NULL, '2026-07-18 07:46:05'),
(298, 'description', NULL, 'پرداخت مستقل و واقعی برای کنترل ظرفیت مالی ودیعه؛ به فاکتور تخصیص ندارد.'),
(298, 'record_id', NULL, '2219'),
(298, 'record_module', NULL, 'GouyaPayments'),
(299, 'label', NULL, 'ودیعه تضمینی واقعی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(299, 'deposit_no', NULL, 'DEP1'),
(299, 'subject', NULL, 'ودیعه تضمینی واقعی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(299, 'account_id', NULL, '2036'),
(299, 'contact_id', NULL, '2107'),
(299, 'deposit_type', NULL, 'Security'),
(299, 'deposit_status', NULL, 'Received'),
(299, 'received_date', NULL, '2026-07-18'),
(299, 'maturity_date', NULL, '2026-08-17'),
(299, 'expiry_date', NULL, '2027-01-14'),
(299, 'amount', NULL, '3000000.00000000'),
(299, 'applied_amount', NULL, '0.00000000'),
(299, 'returned_amount', NULL, '0.00000000'),
(299, 'currency_id', NULL, '2'),
(299, 'conversion_rate', NULL, '1.000'),
(299, 'payment_id', NULL, '2219'),
(299, 'reference_no', NULL, 'Gouya-PHASE06-DEP-2036'),
(299, 'assigned_user_id', NULL, '1'),
(299, 'createdtime', NULL, '2026-07-18 07:46:05'),
(299, 'description', NULL, 'ودیعه واقعی متصل به پرداخت دریافت&zwnj;شده؛ مانده و چرخه عمر توسط دامنه کنترل می&zwnj;شود.'),
(299, 'record_id', NULL, '2220'),
(299, 'record_module', NULL, 'GouyaDeposits'),
(300, 'label', NULL, 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(300, 'accountname', NULL, 'شعبه آزمایشی حساب ۲۰۳۶ [Gouya-PHASE06]'),
(300, 'account_no', NULL, 'ACC7'),
(300, 'phone', NULL, '02100002036'),
(300, 'account_id', NULL, '2036'),
(300, 'email1', NULL, 'branch2036@example.test'),
(300, 'annual_revenue', NULL, '0.00000000'),
(300, 'assigned_user_id', NULL, '1'),
(300, 'createdtime', NULL, '2026-07-18 07:46:05'),
(300, 'modifiedby', NULL, '1'),
(300, 'description', NULL, 'حساب زیرمجموعه واقعی برای آزمون رابطه، کارتابل، ACL و جلوگیری از حلقه.'),
(300, 'source', NULL, 'CRM'),
(300, 'cf_bill_lat', NULL, '0.0000000'),
(300, 'cf_bill_lng', NULL, '0.0000000'),
(300, 'cf_ship_lat', NULL, '0.0000000'),
(300, 'cf_ship_lng', NULL, '0.0000000'),
(300, 'cf_credit_amount', NULL, '0.00000000'),
(300, 'cf_credit_limit', NULL, '0.00000000'),
(300, 'cf_sales_discount', NULL, '0.000'),
(300, 'record_id', NULL, '2221'),
(300, 'record_module', NULL, 'Accounts'),
(301, 'label', NULL, 'شعبه مرکزی حساب 2036 [Gouya-PHASE07]'),
(301, 'location_no', NULL, 'LOC1'),
(301, 'subject', NULL, 'شعبه مرکزی حساب 2036 [Gouya-PHASE07]'),
(301, 'account_id', NULL, '2036'),
(301, 'location_type', NULL, 'Branch'),
(301, 'location_status', NULL, 'Active'),
(301, 'manager_contact_id', NULL, '2107'),
(301, 'phone', NULL, '02188770001'),
(301, 'email', NULL, 'branch2036@example.test'),
(301, 'country', NULL, 'ایران'),
(301, 'state', NULL, 'تهران'),
(301, 'city', NULL, 'تهران'),
(301, 'street', NULL, 'خیابان نمونه، ساختمان مرکزی'),
(301, 'postal_code', NULL, '1599911111'),
(301, 'latitude', NULL, '35.7219000'),
(301, 'longitude', NULL, '51.3347000'),
(301, 'timezone', NULL, 'Asia/Tehran'),
(301, 'daily_capacity', NULL, '0.00'),
(301, 'sales_channel', NULL, 'Direct'),
(301, 'is_primary', NULL, '1'),
(301, 'assigned_user_id', NULL, '1'),
(301, 'createdtime', NULL, '2026-07-18 08:21:37'),
(301, 'description', NULL, 'رکورد واقعی آزمایشی شعبه برای کنترل ارتباط کامل حساب، مدیر، نشانی و تاریخچه.'),
(301, 'record_id', NULL, '2222'),
(301, 'record_module', NULL, 'GouyaBusinessLocations'),
(302, 'label', NULL, 'مرکز سرویس حساب 2036 [Gouya-PHASE07]'),
(302, 'location_no', NULL, 'LOC2'),
(302, 'subject', NULL, 'مرکز سرویس حساب 2036 [Gouya-PHASE07]'),
(302, 'account_id', NULL, '2036'),
(302, 'location_type', NULL, 'ServiceCenter'),
(302, 'parent_location_id', NULL, '2222'),
(302, 'location_status', NULL, 'Active'),
(302, 'manager_contact_id', NULL, '2107'),
(302, 'phone', NULL, '02188770002'),
(302, 'email', NULL, 'service2036@example.test'),
(302, 'country', NULL, 'ایران'),
(302, 'state', NULL, 'تهران'),
(302, 'city', NULL, 'تهران'),
(302, 'street', NULL, 'خیابان نمونه، واحد خدمات'),
(302, 'postal_code', NULL, '1599922222'),
(302, 'latitude', NULL, '35.7225000'),
(302, 'longitude', NULL, '51.3361000'),
(302, 'timezone', NULL, 'Asia/Tehran'),
(302, 'daily_capacity', NULL, '24.00'),
(302, 'assigned_user_id', NULL, '1'),
(302, 'createdtime', NULL, '2026-07-18 08:21:37'),
(302, 'description', NULL, 'رکورد واقعی آزمایشی مرکز سرویس با ظرفیت و رابطه والد با شعبه مرکزی.'),
(302, 'record_id', NULL, '2223'),
(302, 'record_module', NULL, 'GouyaBusinessLocations'),
(303, 'label', NULL, 'مرکز فروش حساب 2036 [Gouya-PHASE08]'),
(303, 'location_no', NULL, 'LOC3'),
(303, 'subject', NULL, 'مرکز فروش حساب 2036 [Gouya-PHASE08]'),
(303, 'account_id', NULL, '2036'),
(303, 'location_type', NULL, 'SalesCenter'),
(303, 'parent_location_id', NULL, '2222'),
(303, 'location_status', NULL, 'Active'),
(303, 'manager_contact_id', NULL, '2107'),
(303, 'phone', NULL, '02188770003'),
(303, 'email', NULL, 'sales2036@example.test'),
(303, 'country', NULL, 'ایران'),
(303, 'state', NULL, 'تهران'),
(303, 'city', NULL, 'تهران'),
(303, 'street', NULL, 'خیابان نمونه، واحد فروش'),
(303, 'postal_code', NULL, '1599933333'),
(303, 'latitude', NULL, '35.7231000'),
(303, 'longitude', NULL, '51.3370000'),
(303, 'timezone', NULL, 'Asia/Tehran'),
(303, 'daily_capacity', NULL, '40.00'),
(303, 'sales_channel', NULL, 'Retail'),
(303, 'assigned_user_id', NULL, '1'),
(303, 'createdtime', NULL, '2026-07-18 08:45:43'),
(303, 'description', NULL, 'مرکز فروش واقعی برای آزمون کانال فروش، سلسله&zwnj;مراتب و کارتابل حساب.'),
(303, 'record_id', NULL, '2224'),
(303, 'record_module', NULL, 'GouyaBusinessLocations'),
(304, 'label', NULL, 'رزرو تایم واقعی حساب 2036 [Gouya-PHASE08]'),
(304, 'reservation_no', NULL, 'RSV1'),
(304, 'subject', NULL, 'رزرو تایم واقعی حساب 2036 [Gouya-PHASE08]'),
(304, 'account_id', NULL, '2036'),
(304, 'contact_id', NULL, '2107'),
(304, 'location_id', NULL, '2224'),
(304, 'reservation_status', NULL, 'Confirmed'),
(304, 'start_datetime', NULL, '2026-07-19 14:00:00'),
(304, 'end_datetime', NULL, '2026-07-19 15:00:00'),
(304, 'duration_minutes', NULL, '60'),
(304, 'timezone', NULL, 'Asia/Tehran'),
(304, 'party_size', NULL, '1'),
(304, 'channel', NULL, 'CRM'),
(304, 'confirmation_code', NULL, 'Gouya-2036-PH08'),
(304, 'assigned_user_id', NULL, '1'),
(304, 'createdtime', NULL, '2026-07-18 08:45:43'),
(304, 'description', NULL, 'رزرو واقعی جهت آزمون رابطه حساب، فرد، مرکز فروش، چرخه وضعیت و جلوگیری از تداخل.'),
(304, 'record_id', NULL, '2225'),
(304, 'record_module', NULL, 'GouyaTimeReservations'),
(305, 'label', NULL, 'هدیه واقعی حساب 2036 [Gouya-PHASE09]'),
(305, 'gift_no', NULL, 'GFT1'),
(305, 'subject', NULL, 'هدیه واقعی حساب 2036 [Gouya-PHASE09]'),
(305, 'account_id', NULL, '2036'),
(305, 'contact_id', NULL, '2107'),
(305, 'product_id', NULL, '26'),
(305, 'quantity', NULL, '1.00'),
(305, 'unit_cost', NULL, '50000000.00000000'),
(305, 'reason', NULL, 'هدیه وفاداری مشتری'),
(305, 'gift_status', NULL, 'Requested'),
(305, 'request_date', NULL, '2026-07-18'),
(305, 'assigned_user_id', NULL, '1'),
(305, 'createdtime', NULL, '2026-07-18 09:06:00'),
(305, 'description', NULL, 'هدیه واقعی جهت آزمون چرخه تأیید، ارسال، تحویل و ثبت موجودی.'),
(305, 'record_id', NULL, '2226'),
(305, 'record_module', NULL, 'GouyaGifts'),
(306, 'gift_status', 'Requested', 'Approved'),
(307, 'gift_status', 'Approved', 'Dispatched'),
(307, 'dispatch_date', '', '2026-07-19'),
(307, 'tracking_no', '', 'GIFT-2036-PH09'),
(308, 'gift_status', 'Dispatched', 'Delivered'),
(308, 'delivery_date', '', '2026-07-20'),
(309, 'label', NULL, 'نمونه محصول واقعی حساب 2036 [Gouya-PHASE09]'),
(309, 'sample_no', NULL, 'SMP1'),
(309, 'subject', NULL, 'نمونه محصول واقعی حساب 2036 [Gouya-PHASE09]'),
(309, 'account_id', NULL, '2036'),
(309, 'contact_id', NULL, '2107'),
(309, 'potential_id', NULL, '2040'),
(309, 'product_id', NULL, '26'),
(309, 'quantity', NULL, '2.00'),
(309, 'unit_name', NULL, 'عدد'),
(309, 'sample_status', NULL, 'Requested'),
(309, 'request_date', NULL, '2026-07-18'),
(309, 'cost', NULL, '100000000.00000000'),
(309, 'assigned_user_id', NULL, '1'),
(309, 'createdtime', NULL, '2026-07-18 09:06:00'),
(309, 'description', NULL, 'نمونه واقعی جهت آزمون رابطه فرصت فروش، ارسال، برگشت و دفتر موجودی.'),
(309, 'record_id', NULL, '2227'),
(309, 'record_module', NULL, 'GouyaProductSamples'),
(310, 'sample_status', 'Requested', 'Approved'),
(311, 'sample_status', 'Approved', 'Dispatched'),
(311, 'dispatch_date', '', '2026-07-19'),
(311, 'return_due_date', '', '2026-07-25'),
(311, 'tracking_no', '', 'SAMPLE-2036-PH09'),
(312, 'sample_status', 'Dispatched', 'Delivered'),
(313, 'sample_status', 'Delivered', 'Returned'),
(313, 'return_date', '', '2026-07-21'),
(314, 'label', NULL, 'Team Selling - آقای کامران دادجو (مثال) - Read'),
(314, 'grant_no', NULL, 'AGR1'),
(314, 'subject', NULL, 'Team Selling - آقای کامران دادجو (مثال) - Read'),
(314, 'account_id', NULL, '2036'),
(314, 'group_id', NULL, '2'),
(314, 'group_name', NULL, 'Team Selling'),
(314, 'access_level', NULL, 'Read'),
(314, 'grant_status', NULL, 'Active'),
(314, 'valid_from', NULL, '2026-07-18'),
(314, 'valid_to', NULL, '2027-07-18'),
(314, 'assigned_user_id', NULL, '1'),
(314, 'createdtime', NULL, '2026-07-18 09:40:14'),
(314, 'description', NULL, 'Canonical record-level access fixture for Account 2036 and the real Team Selling group.'),
(314, 'record_id', NULL, '2228'),
(314, 'record_module', NULL, 'GouyaAccessGrants'),
(316, 'label', NULL, 'fdfd'),
(316, 'commentcontent', NULL, 'fdfd'),
(316, 'assigned_user_id', NULL, '1'),
(316, 'createdtime', NULL, '2026-07-18 22:26:34'),
(316, 'related_to', NULL, '2152'),
(316, 'creator', NULL, '1'),
(316, 'source', NULL, 'CRM'),
(316, 'userid', NULL, '1'),
(316, 'is_private', NULL, '1'),
(316, 'record_id', NULL, '2234'),
(316, 'record_module', NULL, 'ModComments'),
(317, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(318, 'leadstatus', 'مجدد فعال شده', 'از دست رفته'),
(319, 'leadstatus', 'مجدد فعال شده', 'از دست رفته'),
(320, 'closingdate', '2026-08-24', '2026-09-24'),
(321, 'label', NULL, 'سفارش خرید نمونه عملی کامل - ۱۴۰۵/۰۵/۰۷'),
(321, 'purchaseorder_no', NULL, 'PO2'),
(321, 'subject', NULL, 'سفارش خرید نمونه عملی کامل - ۱۴۰۵/۰۵/۰۷'),
(321, 'vendor_id', NULL, '2126'),
(321, 'requisition_no', NULL, 'REQ-DEMO-1405-001'),
(321, 'tracking_no', NULL, 'TRK-DEMO-1405-001'),
(321, 'contact_id', NULL, '2096'),
(321, 'duedate', NULL, '2026-08-05'),
(321, 'txtAdjustment', NULL, '0.00000000'),
(321, 'salescommission', NULL, '0.000'),
(321, 'exciseduty', NULL, '0.000'),
(321, 'hdnGrandTotal', NULL, '110000000.00000000'),
(321, 'hdnSubTotal', NULL, '100000000.00000000'),
(321, 'hdnTaxType', NULL, 'group'),
(321, 'hdnS_H_Amount', NULL, '0.00000000'),
(321, 'postatus', NULL, 'Created'),
(321, 'assigned_user_id', NULL, '2'),
(321, 'createdtime', NULL, '2026-07-29 12:55:23'),
(321, 'modifiedby', NULL, '1'),
(321, 'currency_id', NULL, '1'),
(321, 'conversion_rate', NULL, '1.000'),
(321, 'bill_street', NULL, 'تهران، خیابان نمونه، پلاک ۱۰'),
(321, 'ship_street', NULL, 'تهران، خیابان نمونه، پلاک ۱۰'),
(321, 'bill_city', NULL, 'تهران'),
(321, 'ship_city', NULL, 'تهران'),
(321, 'bill_state', NULL, 'تهران'),
(321, 'ship_state', NULL, 'تهران'),
(321, 'bill_code', NULL, '۱۵۸۷۶۱۳۴۱۱'),
(321, 'ship_code', NULL, '۱۵۸۷۶۱۳۴۱۱'),
(321, 'bill_country', NULL, 'ایران'),
(321, 'ship_country', NULL, 'ایران'),
(321, 'bill_pobox', NULL, '۱۱۳۶۹'),
(321, 'ship_pobox', NULL, '۱۱۳۶۹'),
(321, 'description', NULL, 'این سفارش به&zwnj;صورت نمونه عملی کامل توسط Codex ثبت و با دیتابیس تطبیق داده شد.'),
(321, 'terms_conditions', NULL, 'تحویل طبق زمان&zwnj;بندی و پس از کنترل کیفیت انجام شود.'),
(321, 'productid', NULL, '26'),
(321, 'quantity', NULL, '2.000'),
(321, 'listprice', NULL, '50000000.00000000'),
(321, 'comment', NULL, 'ردیف نمونه برای آزمون کامل سفارش خرید'),
(321, 'tax1', NULL, '0.000'),
(321, 'tax2', NULL, '10.000'),
(321, 'tax3', NULL, '0.000'),
(321, 'pre_tax_total', NULL, '100000000.00000000'),
(321, 'paid', NULL, '0.00000000'),
(321, 'balance', NULL, '110000000.00000000'),
(321, 'hdnS_H_Percent', NULL, '0.000'),
(321, 'source', NULL, 'CRM'),
(321, 'account_id', NULL, '20'),
(321, 'sarv_po_date', NULL, '2026-07-29'),
(321, 'sarv_opportunity_id', NULL, '1024'),
(321, 'sarv_for_contact_id', NULL, '2096'),
(321, 'sarv_sms_reminder', NULL, 'یک روز قبل'),
(321, 'sarv_shipping_method', NULL, 'زمینی'),
(321, 'sarv_delivery_format', NULL, 'فوری'),
(321, 'sarv_partial_delivery', NULL, '1'),
(321, 'sarv_payment_method', NULL, 'انتقال بانکی'),
(321, 'sarv_payment_status', NULL, 'بخشی پرداخت شده'),
(321, 'sarv_payment_notes', NULL, 'نمونه عملی جهت کنترل ثبت کامل فرم و محاسبات'),
(321, 'sarv_po_category', NULL, 'تجهیزات'),
(321, 'sarv_print_template', NULL, 'پیش‌فرض'),
(321, 'sarv_bill_geo_area', NULL, 'تهران'),
(321, 'sarv_ship_geo_area', NULL, 'تهران'),
(321, 'sarv_bill_latitude', NULL, '35.6892'),
(321, 'sarv_ship_latitude', NULL, '35.6892'),
(321, 'sarv_bill_longitude', NULL, '51.3890'),
(321, 'sarv_ship_longitude', NULL, '51.3890'),
(321, 'sarv_copy_address', NULL, '1'),
(321, 'record_id', NULL, '2268'),
(321, 'record_module', NULL, 'PurchaseOrder'),
(322, 'label', NULL, 'SARV-LEAD-SMOKE-20260730063115-5303-Campaign'),
(322, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260730063115-5303-Campaign'),
(322, 'campaign_no', NULL, 'CAM11'),
(322, 'campaignstatus', NULL, 'Planning'),
(322, 'assigned_user_id', NULL, '1'),
(322, 'createdtime', NULL, '2026-07-30 06:31:15'),
(322, 'modifiedby', NULL, '1'),
(322, 'expectedrevenue', NULL, '0.00000000'),
(322, 'budgetcost', NULL, '0.00000000'),
(322, 'actualcost', NULL, '0.00000000'),
(322, 'expectedroi', NULL, '0.00000000'),
(322, 'actualroi', NULL, '0.00000000'),
(322, 'source', NULL, 'CRM'),
(322, 'record_id', NULL, '2269'),
(322, 'record_module', NULL, 'Campaigns'),
(324, 'label', NULL, 'SARV-LEAD-SMOKE-20260730063303-9027-Campaign'),
(324, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260730063303-9027-Campaign'),
(324, 'campaign_no', NULL, 'CAM12'),
(324, 'campaignstatus', NULL, 'Planning'),
(324, 'assigned_user_id', NULL, '1'),
(324, 'createdtime', NULL, '2026-07-30 06:33:03'),
(324, 'modifiedby', NULL, '1'),
(324, 'expectedrevenue', NULL, '0.00000000'),
(324, 'budgetcost', NULL, '0.00000000'),
(324, 'actualcost', NULL, '0.00000000'),
(324, 'expectedroi', NULL, '0.00000000'),
(324, 'actualroi', NULL, '0.00000000'),
(324, 'source', NULL, 'CRM'),
(324, 'record_id', NULL, '2270'),
(324, 'record_module', NULL, 'Campaigns'),
(326, 'label', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929-Campaign'),
(326, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929-Campaign'),
(326, 'campaign_no', NULL, 'CAM13'),
(326, 'campaignstatus', NULL, 'Planning'),
(326, 'assigned_user_id', NULL, '1'),
(326, 'createdtime', NULL, '2026-07-30 06:36:01'),
(326, 'modifiedby', NULL, '1'),
(326, 'expectedrevenue', NULL, '0.00000000'),
(326, 'budgetcost', NULL, '0.00000000'),
(326, 'actualcost', NULL, '0.00000000'),
(326, 'expectedroi', NULL, '0.00000000'),
(326, 'actualroi', NULL, '0.00000000'),
(326, 'source', NULL, 'CRM'),
(326, 'record_id', NULL, '2271'),
(326, 'record_module', NULL, 'Campaigns'),
(327, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(327, 'firstname', NULL, 'آزمون'),
(327, 'lead_no', NULL, 'LEA1120'),
(327, 'phone', NULL, '+989121112233'),
(327, 'lastname', NULL, 'یکپارچگی سرنخ'),
(327, 'mobile', NULL, '+989121112233'),
(327, 'company', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929'),
(327, 'designation', NULL, 'مدیر تست'),
(327, 'email', NULL, 'lead-smoke@example.test'),
(327, 'website', NULL, 'https://example.test'),
(327, 'industry', NULL, 'خدماتی'),
(327, 'leadstatus', NULL, 'جدید'),
(327, 'annualrevenue', NULL, '0.00000000'),
(327, 'rating', NULL, 'زیاد'),
(327, 'assigned_user_id', NULL, '1'),
(327, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(327, 'createdtime', NULL, '2026-07-30 06:36:01'),
(327, 'modifiedby', NULL, '1'),
(327, 'lane', NULL, 'آدرس اصلی تست'),
(327, 'code', NULL, '1111111111'),
(327, 'city', NULL, 'تهران'),
(327, 'country', NULL, 'ایران'),
(327, 'state', NULL, 'تهران'),
(327, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929'),
(327, 'source', NULL, 'CRM'),
(327, 'cf_lead_party_type', NULL, 'حقوقی'),
(327, 'cf_economic_code', NULL, '411111111111'),
(327, 'cf_registration_no', NULL, '98765'),
(327, 'cf_national_id', NULL, '10101010101'),
(327, 'cf_primary_region', NULL, 'منطقه یک'),
(327, 'cf_primary_lat', NULL, '35.6892000'),
(327, 'cf_primary_lng', NULL, '51.3890000'),
(327, 'cf_other_region', NULL, 'منطقه دو'),
(327, 'cf_other_country', NULL, 'ایران'),
(327, 'cf_other_state', NULL, 'البرز'),
(327, 'cf_other_city', NULL, 'کرج'),
(327, 'cf_other_code', NULL, '2222222222'),
(327, 'cf_other_street', NULL, 'آدرس دوم تست'),
(327, 'cf_other_lat', NULL, '35.8400000'),
(327, 'cf_other_lng', NULL, '50.9391000'),
(327, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(327, 'cf_instagram', NULL, 'https://instagram.com/example'),
(327, 'record_id', NULL, '2272'),
(327, 'record_module', NULL, 'Leads'),
(328, 'phone', '+989121112233', '+989129998877'),
(328, 'mobile', '+989121112233', '+989129998877'),
(328, 'fax', '', '02166554433'),
(328, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(328, 'leadstatus', 'جدید', 'درجریان'),
(328, 'secondaryemail', 'finance-smoke@example.test', ''),
(329, 'label', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929-Task'),
(329, 'subject', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929-Task'),
(329, 'assigned_user_id', NULL, '1'),
(329, 'date_start', NULL, '2026-07-30'),
(329, 'time_start', NULL, '10:00'),
(329, 'due_date', NULL, '2026-07-30'),
(329, 'duration_hours', NULL, '10'),
(329, 'duration_minutes', NULL, '30'),
(329, 'activitytype', NULL, 'Task'),
(329, 'createdtime', NULL, '2026-07-30 06:36:01'),
(329, 'taskpriority', NULL, 'Medium'),
(329, 'visibility', NULL, 'Public'),
(329, 'modifiedby', NULL, '1'),
(329, 'source', NULL, 'CRM'),
(329, 'taskstatus', NULL, 'Not Started'),
(329, 'record_id', NULL, '2273'),
(329, 'record_module', NULL, 'Calendar'),
(330, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(331, 'label', NULL, 'ورودی استاندارد'),
(331, 'lead_no', NULL, 'LEA1121'),
(331, 'phone', NULL, '+989121234567'),
(331, 'lastname', NULL, 'ورودی استاندارد'),
(331, 'mobile', NULL, '+989351234567'),
(331, 'company', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929-IMPORT'),
(331, 'email', NULL, 'csv-import@example.test'),
(331, 'leadstatus', NULL, 'جدید'),
(331, 'annualrevenue', NULL, '0.00000000'),
(331, 'assigned_user_id', NULL, '1'),
(331, 'createdtime', NULL, '2026-07-30 06:36:02'),
(331, 'modifiedby', NULL, '1'),
(331, 'source', NULL, 'CRM'),
(331, 'cf_lead_party_type', NULL, 'حقیقی'),
(331, 'cf_primary_lat', NULL, '0.0000000'),
(331, 'cf_primary_lng', NULL, '0.0000000'),
(331, 'cf_other_lat', NULL, '0.0000000'),
(331, 'cf_other_lng', NULL, '0.0000000'),
(331, 'record_id', NULL, '2274'),
(331, 'record_module', NULL, 'Leads'),
(332, 'label', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929'),
(332, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260730063600-5929'),
(332, 'account_no', NULL, 'ACC9'),
(332, 'phone', NULL, '+989129998877'),
(332, 'website', NULL, 'https://example.test'),
(332, 'fax', NULL, '02166554433'),
(332, 'email1', NULL, 'lead-updated@example.test'),
(332, 'rating', NULL, 'زیاد'),
(332, 'industry', NULL, 'خدماتی'),
(332, 'annual_revenue', NULL, '0.00000000'),
(332, 'assigned_user_id', NULL, '1'),
(332, 'createdtime', NULL, '2026-07-30 06:36:02'),
(332, 'modifiedby', NULL, '1'),
(332, 'bill_street', NULL, 'آدرس اصلی تست'),
(332, 'ship_street', NULL, 'آدرس دوم تست'),
(332, 'bill_city', NULL, 'تهران'),
(332, 'ship_city', NULL, 'کرج'),
(332, 'bill_state', NULL, 'تهران'),
(332, 'ship_state', NULL, 'البرز'),
(332, 'bill_code', NULL, '1111111111'),
(332, 'ship_code', NULL, '2222222222'),
(332, 'bill_country', NULL, 'ایران'),
(332, 'ship_country', NULL, 'ایران'),
(332, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929'),
(332, 'isconvertedfromlead', NULL, '1'),
(332, 'source', NULL, 'WEBSERVICE'),
(332, 'cf_party_type', NULL, 'حقوقی'),
(332, 'cf_first_name', NULL, 'آزمون'),
(332, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(332, 'cf_portal_visible', NULL, '1'),
(332, 'cf_registration_no', NULL, '98765'),
(332, 'cf_national_id', NULL, '10101010101'),
(332, 'cf_economic_code', NULL, '411111111111'),
(332, 'cf_bill_region', NULL, 'منطقه یک'),
(332, 'cf_ship_region', NULL, 'منطقه دو'),
(332, 'cf_bill_lat', NULL, '35.6900000'),
(332, 'cf_bill_lng', NULL, '51.3900000'),
(332, 'cf_ship_lat', NULL, '35.8400000'),
(332, 'cf_ship_lng', NULL, '50.9400000'),
(332, 'cf_credit_amount', NULL, '0.00000000'),
(332, 'cf_credit_limit', NULL, '0.00000000'),
(332, 'cf_sales_discount', NULL, '0.000'),
(332, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(332, 'cf_instagram', NULL, 'https://instagram.com/example'),
(332, 'record_id', NULL, '2275'),
(332, 'record_module', NULL, 'Accounts'),
(333, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(333, 'firstname', NULL, 'آزمون'),
(333, 'contact_no', NULL, 'CON78'),
(333, 'phone', NULL, '+989129998877'),
(333, 'lastname', NULL, 'یکپارچگی سرنخ'),
(333, 'mobile', NULL, '+989129998877'),
(333, 'account_id', NULL, '2275'),
(333, 'title', NULL, 'مدیر تست'),
(333, 'fax', NULL, '02166554433'),
(333, 'email', NULL, 'lead-updated@example.test'),
(333, 'assigned_user_id', NULL, '1'),
(333, 'createdtime', NULL, '2026-07-30 06:36:02'),
(333, 'modifiedby', NULL, '1'),
(333, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(333, 'mailingcity', NULL, 'تهران'),
(333, 'mailingstate', NULL, 'تهران'),
(333, 'mailingcountry', NULL, 'ایران'),
(333, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260730063600-5929'),
(333, 'isconvertedfromlead', NULL, '1'),
(333, 'source', NULL, 'WEBSERVICE'),
(333, 'record_id', NULL, '2276'),
(333, 'record_module', NULL, 'Contacts'),
(340, 'label', NULL, 'پیش فاکتور نمونه طرح گویا ۱۴۰۵/۰۵/۰۸'),
(340, 'quote_no', NULL, '11'),
(340, 'subject', NULL, 'پیش فاکتور نمونه طرح گویا ۱۴۰۵/۰۵/۰۸'),
(340, 'quotestage', NULL, 'Created'),
(340, 'validtill', NULL, '2026-08-11'),
(340, 'hdnSubTotal', NULL, '167200000.00000000'),
(340, 'txtAdjustment', NULL, '0.00000000'),
(340, 'hdnGrandTotal', NULL, '167200000.00000000'),
(340, 'hdnTaxType', NULL, 'individual'),
(340, 'hdnS_H_Amount', NULL, '0.00000000'),
(340, 'account_id', NULL, '2037'),
(340, 'assigned_user_id', NULL, '2'),
(340, 'createdtime', NULL, '2026-07-30 08:40:25'),
(340, 'modifiedby', NULL, '1'),
(340, 'currency_id', NULL, '2'),
(340, 'conversion_rate', NULL, '1.000'),
(340, 'bill_street', NULL, 'تهران، خیابان نمونه، پلاک ۱۴۰۵'),
(340, 'ship_street', NULL, 'تهران، خیابان نمونه، پلاک ۱۴۰۵'),
(340, 'bill_country', NULL, 'ایران'),
(340, 'description', NULL, 'نمونه اجرایی کامل فرم پیش فاکتور با محصول، مالیات و اطلاعات حساب.'),
(340, 'terms_conditions', NULL, 'اعتبار پیش فاکتور تا تاریخ درج شده و پرداخت طبق توافق طرفین است.'),
(340, 'productid', NULL, '27'),
(340, 'quantity', NULL, '2.000'),
(340, 'listprice', NULL, '80000000.00000000'),
(340, 'discount_percent', NULL, '5.000'),
(340, 'pre_tax_total', NULL, '152000000.00000000'),
(340, 'hdnS_H_Percent', NULL, '0.000'),
(340, 'source', NULL, 'CRM'),
(340, 'cf_quote_date', NULL, '2026-07-30'),
(340, 'cf_invoice_status', NULL, 'پیش نویس'),
(340, 'cf_sms_reminder', NULL, 'یک روز قبل'),
(340, 'cf_payment_terms', NULL, 'نقدی'),
(340, 'cf_internal_approval', NULL, 'تایید شده'),
(340, 'cf_print_template', NULL, 'پیش فرض'),
(340, 'cf_shipping_type', NULL, 'زمینی'),
(340, 'cf_sender_company', NULL, 'شرکت اصلی'),
(340, 'cf_insurance_percent', NULL, '2.000'),
(340, 'cf_insurance_amount', NULL, '3040000.00000000'),
(340, 'cf_retention_percent', NULL, '5.000'),
(340, 'cf_retention_amount', NULL, '7600000.00000000'),
(340, 'cf_bill_lat', NULL, '32.4279000'),
(340, 'cf_bill_lng', NULL, '53.6880000'),
(340, 'cf_bill_geo_area', NULL, 'ایران'),
(340, 'cf_credit_limit', NULL, '0.00000000'),
(340, 'cf_receivable_total', NULL, '0.00000000'),
(340, 'record_id', NULL, '2277'),
(340, 'record_module', NULL, 'Quotes'),
(341, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260801180622-8131'),
(341, 'firstname', NULL, 'Gouya'),
(341, 'contact_no', NULL, 'CON79'),
(341, 'phone', NULL, '+989121112233'),
(341, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260801180622-8131'),
(341, 'otherphone', NULL, '02188776655'),
(341, 'title', NULL, 'Integration Test'),
(341, 'department', NULL, 'Quality Assurance'),
(341, 'email', NULL, 'contact-smoke@example.test'),
(341, 'secondaryemail', NULL, 'contact-work@example.test'),
(341, 'assigned_user_id', NULL, '1'),
(341, 'createdtime', NULL, '2026-08-01 18:06:22'),
(341, 'modifiedby', NULL, '1'),
(341, 'description', NULL, 'Temporary integration test'),
(341, 'source', NULL, 'CRM'),
(341, 'record_id', NULL, '2279'),
(341, 'record_module', NULL, 'Contacts'),
(342, 'phone', '+989121112233', '+989129998877'),
(342, 'title', 'Integration Test', 'Integration Test Updated'),
(342, 'fax', '', '02166554433'),
(342, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(342, 'secondaryemail', 'contact-work@example.test', ''),
(344, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802061945-5541'),
(344, 'salutationtype', NULL, 'Mr.'),
(344, 'firstname', NULL, 'Gouya'),
(344, 'contact_no', NULL, 'CON80'),
(344, 'phone', NULL, '+989121112233'),
(344, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802061945-5541'),
(344, 'mobile', NULL, '+989121112233'),
(344, 'account_id', NULL, '20'),
(344, 'leadsource', NULL, 'Cold Call'),
(344, 'otherphone', NULL, '02188776655'),
(344, 'title', NULL, 'Integration Test'),
(344, 'fax', NULL, '02188776655'),
(344, 'department', NULL, 'Quality Assurance'),
(344, 'email', NULL, 'contact-smoke@example.test'),
(344, 'secondaryemail', NULL, 'contact-work@example.test'),
(344, 'assigned_user_id', NULL, '2'),
(344, 'createdtime', NULL, '2026-08-02 06:19:45'),
(344, 'modifiedby', NULL, '1'),
(344, 'description', NULL, 'Temporary integration test'),
(344, 'source', NULL, 'CRM'),
(344, 'branch_id', NULL, '2222'),
(344, 'record_id', NULL, '2280'),
(344, 'record_module', NULL, 'Contacts'),
(345, 'phone', '+989121112233', '+989129998877'),
(345, 'mobile', '+989121112233', '+989129998877'),
(345, 'title', 'Integration Test', 'Integration Test Updated'),
(345, 'fax', '02188776655', '02166554433'),
(345, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(345, 'secondaryemail', 'contact-work@example.test', ''),
(347, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802065207-9882'),
(347, 'salutationtype', NULL, 'Mr.'),
(347, 'firstname', NULL, 'Gouya'),
(347, 'contact_no', NULL, 'CON81'),
(347, 'phone', NULL, '+989121112233'),
(347, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802065207-9882'),
(347, 'mobile', NULL, '+989121112233'),
(347, 'account_id', NULL, '20'),
(347, 'leadsource', NULL, 'Cold Call'),
(347, 'otherphone', NULL, '02188776655'),
(347, 'title', NULL, 'Integration Test'),
(347, 'fax', NULL, '02188776655'),
(347, 'department', NULL, 'Quality Assurance'),
(347, 'email', NULL, 'contact-smoke@example.test'),
(347, 'secondaryemail', NULL, 'contact-work@example.test'),
(347, 'assigned_user_id', NULL, '2'),
(347, 'createdtime', NULL, '2026-08-02 06:52:07'),
(347, 'modifiedby', NULL, '1'),
(347, 'description', NULL, 'Temporary integration test'),
(347, 'source', NULL, 'CRM'),
(347, 'branch_id', NULL, '2222'),
(347, 'record_id', NULL, '2281'),
(347, 'record_module', NULL, 'Contacts'),
(348, 'phone', '+989121112233', '+989129998877'),
(348, 'mobile', '+989121112233', '+989129998877'),
(348, 'title', 'Integration Test', 'Integration Test Updated'),
(348, 'fax', '02188776655', '02166554433'),
(348, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(348, 'secondaryemail', 'contact-work@example.test', ''),
(350, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802071642-5628'),
(350, 'salutationtype', NULL, 'Mr.'),
(350, 'firstname', NULL, 'Gouya'),
(350, 'contact_no', NULL, 'CON82'),
(350, 'phone', NULL, '+989121112233'),
(350, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802071642-5628'),
(350, 'mobile', NULL, '+989121112233'),
(350, 'account_id', NULL, '20'),
(350, 'leadsource', NULL, 'Cold Call'),
(350, 'otherphone', NULL, '02188776655'),
(350, 'title', NULL, 'Integration Test'),
(350, 'fax', NULL, '02188776655'),
(350, 'department', NULL, 'Quality Assurance'),
(350, 'email', NULL, 'contact-smoke@example.test'),
(350, 'secondaryemail', NULL, 'contact-work@example.test'),
(350, 'assigned_user_id', NULL, '2'),
(350, 'createdtime', NULL, '2026-08-02 07:16:42'),
(350, 'modifiedby', NULL, '1'),
(350, 'description', NULL, 'Temporary integration test'),
(350, 'source', NULL, 'CRM'),
(350, 'branch_id', NULL, '2222'),
(350, 'record_id', NULL, '2282'),
(350, 'record_module', NULL, 'Contacts'),
(351, 'phone', '+989121112233', '+989129998877'),
(351, 'mobile', '+989121112233', '+989129998877'),
(351, 'title', 'Integration Test', 'Integration Test Updated'),
(351, 'fax', '02188776655', '02166554433'),
(351, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(351, 'secondaryemail', 'contact-work@example.test', ''),
(353, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802072535-4912'),
(353, 'salutationtype', NULL, 'Mr.'),
(353, 'firstname', NULL, 'Gouya'),
(353, 'contact_no', NULL, 'CON83'),
(353, 'phone', NULL, '+989121112233'),
(353, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802072535-4912'),
(353, 'mobile', NULL, '+989121112233'),
(353, 'account_id', NULL, '20'),
(353, 'leadsource', NULL, 'Cold Call'),
(353, 'otherphone', NULL, '02188776655'),
(353, 'title', NULL, 'Integration Test'),
(353, 'fax', NULL, '02188776655'),
(353, 'department', NULL, 'Quality Assurance'),
(353, 'email', NULL, 'contact-smoke@example.test'),
(353, 'secondaryemail', NULL, 'contact-work@example.test'),
(353, 'assigned_user_id', NULL, '2'),
(353, 'createdtime', NULL, '2026-08-02 07:25:36'),
(353, 'modifiedby', NULL, '1'),
(353, 'description', NULL, 'Temporary integration test'),
(353, 'source', NULL, 'CRM'),
(353, 'branch_id', NULL, '2222'),
(353, 'record_id', NULL, '2283'),
(353, 'record_module', NULL, 'Contacts'),
(354, 'phone', '+989121112233', '+989129998877'),
(354, 'mobile', '+989121112233', '+989129998877'),
(354, 'title', 'Integration Test', 'Integration Test Updated'),
(354, 'fax', '02188776655', '02166554433'),
(354, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(354, 'secondaryemail', 'contact-work@example.test', ''),
(356, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802080631-6166'),
(356, 'salutationtype', NULL, 'Mr.'),
(356, 'firstname', NULL, 'Gouya'),
(356, 'contact_no', NULL, 'CON84'),
(356, 'phone', NULL, '+989121112233'),
(356, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802080631-6166'),
(356, 'mobile', NULL, '+989121112233'),
(356, 'account_id', NULL, '20'),
(356, 'leadsource', NULL, 'Cold Call'),
(356, 'otherphone', NULL, '02188776655'),
(356, 'title', NULL, 'Integration Test'),
(356, 'fax', NULL, '02188776655'),
(356, 'department', NULL, 'Quality Assurance'),
(356, 'birthday', NULL, '1990-05-15'),
(356, 'email', NULL, 'contact-smoke@example.test'),
(356, 'contact_id', NULL, '11'),
(356, 'assistant', NULL, 'Gouya Test Assistant'),
(356, 'secondaryemail', NULL, 'contact-work@example.test'),
(356, 'assigned_user_id', NULL, '2');
INSERT IGNORE INTO `vtiger_modtracker_detail` (`id`, `fieldname`, `prevalue`, `postvalue`) VALUES
(356, 'createdtime', NULL, '2026-08-02 08:06:31'),
(356, 'modifiedby', NULL, '1'),
(356, 'description', NULL, 'Temporary integration test'),
(356, 'source', NULL, 'CRM'),
(356, 'cf_national_code', NULL, '0012345678'),
(356, 'cf_grouping1', NULL, 'Category 2'),
(356, 'cf_grouping2', NULL, 'Category 3'),
(356, 'branch_id', NULL, '2222'),
(356, 'record_id', NULL, '2284'),
(356, 'record_module', NULL, 'Contacts'),
(357, 'phone', '+989121112233', '+989129998877'),
(357, 'mobile', '+989121112233', '+989129998877'),
(357, 'title', 'Integration Test', 'Integration Test Updated'),
(357, 'fax', '02188776655', '02166554433'),
(357, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(357, 'assistant', 'Gouya Test Assistant', 'Gouya Test Assistant Updated'),
(357, 'secondaryemail', 'contact-work@example.test', ''),
(357, 'cf_grouping1', 'Category 2', 'Category 1'),
(357, 'cf_grouping2', 'Category 3', 'Category 2'),
(359, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802170258-4182'),
(359, 'salutationtype', NULL, 'Mr.'),
(359, 'firstname', NULL, 'Gouya'),
(359, 'contact_no', NULL, 'CON85'),
(359, 'phone', NULL, '+989121112233'),
(359, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802170258-4182'),
(359, 'mobile', NULL, '+989121112233'),
(359, 'account_id', NULL, '20'),
(359, 'leadsource', NULL, 'Cold Call'),
(359, 'otherphone', NULL, '02188776655'),
(359, 'title', NULL, 'Integration Test'),
(359, 'fax', NULL, '02188776655'),
(359, 'department', NULL, 'Quality Assurance'),
(359, 'birthday', NULL, '1990-05-15'),
(359, 'email', NULL, 'contact-smoke@example.test'),
(359, 'contact_id', NULL, '11'),
(359, 'assistant', NULL, 'Gouya Test Assistant'),
(359, 'secondaryemail', NULL, 'contact-work@example.test'),
(359, 'assigned_user_id', NULL, '2'),
(359, 'createdtime', NULL, '2026-08-02 17:02:58'),
(359, 'modifiedby', NULL, '1'),
(359, 'mailingstreet', NULL, 'خیابان تست طرح گویا'),
(359, 'otherstreet', NULL, 'نشانی دوم تست طرح گویا'),
(359, 'mailingcity', NULL, 'تهران'),
(359, 'othercity', NULL, 'کرج'),
(359, 'mailingstate', NULL, 'تهران'),
(359, 'otherstate', NULL, 'البرز'),
(359, 'mailingzip', NULL, '1599911111'),
(359, 'otherzip', NULL, '3199911111'),
(359, 'mailingcountry', NULL, 'ایران'),
(359, 'othercountry', NULL, 'ایران'),
(359, 'description', NULL, 'Temporary integration test'),
(359, 'source', NULL, 'CRM'),
(359, 'cf_national_code', NULL, '0012345678'),
(359, 'cf_grouping1', NULL, 'Category 2'),
(359, 'cf_grouping2', NULL, 'Category 3'),
(359, 'cf_website', NULL, 'https://example.test'),
(359, 'cf_linkedin', NULL, 'gouya-test'),
(359, 'cf_blog', NULL, 'https://example.test/blog'),
(359, 'cf_twitter', NULL, 'gouya_test'),
(359, 'cf_instagram', NULL, 'gouya_test'),
(359, 'cf_facebook', NULL, 'gouya.test'),
(359, 'branch_id', NULL, '2222'),
(359, 'cf_primary_region', NULL, 'ایران / تهران / تهران'),
(359, 'cf_other_region', NULL, 'ایران / البرز / کرج'),
(359, 'cf_primary_lat', NULL, '35.6892000'),
(359, 'cf_primary_lng', NULL, '51.3890000'),
(359, 'cf_other_lat', NULL, '35.8400000'),
(359, 'cf_other_lng', NULL, '50.9391000'),
(359, 'record_id', NULL, '2285'),
(359, 'record_module', NULL, 'Contacts'),
(360, 'phone', '+989121112233', '+989129998877'),
(360, 'mobile', '+989121112233', '+989129998877'),
(360, 'title', 'Integration Test', 'Integration Test Updated'),
(360, 'fax', '02188776655', '02166554433'),
(360, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(360, 'assistant', 'Gouya Test Assistant', 'Gouya Test Assistant Updated'),
(360, 'secondaryemail', 'contact-work@example.test', ''),
(360, 'cf_grouping1', 'Category 2', 'Category 1'),
(360, 'cf_grouping2', 'Category 3', 'Category 2'),
(362, 'label', NULL, 'آزمایش نمونه عملی طرح گویا'),
(362, 'salutationtype', NULL, 'Mr.'),
(362, 'firstname', NULL, 'آزمایش'),
(362, 'contact_no', NULL, 'CON86'),
(362, 'phone', NULL, '+989121234567'),
(362, 'lastname', NULL, 'نمونه عملی طرح گویا'),
(362, 'mobile', NULL, '+989121234567'),
(362, 'leadsource', NULL, 'Web Site'),
(362, 'title', NULL, 'کارشناس تست فرم'),
(362, 'department', NULL, 'کنترل کیفیت'),
(362, 'email', NULL, 'gouya.contact.ui@example.test'),
(362, 'assistant', NULL, 'منشی نمونه'),
(362, 'assigned_user_id', NULL, '2'),
(362, 'createdtime', NULL, '2026-08-02 17:23:29'),
(362, 'modifiedby', NULL, '1'),
(362, 'mailingstreet', NULL, 'تهران، خیابان نمونه طرح گویا'),
(362, 'otherstreet', NULL, 'تهران، خیابان نمونه طرح گویا'),
(362, 'mailingzip', NULL, '14357'),
(362, 'otherzip', NULL, '14357'),
(362, 'mailingcountry', NULL, 'ایران'),
(362, 'othercountry', NULL, 'ایران'),
(362, 'description', NULL, 'رکورد نمونه برای تست عملی طرح گویا و بازخوانی کامل از دیتابیس'),
(362, 'source', NULL, 'CRM'),
(362, 'cf_national_code', NULL, '0013546789'),
(362, 'cf_grouping1', NULL, 'Category 1'),
(362, 'cf_grouping2', NULL, 'Category 2'),
(362, 'cf_website', NULL, 'https://gouya.example.test'),
(362, 'cf_linkedin', NULL, 'https://linkedin.com/company/gouya-crm-test'),
(362, 'cf_instagram', NULL, 'https://instagram.com/gouya_crm_test'),
(362, 'cf_primary_region', NULL, 'ایران'),
(362, 'cf_other_region', NULL, 'ایران'),
(362, 'cf_primary_lat', NULL, '32.4279000'),
(362, 'cf_primary_lng', NULL, '53.6880000'),
(362, 'cf_other_lat', NULL, '32.4279000'),
(362, 'cf_other_lng', NULL, '53.6880000'),
(362, 'record_id', NULL, '2286'),
(362, 'record_module', NULL, 'Contacts'),
(363, 'label', NULL, 'Gouya GOUYA-CONTACT-SMOKE-20260802173055-1807'),
(363, 'salutationtype', NULL, 'Mr.'),
(363, 'firstname', NULL, 'Gouya'),
(363, 'contact_no', NULL, 'CON87'),
(363, 'phone', NULL, '+989121112233'),
(363, 'lastname', NULL, 'GOUYA-CONTACT-SMOKE-20260802173055-1807'),
(363, 'mobile', NULL, '+989121112233'),
(363, 'account_id', NULL, '20'),
(363, 'leadsource', NULL, 'Cold Call'),
(363, 'otherphone', NULL, '02188776655'),
(363, 'title', NULL, 'Integration Test'),
(363, 'fax', NULL, '02188776655'),
(363, 'department', NULL, 'Quality Assurance'),
(363, 'birthday', NULL, '1990-05-15'),
(363, 'email', NULL, 'contact-smoke@example.test'),
(363, 'contact_id', NULL, '11'),
(363, 'assistant', NULL, 'Gouya Test Assistant'),
(363, 'secondaryemail', NULL, 'contact-work@example.test'),
(363, 'assigned_user_id', NULL, '2'),
(363, 'createdtime', NULL, '2026-08-02 17:30:55'),
(363, 'modifiedby', NULL, '1'),
(363, 'mailingstreet', NULL, 'خیابان تست طرح گویا'),
(363, 'otherstreet', NULL, 'نشانی دوم تست طرح گویا'),
(363, 'mailingcity', NULL, 'تهران'),
(363, 'othercity', NULL, 'کرج'),
(363, 'mailingstate', NULL, 'تهران'),
(363, 'otherstate', NULL, 'البرز'),
(363, 'mailingzip', NULL, '1599911111'),
(363, 'otherzip', NULL, '3199911111'),
(363, 'mailingcountry', NULL, 'ایران'),
(363, 'othercountry', NULL, 'ایران'),
(363, 'description', NULL, 'Temporary integration test'),
(363, 'source', NULL, 'CRM'),
(363, 'cf_national_code', NULL, '0012345678'),
(363, 'cf_grouping1', NULL, 'Category 2'),
(363, 'cf_grouping2', NULL, 'Category 3'),
(363, 'cf_website', NULL, 'https://example.test'),
(363, 'cf_linkedin', NULL, 'gouya-test'),
(363, 'cf_blog', NULL, 'https://example.test/blog'),
(363, 'cf_twitter', NULL, 'gouya_test'),
(363, 'cf_instagram', NULL, 'gouya_test'),
(363, 'cf_facebook', NULL, 'gouya.test'),
(363, 'branch_id', NULL, '2222'),
(363, 'cf_primary_region', NULL, 'ایران / تهران / تهران'),
(363, 'cf_other_region', NULL, 'ایران / البرز / کرج'),
(363, 'cf_primary_lat', NULL, '35.6892000'),
(363, 'cf_primary_lng', NULL, '51.3890000'),
(363, 'cf_other_lat', NULL, '35.8400000'),
(363, 'cf_other_lng', NULL, '50.9391000'),
(363, 'record_id', NULL, '2287'),
(363, 'record_module', NULL, 'Contacts'),
(364, 'phone', '+989121112233', '+989129998877'),
(364, 'mobile', '+989121112233', '+989129998877'),
(364, 'title', 'Integration Test', 'Integration Test Updated'),
(364, 'fax', '02188776655', '02166554433'),
(364, 'email', 'contact-smoke@example.test', 'contact-updated@example.test'),
(364, 'assistant', 'Gouya Test Assistant', 'Gouya Test Assistant Updated'),
(364, 'secondaryemail', 'contact-work@example.test', ''),
(364, 'cf_grouping1', 'Category 2', 'Category 1'),
(364, 'cf_grouping2', 'Category 3', 'Category 2'),
(366, 'label', NULL, 'ارتباط آزمایشی طرح گویا'),
(366, 'name', NULL, 'ارتباط آزمایشی طرح گویا'),
(366, 'enabled', NULL, '1'),
(366, 'parent_type', NULL, 'Contacts'),
(366, 'type', NULL, 'New_Records'),
(366, 'condition_name', NULL, 'email'),
(366, 'condition_value', NULL, '@'),
(366, 'email_message_flag', NULL, '1'),
(366, 'email_title', NULL, 'خوش&zwnj;آمدگویی ارتباط آزمایشی'),
(366, 'assigned_user_id', NULL, '1'),
(366, 'createdtime', NULL, '2026-08-02 17:54:56'),
(366, 'record_id', NULL, '2288'),
(366, 'record_module', NULL, 'Communications'),
(367, 'label', NULL, 'ارتباط عملی طرح گویا ۱۴۰۵/۰۵/۱۱'),
(367, 'name', NULL, 'ارتباط عملی طرح گویا ۱۴۰۵/۰۵/۱۱'),
(367, 'enabled', NULL, '1'),
(367, 'parent_type', NULL, 'Contacts'),
(367, 'type', NULL, 'New_Records'),
(367, 'condition_name', NULL, 'email'),
(367, 'condition_value', NULL, '@example.com'),
(367, 'email_message_flag', NULL, '1'),
(367, 'email_title', NULL, 'پیام خوش&zwnj;آمدگویی عملی'),
(367, 'template', NULL, 'Accept Order'),
(367, 'template_id', NULL, '5'),
(367, 'assigned_user_id', NULL, '1'),
(367, 'createdtime', NULL, '2026-08-02 18:01:25'),
(367, 'record_id', NULL, '2289'),
(367, 'record_module', NULL, 'Communications'),
(368, 'label', NULL, 'تماس آزمایشی عملی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(368, 'subject', NULL, 'تماس آزمایشی عملی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(368, 'assigned_user_id', NULL, '1'),
(368, 'date_start', NULL, '2026-08-03'),
(368, 'time_start', NULL, '07:00'),
(368, 'due_date', NULL, '2026-08-03'),
(368, 'time_end', NULL, '07:30'),
(368, 'duration_minutes', NULL, '30'),
(368, 'eventstatus', NULL, 'Planned'),
(368, 'activitytype', NULL, 'Call'),
(368, 'createdtime', NULL, '2026-08-03 06:41:54'),
(368, 'visibility', NULL, 'Public'),
(368, 'modifiedby', NULL, '1'),
(368, 'description', NULL, 'نمونه ثبت عملی طرح گویا برای آزمون ارتباط فرم تماس با تقویم، کاربران، یادآوری نرم&zwnj;افزاری و دیتابیس.'),
(368, 'source', NULL, 'CRM'),
(368, 'sms_remind_user', NULL, 'بدون'),
(368, 'sms_remind_invitees', NULL, 'بدون'),
(368, 'pbx_system_id', NULL, 'GOUYA-CALL-TEST-14050513'),
(368, 'call_direction', NULL, 'خروجی'),
(368, 'record_id', NULL, '2290'),
(368, 'record_module', NULL, 'Events'),
(369, 'label', NULL, 'تماس نمونه نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(369, 'subject', NULL, 'تماس نمونه نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(369, 'assigned_user_id', NULL, '1'),
(369, 'date_start', NULL, '2026-08-03'),
(369, 'time_start', NULL, '07:00'),
(369, 'due_date', NULL, '2026-08-03'),
(369, 'time_end', NULL, '07:30'),
(369, 'duration_minutes', NULL, '30'),
(369, 'eventstatus', NULL, 'Planned'),
(369, 'activitytype', NULL, 'Call'),
(369, 'createdtime', NULL, '2026-08-03 06:46:54'),
(369, 'visibility', NULL, 'Public'),
(369, 'modifiedby', NULL, '1'),
(369, 'description', NULL, 'نمونه نهایی ثبت عملی طرح گویا؛ آزمون فرم تماس، تقویم شمسی، فهرست کاربران، ارتباط مخاطب و ماندگاری دیتابیس.'),
(369, 'source', NULL, 'CRM'),
(369, 'sms_remind_user', NULL, 'بدون'),
(369, 'sms_remind_invitees', NULL, 'بدون'),
(369, 'pbx_system_id', NULL, 'GOUYA-CALL-FINAL-14050513'),
(369, 'call_direction', NULL, 'خروجی'),
(369, 'record_id', NULL, '2291'),
(369, 'record_module', NULL, 'Events'),
(370, 'label', NULL, 'تماس نهایی تأییدشده طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(370, 'subject', NULL, 'تماس نهایی تأییدشده طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(370, 'assigned_user_id', NULL, '1'),
(370, 'date_start', NULL, '2026-08-03'),
(370, 'time_start', NULL, '07:00'),
(370, 'due_date', NULL, '2026-08-03'),
(370, 'time_end', NULL, '07:30'),
(370, 'duration_minutes', NULL, '30'),
(370, 'eventstatus', NULL, 'Planned'),
(370, 'activitytype', NULL, 'Call'),
(370, 'createdtime', NULL, '2026-08-03 06:55:24'),
(370, 'visibility', NULL, 'Public'),
(370, 'modifiedby', NULL, '1'),
(370, 'description', NULL, 'نمونه نهایی تأییدشده پس از اصلاح مبدل تاریخ؛ مرتبط با مخاطب آزمایشی، کاربر فعال و یادآوری نرم&zwnj;افزاری.'),
(370, 'source', NULL, 'CRM'),
(370, 'sms_remind_user', NULL, 'بدون'),
(370, 'sms_remind_invitees', NULL, 'بدون'),
(370, 'pbx_system_id', NULL, 'GOUYA-CALL-VERIFIED-14050513'),
(370, 'call_direction', NULL, 'خروجی'),
(370, 'record_id', NULL, '2292'),
(370, 'record_module', NULL, 'Events'),
(371, 'label', NULL, 'تماس عملی نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(371, 'subject', NULL, 'تماس عملی نهایی طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(371, 'assigned_user_id', NULL, '1'),
(371, 'date_start', NULL, '2026-08-03'),
(371, 'time_start', NULL, '07:00'),
(371, 'due_date', NULL, '2026-08-03'),
(371, 'time_end', NULL, '07:30'),
(371, 'duration_minutes', NULL, '30'),
(371, 'eventstatus', NULL, 'Planned'),
(371, 'activitytype', NULL, 'Call'),
(371, 'createdtime', NULL, '2026-08-03 06:59:49'),
(371, 'visibility', NULL, 'Public'),
(371, 'modifiedby', NULL, '1'),
(371, 'description', NULL, 'رکورد تست عملی نهایی طرح گویا با تاریخ شمسی تایپی، تقویم، ۲۶ کاربر، ارتباط مخاطب و یادآوری پایگاه داده.'),
(371, 'source', NULL, 'CRM'),
(371, 'sms_remind_user', NULL, 'بدون'),
(371, 'sms_remind_invitees', NULL, 'بدون'),
(371, 'pbx_system_id', NULL, 'GOUYA-CALL-PASS-14050513'),
(371, 'call_direction', NULL, 'خروجی'),
(371, 'record_id', NULL, '2293'),
(371, 'record_module', NULL, 'Events'),
(372, 'label', NULL, 'تماس تست نهایی موفق طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(372, 'subject', NULL, 'تماس تست نهایی موفق طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(372, 'assigned_user_id', NULL, '1'),
(372, 'date_start', NULL, '2026-08-03'),
(372, 'time_start', NULL, '07:00'),
(372, 'due_date', NULL, '2026-08-03'),
(372, 'time_end', NULL, '07:30'),
(372, 'duration_minutes', NULL, '30'),
(372, 'eventstatus', NULL, 'Planned'),
(372, 'activitytype', NULL, 'Call'),
(372, 'createdtime', NULL, '2026-08-03 07:05:39'),
(372, 'visibility', NULL, 'Public'),
(372, 'modifiedby', NULL, '1'),
(372, 'description', NULL, 'نمونه عملی طرح گویا؛ ثبت از فرم تماس، با تاریخ شمسی، یادآوری نرم&zwnj;افزاری و ارتباط واقعی با مخاطب.'),
(372, 'source', NULL, 'CRM'),
(372, 'sms_remind_user', NULL, 'بدون'),
(372, 'sms_remind_invitees', NULL, 'بدون'),
(372, 'pbx_system_id', NULL, 'GOUYA-CALL-FINAL-PASS-14050513'),
(372, 'call_direction', NULL, 'خروجی'),
(372, 'record_id', NULL, '2294'),
(372, 'record_module', NULL, 'Events'),
(373, 'label', NULL, 'تماس نهایی تأیید دیتابیس طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(373, 'subject', NULL, 'تماس نهایی تأیید دیتابیس طرح گویا - ۱۴۰۵/۰۵/۱۳'),
(373, 'assigned_user_id', NULL, '1'),
(373, 'date_start', NULL, '2026-08-04'),
(373, 'time_start', NULL, '07:00'),
(373, 'due_date', NULL, '2026-08-04'),
(373, 'time_end', NULL, '07:30'),
(373, 'duration_minutes', NULL, '30'),
(373, 'eventstatus', NULL, 'Planned'),
(373, 'activitytype', NULL, 'Call'),
(373, 'createdtime', NULL, '2026-08-03 07:08:10'),
(373, 'visibility', NULL, 'Public'),
(373, 'modifiedby', NULL, '1'),
(373, 'description', NULL, 'نمونه نهایی تأییدشده؛ ثبت واقعی فرم تماس طرح گویا و تطبیق مستقیم با دیتابیس.'),
(373, 'source', NULL, 'CRM'),
(373, 'sms_remind_user', NULL, 'بدون'),
(373, 'sms_remind_invitees', NULL, 'بدون'),
(373, 'pbx_system_id', NULL, 'GOUYA-CALL-DB-VERIFIED-14050513'),
(373, 'call_direction', NULL, 'خروجی'),
(373, 'record_id', NULL, '2295'),
(373, 'record_module', NULL, 'Events'),
(374, 'label', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013-Campaign'),
(374, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013-Campaign'),
(374, 'campaign_no', NULL, 'CAM14'),
(374, 'campaignstatus', NULL, 'Planning'),
(374, 'assigned_user_id', NULL, '1'),
(374, 'createdtime', NULL, '2026-08-09 06:09:47'),
(374, 'modifiedby', NULL, '1'),
(374, 'expectedrevenue', NULL, '0.00000000'),
(374, 'budgetcost', NULL, '0.00000000'),
(374, 'actualcost', NULL, '0.00000000'),
(374, 'expectedroi', NULL, '0.00000000'),
(374, 'actualroi', NULL, '0.00000000'),
(374, 'source', NULL, 'CRM'),
(374, 'record_id', NULL, '2296'),
(374, 'record_module', NULL, 'Campaigns'),
(375, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(375, 'firstname', NULL, 'آزمون'),
(375, 'lead_no', NULL, 'LEA1122'),
(375, 'phone', NULL, '+989121112233'),
(375, 'lastname', NULL, 'یکپارچگی سرنخ'),
(375, 'mobile', NULL, '+989121112233'),
(375, 'company', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013'),
(375, 'designation', NULL, 'مدیر تست'),
(375, 'email', NULL, 'lead-smoke@example.test'),
(375, 'website', NULL, 'https://example.test'),
(375, 'industry', NULL, 'خدماتی'),
(375, 'leadstatus', NULL, 'جدید'),
(375, 'annualrevenue', NULL, '0.00000000'),
(375, 'rating', NULL, 'زیاد'),
(375, 'assigned_user_id', NULL, '1'),
(375, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(375, 'createdtime', NULL, '2026-08-09 06:09:47'),
(375, 'modifiedby', NULL, '1'),
(375, 'lane', NULL, 'آدرس اصلی تست'),
(375, 'code', NULL, '1111111111'),
(375, 'city', NULL, 'تهران'),
(375, 'country', NULL, 'ایران'),
(375, 'state', NULL, 'تهران'),
(375, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809060946-7013'),
(375, 'source', NULL, 'CRM'),
(375, 'cf_lead_party_type', NULL, 'حقوقی'),
(375, 'cf_economic_code', NULL, '411111111111'),
(375, 'cf_registration_no', NULL, '98765'),
(375, 'cf_national_id', NULL, '10101010101'),
(375, 'cf_primary_region', NULL, 'منطقه یک'),
(375, 'cf_primary_lat', NULL, '35.6892000'),
(375, 'cf_primary_lng', NULL, '51.3890000'),
(375, 'cf_other_region', NULL, 'منطقه دو'),
(375, 'cf_other_country', NULL, 'ایران'),
(375, 'cf_other_state', NULL, 'البرز'),
(375, 'cf_other_city', NULL, 'کرج'),
(375, 'cf_other_code', NULL, '2222222222'),
(375, 'cf_other_street', NULL, 'آدرس دوم تست'),
(375, 'cf_other_lat', NULL, '35.8400000'),
(375, 'cf_other_lng', NULL, '50.9391000'),
(375, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(375, 'cf_instagram', NULL, 'https://instagram.com/example'),
(375, 'record_id', NULL, '2297'),
(375, 'record_module', NULL, 'Leads'),
(376, 'label', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013.txt'),
(376, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013.txt'),
(376, 'createdtime', NULL, '2026-08-09 06:09:47'),
(376, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013.txt'),
(376, 'assigned_user_id', NULL, '1'),
(376, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(376, 'filetype', NULL, 'text/plain'),
(376, 'filesize', NULL, '69'),
(376, 'filelocationtype', NULL, 'I'),
(376, 'filestatus', NULL, '1'),
(376, 'folderid', NULL, '1'),
(376, 'note_no', NULL, 'DOC11'),
(376, 'modifiedby', NULL, '1'),
(376, 'source', NULL, 'SARV LEADS'),
(376, 'record_id', NULL, '2298'),
(376, 'record_module', NULL, 'Documents'),
(378, 'phone', '+989121112233', '+989129998877'),
(378, 'mobile', '+989121112233', '+989129998877'),
(378, 'fax', '', '02166554433'),
(378, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(378, 'leadstatus', 'جدید', 'درجریان'),
(378, 'secondaryemail', 'finance-smoke@example.test', ''),
(379, 'label', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013-Task'),
(379, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809060946-7013-Task'),
(379, 'assigned_user_id', NULL, '1'),
(379, 'date_start', NULL, '2026-08-09'),
(379, 'time_start', NULL, '10:00'),
(379, 'due_date', NULL, '2026-08-09'),
(379, 'duration_hours', NULL, '10'),
(379, 'duration_minutes', NULL, '30'),
(379, 'activitytype', NULL, 'Task'),
(379, 'createdtime', NULL, '2026-08-09 06:09:48'),
(379, 'taskpriority', NULL, 'Medium'),
(379, 'visibility', NULL, 'Public'),
(379, 'modifiedby', NULL, '1'),
(379, 'source', NULL, 'CRM'),
(379, 'taskstatus', NULL, 'Not Started'),
(379, 'record_id', NULL, '2300'),
(379, 'record_module', NULL, 'Calendar'),
(380, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(385, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728-Campaign'),
(385, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728-Campaign'),
(385, 'campaign_no', NULL, 'CAM15'),
(385, 'campaignstatus', NULL, 'Planning'),
(385, 'assigned_user_id', NULL, '1'),
(385, 'createdtime', NULL, '2026-08-09 06:12:48'),
(385, 'modifiedby', NULL, '1'),
(385, 'expectedrevenue', NULL, '0.00000000'),
(385, 'budgetcost', NULL, '0.00000000'),
(385, 'actualcost', NULL, '0.00000000'),
(385, 'expectedroi', NULL, '0.00000000'),
(385, 'actualroi', NULL, '0.00000000'),
(385, 'source', NULL, 'CRM'),
(385, 'record_id', NULL, '2301'),
(385, 'record_module', NULL, 'Campaigns'),
(386, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(386, 'firstname', NULL, 'آزمون'),
(386, 'lead_no', NULL, 'LEA1123'),
(386, 'phone', NULL, '+989121112233'),
(386, 'lastname', NULL, 'یکپارچگی سرنخ'),
(386, 'mobile', NULL, '+989121112233'),
(386, 'company', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728'),
(386, 'designation', NULL, 'مدیر تست'),
(386, 'email', NULL, 'lead-smoke@example.test'),
(386, 'website', NULL, 'https://example.test'),
(386, 'industry', NULL, 'خدماتی'),
(386, 'leadstatus', NULL, 'جدید'),
(386, 'annualrevenue', NULL, '0.00000000'),
(386, 'rating', NULL, 'زیاد'),
(386, 'assigned_user_id', NULL, '1'),
(386, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(386, 'createdtime', NULL, '2026-08-09 06:12:49'),
(386, 'modifiedby', NULL, '1'),
(386, 'lane', NULL, 'آدرس اصلی تست'),
(386, 'code', NULL, '1111111111'),
(386, 'city', NULL, 'تهران'),
(386, 'country', NULL, 'ایران'),
(386, 'state', NULL, 'تهران'),
(386, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809061248-2728'),
(386, 'source', NULL, 'CRM'),
(386, 'cf_lead_party_type', NULL, 'حقوقی'),
(386, 'cf_economic_code', NULL, '411111111111'),
(386, 'cf_registration_no', NULL, '98765'),
(386, 'cf_national_id', NULL, '10101010101'),
(386, 'cf_primary_region', NULL, 'منطقه یک'),
(386, 'cf_primary_lat', NULL, '35.6892000'),
(386, 'cf_primary_lng', NULL, '51.3890000'),
(386, 'cf_other_region', NULL, 'منطقه دو'),
(386, 'cf_other_country', NULL, 'ایران'),
(386, 'cf_other_state', NULL, 'البرز'),
(386, 'cf_other_city', NULL, 'کرج'),
(386, 'cf_other_code', NULL, '2222222222'),
(386, 'cf_other_street', NULL, 'آدرس دوم تست'),
(386, 'cf_other_lat', NULL, '35.8400000'),
(386, 'cf_other_lng', NULL, '50.9391000'),
(386, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(386, 'cf_instagram', NULL, 'https://instagram.com/example'),
(386, 'record_id', NULL, '2302'),
(386, 'record_module', NULL, 'Leads'),
(387, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728.txt'),
(387, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728.txt'),
(387, 'createdtime', NULL, '2026-08-09 06:12:49'),
(387, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728.txt'),
(387, 'assigned_user_id', NULL, '1'),
(387, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(387, 'filetype', NULL, 'text/plain'),
(387, 'filesize', NULL, '69'),
(387, 'filelocationtype', NULL, 'I'),
(387, 'filestatus', NULL, '1'),
(387, 'folderid', NULL, '1'),
(387, 'note_no', NULL, 'DOC12'),
(387, 'modifiedby', NULL, '1'),
(387, 'source', NULL, 'SARV LEADS'),
(387, 'record_id', NULL, '2303'),
(387, 'record_module', NULL, 'Documents'),
(389, 'phone', '+989121112233', '+989129998877'),
(389, 'mobile', '+989121112233', '+989129998877'),
(389, 'fax', '', '02166554433'),
(389, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(389, 'leadstatus', 'جدید', 'درجریان'),
(389, 'secondaryemail', 'finance-smoke@example.test', ''),
(390, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728-Task'),
(390, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809061248-2728-Task'),
(390, 'assigned_user_id', NULL, '1'),
(390, 'date_start', NULL, '2026-08-09'),
(390, 'time_start', NULL, '10:00'),
(390, 'due_date', NULL, '2026-08-09'),
(390, 'duration_hours', NULL, '10'),
(390, 'duration_minutes', NULL, '30'),
(390, 'activitytype', NULL, 'Task'),
(390, 'createdtime', NULL, '2026-08-09 06:12:49'),
(390, 'taskpriority', NULL, 'Medium'),
(390, 'visibility', NULL, 'Public'),
(390, 'modifiedby', NULL, '1'),
(390, 'source', NULL, 'CRM'),
(390, 'taskstatus', NULL, 'Not Started'),
(390, 'record_id', NULL, '2305'),
(390, 'record_module', NULL, 'Calendar'),
(391, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(396, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881-Campaign'),
(396, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881-Campaign'),
(396, 'campaign_no', NULL, 'CAM16'),
(396, 'campaignstatus', NULL, 'Planning'),
(396, 'assigned_user_id', NULL, '1'),
(396, 'createdtime', NULL, '2026-08-09 06:13:45'),
(396, 'modifiedby', NULL, '1'),
(396, 'expectedrevenue', NULL, '0.00000000'),
(396, 'budgetcost', NULL, '0.00000000'),
(396, 'actualcost', NULL, '0.00000000'),
(396, 'expectedroi', NULL, '0.00000000'),
(396, 'actualroi', NULL, '0.00000000'),
(396, 'source', NULL, 'CRM'),
(396, 'record_id', NULL, '2306'),
(396, 'record_module', NULL, 'Campaigns'),
(397, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(397, 'firstname', NULL, 'آزمون'),
(397, 'lead_no', NULL, 'LEA1124'),
(397, 'phone', NULL, '+989121112233'),
(397, 'lastname', NULL, 'یکپارچگی سرنخ'),
(397, 'mobile', NULL, '+989121112233'),
(397, 'company', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881'),
(397, 'designation', NULL, 'مدیر تست'),
(397, 'email', NULL, 'lead-smoke@example.test'),
(397, 'website', NULL, 'https://example.test'),
(397, 'industry', NULL, 'خدماتی'),
(397, 'leadstatus', NULL, 'جدید'),
(397, 'annualrevenue', NULL, '0.00000000'),
(397, 'rating', NULL, 'زیاد'),
(397, 'assigned_user_id', NULL, '1'),
(397, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(397, 'createdtime', NULL, '2026-08-09 06:13:45'),
(397, 'modifiedby', NULL, '1'),
(397, 'lane', NULL, 'آدرس اصلی تست'),
(397, 'code', NULL, '1111111111'),
(397, 'city', NULL, 'تهران'),
(397, 'country', NULL, 'ایران'),
(397, 'state', NULL, 'تهران'),
(397, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881'),
(397, 'source', NULL, 'CRM'),
(397, 'cf_lead_party_type', NULL, 'حقوقی'),
(397, 'cf_economic_code', NULL, '411111111111'),
(397, 'cf_registration_no', NULL, '98765'),
(397, 'cf_national_id', NULL, '10101010101'),
(397, 'cf_primary_region', NULL, 'منطقه یک'),
(397, 'cf_primary_lat', NULL, '35.6892000'),
(397, 'cf_primary_lng', NULL, '51.3890000'),
(397, 'cf_other_region', NULL, 'منطقه دو'),
(397, 'cf_other_country', NULL, 'ایران'),
(397, 'cf_other_state', NULL, 'البرز'),
(397, 'cf_other_city', NULL, 'کرج'),
(397, 'cf_other_code', NULL, '2222222222'),
(397, 'cf_other_street', NULL, 'آدرس دوم تست'),
(397, 'cf_other_lat', NULL, '35.8400000'),
(397, 'cf_other_lng', NULL, '50.9391000'),
(397, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(397, 'cf_instagram', NULL, 'https://instagram.com/example'),
(397, 'record_id', NULL, '2307'),
(397, 'record_module', NULL, 'Leads'),
(398, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881.txt'),
(398, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881.txt'),
(398, 'createdtime', NULL, '2026-08-09 06:13:45'),
(398, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881.txt'),
(398, 'assigned_user_id', NULL, '1'),
(398, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(398, 'filetype', NULL, 'text/plain'),
(398, 'filesize', NULL, '69'),
(398, 'filelocationtype', NULL, 'I'),
(398, 'filestatus', NULL, '1'),
(398, 'folderid', NULL, '1'),
(398, 'note_no', NULL, 'DOC13'),
(398, 'modifiedby', NULL, '1'),
(398, 'source', NULL, 'SARV LEADS'),
(398, 'record_id', NULL, '2308'),
(398, 'record_module', NULL, 'Documents'),
(400, 'phone', '+989121112233', '+989129998877'),
(400, 'mobile', '+989121112233', '+989129998877'),
(400, 'fax', '', '02166554433'),
(400, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(400, 'leadstatus', 'جدید', 'درجریان'),
(400, 'secondaryemail', 'finance-smoke@example.test', ''),
(401, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881-Task'),
(401, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881-Task'),
(401, 'assigned_user_id', NULL, '1'),
(401, 'date_start', NULL, '2026-08-09'),
(401, 'time_start', NULL, '10:00'),
(401, 'due_date', NULL, '2026-08-09'),
(401, 'duration_hours', NULL, '10'),
(401, 'duration_minutes', NULL, '30'),
(401, 'activitytype', NULL, 'Task'),
(401, 'createdtime', NULL, '2026-08-09 06:13:46'),
(401, 'taskpriority', NULL, 'Medium'),
(401, 'visibility', NULL, 'Public'),
(401, 'modifiedby', NULL, '1'),
(401, 'source', NULL, 'CRM'),
(401, 'taskstatus', NULL, 'Not Started'),
(401, 'record_id', NULL, '2310'),
(401, 'record_module', NULL, 'Calendar'),
(402, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(403, 'label', NULL, 'ورودی استاندارد'),
(403, 'lead_no', NULL, 'LEA1125'),
(403, 'phone', NULL, '+989121234567'),
(403, 'lastname', NULL, 'ورودی استاندارد'),
(403, 'mobile', NULL, '+989351234567'),
(403, 'company', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881-IMPORT'),
(403, 'email', NULL, 'csv-import@example.test'),
(403, 'leadstatus', NULL, 'جدید'),
(403, 'annualrevenue', NULL, '0.00000000'),
(403, 'assigned_user_id', NULL, '1'),
(403, 'createdtime', NULL, '2026-08-09 06:13:46'),
(403, 'modifiedby', NULL, '1'),
(403, 'source', NULL, 'CRM'),
(403, 'cf_lead_party_type', NULL, 'حقیقی'),
(403, 'cf_primary_lat', NULL, '0.0000000'),
(403, 'cf_primary_lng', NULL, '0.0000000'),
(403, 'cf_other_lat', NULL, '0.0000000'),
(403, 'cf_other_lng', NULL, '0.0000000'),
(403, 'record_id', NULL, '2311'),
(403, 'record_module', NULL, 'Leads'),
(404, 'label', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881'),
(404, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809061344-4881'),
(404, 'account_no', NULL, 'ACC10'),
(404, 'phone', NULL, '+989129998877'),
(404, 'website', NULL, 'https://example.test'),
(404, 'fax', NULL, '02166554433'),
(404, 'email1', NULL, 'lead-updated@example.test'),
(404, 'rating', NULL, 'زیاد'),
(404, 'industry', NULL, 'خدماتی'),
(404, 'annual_revenue', NULL, '0.00000000'),
(404, 'assigned_user_id', NULL, '1'),
(404, 'createdtime', NULL, '2026-08-09 06:13:46'),
(404, 'modifiedby', NULL, '1'),
(404, 'bill_street', NULL, 'آدرس اصلی تست'),
(404, 'ship_street', NULL, 'آدرس دوم تست'),
(404, 'bill_city', NULL, 'تهران'),
(404, 'ship_city', NULL, 'کرج'),
(404, 'bill_state', NULL, 'تهران'),
(404, 'ship_state', NULL, 'البرز'),
(404, 'bill_code', NULL, '1111111111'),
(404, 'ship_code', NULL, '2222222222'),
(404, 'bill_country', NULL, 'ایران'),
(404, 'ship_country', NULL, 'ایران'),
(404, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881'),
(404, 'isconvertedfromlead', NULL, '1'),
(404, 'source', NULL, 'WEBSERVICE'),
(404, 'cf_party_type', NULL, 'حقوقی'),
(404, 'cf_first_name', NULL, 'آزمون'),
(404, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(404, 'cf_portal_visible', NULL, '1'),
(404, 'cf_registration_no', NULL, '98765'),
(404, 'cf_national_id', NULL, '10101010101'),
(404, 'cf_economic_code', NULL, '411111111111'),
(404, 'cf_bill_region', NULL, 'منطقه یک'),
(404, 'cf_ship_region', NULL, 'منطقه دو'),
(404, 'cf_bill_lat', NULL, '35.6900000'),
(404, 'cf_bill_lng', NULL, '51.3900000'),
(404, 'cf_ship_lat', NULL, '35.8400000'),
(404, 'cf_ship_lng', NULL, '50.9400000'),
(404, 'cf_credit_amount', NULL, '0.00000000'),
(404, 'cf_credit_limit', NULL, '0.00000000'),
(404, 'cf_sales_discount', NULL, '0.000'),
(404, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(404, 'cf_instagram', NULL, 'https://instagram.com/example'),
(404, 'record_id', NULL, '2312'),
(404, 'record_module', NULL, 'Accounts'),
(405, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(405, 'firstname', NULL, 'آزمون'),
(405, 'contact_no', NULL, 'CON88'),
(405, 'phone', NULL, '+989129998877'),
(405, 'lastname', NULL, 'یکپارچگی سرنخ'),
(405, 'mobile', NULL, '+989129998877'),
(405, 'account_id', NULL, '2312'),
(405, 'title', NULL, 'مدیر تست'),
(405, 'fax', NULL, '02166554433'),
(405, 'email', NULL, 'lead-updated@example.test'),
(405, 'assigned_user_id', NULL, '1'),
(405, 'createdtime', NULL, '2026-08-09 06:13:47'),
(405, 'modifiedby', NULL, '1'),
(405, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(405, 'mailingcity', NULL, 'تهران'),
(405, 'mailingstate', NULL, 'تهران'),
(405, 'mailingcountry', NULL, 'ایران'),
(405, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809061344-4881'),
(405, 'isconvertedfromlead', NULL, '1'),
(405, 'source', NULL, 'WEBSERVICE'),
(405, 'cf_primary_lat', NULL, '0.0000000'),
(405, 'cf_primary_lng', NULL, '0.0000000'),
(405, 'cf_other_lat', NULL, '0.0000000'),
(405, 'cf_other_lng', NULL, '0.0000000'),
(405, 'record_id', NULL, '2313'),
(405, 'record_module', NULL, 'Contacts'),
(413, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209-Campaign'),
(413, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209-Campaign'),
(413, 'campaign_no', NULL, 'CAM17'),
(413, 'campaignstatus', NULL, 'Planning'),
(413, 'assigned_user_id', NULL, '1'),
(413, 'createdtime', NULL, '2026-08-09 06:20:44'),
(413, 'modifiedby', NULL, '1'),
(413, 'expectedrevenue', NULL, '0.00000000'),
(413, 'budgetcost', NULL, '0.00000000'),
(413, 'actualcost', NULL, '0.00000000'),
(413, 'expectedroi', NULL, '0.00000000'),
(413, 'actualroi', NULL, '0.00000000'),
(413, 'source', NULL, 'CRM'),
(413, 'record_id', NULL, '2314'),
(413, 'record_module', NULL, 'Campaigns'),
(414, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(414, 'salutationtype', NULL, 'Mr.'),
(414, 'firstname', NULL, 'آزمون'),
(414, 'lead_no', NULL, 'LEA1126'),
(414, 'phone', NULL, '+989121112233'),
(414, 'lastname', NULL, 'یکپارچگی سرنخ'),
(414, 'mobile', NULL, '+989121112233'),
(414, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209'),
(414, 'designation', NULL, 'مدیر تست'),
(414, 'email', NULL, 'lead-smoke@example.test'),
(414, 'website', NULL, 'https://example.test'),
(414, 'industry', NULL, 'خدماتی'),
(414, 'leadstatus', NULL, 'جدید'),
(414, 'annualrevenue', NULL, '0.00000000'),
(414, 'rating', NULL, 'زیاد'),
(414, 'assigned_user_id', NULL, '1'),
(414, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(414, 'createdtime', NULL, '2026-08-09 06:20:44'),
(414, 'modifiedby', NULL, '1'),
(414, 'lane', NULL, 'آدرس اصلی تست'),
(414, 'code', NULL, '1111111111'),
(414, 'city', NULL, 'تهران'),
(414, 'country', NULL, 'ایران'),
(414, 'state', NULL, 'تهران'),
(414, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209'),
(414, 'source', NULL, 'CRM'),
(414, 'cf_lead_party_type', NULL, 'حقوقی'),
(414, 'cf_economic_code', NULL, '411111111111'),
(414, 'cf_registration_no', NULL, '98765'),
(414, 'cf_national_id', NULL, '10101010101'),
(414, 'cf_primary_region', NULL, 'منطقه یک'),
(414, 'cf_primary_lat', NULL, '35.6892000'),
(414, 'cf_primary_lng', NULL, '51.3890000'),
(414, 'cf_other_region', NULL, 'منطقه دو'),
(414, 'cf_other_country', NULL, 'ایران'),
(414, 'cf_other_state', NULL, 'البرز'),
(414, 'cf_other_city', NULL, 'کرج'),
(414, 'cf_other_code', NULL, '2222222222'),
(414, 'cf_other_street', NULL, 'آدرس دوم تست'),
(414, 'cf_other_lat', NULL, '35.8400000'),
(414, 'cf_other_lng', NULL, '50.9391000'),
(414, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(414, 'cf_instagram', NULL, 'https://instagram.com/example'),
(414, 'record_id', NULL, '2315'),
(414, 'record_module', NULL, 'Leads'),
(415, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209.txt'),
(415, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209.txt'),
(415, 'createdtime', NULL, '2026-08-09 06:20:44'),
(415, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209.txt'),
(415, 'assigned_user_id', NULL, '1'),
(415, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(415, 'filetype', NULL, 'text/plain'),
(415, 'filesize', NULL, '69'),
(415, 'filelocationtype', NULL, 'I'),
(415, 'filestatus', NULL, '1'),
(415, 'folderid', NULL, '1'),
(415, 'note_no', NULL, 'DOC14'),
(415, 'modifiedby', NULL, '1'),
(415, 'source', NULL, 'SARV LEADS'),
(415, 'record_id', NULL, '2316'),
(415, 'record_module', NULL, 'Documents'),
(417, 'phone', '+989121112233', '+989129998877'),
(417, 'mobile', '+989121112233', '+989129998877'),
(417, 'fax', '', '02166554433'),
(417, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(417, 'leadstatus', 'جدید', 'درجریان'),
(417, 'secondaryemail', 'finance-smoke@example.test', ''),
(418, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209-Task'),
(418, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209-Task'),
(418, 'assigned_user_id', NULL, '1'),
(418, 'date_start', NULL, '2026-08-09'),
(418, 'time_start', NULL, '10:00'),
(418, 'due_date', NULL, '2026-08-09'),
(418, 'duration_hours', NULL, '10'),
(418, 'duration_minutes', NULL, '30'),
(418, 'activitytype', NULL, 'Task'),
(418, 'createdtime', NULL, '2026-08-09 06:20:44'),
(418, 'taskpriority', NULL, 'Medium'),
(418, 'visibility', NULL, 'Public'),
(418, 'modifiedby', NULL, '1'),
(418, 'source', NULL, 'CRM'),
(418, 'taskstatus', NULL, 'Not Started'),
(418, 'record_id', NULL, '2318'),
(418, 'record_module', NULL, 'Calendar'),
(419, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(420, 'label', NULL, 'ورودی استاندارد'),
(420, 'lead_no', NULL, 'LEA1127'),
(420, 'phone', NULL, '+989121234567'),
(420, 'lastname', NULL, 'ورودی استاندارد'),
(420, 'mobile', NULL, '+989351234567'),
(420, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209-IMPORT'),
(420, 'email', NULL, 'csv-import@example.test'),
(420, 'leadstatus', NULL, 'جدید'),
(420, 'annualrevenue', NULL, '0.00000000'),
(420, 'assigned_user_id', NULL, '1'),
(420, 'createdtime', NULL, '2026-08-09 06:20:45'),
(420, 'modifiedby', NULL, '1'),
(420, 'source', NULL, 'CRM'),
(420, 'cf_lead_party_type', NULL, 'حقیقی'),
(420, 'cf_primary_lat', NULL, '0.0000000'),
(420, 'cf_primary_lng', NULL, '0.0000000'),
(420, 'cf_other_lat', NULL, '0.0000000'),
(420, 'cf_other_lng', NULL, '0.0000000'),
(420, 'record_id', NULL, '2319'),
(420, 'record_module', NULL, 'Leads'),
(421, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209'),
(421, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809062044-1209'),
(421, 'account_no', NULL, 'ACC11'),
(421, 'phone', NULL, '+989129998877'),
(421, 'website', NULL, 'https://example.test'),
(421, 'fax', NULL, '02166554433'),
(421, 'email1', NULL, 'lead-updated@example.test'),
(421, 'rating', NULL, 'زیاد'),
(421, 'industry', NULL, 'خدماتی'),
(421, 'annual_revenue', NULL, '0.00000000'),
(421, 'assigned_user_id', NULL, '1'),
(421, 'createdtime', NULL, '2026-08-09 06:20:45'),
(421, 'modifiedby', NULL, '1'),
(421, 'bill_street', NULL, 'آدرس اصلی تست'),
(421, 'ship_street', NULL, 'آدرس دوم تست'),
(421, 'bill_city', NULL, 'تهران'),
(421, 'ship_city', NULL, 'کرج'),
(421, 'bill_state', NULL, 'تهران'),
(421, 'ship_state', NULL, 'البرز'),
(421, 'bill_code', NULL, '1111111111'),
(421, 'ship_code', NULL, '2222222222'),
(421, 'bill_country', NULL, 'ایران'),
(421, 'ship_country', NULL, 'ایران'),
(421, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209'),
(421, 'isconvertedfromlead', NULL, '1'),
(421, 'source', NULL, 'WEBSERVICE'),
(421, 'cf_party_type', NULL, 'حقوقی'),
(421, 'cf_first_name', NULL, 'آزمون'),
(421, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(421, 'cf_portal_visible', NULL, '1'),
(421, 'cf_registration_no', NULL, '98765'),
(421, 'cf_national_id', NULL, '10101010101'),
(421, 'cf_economic_code', NULL, '411111111111'),
(421, 'cf_bill_region', NULL, 'منطقه یک'),
(421, 'cf_ship_region', NULL, 'منطقه دو'),
(421, 'cf_bill_lat', NULL, '35.6900000'),
(421, 'cf_bill_lng', NULL, '51.3900000'),
(421, 'cf_ship_lat', NULL, '35.8400000'),
(421, 'cf_ship_lng', NULL, '50.9400000'),
(421, 'cf_credit_amount', NULL, '0.00000000'),
(421, 'cf_credit_limit', NULL, '0.00000000'),
(421, 'cf_sales_discount', NULL, '0.000'),
(421, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(421, 'cf_instagram', NULL, 'https://instagram.com/example'),
(421, 'record_id', NULL, '2320'),
(421, 'record_module', NULL, 'Accounts'),
(422, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(422, 'salutationtype', NULL, 'Mr.'),
(422, 'firstname', NULL, 'آزمون'),
(422, 'contact_no', NULL, 'CON89'),
(422, 'phone', NULL, '+989129998877'),
(422, 'lastname', NULL, 'یکپارچگی سرنخ'),
(422, 'mobile', NULL, '+989129998877'),
(422, 'account_id', NULL, '2320'),
(422, 'title', NULL, 'مدیر تست'),
(422, 'fax', NULL, '02166554433'),
(422, 'email', NULL, 'lead-updated@example.test'),
(422, 'assigned_user_id', NULL, '1'),
(422, 'createdtime', NULL, '2026-08-09 06:20:45'),
(422, 'modifiedby', NULL, '1'),
(422, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(422, 'mailingcity', NULL, 'تهران'),
(422, 'mailingstate', NULL, 'تهران'),
(422, 'mailingcountry', NULL, 'ایران'),
(422, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062044-1209'),
(422, 'isconvertedfromlead', NULL, '1'),
(422, 'source', NULL, 'WEBSERVICE'),
(422, 'cf_primary_lat', NULL, '0.0000000'),
(422, 'cf_primary_lng', NULL, '0.0000000'),
(422, 'cf_other_lat', NULL, '0.0000000'),
(422, 'cf_other_lng', NULL, '0.0000000'),
(422, 'record_id', NULL, '2321'),
(422, 'record_module', NULL, 'Contacts'),
(430, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570-Campaign'),
(430, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570-Campaign'),
(430, 'campaign_no', NULL, 'CAM18'),
(430, 'campaignstatus', NULL, 'Planning'),
(430, 'assigned_user_id', NULL, '1'),
(430, 'createdtime', NULL, '2026-08-09 06:22:20'),
(430, 'modifiedby', NULL, '1'),
(430, 'expectedrevenue', NULL, '0.00000000'),
(430, 'budgetcost', NULL, '0.00000000'),
(430, 'actualcost', NULL, '0.00000000'),
(430, 'expectedroi', NULL, '0.00000000'),
(430, 'actualroi', NULL, '0.00000000'),
(430, 'source', NULL, 'CRM'),
(430, 'record_id', NULL, '2322'),
(430, 'record_module', NULL, 'Campaigns'),
(431, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(431, 'salutationtype', NULL, 'Mr.'),
(431, 'firstname', NULL, 'آزمون'),
(431, 'lead_no', NULL, 'LEA1128'),
(431, 'phone', NULL, '+989121112233'),
(431, 'lastname', NULL, 'یکپارچگی سرنخ'),
(431, 'mobile', NULL, '+989121112233'),
(431, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570'),
(431, 'designation', NULL, 'مدیر تست'),
(431, 'email', NULL, 'lead-smoke@example.test'),
(431, 'website', NULL, 'https://example.test'),
(431, 'industry', NULL, 'خدماتی'),
(431, 'leadstatus', NULL, 'جدید'),
(431, 'annualrevenue', NULL, '0.00000000'),
(431, 'rating', NULL, 'زیاد'),
(431, 'assigned_user_id', NULL, '1'),
(431, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(431, 'createdtime', NULL, '2026-08-09 06:22:21'),
(431, 'modifiedby', NULL, '1'),
(431, 'lane', NULL, 'آدرس اصلی تست'),
(431, 'code', NULL, '1111111111'),
(431, 'city', NULL, 'تهران'),
(431, 'country', NULL, 'ایران'),
(431, 'state', NULL, 'تهران'),
(431, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570'),
(431, 'source', NULL, 'CRM'),
(431, 'cf_lead_party_type', NULL, 'حقوقی'),
(431, 'cf_economic_code', NULL, '411111111111'),
(431, 'cf_registration_no', NULL, '98765'),
(431, 'cf_national_id', NULL, '10101010101'),
(431, 'cf_primary_region', NULL, 'منطقه یک'),
(431, 'cf_primary_lat', NULL, '35.6892000'),
(431, 'cf_primary_lng', NULL, '51.3890000'),
(431, 'cf_other_region', NULL, 'منطقه دو'),
(431, 'cf_other_country', NULL, 'ایران'),
(431, 'cf_other_state', NULL, 'البرز'),
(431, 'cf_other_city', NULL, 'کرج'),
(431, 'cf_other_code', NULL, '2222222222'),
(431, 'cf_other_street', NULL, 'آدرس دوم تست'),
(431, 'cf_other_lat', NULL, '35.8400000'),
(431, 'cf_other_lng', NULL, '50.9391000'),
(431, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(431, 'cf_instagram', NULL, 'https://instagram.com/example'),
(431, 'record_id', NULL, '2323'),
(431, 'record_module', NULL, 'Leads'),
(432, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570.txt'),
(432, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570.txt'),
(432, 'createdtime', NULL, '2026-08-09 06:22:21'),
(432, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570.txt'),
(432, 'assigned_user_id', NULL, '1'),
(432, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(432, 'filetype', NULL, 'text/plain'),
(432, 'filesize', NULL, '69'),
(432, 'filelocationtype', NULL, 'I'),
(432, 'filestatus', NULL, '1'),
(432, 'folderid', NULL, '1'),
(432, 'note_no', NULL, 'DOC15'),
(432, 'modifiedby', NULL, '1'),
(432, 'source', NULL, 'SARV LEADS'),
(432, 'record_id', NULL, '2324'),
(432, 'record_module', NULL, 'Documents'),
(434, 'phone', '+989121112233', '+989129998877'),
(434, 'mobile', '+989121112233', '+989129998877'),
(434, 'fax', '', '02166554433'),
(434, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(434, 'leadstatus', 'جدید', 'درجریان'),
(434, 'secondaryemail', 'finance-smoke@example.test', ''),
(435, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570-Task'),
(435, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570-Task'),
(435, 'assigned_user_id', NULL, '1'),
(435, 'date_start', NULL, '2026-08-09'),
(435, 'time_start', NULL, '10:00'),
(435, 'due_date', NULL, '2026-08-09'),
(435, 'duration_hours', NULL, '10'),
(435, 'duration_minutes', NULL, '30'),
(435, 'activitytype', NULL, 'Task'),
(435, 'createdtime', NULL, '2026-08-09 06:22:21'),
(435, 'taskpriority', NULL, 'Medium'),
(435, 'visibility', NULL, 'Public'),
(435, 'modifiedby', NULL, '1'),
(435, 'source', NULL, 'CRM'),
(435, 'taskstatus', NULL, 'Not Started'),
(435, 'record_id', NULL, '2326'),
(435, 'record_module', NULL, 'Calendar'),
(436, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(437, 'label', NULL, 'ورودی استاندارد'),
(437, 'lead_no', NULL, 'LEA1129'),
(437, 'phone', NULL, '+989121234567'),
(437, 'lastname', NULL, 'ورودی استاندارد'),
(437, 'mobile', NULL, '+989351234567'),
(437, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570-IMPORT'),
(437, 'email', NULL, 'csv-import@example.test'),
(437, 'leadstatus', NULL, 'جدید'),
(437, 'annualrevenue', NULL, '0.00000000'),
(437, 'assigned_user_id', NULL, '1'),
(437, 'createdtime', NULL, '2026-08-09 06:22:21'),
(437, 'modifiedby', NULL, '1'),
(437, 'source', NULL, 'CRM'),
(437, 'cf_lead_party_type', NULL, 'حقیقی'),
(437, 'cf_primary_lat', NULL, '0.0000000'),
(437, 'cf_primary_lng', NULL, '0.0000000'),
(437, 'cf_other_lat', NULL, '0.0000000'),
(437, 'cf_other_lng', NULL, '0.0000000'),
(437, 'record_id', NULL, '2327'),
(437, 'record_module', NULL, 'Leads'),
(438, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570'),
(438, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809062220-7570'),
(438, 'account_no', NULL, 'ACC12'),
(438, 'phone', NULL, '+989129998877'),
(438, 'website', NULL, 'https://example.test'),
(438, 'fax', NULL, '02166554433'),
(438, 'email1', NULL, 'lead-updated@example.test'),
(438, 'rating', NULL, 'زیاد'),
(438, 'industry', NULL, 'خدماتی'),
(438, 'annual_revenue', NULL, '0.00000000'),
(438, 'assigned_user_id', NULL, '1'),
(438, 'createdtime', NULL, '2026-08-09 06:22:21'),
(438, 'modifiedby', NULL, '1'),
(438, 'bill_street', NULL, 'آدرس اصلی تست'),
(438, 'ship_street', NULL, 'آدرس دوم تست'),
(438, 'bill_city', NULL, 'تهران'),
(438, 'ship_city', NULL, 'کرج'),
(438, 'bill_state', NULL, 'تهران'),
(438, 'ship_state', NULL, 'البرز'),
(438, 'bill_code', NULL, '1111111111'),
(438, 'ship_code', NULL, '2222222222'),
(438, 'bill_country', NULL, 'ایران'),
(438, 'ship_country', NULL, 'ایران'),
(438, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570'),
(438, 'isconvertedfromlead', NULL, '1'),
(438, 'source', NULL, 'WEBSERVICE'),
(438, 'cf_party_type', NULL, 'حقوقی'),
(438, 'cf_first_name', NULL, 'آزمون'),
(438, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(438, 'cf_portal_visible', NULL, '1'),
(438, 'cf_registration_no', NULL, '98765'),
(438, 'cf_national_id', NULL, '10101010101'),
(438, 'cf_economic_code', NULL, '411111111111'),
(438, 'cf_bill_region', NULL, 'منطقه یک'),
(438, 'cf_ship_region', NULL, 'منطقه دو'),
(438, 'cf_bill_lat', NULL, '35.6900000'),
(438, 'cf_bill_lng', NULL, '51.3900000'),
(438, 'cf_ship_lat', NULL, '35.8400000'),
(438, 'cf_ship_lng', NULL, '50.9400000'),
(438, 'cf_credit_amount', NULL, '0.00000000'),
(438, 'cf_credit_limit', NULL, '0.00000000'),
(438, 'cf_sales_discount', NULL, '0.000'),
(438, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(438, 'cf_instagram', NULL, 'https://instagram.com/example'),
(438, 'record_id', NULL, '2328'),
(438, 'record_module', NULL, 'Accounts'),
(439, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(439, 'salutationtype', NULL, 'Mr.'),
(439, 'firstname', NULL, 'آزمون'),
(439, 'contact_no', NULL, 'CON90'),
(439, 'phone', NULL, '+989129998877'),
(439, 'lastname', NULL, 'یکپارچگی سرنخ'),
(439, 'mobile', NULL, '+989129998877'),
(439, 'account_id', NULL, '2328'),
(439, 'title', NULL, 'مدیر تست'),
(439, 'fax', NULL, '02166554433'),
(439, 'email', NULL, 'lead-updated@example.test'),
(439, 'assigned_user_id', NULL, '1'),
(439, 'createdtime', NULL, '2026-08-09 06:22:21'),
(439, 'modifiedby', NULL, '1'),
(439, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(439, 'mailingcity', NULL, 'تهران'),
(439, 'mailingstate', NULL, 'تهران'),
(439, 'mailingcountry', NULL, 'ایران'),
(439, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062220-7570'),
(439, 'isconvertedfromlead', NULL, '1'),
(439, 'source', NULL, 'WEBSERVICE'),
(439, 'cf_primary_lat', NULL, '0.0000000'),
(439, 'cf_primary_lng', NULL, '0.0000000'),
(439, 'cf_other_lat', NULL, '0.0000000'),
(439, 'cf_other_lng', NULL, '0.0000000'),
(439, 'record_id', NULL, '2329'),
(439, 'record_module', NULL, 'Contacts'),
(447, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866-Campaign'),
(447, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866-Campaign'),
(447, 'campaign_no', NULL, 'CAM19'),
(447, 'campaignstatus', NULL, 'Planning'),
(447, 'assigned_user_id', NULL, '1'),
(447, 'createdtime', NULL, '2026-08-09 06:27:04'),
(447, 'modifiedby', NULL, '1'),
(447, 'expectedrevenue', NULL, '0.00000000'),
(447, 'budgetcost', NULL, '0.00000000'),
(447, 'actualcost', NULL, '0.00000000'),
(447, 'expectedroi', NULL, '0.00000000'),
(447, 'actualroi', NULL, '0.00000000'),
(447, 'source', NULL, 'CRM'),
(447, 'record_id', NULL, '2330'),
(447, 'record_module', NULL, 'Campaigns'),
(448, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(448, 'salutationtype', NULL, 'Mr.'),
(448, 'firstname', NULL, 'آزمون'),
(448, 'lead_no', NULL, 'LEA1130'),
(448, 'phone', NULL, '+989121112233'),
(448, 'lastname', NULL, 'یکپارچگی سرنخ'),
(448, 'mobile', NULL, '+989121112233'),
(448, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866'),
(448, 'designation', NULL, 'مدیر تست'),
(448, 'email', NULL, 'lead-smoke@example.test'),
(448, 'website', NULL, 'https://example.test'),
(448, 'industry', NULL, 'خدماتی'),
(448, 'leadstatus', NULL, 'جدید'),
(448, 'annualrevenue', NULL, '0.00000000'),
(448, 'rating', NULL, 'زیاد'),
(448, 'assigned_user_id', NULL, '1'),
(448, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(448, 'createdtime', NULL, '2026-08-09 06:27:05'),
(448, 'modifiedby', NULL, '1'),
(448, 'lane', NULL, 'آدرس اصلی تست'),
(448, 'code', NULL, '1111111111'),
(448, 'city', NULL, 'تهران'),
(448, 'country', NULL, 'ایران'),
(448, 'state', NULL, 'تهران'),
(448, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866'),
(448, 'source', NULL, 'CRM'),
(448, 'cf_lead_party_type', NULL, 'حقوقی'),
(448, 'cf_economic_code', NULL, '411111111111'),
(448, 'cf_registration_no', NULL, '98765'),
(448, 'cf_national_id', NULL, '10101010101'),
(448, 'cf_primary_region', NULL, 'منطقه یک'),
(448, 'cf_primary_lat', NULL, '35.6892000'),
(448, 'cf_primary_lng', NULL, '51.3890000'),
(448, 'cf_other_region', NULL, 'منطقه دو'),
(448, 'cf_other_country', NULL, 'ایران'),
(448, 'cf_other_state', NULL, 'البرز'),
(448, 'cf_other_city', NULL, 'کرج'),
(448, 'cf_other_code', NULL, '2222222222'),
(448, 'cf_other_street', NULL, 'آدرس دوم تست'),
(448, 'cf_other_lat', NULL, '35.8400000'),
(448, 'cf_other_lng', NULL, '50.9391000'),
(448, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(448, 'cf_instagram', NULL, 'https://instagram.com/example'),
(448, 'record_id', NULL, '2331'),
(448, 'record_module', NULL, 'Leads'),
(449, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866.txt'),
(449, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866.txt'),
(449, 'createdtime', NULL, '2026-08-09 06:27:05'),
(449, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866.txt'),
(449, 'assigned_user_id', NULL, '1'),
(449, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(449, 'filetype', NULL, 'text/plain'),
(449, 'filesize', NULL, '69'),
(449, 'filelocationtype', NULL, 'I'),
(449, 'filestatus', NULL, '1'),
(449, 'folderid', NULL, '1'),
(449, 'note_no', NULL, 'DOC16'),
(449, 'modifiedby', NULL, '1'),
(449, 'source', NULL, 'SARV LEADS');
INSERT IGNORE INTO `vtiger_modtracker_detail` (`id`, `fieldname`, `prevalue`, `postvalue`) VALUES
(449, 'record_id', NULL, '2332'),
(449, 'record_module', NULL, 'Documents'),
(451, 'phone', '+989121112233', '+989129998877'),
(451, 'mobile', '+989121112233', '+989129998877'),
(451, 'fax', '', '02166554433'),
(451, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(451, 'leadstatus', 'جدید', 'درجریان'),
(451, 'secondaryemail', 'finance-smoke@example.test', ''),
(452, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866-Task'),
(452, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866-Task'),
(452, 'assigned_user_id', NULL, '1'),
(452, 'date_start', NULL, '2026-08-09'),
(452, 'time_start', NULL, '10:00'),
(452, 'due_date', NULL, '2026-08-09'),
(452, 'duration_hours', NULL, '10'),
(452, 'duration_minutes', NULL, '30'),
(452, 'activitytype', NULL, 'Task'),
(452, 'createdtime', NULL, '2026-08-09 06:27:05'),
(452, 'taskpriority', NULL, 'Medium'),
(452, 'visibility', NULL, 'Public'),
(452, 'modifiedby', NULL, '1'),
(452, 'source', NULL, 'CRM'),
(452, 'taskstatus', NULL, 'Not Started'),
(452, 'record_id', NULL, '2334'),
(452, 'record_module', NULL, 'Calendar'),
(453, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(454, 'label', NULL, 'ورودی استاندارد'),
(454, 'lead_no', NULL, 'LEA1131'),
(454, 'phone', NULL, '+989121234567'),
(454, 'lastname', NULL, 'ورودی استاندارد'),
(454, 'mobile', NULL, '+989351234567'),
(454, 'company', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866-IMPORT'),
(454, 'email', NULL, 'csv-import@example.test'),
(454, 'leadstatus', NULL, 'جدید'),
(454, 'annualrevenue', NULL, '0.00000000'),
(454, 'assigned_user_id', NULL, '1'),
(454, 'createdtime', NULL, '2026-08-09 06:27:05'),
(454, 'modifiedby', NULL, '1'),
(454, 'source', NULL, 'CRM'),
(454, 'cf_lead_party_type', NULL, 'حقیقی'),
(454, 'cf_primary_lat', NULL, '0.0000000'),
(454, 'cf_primary_lng', NULL, '0.0000000'),
(454, 'cf_other_lat', NULL, '0.0000000'),
(454, 'cf_other_lng', NULL, '0.0000000'),
(454, 'record_id', NULL, '2335'),
(454, 'record_module', NULL, 'Leads'),
(455, 'label', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866'),
(455, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809062704-6866'),
(455, 'account_no', NULL, 'ACC13'),
(455, 'phone', NULL, '+989129998877'),
(455, 'website', NULL, 'https://example.test'),
(455, 'fax', NULL, '02166554433'),
(455, 'email1', NULL, 'lead-updated@example.test'),
(455, 'rating', NULL, 'زیاد'),
(455, 'industry', NULL, 'خدماتی'),
(455, 'annual_revenue', NULL, '0.00000000'),
(455, 'assigned_user_id', NULL, '1'),
(455, 'createdtime', NULL, '2026-08-09 06:27:06'),
(455, 'modifiedby', NULL, '1'),
(455, 'bill_street', NULL, 'آدرس اصلی تست'),
(455, 'ship_street', NULL, 'آدرس دوم تست'),
(455, 'bill_city', NULL, 'تهران'),
(455, 'ship_city', NULL, 'کرج'),
(455, 'bill_state', NULL, 'تهران'),
(455, 'ship_state', NULL, 'البرز'),
(455, 'bill_code', NULL, '1111111111'),
(455, 'ship_code', NULL, '2222222222'),
(455, 'bill_country', NULL, 'ایران'),
(455, 'ship_country', NULL, 'ایران'),
(455, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866'),
(455, 'isconvertedfromlead', NULL, '1'),
(455, 'source', NULL, 'WEBSERVICE'),
(455, 'cf_party_type', NULL, 'حقوقی'),
(455, 'cf_first_name', NULL, 'آزمون'),
(455, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(455, 'cf_portal_visible', NULL, '1'),
(455, 'cf_registration_no', NULL, '98765'),
(455, 'cf_national_id', NULL, '10101010101'),
(455, 'cf_economic_code', NULL, '411111111111'),
(455, 'cf_bill_region', NULL, 'منطقه یک'),
(455, 'cf_ship_region', NULL, 'منطقه دو'),
(455, 'cf_bill_lat', NULL, '35.6900000'),
(455, 'cf_bill_lng', NULL, '51.3900000'),
(455, 'cf_ship_lat', NULL, '35.8400000'),
(455, 'cf_ship_lng', NULL, '50.9400000'),
(455, 'cf_credit_amount', NULL, '0.00000000'),
(455, 'cf_credit_limit', NULL, '0.00000000'),
(455, 'cf_sales_discount', NULL, '0.000'),
(455, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(455, 'cf_instagram', NULL, 'https://instagram.com/example'),
(455, 'record_id', NULL, '2336'),
(455, 'record_module', NULL, 'Accounts'),
(456, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(456, 'salutationtype', NULL, 'Mr.'),
(456, 'firstname', NULL, 'آزمون'),
(456, 'contact_no', NULL, 'CON91'),
(456, 'phone', NULL, '+989129998877'),
(456, 'lastname', NULL, 'یکپارچگی سرنخ'),
(456, 'mobile', NULL, '+989129998877'),
(456, 'account_id', NULL, '2336'),
(456, 'title', NULL, 'مدیر تست'),
(456, 'fax', NULL, '02166554433'),
(456, 'email', NULL, 'lead-updated@example.test'),
(456, 'assigned_user_id', NULL, '1'),
(456, 'createdtime', NULL, '2026-08-09 06:27:06'),
(456, 'modifiedby', NULL, '1'),
(456, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(456, 'mailingcity', NULL, 'تهران'),
(456, 'mailingstate', NULL, 'تهران'),
(456, 'mailingcountry', NULL, 'ایران'),
(456, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809062704-6866'),
(456, 'isconvertedfromlead', NULL, '1'),
(456, 'source', NULL, 'WEBSERVICE'),
(456, 'cf_primary_lat', NULL, '0.0000000'),
(456, 'cf_primary_lng', NULL, '0.0000000'),
(456, 'cf_other_lat', NULL, '0.0000000'),
(456, 'cf_other_lng', NULL, '0.0000000'),
(456, 'record_id', NULL, '2337'),
(456, 'record_module', NULL, 'Contacts'),
(464, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459-Campaign'),
(464, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459-Campaign'),
(464, 'campaign_no', NULL, 'CAM20'),
(464, 'campaignstatus', NULL, 'Planning'),
(464, 'assigned_user_id', NULL, '1'),
(464, 'createdtime', NULL, '2026-08-09 06:30:37'),
(464, 'modifiedby', NULL, '1'),
(464, 'expectedrevenue', NULL, '0.00000000'),
(464, 'budgetcost', NULL, '0.00000000'),
(464, 'actualcost', NULL, '0.00000000'),
(464, 'expectedroi', NULL, '0.00000000'),
(464, 'actualroi', NULL, '0.00000000'),
(464, 'source', NULL, 'CRM'),
(464, 'record_id', NULL, '2338'),
(464, 'record_module', NULL, 'Campaigns'),
(465, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(465, 'salutationtype', NULL, 'Mr.'),
(465, 'firstname', NULL, 'آزمون'),
(465, 'lead_no', NULL, 'LEA1132'),
(465, 'phone', NULL, '+989121112233'),
(465, 'lastname', NULL, 'یکپارچگی سرنخ'),
(465, 'mobile', NULL, '+989121112233'),
(465, 'company', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459'),
(465, 'designation', NULL, 'مدیر تست'),
(465, 'email', NULL, 'lead-smoke@example.test'),
(465, 'website', NULL, 'https://example.test'),
(465, 'industry', NULL, 'خدماتی'),
(465, 'leadstatus', NULL, 'جدید'),
(465, 'annualrevenue', NULL, '0.00000000'),
(465, 'rating', NULL, 'زیاد'),
(465, 'assigned_user_id', NULL, '1'),
(465, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(465, 'createdtime', NULL, '2026-08-09 06:30:37'),
(465, 'modifiedby', NULL, '1'),
(465, 'lane', NULL, 'آدرس اصلی تست'),
(465, 'code', NULL, '1111111111'),
(465, 'city', NULL, 'تهران'),
(465, 'country', NULL, 'ایران'),
(465, 'state', NULL, 'تهران'),
(465, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459'),
(465, 'source', NULL, 'CRM'),
(465, 'cf_lead_party_type', NULL, 'حقوقی'),
(465, 'cf_economic_code', NULL, '411111111111'),
(465, 'cf_registration_no', NULL, '98765'),
(465, 'cf_national_id', NULL, '10101010101'),
(465, 'cf_primary_region', NULL, 'منطقه یک'),
(465, 'cf_primary_lat', NULL, '35.6892000'),
(465, 'cf_primary_lng', NULL, '51.3890000'),
(465, 'cf_other_region', NULL, 'منطقه دو'),
(465, 'cf_other_country', NULL, 'ایران'),
(465, 'cf_other_state', NULL, 'البرز'),
(465, 'cf_other_city', NULL, 'کرج'),
(465, 'cf_other_code', NULL, '2222222222'),
(465, 'cf_other_street', NULL, 'آدرس دوم تست'),
(465, 'cf_other_lat', NULL, '35.8400000'),
(465, 'cf_other_lng', NULL, '50.9391000'),
(465, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(465, 'cf_instagram', NULL, 'https://instagram.com/example'),
(465, 'record_id', NULL, '2339'),
(465, 'record_module', NULL, 'Leads'),
(466, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459.txt'),
(466, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459.txt'),
(466, 'createdtime', NULL, '2026-08-09 06:30:38'),
(466, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459.txt'),
(466, 'assigned_user_id', NULL, '1'),
(466, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(466, 'filetype', NULL, 'text/plain'),
(466, 'filesize', NULL, '69'),
(466, 'filelocationtype', NULL, 'I'),
(466, 'filestatus', NULL, '1'),
(466, 'folderid', NULL, '1'),
(466, 'note_no', NULL, 'DOC17'),
(466, 'modifiedby', NULL, '1'),
(466, 'source', NULL, 'SARV LEADS'),
(466, 'record_id', NULL, '2340'),
(466, 'record_module', NULL, 'Documents'),
(468, 'phone', '+989121112233', '+989129998877'),
(468, 'mobile', '+989121112233', '+989129998877'),
(468, 'fax', '', '02166554433'),
(468, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(468, 'leadstatus', 'جدید', 'درجریان'),
(468, 'secondaryemail', 'finance-smoke@example.test', ''),
(469, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459-Task'),
(469, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459-Task'),
(469, 'assigned_user_id', NULL, '1'),
(469, 'date_start', NULL, '2026-08-09'),
(469, 'time_start', NULL, '10:00'),
(469, 'due_date', NULL, '2026-08-09'),
(469, 'duration_hours', NULL, '10'),
(469, 'duration_minutes', NULL, '30'),
(469, 'activitytype', NULL, 'Task'),
(469, 'createdtime', NULL, '2026-08-09 06:30:38'),
(469, 'taskpriority', NULL, 'Medium'),
(469, 'visibility', NULL, 'Public'),
(469, 'modifiedby', NULL, '1'),
(469, 'source', NULL, 'CRM'),
(469, 'taskstatus', NULL, 'Not Started'),
(469, 'record_id', NULL, '2342'),
(469, 'record_module', NULL, 'Calendar'),
(470, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(471, 'label', NULL, 'ورودی استاندارد'),
(471, 'lead_no', NULL, 'LEA1133'),
(471, 'phone', NULL, '+989121234567'),
(471, 'lastname', NULL, 'ورودی استاندارد'),
(471, 'mobile', NULL, '+989351234567'),
(471, 'company', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459-IMPORT'),
(471, 'email', NULL, 'csv-import@example.test'),
(471, 'leadstatus', NULL, 'جدید'),
(471, 'annualrevenue', NULL, '0.00000000'),
(471, 'assigned_user_id', NULL, '1'),
(471, 'createdtime', NULL, '2026-08-09 06:30:38'),
(471, 'modifiedby', NULL, '1'),
(471, 'source', NULL, 'CRM'),
(471, 'cf_lead_party_type', NULL, 'حقیقی'),
(471, 'cf_primary_lat', NULL, '0.0000000'),
(471, 'cf_primary_lng', NULL, '0.0000000'),
(471, 'cf_other_lat', NULL, '0.0000000'),
(471, 'cf_other_lng', NULL, '0.0000000'),
(471, 'record_id', NULL, '2343'),
(471, 'record_module', NULL, 'Leads'),
(472, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459'),
(472, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809063037-9459'),
(472, 'account_no', NULL, 'ACC14'),
(472, 'phone', NULL, '+989129998877'),
(472, 'website', NULL, 'https://example.test'),
(472, 'fax', NULL, '02166554433'),
(472, 'email1', NULL, 'lead-updated@example.test'),
(472, 'rating', NULL, 'زیاد'),
(472, 'industry', NULL, 'خدماتی'),
(472, 'annual_revenue', NULL, '0.00000000'),
(472, 'assigned_user_id', NULL, '1'),
(472, 'createdtime', NULL, '2026-08-09 06:30:38'),
(472, 'modifiedby', NULL, '1'),
(472, 'bill_street', NULL, 'آدرس اصلی تست'),
(472, 'ship_street', NULL, 'آدرس دوم تست'),
(472, 'bill_city', NULL, 'تهران'),
(472, 'ship_city', NULL, 'کرج'),
(472, 'bill_state', NULL, 'تهران'),
(472, 'ship_state', NULL, 'البرز'),
(472, 'bill_code', NULL, '1111111111'),
(472, 'ship_code', NULL, '2222222222'),
(472, 'bill_country', NULL, 'ایران'),
(472, 'ship_country', NULL, 'ایران'),
(472, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459'),
(472, 'isconvertedfromlead', NULL, '1'),
(472, 'source', NULL, 'WEBSERVICE'),
(472, 'cf_party_type', NULL, 'حقوقی'),
(472, 'cf_first_name', NULL, 'آزمون'),
(472, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(472, 'cf_portal_visible', NULL, '1'),
(472, 'cf_registration_no', NULL, '98765'),
(472, 'cf_national_id', NULL, '10101010101'),
(472, 'cf_economic_code', NULL, '411111111111'),
(472, 'cf_bill_region', NULL, 'منطقه یک'),
(472, 'cf_ship_region', NULL, 'منطقه دو'),
(472, 'cf_bill_lat', NULL, '35.6900000'),
(472, 'cf_bill_lng', NULL, '51.3900000'),
(472, 'cf_ship_lat', NULL, '35.8400000'),
(472, 'cf_ship_lng', NULL, '50.9400000'),
(472, 'cf_credit_amount', NULL, '0.00000000'),
(472, 'cf_credit_limit', NULL, '0.00000000'),
(472, 'cf_sales_discount', NULL, '0.000'),
(472, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(472, 'cf_instagram', NULL, 'https://instagram.com/example'),
(472, 'record_id', NULL, '2344'),
(472, 'record_module', NULL, 'Accounts'),
(473, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(473, 'salutationtype', NULL, 'Mr.'),
(473, 'firstname', NULL, 'آزمون'),
(473, 'contact_no', NULL, 'CON92'),
(473, 'phone', NULL, '+989129998877'),
(473, 'lastname', NULL, 'یکپارچگی سرنخ'),
(473, 'mobile', NULL, '+989129998877'),
(473, 'account_id', NULL, '2344'),
(473, 'title', NULL, 'مدیر تست'),
(473, 'fax', NULL, '02166554433'),
(473, 'email', NULL, 'lead-updated@example.test'),
(473, 'assigned_user_id', NULL, '1'),
(473, 'createdtime', NULL, '2026-08-09 06:30:38'),
(473, 'modifiedby', NULL, '1'),
(473, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(473, 'mailingcity', NULL, 'تهران'),
(473, 'mailingstate', NULL, 'تهران'),
(473, 'mailingcountry', NULL, 'ایران'),
(473, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063037-9459'),
(473, 'isconvertedfromlead', NULL, '1'),
(473, 'source', NULL, 'WEBSERVICE'),
(473, 'cf_primary_lat', NULL, '0.0000000'),
(473, 'cf_primary_lng', NULL, '0.0000000'),
(473, 'cf_other_lat', NULL, '0.0000000'),
(473, 'cf_other_lng', NULL, '0.0000000'),
(473, 'record_id', NULL, '2345'),
(473, 'record_module', NULL, 'Contacts'),
(481, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988-Campaign'),
(481, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988-Campaign'),
(481, 'campaign_no', NULL, 'CAM21'),
(481, 'campaignstatus', NULL, 'Planning'),
(481, 'assigned_user_id', NULL, '1'),
(481, 'createdtime', NULL, '2026-08-09 06:31:23'),
(481, 'modifiedby', NULL, '1'),
(481, 'expectedrevenue', NULL, '0.00000000'),
(481, 'budgetcost', NULL, '0.00000000'),
(481, 'actualcost', NULL, '0.00000000'),
(481, 'expectedroi', NULL, '0.00000000'),
(481, 'actualroi', NULL, '0.00000000'),
(481, 'source', NULL, 'CRM'),
(481, 'record_id', NULL, '2346'),
(481, 'record_module', NULL, 'Campaigns'),
(482, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(482, 'salutationtype', NULL, 'Mr.'),
(482, 'firstname', NULL, 'آزمون'),
(482, 'lead_no', NULL, 'LEA1134'),
(482, 'phone', NULL, '+989121112233'),
(482, 'lastname', NULL, 'یکپارچگی سرنخ'),
(482, 'mobile', NULL, '+989121112233'),
(482, 'company', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988'),
(482, 'designation', NULL, 'مدیر تست'),
(482, 'email', NULL, 'lead-smoke@example.test'),
(482, 'website', NULL, 'https://example.test'),
(482, 'industry', NULL, 'خدماتی'),
(482, 'leadstatus', NULL, 'جدید'),
(482, 'annualrevenue', NULL, '0.00000000'),
(482, 'rating', NULL, 'زیاد'),
(482, 'assigned_user_id', NULL, '1'),
(482, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(482, 'createdtime', NULL, '2026-08-09 06:31:23'),
(482, 'modifiedby', NULL, '1'),
(482, 'lane', NULL, 'آدرس اصلی تست'),
(482, 'code', NULL, '1111111111'),
(482, 'city', NULL, 'تهران'),
(482, 'country', NULL, 'ایران'),
(482, 'state', NULL, 'تهران'),
(482, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988'),
(482, 'source', NULL, 'CRM'),
(482, 'cf_lead_party_type', NULL, 'حقوقی'),
(482, 'cf_economic_code', NULL, '411111111111'),
(482, 'cf_registration_no', NULL, '98765'),
(482, 'cf_national_id', NULL, '10101010101'),
(482, 'cf_primary_region', NULL, 'منطقه یک'),
(482, 'cf_primary_lat', NULL, '35.6892000'),
(482, 'cf_primary_lng', NULL, '51.3890000'),
(482, 'cf_other_region', NULL, 'منطقه دو'),
(482, 'cf_other_country', NULL, 'ایران'),
(482, 'cf_other_state', NULL, 'البرز'),
(482, 'cf_other_city', NULL, 'کرج'),
(482, 'cf_other_code', NULL, '2222222222'),
(482, 'cf_other_street', NULL, 'آدرس دوم تست'),
(482, 'cf_other_lat', NULL, '35.8400000'),
(482, 'cf_other_lng', NULL, '50.9391000'),
(482, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(482, 'cf_instagram', NULL, 'https://instagram.com/example'),
(482, 'record_id', NULL, '2347'),
(482, 'record_module', NULL, 'Leads'),
(483, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988.txt'),
(483, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988.txt'),
(483, 'createdtime', NULL, '2026-08-09 06:31:23'),
(483, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988.txt'),
(483, 'assigned_user_id', NULL, '1'),
(483, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(483, 'filetype', NULL, 'text/plain'),
(483, 'filesize', NULL, '69'),
(483, 'filelocationtype', NULL, 'I'),
(483, 'filestatus', NULL, '1'),
(483, 'folderid', NULL, '1'),
(483, 'note_no', NULL, 'DOC18'),
(483, 'modifiedby', NULL, '1'),
(483, 'source', NULL, 'SARV LEADS'),
(483, 'record_id', NULL, '2348'),
(483, 'record_module', NULL, 'Documents'),
(485, 'phone', '+989121112233', '+989129998877'),
(485, 'mobile', '+989121112233', '+989129998877'),
(485, 'fax', '', '02166554433'),
(485, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(485, 'leadstatus', 'جدید', 'درجریان'),
(485, 'secondaryemail', 'finance-smoke@example.test', ''),
(486, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988-Task'),
(486, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988-Task'),
(486, 'assigned_user_id', NULL, '1'),
(486, 'date_start', NULL, '2026-08-09'),
(486, 'time_start', NULL, '10:00'),
(486, 'due_date', NULL, '2026-08-09'),
(486, 'duration_hours', NULL, '10'),
(486, 'duration_minutes', NULL, '30'),
(486, 'activitytype', NULL, 'Task'),
(486, 'createdtime', NULL, '2026-08-09 06:31:23'),
(486, 'taskpriority', NULL, 'Medium'),
(486, 'visibility', NULL, 'Public'),
(486, 'modifiedby', NULL, '1'),
(486, 'source', NULL, 'CRM'),
(486, 'taskstatus', NULL, 'Not Started'),
(486, 'record_id', NULL, '2350'),
(486, 'record_module', NULL, 'Calendar'),
(487, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(488, 'label', NULL, 'ورودی استاندارد'),
(488, 'lead_no', NULL, 'LEA1135'),
(488, 'phone', NULL, '+989121234567'),
(488, 'lastname', NULL, 'ورودی استاندارد'),
(488, 'mobile', NULL, '+989351234567'),
(488, 'company', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988-IMPORT'),
(488, 'email', NULL, 'csv-import@example.test'),
(488, 'leadstatus', NULL, 'جدید'),
(488, 'annualrevenue', NULL, '0.00000000'),
(488, 'assigned_user_id', NULL, '1'),
(488, 'createdtime', NULL, '2026-08-09 06:31:24'),
(488, 'modifiedby', NULL, '1'),
(488, 'source', NULL, 'CRM'),
(488, 'cf_lead_party_type', NULL, 'حقیقی'),
(488, 'cf_primary_lat', NULL, '0.0000000'),
(488, 'cf_primary_lng', NULL, '0.0000000'),
(488, 'cf_other_lat', NULL, '0.0000000'),
(488, 'cf_other_lng', NULL, '0.0000000'),
(488, 'record_id', NULL, '2351'),
(488, 'record_module', NULL, 'Leads'),
(489, 'label', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988'),
(489, 'accountname', NULL, 'SARV-LEAD-SMOKE-20260809063122-8988'),
(489, 'account_no', NULL, 'ACC15'),
(489, 'phone', NULL, '+989129998877'),
(489, 'website', NULL, 'https://example.test'),
(489, 'fax', NULL, '02166554433'),
(489, 'email1', NULL, 'lead-updated@example.test'),
(489, 'rating', NULL, 'زیاد'),
(489, 'industry', NULL, 'خدماتی'),
(489, 'annual_revenue', NULL, '0.00000000'),
(489, 'assigned_user_id', NULL, '1'),
(489, 'createdtime', NULL, '2026-08-09 06:31:24'),
(489, 'modifiedby', NULL, '1'),
(489, 'bill_street', NULL, 'آدرس اصلی تست'),
(489, 'ship_street', NULL, 'آدرس دوم تست'),
(489, 'bill_city', NULL, 'تهران'),
(489, 'ship_city', NULL, 'کرج'),
(489, 'bill_state', NULL, 'تهران'),
(489, 'ship_state', NULL, 'البرز'),
(489, 'bill_code', NULL, '1111111111'),
(489, 'ship_code', NULL, '2222222222'),
(489, 'bill_country', NULL, 'ایران'),
(489, 'ship_country', NULL, 'ایران'),
(489, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988'),
(489, 'isconvertedfromlead', NULL, '1'),
(489, 'source', NULL, 'WEBSERVICE'),
(489, 'cf_party_type', NULL, 'حقوقی'),
(489, 'cf_first_name', NULL, 'آزمون'),
(489, 'cf_last_name', NULL, 'یکپارچگی سرنخ'),
(489, 'cf_portal_visible', NULL, '1'),
(489, 'cf_registration_no', NULL, '98765'),
(489, 'cf_national_id', NULL, '10101010101'),
(489, 'cf_economic_code', NULL, '411111111111'),
(489, 'cf_bill_region', NULL, 'منطقه یک'),
(489, 'cf_ship_region', NULL, 'منطقه دو'),
(489, 'cf_bill_lat', NULL, '35.6900000'),
(489, 'cf_bill_lng', NULL, '51.3900000'),
(489, 'cf_ship_lat', NULL, '35.8400000'),
(489, 'cf_ship_lng', NULL, '50.9400000'),
(489, 'cf_credit_amount', NULL, '0.00000000'),
(489, 'cf_credit_limit', NULL, '0.00000000'),
(489, 'cf_sales_discount', NULL, '0.000'),
(489, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(489, 'cf_instagram', NULL, 'https://instagram.com/example'),
(489, 'record_id', NULL, '2352'),
(489, 'record_module', NULL, 'Accounts'),
(490, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(490, 'salutationtype', NULL, 'Mr.'),
(490, 'firstname', NULL, 'آزمون'),
(490, 'contact_no', NULL, 'CON93'),
(490, 'phone', NULL, '+989129998877'),
(490, 'lastname', NULL, 'یکپارچگی سرنخ'),
(490, 'mobile', NULL, '+989129998877'),
(490, 'account_id', NULL, '2352'),
(490, 'title', NULL, 'مدیر تست'),
(490, 'fax', NULL, '02166554433'),
(490, 'email', NULL, 'lead-updated@example.test'),
(490, 'assigned_user_id', NULL, '1'),
(490, 'createdtime', NULL, '2026-08-09 06:31:24'),
(490, 'modifiedby', NULL, '1'),
(490, 'mailingstreet', NULL, 'آدرس اصلی تست'),
(490, 'mailingcity', NULL, 'تهران'),
(490, 'mailingstate', NULL, 'تهران'),
(490, 'mailingcountry', NULL, 'ایران'),
(490, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809063122-8988'),
(490, 'isconvertedfromlead', NULL, '1'),
(490, 'source', NULL, 'WEBSERVICE'),
(490, 'cf_primary_lat', NULL, '0.0000000'),
(490, 'cf_primary_lng', NULL, '0.0000000'),
(490, 'cf_other_lat', NULL, '0.0000000'),
(490, 'cf_other_lng', NULL, '0.0000000'),
(490, 'record_id', NULL, '2353'),
(490, 'record_module', NULL, 'Contacts'),
(505, 'label', NULL, 'SARV-LEAD-SMOKE-20260809084307-7449-Campaign'),
(505, 'campaignname', NULL, 'SARV-LEAD-SMOKE-20260809084307-7449-Campaign'),
(505, 'campaign_no', NULL, 'CAM22'),
(505, 'campaignstatus', NULL, 'Planning'),
(505, 'assigned_user_id', NULL, '1'),
(505, 'createdtime', NULL, '2026-08-09 08:43:07'),
(505, 'modifiedby', NULL, '1'),
(505, 'expectedrevenue', NULL, '0.00000000'),
(505, 'budgetcost', NULL, '0.00000000'),
(505, 'actualcost', NULL, '0.00000000'),
(505, 'expectedroi', NULL, '0.00000000'),
(505, 'actualroi', NULL, '0.00000000'),
(505, 'source', NULL, 'CRM'),
(505, 'record_id', NULL, '2362'),
(505, 'record_module', NULL, 'Campaigns'),
(506, 'label', NULL, 'آزمون یکپارچگی سرنخ'),
(506, 'salutationtype', NULL, 'Mr.'),
(506, 'firstname', NULL, 'آزمون'),
(506, 'lead_no', NULL, 'LEA1136'),
(506, 'phone', NULL, '+989121112233'),
(506, 'lastname', NULL, 'یکپارچگی سرنخ'),
(506, 'mobile', NULL, '+989121112233'),
(506, 'company', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905'),
(506, 'designation', NULL, 'مدیر تست'),
(506, 'email', NULL, 'lead-smoke@example.test'),
(506, 'website', NULL, 'https://example.test'),
(506, 'industry', NULL, 'خدماتی'),
(506, 'leadstatus', NULL, 'جدید'),
(506, 'annualrevenue', NULL, '0.00000000'),
(506, 'rating', NULL, 'زیاد'),
(506, 'assigned_user_id', NULL, '1'),
(506, 'secondaryemail', NULL, 'finance-smoke@example.test'),
(506, 'createdtime', NULL, '2026-08-09 08:43:21'),
(506, 'modifiedby', NULL, '1'),
(506, 'lane', NULL, 'آدرس اصلی تست'),
(506, 'code', NULL, '1111111111'),
(506, 'city', NULL, 'تهران'),
(506, 'country', NULL, 'ایران'),
(506, 'state', NULL, 'تهران'),
(506, 'description', NULL, 'Temporary integration record: SARV-LEAD-SMOKE-20260809084321-3905'),
(506, 'source', NULL, 'CRM'),
(506, 'cf_lead_party_type', NULL, 'حقوقی'),
(506, 'cf_economic_code', NULL, '411111111111'),
(506, 'cf_registration_no', NULL, '98765'),
(506, 'cf_national_id', NULL, '10101010101'),
(506, 'cf_primary_region', NULL, 'منطقه یک'),
(506, 'cf_primary_lat', NULL, '35.6892000'),
(506, 'cf_primary_lng', NULL, '51.3890000'),
(506, 'cf_other_region', NULL, 'منطقه دو'),
(506, 'cf_other_country', NULL, 'ایران'),
(506, 'cf_other_state', NULL, 'البرز'),
(506, 'cf_other_city', NULL, 'کرج'),
(506, 'cf_other_code', NULL, '2222222222'),
(506, 'cf_other_street', NULL, 'آدرس دوم تست'),
(506, 'cf_other_lat', NULL, '35.8400000'),
(506, 'cf_other_lng', NULL, '50.9391000'),
(506, 'cf_linkedin', NULL, 'https://linkedin.com/company/example'),
(506, 'cf_instagram', NULL, 'https://instagram.com/example'),
(506, 'record_id', NULL, '2363'),
(506, 'record_module', NULL, 'Leads'),
(507, 'label', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905.txt'),
(507, 'notes_title', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905.txt'),
(507, 'createdtime', NULL, '2026-08-09 08:43:21'),
(507, 'filename', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905.txt'),
(507, 'assigned_user_id', NULL, '1'),
(507, 'notecontent', NULL, 'نوع فایل سرنخ: آزمون یکپارچگی'),
(507, 'filetype', NULL, 'text/plain'),
(507, 'filesize', NULL, '69'),
(507, 'filelocationtype', NULL, 'I'),
(507, 'filestatus', NULL, '1'),
(507, 'folderid', NULL, '1'),
(507, 'note_no', NULL, 'DOC19'),
(507, 'modifiedby', NULL, '1'),
(507, 'source', NULL, 'SARV LEADS'),
(507, 'record_id', NULL, '2364'),
(507, 'record_module', NULL, 'Documents'),
(509, 'phone', '+989121112233', '+989129998877'),
(509, 'mobile', '+989121112233', '+989129998877'),
(509, 'fax', '', '02166554433'),
(509, 'email', 'lead-smoke@example.test', 'lead-updated@example.test'),
(509, 'leadstatus', 'جدید', 'درجریان'),
(509, 'secondaryemail', 'finance-smoke@example.test', ''),
(510, 'label', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905-Task'),
(510, 'subject', NULL, 'SARV-LEAD-SMOKE-20260809084321-3905-Task'),
(510, 'assigned_user_id', NULL, '1'),
(510, 'date_start', NULL, '2026-08-09'),
(510, 'time_start', NULL, '10:00'),
(510, 'due_date', NULL, '2026-08-09'),
(510, 'duration_hours', NULL, '10'),
(510, 'duration_minutes', NULL, '30'),
(510, 'activitytype', NULL, 'Task'),
(510, 'createdtime', NULL, '2026-08-09 08:43:22'),
(510, 'taskpriority', NULL, 'Medium'),
(510, 'visibility', NULL, 'Public'),
(510, 'modifiedby', NULL, '1'),
(510, 'source', NULL, 'CRM'),
(510, 'taskstatus', NULL, 'Not Started'),
(510, 'record_id', NULL, '2366'),
(510, 'record_module', NULL, 'Calendar'),
(511, 'leadstatus', 'درجریان', 'مجدد فعال شده'),
(517, 'label', NULL, 'آزمون عملی فرم فرصت گویا 1786346601193'),
(517, 'potentialname', NULL, 'آزمون عملی فرم فرصت گویا 1786346601193'),
(517, 'potential_no', NULL, 'POT1101'),
(517, 'amount', NULL, '2500000.00000000'),
(517, 'related_to', NULL, '20'),
(517, 'closingdate', NULL, '2026-08-10'),
(517, 'sales_stage', NULL, '۳.ارائه پیشنهاد/پیش فاکتور'),
(517, 'assigned_user_id', NULL, '1'),
(517, 'probability', NULL, '50.000'),
(517, 'createdtime', NULL, '2026-08-10 07:24:30'),
(517, 'modifiedby', NULL, '1'),
(517, 'forecast_amount', NULL, '1250000.00000000'),
(517, 'source', NULL, 'CRM'),
(517, 'cf_opportunity_currency', NULL, 'Rial : ریال'),
(517, 'cf_sales_process', NULL, 'پیش فرض'),
(517, 'cf_opportunity_priority', NULL, 'متوسط'),
(517, 'cf_forecast_category', NULL, 'اعمال'),
(517, 'cf_invoice_cycles', NULL, 'بدون تکرار'),
(517, 'record_id', NULL, '2530'),
(517, 'record_module', NULL, 'Potentials'),
(523, 'eventstatus', 'Planned', 'Not Held'),
(524, 'duration_minutes', '', '30'),
(524, 'eventstatus', 'Planned', 'Not Held'),
(525, 'eventstatus', 'Planned', 'Not Held'),
(526, 'eventstatus', 'Planned', 'Not Held'),
(527, 'duration_hours', '', '1'),
(527, 'eventstatus', 'Not Held', 'Held');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modtracker_relations`
--

DROP TABLE IF EXISTS `vtiger_modtracker_relations`;
CREATE TABLE `vtiger_modtracker_relations` (
  `id` int(19) NOT NULL,
  `targetmodule` varchar(100) NOT NULL,
  `targetid` int(19) NOT NULL,
  `changedon` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modtracker_relations`
--

INSERT IGNORE INTO `vtiger_modtracker_relations` (`id`, `targetmodule`, `targetid`, `changedon`) VALUES
(3, 'SMSNotifier', 2, '2026-06-22 09:37:50'),
(4, 'SMSNotifier', 2, '2026-06-22 09:37:50'),
(6, 'SMSNotifier', 2, '2026-06-22 09:39:53'),
(7, 'SMSNotifier', 2, '2026-06-22 09:39:53'),
(9, 'SMSNotifier', 2, '2026-06-22 09:40:11'),
(10, 'SMSNotifier', 2, '2026-06-22 09:40:11'),
(12, 'SMSNotifier', 2, '2026-06-22 09:40:25'),
(13, 'SMSNotifier', 2, '2026-06-22 09:40:25'),
(15, 'SMSNotifier', 2, '2026-06-22 09:47:37'),
(16, 'SMSNotifier', 2, '2026-06-22 09:47:37'),
(18, 'SMSNotifier', 2, '2026-06-22 10:16:48'),
(19, 'SMSNotifier', 2, '2026-06-22 10:16:48'),
(21, 'Calendar', 9, '2026-06-22 10:23:42'),
(23, 'Calendar', 10, '2026-06-22 10:37:02'),
(162, 'Leads', 2152, '2026-07-18 01:04:54'),
(170, 'Documents', 2158, '2026-07-18 04:03:34'),
(180, 'Documents', 2163, '2026-07-18 04:04:06'),
(195, 'Documents', 2170, '2026-07-18 04:06:48'),
(208, 'Documents', 2176, '2026-07-18 04:09:40'),
(221, 'Documents', 2182, '2026-07-18 04:32:52'),
(234, 'Documents', 2188, '2026-07-18 04:33:14'),
(247, 'Documents', 2194, '2026-07-18 04:33:37'),
(264, 'Documents', 2202, '2026-07-18 04:34:58'),
(281, 'Documents', 2210, '2026-07-18 04:35:55'),
(315, 'ModComments', 2234, '2026-07-18 22:26:34'),
(377, 'Documents', 2298, '2026-08-09 06:09:47'),
(388, 'Documents', 2303, '2026-08-09 06:12:49'),
(399, 'Documents', 2308, '2026-08-09 06:13:45'),
(416, 'Documents', 2316, '2026-08-09 06:20:44'),
(433, 'Documents', 2324, '2026-08-09 06:22:21'),
(450, 'Documents', 2332, '2026-08-09 06:27:05'),
(467, 'Documents', 2340, '2026-08-09 06:30:38'),
(484, 'Documents', 2348, '2026-08-09 06:31:23'),
(508, 'Documents', 2364, '2026-08-09 08:43:21');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_modtracker_tabs`
--

DROP TABLE IF EXISTS `vtiger_modtracker_tabs`;
CREATE TABLE `vtiger_modtracker_tabs` (
  `tabid` int(11) NOT NULL,
  `visible` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_modtracker_tabs`
--

INSERT IGNORE INTO `vtiger_modtracker_tabs` (`tabid`, `visible`) VALUES
(2, 1),
(4, 1),
(6, 1),
(7, 1),
(8, 1),
(9, 1),
(10, 1),
(13, 1),
(14, 1),
(15, 1),
(16, 1),
(18, 1),
(19, 1),
(20, 1),
(21, 1),
(22, 1),
(23, 1),
(26, 1),
(28, 1),
(34, 1),
(35, 1),
(36, 1),
(38, 1),
(42, 1),
(43, 1),
(44, 1),
(45, 1),
(47, 1),
(52, 1),
(53, 1),
(54, 1),
(55, 1),
(56, 1),
(57, 1),
(58, 1),
(59, 1),
(60, 1),
(61, 1),
(62, 1),
(63, 1),
(65, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_module_dashboard_widgets`
--

DROP TABLE IF EXISTS `vtiger_module_dashboard_widgets`;
CREATE TABLE `vtiger_module_dashboard_widgets` (
  `id` int(19) NOT NULL,
  `linkid` int(19) DEFAULT NULL,
  `userid` int(19) DEFAULT NULL,
  `filterid` int(19) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `position` varchar(50) DEFAULT NULL,
  `reportid` int(19) DEFAULT NULL,
  `dashboardtabid` int(11) DEFAULT NULL,
  `size` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_module_dashboard_widgets`
--

INSERT IGNORE INTO `vtiger_module_dashboard_widgets` (`id`, `linkid`, `userid`, `filterid`, `title`, `data`, `position`, `reportid`, `dashboardtabid`, `size`) VALUES
(1, 56, 1, NULL, NULL, 'null', NULL, NULL, 2, NULL),
(4, 62, 1, NULL, NULL, 'null', NULL, NULL, 2, NULL),
(5, 59, 1, NULL, NULL, 'null', NULL, NULL, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_notebook_contents`
--

DROP TABLE IF EXISTS `vtiger_notebook_contents`;
CREATE TABLE `vtiger_notebook_contents` (
  `userid` int(19) NOT NULL,
  `notebookid` int(19) NOT NULL,
  `contents` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_notes`
--

DROP TABLE IF EXISTS `vtiger_notes`;
CREATE TABLE `vtiger_notes` (
  `notesid` int(19) NOT NULL DEFAULT 0,
  `note_no` varchar(100) NOT NULL,
  `title` varchar(50) NOT NULL,
  `filename` varchar(200) DEFAULT NULL,
  `notecontent` text DEFAULT NULL,
  `folderid` int(19) NOT NULL DEFAULT 1,
  `filetype` varchar(50) DEFAULT NULL,
  `filelocationtype` varchar(5) DEFAULT NULL,
  `filedownloadcount` int(19) DEFAULT NULL,
  `filestatus` int(19) DEFAULT NULL,
  `filesize` int(19) NOT NULL DEFAULT 0,
  `fileversion` varchar(50) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_notes`
--

INSERT IGNORE INTO `vtiger_notes` (`notesid`, `note_no`, `title`, `filename`, `notecontent`, `folderid`, `filetype`, `filelocationtype`, `filedownloadcount`, `filestatus`, `filesize`, `fileversion`, `tags`) VALUES
(2020, 'DOC2020', 'یادداشت نمونه 1', NULL, 'محتوای یادداشت 1', 1, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2021, 'DOC2021', 'یادداشت نمونه 2', NULL, 'محتوای یادداشت 2', 1, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2022, 'DOC2022', 'یادداشت نمونه 3', NULL, 'محتوای یادداشت 3', 1, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2023, 'DOC2023', 'یادداشت نمونه 4', NULL, 'محتوای یادداشت 4', 1, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2024, 'DOC2024', 'یادداشت نمونه 5', NULL, 'محتوای یادداشت 5', 1, NULL, NULL, NULL, NULL, 0, NULL, NULL),
(2158, 'DOC2', 'Gouya-LEAD-SMOKE-20260718040333-5938.txt', 'Gouya-LEAD-SMOKE-20260718040333-5938.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2163, 'DOC3', 'Gouya-LEAD-SMOKE-20260718040406-5955.txt', 'Gouya-LEAD-SMOKE-20260718040406-5955.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2170, 'DOC4', 'Gouya-LEAD-SMOKE-20260718040648-8253.txt', 'Gouya-LEAD-SMOKE-20260718040648-8253.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2176, 'DOC5', 'Gouya-LEAD-SMOKE-20260718040939-3209.txt', 'Gouya-LEAD-SMOKE-20260718040939-3209.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2182, 'DOC6', 'Gouya-LEAD-SMOKE-20260718043251-9053.txt', 'Gouya-LEAD-SMOKE-20260718043251-9053.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2188, 'DOC7', 'Gouya-LEAD-SMOKE-20260718043314-6749.txt', 'Gouya-LEAD-SMOKE-20260718043314-6749.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2194, 'DOC8', 'Gouya-LEAD-SMOKE-20260718043336-8174.txt', 'Gouya-LEAD-SMOKE-20260718043336-8174.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2202, 'DOC9', 'Gouya-LEAD-SMOKE-20260718043458-8234.txt', 'Gouya-LEAD-SMOKE-20260718043458-8234.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2210, 'DOC10', 'Gouya-LEAD-SMOKE-20260718043554-3440.txt', 'Gouya-LEAD-SMOKE-20260718043554-3440.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2233, 'DOC-GT-2233', 'پیش‌فاکتور نمونه گویا [GOOYA-TEST]', 'https://www.gooya.com/sample-quote.pdf', 'سند تست برای پرونده سرنخ', 1, '', 'E', 0, 1, 0, '', NULL),
(2262, 'DOC-GT-2262', 'فرم پرسنلی نمونه [GOOYA-TEST]', 'https://www.gooya.com/hr-form.pdf', 'سند تست پرونده فرد', 1, '', 'E', 0, 1, 0, '', NULL),
(2267, 'DOC-GT-2267', 'پروپوزال فرصت [GOOYA-TEST]', 'https://www.gooya.com/proposal.pdf', 'سند تست فرصت', 1, '', 'E', 0, 1, 0, '', NULL),
(2298, 'DOC11', 'SARV-LEAD-SMOKE-20260809060946-7013.txt', 'SARV-LEAD-SMOKE-20260809060946-7013.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2303, 'DOC12', 'SARV-LEAD-SMOKE-20260809061248-2728.txt', 'SARV-LEAD-SMOKE-20260809061248-2728.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2308, 'DOC13', 'SARV-LEAD-SMOKE-20260809061344-4881.txt', 'SARV-LEAD-SMOKE-20260809061344-4881.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2316, 'DOC14', 'SARV-LEAD-SMOKE-20260809062044-1209.txt', 'SARV-LEAD-SMOKE-20260809062044-1209.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2324, 'DOC15', 'SARV-LEAD-SMOKE-20260809062220-7570.txt', 'SARV-LEAD-SMOKE-20260809062220-7570.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2332, 'DOC16', 'SARV-LEAD-SMOKE-20260809062704-6866.txt', 'SARV-LEAD-SMOKE-20260809062704-6866.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2340, 'DOC17', 'SARV-LEAD-SMOKE-20260809063037-9459.txt', 'SARV-LEAD-SMOKE-20260809063037-9459.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2348, 'DOC18', 'SARV-LEAD-SMOKE-20260809063122-8988.txt', 'SARV-LEAD-SMOKE-20260809063122-8988.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', ''),
(2364, 'DOC19', 'SARV-LEAD-SMOKE-20260809084321-3905.txt', 'SARV-LEAD-SMOKE-20260809084321-3905.txt', 'نوع فایل سرنخ: آزمون یکپارچگی', 1, 'text/plain', 'I', NULL, 1, 69, '', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_notescf`
--

DROP TABLE IF EXISTS `vtiger_notescf`;
CREATE TABLE `vtiger_notescf` (
  `notesid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_notescf`
--

INSERT IGNORE INTO `vtiger_notescf` (`notesid`) VALUES
(2158),
(2163),
(2170),
(2176),
(2182),
(2188),
(2194),
(2202),
(2210),
(2298),
(2303),
(2308),
(2316),
(2324),
(2332),
(2340),
(2348),
(2364);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_notificationscheduler`
--

DROP TABLE IF EXISTS `vtiger_notificationscheduler`;
CREATE TABLE `vtiger_notificationscheduler` (
  `schedulednotificationid` int(19) NOT NULL,
  `schedulednotificationname` varchar(200) DEFAULT NULL,
  `active` int(1) DEFAULT NULL,
  `notificationsubject` varchar(200) DEFAULT NULL,
  `notificationbody` text DEFAULT NULL,
  `label` varchar(50) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_notificationscheduler`
--

INSERT IGNORE INTO `vtiger_notificationscheduler` (`schedulednotificationid`, `schedulednotificationname`, `active`, `notificationsubject`, `notificationbody`, `label`, `type`) VALUES
(1, 'LBL_TASK_NOTIFICATION_DESCRITPION', 1, 'Task Delay Notification', 'Tasks delayed beyond 24 hrs ', 'LBL_TASK_NOTIFICATION', NULL),
(2, 'LBL_BIG_DEAL_DESCRIPTION', 1, 'Big Deal notification', 'Success! A big deal has been won! ', 'LBL_BIG_DEAL', NULL),
(3, 'LBL_TICKETS_DESCRIPTION', 1, 'Pending Tickets notification', 'Ticket pending please ', 'LBL_PENDING_TICKETS', NULL),
(4, 'LBL_MANY_TICKETS_DESCRIPTION', 1, 'Too many tickets Notification', 'Too many tickets pending against this entity ', 'LBL_MANY_TICKETS', NULL),
(5, 'LBL_START_DESCRIPTION', 1, 'Support Start Notification', '10', 'LBL_START_NOTIFICATION', 'select'),
(6, 'LBL_SUPPORT_DESCRIPTION', 1, 'Support ending please', '11', 'LBL_SUPPORT_NOTICIATION', 'select'),
(7, 'LBL_SUPPORT_DESCRIPTION_MONTH', 1, 'Support ending please', '12', 'LBL_SUPPORT_NOTICIATION_MONTH', 'select'),
(8, 'LBL_ACTIVITY_REMINDER_DESCRIPTION', 1, 'Activity Reminder Notification', 'This is a reminder notification for the Activity', 'LBL_ACTIVITY_NOTIFICATION', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_notificationscheduler_seq`
--

DROP TABLE IF EXISTS `vtiger_notificationscheduler_seq`;
CREATE TABLE `vtiger_notificationscheduler_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_notificationscheduler_seq`
--

INSERT IGNORE INTO `vtiger_notificationscheduler_seq` (`id`) VALUES
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_no_of_currency_decimals`
--

DROP TABLE IF EXISTS `vtiger_no_of_currency_decimals`;
CREATE TABLE `vtiger_no_of_currency_decimals` (
  `no_of_currency_decimalsid` int(11) NOT NULL,
  `no_of_currency_decimals` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_no_of_currency_decimals`
--

INSERT IGNORE INTO `vtiger_no_of_currency_decimals` (`no_of_currency_decimalsid`, `no_of_currency_decimals`, `sortorderid`, `presence`) VALUES
(2, '2', 2, 1),
(3, '3', 3, 1),
(4, '4', 4, 1),
(5, '5', 5, 1),
(6, '0', 0, 1),
(7, '1', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_no_of_currency_decimals_seq`
--

DROP TABLE IF EXISTS `vtiger_no_of_currency_decimals_seq`;
CREATE TABLE `vtiger_no_of_currency_decimals_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_no_of_currency_decimals_seq`
--

INSERT IGNORE INTO `vtiger_no_of_currency_decimals_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_opportunitystage`
--

DROP TABLE IF EXISTS `vtiger_opportunitystage`;
CREATE TABLE `vtiger_opportunitystage` (
  `potstageid` int(19) NOT NULL,
  `stage` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1,
  `probability` decimal(3,2) DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_opportunity_type`
--

DROP TABLE IF EXISTS `vtiger_opportunity_type`;
CREATE TABLE `vtiger_opportunity_type` (
  `opptypeid` int(19) NOT NULL,
  `opportunity_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_opportunity_type`
--

INSERT IGNORE INTO `vtiger_opportunity_type` (`opptypeid`, `opportunity_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Existing Business', 1, 128, 1, NULL),
(3, 'New Business', 1, 129, 2, NULL),
(4, 'کسب و کار جدید', 1, 318, 3, NULL),
(5, 'مشتری موجود / تمدید', 1, 319, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_opportunity_type_seq`
--

DROP TABLE IF EXISTS `vtiger_opportunity_type_seq`;
CREATE TABLE `vtiger_opportunity_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_opportunity_type_seq`
--

INSERT IGNORE INTO `vtiger_opportunity_type_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_organizationdetails`
--

DROP TABLE IF EXISTS `vtiger_organizationdetails`;
CREATE TABLE `vtiger_organizationdetails` (
  `organization_id` int(11) NOT NULL,
  `organizationname` varchar(60) DEFAULT NULL,
  `address` varchar(150) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `code` varchar(30) DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `fax` varchar(30) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `logoname` varchar(50) DEFAULT NULL,
  `logo` text DEFAULT NULL,
  `vatid` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_organizationdetails`
--

INSERT IGNORE INTO `vtiger_organizationdetails` (`organization_id`, `organizationname`, `address`, `city`, `state`, `country`, `code`, `phone`, `fax`, `website`, `logoname`, `logo`, `vatid`) VALUES
(1, 'مجموعه توسعه کسب و کار گویا', '95, 12th Main Road, 3rd Block, Rajajinagar', 'Bangalore', 'Karnataka', 'India', '560010', '+91 9243602352', '+91 9243602352', 'https://crm.gouyahesab.com/', 'gooya-business-logo.png', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_organizationdetails_seq`
--

DROP TABLE IF EXISTS `vtiger_organizationdetails_seq`;
CREATE TABLE `vtiger_organizationdetails_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_organizationdetails_seq`
--

INSERT IGNORE INTO `vtiger_organizationdetails_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_org_share_action2tab`
--

DROP TABLE IF EXISTS `vtiger_org_share_action2tab`;
CREATE TABLE `vtiger_org_share_action2tab` (
  `share_action_id` int(19) NOT NULL,
  `tabid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_org_share_action2tab`
--

INSERT IGNORE INTO `vtiger_org_share_action2tab` (`share_action_id`, `tabid`) VALUES
(0, 2),
(0, 4),
(0, 6),
(0, 7),
(0, 8),
(0, 9),
(0, 10),
(0, 13),
(0, 14),
(0, 16),
(0, 18),
(0, 20),
(0, 21),
(0, 22),
(0, 23),
(0, 26),
(0, 34),
(0, 35),
(0, 36),
(0, 38),
(0, 42),
(0, 43),
(0, 44),
(0, 45),
(0, 47),
(0, 52),
(0, 53),
(0, 54),
(0, 55),
(0, 56),
(0, 57),
(0, 58),
(0, 59),
(0, 60),
(0, 61),
(0, 62),
(0, 63),
(0, 65),
(1, 2),
(1, 4),
(1, 6),
(1, 7),
(1, 8),
(1, 9),
(1, 10),
(1, 13),
(1, 14),
(1, 16),
(1, 18),
(1, 20),
(1, 21),
(1, 22),
(1, 23),
(1, 26),
(1, 34),
(1, 35),
(1, 36),
(1, 38),
(1, 42),
(1, 43),
(1, 44),
(1, 45),
(1, 47),
(1, 52),
(1, 53),
(1, 54),
(1, 55),
(1, 56),
(1, 57),
(1, 58),
(1, 59),
(1, 60),
(1, 61),
(1, 62),
(1, 63),
(1, 65),
(2, 2),
(2, 4),
(2, 6),
(2, 7),
(2, 8),
(2, 9),
(2, 10),
(2, 13),
(2, 14),
(2, 16),
(2, 18),
(2, 20),
(2, 21),
(2, 22),
(2, 23),
(2, 26),
(2, 34),
(2, 35),
(2, 36),
(2, 38),
(2, 42),
(2, 43),
(2, 44),
(2, 45),
(2, 47),
(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, 65),
(3, 2),
(3, 4),
(3, 6),
(3, 7),
(3, 8),
(3, 9),
(3, 10),
(3, 13),
(3, 14),
(3, 16),
(3, 18),
(3, 20),
(3, 21),
(3, 22),
(3, 23),
(3, 26),
(3, 34),
(3, 35),
(3, 36),
(3, 38),
(3, 42),
(3, 43),
(3, 44),
(3, 45),
(3, 47),
(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, 65);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_org_share_action_mapping`
--

DROP TABLE IF EXISTS `vtiger_org_share_action_mapping`;
CREATE TABLE `vtiger_org_share_action_mapping` (
  `share_action_id` int(19) NOT NULL,
  `share_action_name` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_org_share_action_mapping`
--

INSERT IGNORE INTO `vtiger_org_share_action_mapping` (`share_action_id`, `share_action_name`) VALUES
(0, 'Public: Read Only'),
(1, 'Public: Read, Create/Edit'),
(2, 'Public: Read, Create/Edit, Delete'),
(3, 'Private'),
(4, 'Hide Details'),
(5, 'Hide Details and Add Events'),
(6, 'Show Details'),
(7, 'Show Details and Add Events');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_othereventduration`
--

DROP TABLE IF EXISTS `vtiger_othereventduration`;
CREATE TABLE `vtiger_othereventduration` (
  `othereventdurationid` int(11) NOT NULL,
  `othereventduration` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_othereventduration`
--

INSERT IGNORE INTO `vtiger_othereventduration` (`othereventdurationid`, `othereventduration`, `sortorderid`, `presence`) VALUES
(1, '5', 0, 1),
(2, '10', 1, 1),
(3, '30', 2, 1),
(4, '60', 3, 1),
(5, '120', 4, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_othereventduration_seq`
--

DROP TABLE IF EXISTS `vtiger_othereventduration_seq`;
CREATE TABLE `vtiger_othereventduration_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_othereventduration_seq`
--

INSERT IGNORE INTO `vtiger_othereventduration_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_parenttab`
--

DROP TABLE IF EXISTS `vtiger_parenttab`;
CREATE TABLE `vtiger_parenttab` (
  `parenttabid` int(19) NOT NULL,
  `parenttab_label` varchar(100) NOT NULL,
  `sequence` int(10) NOT NULL,
  `visible` int(2) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_parenttab`
--

INSERT IGNORE INTO `vtiger_parenttab` (`parenttabid`, `parenttab_label`, `sequence`, `visible`) VALUES
(1, 'My Home Page', 1, 0),
(2, 'Marketing', 2, 0),
(3, 'Sales', 3, 0),
(4, 'Support', 4, 0),
(5, 'Analytics', 5, 0),
(6, 'Inventory', 6, 0),
(7, 'Tools', 7, 0),
(8, 'Settings', 8, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_parenttabrel`
--

DROP TABLE IF EXISTS `vtiger_parenttabrel`;
CREATE TABLE `vtiger_parenttabrel` (
  `parenttabid` int(19) NOT NULL,
  `tabid` int(19) NOT NULL,
  `sequence` int(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_parenttabrel`
--

INSERT IGNORE INTO `vtiger_parenttabrel` (`parenttabid`, `tabid`, `sequence`) VALUES
(1, 9, 2),
(1, 28, 4),
(1, 3, 1),
(3, 7, 1),
(3, 6, 2),
(3, 4, 3),
(3, 2, 4),
(3, 20, 5),
(3, 22, 6),
(3, 23, 7),
(3, 19, 8),
(3, 8, 9),
(4, 13, 1),
(4, 15, 2),
(4, 6, 3),
(4, 4, 4),
(4, 8, 5),
(5, 1, 2),
(5, 25, 1),
(6, 14, 1),
(6, 18, 2),
(6, 19, 3),
(6, 21, 4),
(6, 22, 5),
(6, 20, 6),
(6, 23, 7),
(7, 24, 1),
(7, 27, 2),
(7, 8, 3),
(2, 26, 1),
(2, 6, 2),
(2, 4, 3),
(2, 28, 4),
(4, 28, 7),
(2, 7, 5),
(2, 9, 6),
(4, 9, 8),
(2, 8, 8),
(3, 9, 11),
(7, 31, 4),
(7, 31, 5),
(7, 34, 6),
(7, 34, 7),
(4, 35, 9),
(4, 35, 10),
(6, 36, 8),
(6, 36, 9),
(6, 38, 10),
(6, 38, 11),
(7, 40, 8),
(7, 40, 9),
(4, 43, 11),
(4, 43, 12),
(4, 44, 13),
(4, 44, 14),
(4, 45, 15),
(4, 45, 16),
(7, 46, 10),
(7, 46, 11),
(3, 47, 12),
(3, 47, 13),
(8, 49, 1),
(8, 49, 2),
(7, 24, 12),
(7, 27, 13),
(7, 40, 14),
(7, 46, 15),
(7, 50, 16),
(7, 51, 17),
(3, 52, 14),
(3, 53, 15),
(3, 54, 16),
(3, 55, 17),
(3, 56, 18),
(3, 57, 19),
(3, 58, 20),
(3, 59, 21),
(3, 60, 22),
(3, 61, 23),
(3, 62, 24),
(3, 63, 25),
(2, 65, 9),
(7, 66, 18),
(7, 67, 19),
(7, 68, 20);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_participation_status`
--

DROP TABLE IF EXISTS `vtiger_participation_status`;
CREATE TABLE `vtiger_participation_status` (
  `participation_statusid` int(11) NOT NULL,
  `participation_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_participation_status`
--

INSERT IGNORE INTO `vtiger_participation_status` (`participation_statusid`, `participation_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Planned', 1, 385, 1, NULL),
(2, 'Active', 1, 386, 2, NULL),
(3, 'Completed', 1, 387, 3, NULL),
(4, 'Cancelled', 1, 388, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_participation_status_seq`
--

DROP TABLE IF EXISTS `vtiger_participation_status_seq`;
CREATE TABLE `vtiger_participation_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_participation_status_seq`
--

INSERT IGNORE INTO `vtiger_participation_status_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_participation_type`
--

DROP TABLE IF EXISTS `vtiger_participation_type`;
CREATE TABLE `vtiger_participation_type` (
  `participation_typeid` int(11) NOT NULL,
  `participation_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_participation_type`
--

INSERT IGNORE INTO `vtiger_participation_type` (`participation_typeid`, `participation_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Partner', 1, 380, 1, NULL),
(2, 'Sponsor', 1, 381, 2, NULL),
(3, 'Member', 1, 382, 3, NULL),
(4, 'Supplier', 1, 383, 4, NULL),
(5, 'Other', 1, 384, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_participation_type_seq`
--

DROP TABLE IF EXISTS `vtiger_participation_type_seq`;
CREATE TABLE `vtiger_participation_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_participation_type_seq`
--

INSERT IGNORE INTO `vtiger_participation_type_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_direction`
--

DROP TABLE IF EXISTS `vtiger_payment_direction`;
CREATE TABLE `vtiger_payment_direction` (
  `payment_directionid` int(11) NOT NULL,
  `payment_direction` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_payment_direction`
--

INSERT IGNORE INTO `vtiger_payment_direction` (`payment_directionid`, `payment_direction`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Incoming', 1, 359, 1, NULL),
(2, 'Outgoing', 1, 360, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_direction_seq`
--

DROP TABLE IF EXISTS `vtiger_payment_direction_seq`;
CREATE TABLE `vtiger_payment_direction_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_payment_direction_seq`
--

INSERT IGNORE INTO `vtiger_payment_direction_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_duration`
--

DROP TABLE IF EXISTS `vtiger_payment_duration`;
CREATE TABLE `vtiger_payment_duration` (
  `payment_duration_id` int(11) DEFAULT NULL,
  `payment_duration` varchar(200) DEFAULT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_payment_duration`
--

INSERT IGNORE INTO `vtiger_payment_duration` (`payment_duration_id`, `payment_duration`, `sortorderid`, `presence`, `color`) VALUES
(1, 'Net 30 days', 6, 1, NULL),
(2, 'Net 45 days', 7, 1, NULL),
(3, 'Net 60 days', 8, 1, NULL),
(4, 'Net 01 day', 1, 1, NULL),
(5, 'Net 05 days', 2, 1, NULL),
(6, 'Net 07 days', 3, 1, NULL),
(7, 'Net 10 days', 4, 1, NULL),
(8, 'Net 15 days', 5, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_duration_seq`
--

DROP TABLE IF EXISTS `vtiger_payment_duration_seq`;
CREATE TABLE `vtiger_payment_duration_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_payment_duration_seq`
--

INSERT IGNORE INTO `vtiger_payment_duration_seq` (`id`) VALUES
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_method`
--

DROP TABLE IF EXISTS `vtiger_payment_method`;
CREATE TABLE `vtiger_payment_method` (
  `payment_methodid` int(11) NOT NULL,
  `payment_method` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_payment_method`
--

INSERT IGNORE INTO `vtiger_payment_method` (`payment_methodid`, `payment_method`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Cash', 1, 366, 1, NULL),
(2, 'Card', 1, 367, 2, NULL),
(3, 'BankTransfer', 1, 368, 3, NULL),
(4, 'Cheque', 1, 369, 4, NULL),
(5, 'Gateway', 1, 370, 5, NULL),
(6, 'Other', 1, 371, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_method_seq`
--

DROP TABLE IF EXISTS `vtiger_payment_method_seq`;
CREATE TABLE `vtiger_payment_method_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_payment_method_seq`
--

INSERT IGNORE INTO `vtiger_payment_method_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_status`
--

DROP TABLE IF EXISTS `vtiger_payment_status`;
CREATE TABLE `vtiger_payment_status` (
  `payment_statusid` int(11) NOT NULL,
  `payment_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_payment_status`
--

INSERT IGNORE INTO `vtiger_payment_status` (`payment_statusid`, `payment_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Planned', 1, 361, 1, NULL),
(2, 'Pending', 1, 362, 2, NULL),
(3, 'Paid', 1, 363, 3, NULL),
(4, 'Cancelled', 1, 364, 4, NULL),
(5, 'Reversed', 1, 365, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_status_seq`
--

DROP TABLE IF EXISTS `vtiger_payment_status_seq`;
CREATE TABLE `vtiger_payment_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_payment_status_seq`
--

INSERT IGNORE INTO `vtiger_payment_status_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_type`
--

DROP TABLE IF EXISTS `vtiger_payment_type`;
CREATE TABLE `vtiger_payment_type` (
  `payment_typeid` int(11) NOT NULL,
  `payment_type` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_payment_type`
--

INSERT IGNORE INTO `vtiger_payment_type` (`payment_typeid`, `payment_type`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'InvoicePayment', 1, 372, 1, NULL),
(2, 'AdvancePayment', 1, 373, 2, NULL),
(3, 'Refund', 1, 374, 3, NULL),
(4, 'Other', 1, 375, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_payment_type_seq`
--

DROP TABLE IF EXISTS `vtiger_payment_type_seq`;
CREATE TABLE `vtiger_payment_type_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_payment_type_seq`
--

INSERT IGNORE INTO `vtiger_payment_type_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pbxmanager`
--

DROP TABLE IF EXISTS `vtiger_pbxmanager`;
CREATE TABLE `vtiger_pbxmanager` (
  `pbxmanagerid` int(20) NOT NULL,
  `direction` varchar(10) DEFAULT NULL,
  `callstatus` varchar(20) DEFAULT NULL,
  `starttime` datetime DEFAULT NULL,
  `endtime` datetime DEFAULT NULL,
  `totalduration` int(11) DEFAULT NULL,
  `billduration` int(11) DEFAULT NULL,
  `recordingurl` varchar(200) DEFAULT NULL,
  `sourceuuid` varchar(100) DEFAULT NULL,
  `gateway` varchar(20) DEFAULT NULL,
  `customer` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `customernumber` varchar(100) DEFAULT NULL,
  `customertype` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pbxmanagercf`
--

DROP TABLE IF EXISTS `vtiger_pbxmanagercf`;
CREATE TABLE `vtiger_pbxmanagercf` (
  `pbxmanagerid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pbxmanager_gateway`
--

DROP TABLE IF EXISTS `vtiger_pbxmanager_gateway`;
CREATE TABLE `vtiger_pbxmanager_gateway` (
  `id` int(11) NOT NULL,
  `gateway` varchar(20) DEFAULT NULL,
  `parameters` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pbxmanager_phonelookup`
--

DROP TABLE IF EXISTS `vtiger_pbxmanager_phonelookup`;
CREATE TABLE `vtiger_pbxmanager_phonelookup` (
  `crmid` int(20) DEFAULT NULL,
  `setype` varchar(30) DEFAULT NULL,
  `fnumber` varchar(100) DEFAULT NULL,
  `rnumber` varchar(100) DEFAULT NULL,
  `fieldname` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_pbxmanager_phonelookup`
--

INSERT IGNORE INTO `vtiger_pbxmanager_phonelookup` (`crmid`, `setype`, `fnumber`, `rnumber`, `fieldname`) VALUES
(2, 'Leads', '09119090378', '87309091190', 'mobile'),
(11, 'Contacts', '09119220020', '02002291190', 'mobile'),
(2063, 'Leads', '02155554444', '44445555120', 'phone'),
(2063, 'Leads', '09120000000', '00000002190', 'mobile'),
(2065, 'Leads', '0212222222', '2222222120', 'phone'),
(2221, 'Accounts', '02100002036', '63020000120', 'phone'),
(1012, 'Leads', '981320200208', '802002023189', 'phone'),
(2057, 'Leads', '983520202559', '955202025389', 'phone'),
(2286, 'Contacts', '989121234567', '765432121989', 'phone'),
(2286, 'Contacts', '989121234567', '765432121989', 'mobile');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_picklist`
--

DROP TABLE IF EXISTS `vtiger_picklist`;
CREATE TABLE `vtiger_picklist` (
  `picklistid` int(11) NOT NULL,
  `name` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_picklist`
--

INSERT IGNORE INTO `vtiger_picklist` (`picklistid`, `name`) VALUES
(77, 'access_level'),
(1, 'accounttype'),
(68, 'account_status'),
(67, 'account_type'),
(2, 'activitytype'),
(37, 'assetstatus'),
(3, 'campaignstatus'),
(4, 'campaigntype'),
(5, 'carrier'),
(53, 'cf_credit_source'),
(51, 'cf_credit_status'),
(52, 'cf_credit_type'),
(92, 'cf_forecast_category'),
(86, 'cf_grouping1'),
(87, 'cf_grouping2'),
(93, 'cf_invoice_cycles'),
(54, 'cf_invoice_kind'),
(64, 'cf_lead_party_type'),
(91, 'cf_loss_reason'),
(88, 'cf_opportunity_currency'),
(90, 'cf_opportunity_priority'),
(50, 'cf_party_type'),
(89, 'cf_sales_process'),
(63, 'channel'),
(33, 'contract_priority'),
(32, 'contract_status'),
(34, 'contract_type'),
(48, 'defaultactivitytype'),
(47, 'defaulteventstatus'),
(49, 'defaultlandingpage'),
(70, 'deposit_status'),
(69, 'deposit_type'),
(6, 'eventstatus'),
(7, 'expectedresponse'),
(8, 'faqcategories'),
(9, 'faqstatus'),
(75, 'gift_status'),
(10, 'glacct'),
(78, 'grant_status'),
(11, 'industry'),
(12, 'invoicestatus'),
(13, 'leadsource'),
(14, 'leadstatus'),
(66, 'list_status'),
(65, 'list_type'),
(72, 'location_status'),
(71, 'location_type'),
(15, 'manufacturer'),
(16, 'opportunity_type'),
(61, 'participation_status'),
(60, 'participation_type'),
(55, 'payment_direction'),
(57, 'payment_method'),
(56, 'payment_status'),
(58, 'payment_type'),
(17, 'postatus'),
(18, 'productcategory'),
(45, 'progress'),
(38, 'projectmilestonetype'),
(44, 'projectpriority'),
(42, 'projectstatus'),
(40, 'projecttaskpriority'),
(41, 'projecttaskprogress'),
(46, 'projecttaskstatus'),
(39, 'projecttasktype'),
(43, 'projecttype'),
(19, 'quotestage'),
(20, 'rating'),
(74, 'reservation_status'),
(62, 'response_status'),
(73, 'sales_channel'),
(21, 'sales_stage'),
(22, 'salutationtype'),
(76, 'sample_status'),
(81, 'sarv_delivery_format'),
(82, 'sarv_payment_method'),
(83, 'sarv_payment_status'),
(84, 'sarv_po_category'),
(85, 'sarv_print_template'),
(80, 'sarv_shipping_method'),
(79, 'sarv_sms_reminder'),
(36, 'servicecategory'),
(35, 'service_usageunit'),
(59, 'sms_reminder'),
(23, 'sostatus'),
(24, 'taskpriority'),
(25, 'taskstatus'),
(26, 'ticketcategories'),
(27, 'ticketpriorities'),
(28, 'ticketseverities'),
(29, 'ticketstatus'),
(31, 'tracking_unit'),
(30, 'usageunit');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_picklistvalues_seq`
--

DROP TABLE IF EXISTS `vtiger_picklistvalues_seq`;
CREATE TABLE `vtiger_picklistvalues_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_picklistvalues_seq`
--

INSERT IGNORE INTO `vtiger_picklistvalues_seq` (`id`) VALUES
(518);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_picklist_dependency`
--

DROP TABLE IF EXISTS `vtiger_picklist_dependency`;
CREATE TABLE `vtiger_picklist_dependency` (
  `id` int(11) NOT NULL,
  `tabid` int(19) NOT NULL,
  `sourcefield` varchar(255) DEFAULT NULL,
  `targetfield` varchar(255) DEFAULT NULL,
  `sourcevalue` varchar(100) DEFAULT NULL,
  `targetvalues` text DEFAULT NULL,
  `criteria` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_picklist_seq`
--

DROP TABLE IF EXISTS `vtiger_picklist_seq`;
CREATE TABLE `vtiger_picklist_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_picklist_seq`
--

INSERT IGNORE INTO `vtiger_picklist_seq` (`id`) VALUES
(93);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_picklist_transitions`
--

DROP TABLE IF EXISTS `vtiger_picklist_transitions`;
CREATE TABLE `vtiger_picklist_transitions` (
  `fieldname` varchar(255) NOT NULL,
  `module` varchar(100) NOT NULL,
  `transition_data` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pobillads`
--

DROP TABLE IF EXISTS `vtiger_pobillads`;
CREATE TABLE `vtiger_pobillads` (
  `pobilladdressid` int(19) NOT NULL DEFAULT 0,
  `bill_city` varchar(30) DEFAULT NULL,
  `bill_code` varchar(30) DEFAULT NULL,
  `bill_country` varchar(30) DEFAULT NULL,
  `bill_state` varchar(30) DEFAULT NULL,
  `bill_street` varchar(250) DEFAULT NULL,
  `bill_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_pobillads`
--

INSERT IGNORE INTO `vtiger_pobillads` (`pobilladdressid`, `bill_city`, `bill_code`, `bill_country`, `bill_state`, `bill_street`, `bill_pobox`) VALUES
(2150, '', '', '', '', 'تهران', ''),
(2268, 'تهران', '۱۵۸۷۶۱۳۴۱۱', 'ایران', 'تهران', 'تهران، خیابان نمونه، پلاک ۱۰', '۱۱۳۶۹');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_portal`
--

DROP TABLE IF EXISTS `vtiger_portal`;
CREATE TABLE `vtiger_portal` (
  `portalid` int(19) NOT NULL,
  `portalname` varchar(200) NOT NULL,
  `portalurl` varchar(255) NOT NULL,
  `sequence` int(3) NOT NULL,
  `setdefault` int(3) NOT NULL DEFAULT 0,
  `createdtime` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_portalinfo`
--

DROP TABLE IF EXISTS `vtiger_portalinfo`;
CREATE TABLE `vtiger_portalinfo` (
  `id` int(11) NOT NULL,
  `user_name` varchar(50) DEFAULT NULL,
  `user_password` varchar(255) DEFAULT NULL,
  `type` varchar(5) DEFAULT NULL,
  `cryptmode` varchar(20) DEFAULT NULL,
  `last_login_time` datetime DEFAULT NULL,
  `login_time` datetime DEFAULT NULL,
  `logout_time` datetime DEFAULT NULL,
  `isactive` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_poshipads`
--

DROP TABLE IF EXISTS `vtiger_poshipads`;
CREATE TABLE `vtiger_poshipads` (
  `poshipaddressid` int(19) NOT NULL DEFAULT 0,
  `ship_city` varchar(30) DEFAULT NULL,
  `ship_code` varchar(30) DEFAULT NULL,
  `ship_country` varchar(30) DEFAULT NULL,
  `ship_state` varchar(30) DEFAULT NULL,
  `ship_street` varchar(250) DEFAULT NULL,
  `ship_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_poshipads`
--

INSERT IGNORE INTO `vtiger_poshipads` (`poshipaddressid`, `ship_city`, `ship_code`, `ship_country`, `ship_state`, `ship_street`, `ship_pobox`) VALUES
(2150, '', '', '', '', 'تهران', ''),
(2268, 'تهران', '۱۵۸۷۶۱۳۴۱۱', 'ایران', 'تهران', 'تهران، خیابان نمونه، پلاک ۱۰', '۱۱۳۶۹');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_postatus`
--

DROP TABLE IF EXISTS `vtiger_postatus`;
CREATE TABLE `vtiger_postatus` (
  `postatusid` int(19) NOT NULL,
  `postatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_postatus`
--

INSERT IGNORE INTO `vtiger_postatus` (`postatusid`, `postatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Created', 0, 130, 0, NULL),
(2, 'Approved', 0, 131, 1, NULL),
(3, 'Delivered', 0, 132, 2, NULL),
(4, 'Cancelled', 0, 133, 3, NULL),
(5, 'Received Shipment', 0, 134, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_postatushistory`
--

DROP TABLE IF EXISTS `vtiger_postatushistory`;
CREATE TABLE `vtiger_postatushistory` (
  `historyid` int(19) NOT NULL,
  `purchaseorderid` int(19) NOT NULL,
  `vendorname` varchar(255) DEFAULT NULL,
  `total` decimal(25,8) DEFAULT NULL,
  `postatus` varchar(200) DEFAULT NULL,
  `lastmodified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_postatushistory`
--

INSERT IGNORE INTO `vtiger_postatushistory` (`historyid`, `purchaseorderid`, `vendorname`, `total`, `postatus`, `lastmodified`) VALUES
(1, 2150, 'بازرگانی پارت تامین (مثال)', 15000000.00000000, 'Approved', '2026-07-16 00:38:10'),
(52, 2268, 'بازرگانی پارت تامین (مثال)', 110000000.00000000, 'Created', '2026-07-29 12:55:23');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_postatus_seq`
--

DROP TABLE IF EXISTS `vtiger_postatus_seq`;
CREATE TABLE `vtiger_postatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_postatus_seq`
--

INSERT IGNORE INTO `vtiger_postatus_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_potential`
--

DROP TABLE IF EXISTS `vtiger_potential`;
CREATE TABLE `vtiger_potential` (
  `potentialid` int(19) NOT NULL DEFAULT 0,
  `potential_no` varchar(100) NOT NULL,
  `related_to` int(19) DEFAULT NULL,
  `potentialname` varchar(120) NOT NULL,
  `amount` decimal(25,8) DEFAULT NULL,
  `currency` varchar(20) DEFAULT NULL,
  `closingdate` date DEFAULT NULL,
  `typeofrevenue` varchar(50) DEFAULT NULL,
  `nextstep` varchar(100) DEFAULT NULL,
  `private` int(1) DEFAULT 0,
  `probability` decimal(7,3) DEFAULT 0.000,
  `campaignid` int(19) DEFAULT NULL,
  `sales_stage` varchar(200) DEFAULT NULL,
  `potentialtype` varchar(200) DEFAULT NULL,
  `leadsource` varchar(200) DEFAULT NULL,
  `productid` int(50) DEFAULT NULL,
  `productversion` varchar(50) DEFAULT NULL,
  `quotationref` varchar(50) DEFAULT NULL,
  `partnercontact` varchar(50) DEFAULT NULL,
  `remarks` varchar(50) DEFAULT NULL,
  `runtimefee` int(19) DEFAULT 0,
  `followupdate` date DEFAULT NULL,
  `evaluationstatus` varchar(50) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `forecastcategory` int(19) DEFAULT 0,
  `outcomeanalysis` int(19) DEFAULT 0,
  `forecast_amount` decimal(25,8) DEFAULT NULL,
  `isconvertedfromlead` varchar(3) DEFAULT '0',
  `contact_id` int(19) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `converted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_potential`
--

INSERT IGNORE INTO `vtiger_potential` (`potentialid`, `potential_no`, `related_to`, `potentialname`, `amount`, `currency`, `closingdate`, `typeofrevenue`, `nextstep`, `private`, `probability`, `campaignid`, `sales_stage`, `potentialtype`, `leadsource`, `productid`, `productversion`, `quotationref`, `partnercontact`, `remarks`, `runtimefee`, `followupdate`, `evaluationstatus`, `description`, `forecastcategory`, `outcomeanalysis`, `forecast_amount`, `isconvertedfromlead`, `contact_id`, `tags`, `converted`) VALUES
(1015, 'POT1015', 2028, 'هایتک - فرصت', 103550000.00000000, NULL, '2026-07-02', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1016, 'POT1016', 2029, 'لیما (مثال) - فرصت فروش پکیج پیشرفته', 98100000.00000000, NULL, '2026-08-12', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1017, 'POT1017', 25, 'کیان (مثال) - فرصت فروش پکیج ساده', 39240000.00000000, NULL, '2026-07-16', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1018, 'POT1018', 2030, 'رایتل - فرصت', 52000000.00000000, NULL, '2026-08-04', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1019, 'POT1019', 2031, 'سبزیاران - فرصت', 70632000.00000000, NULL, '2026-08-19', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1020, 'POT1020', 21, 'پیشگامان صنعت داده (مثال) - فرصت', 109000000.00000000, NULL, '2026-08-13', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1021, 'POT1021', 2032, 'طلایه داران (مثال) - فرصت فروش پکیج ساده', 13080000.00000000, NULL, '2026-07-01', NULL, NULL, 0, 30.000, NULL, '۲.ارزیابی و تحلیل نیاز', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1022, 'POT1022', 2030, 'رایتل (مثال) - فرصت', 65400000.00000000, NULL, '2026-07-04', NULL, NULL, 0, 30.000, NULL, '۲.ارزیابی و تحلیل نیاز', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1023, 'POT1023', 2031, 'سبزیاران (مثال) - فرصت فروش پکیج ساده', 52320000.00000000, NULL, '2026-07-21', NULL, NULL, 0, 30.000, NULL, '۲.ارزیابی و تحلیل نیاز', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1024, 'POT1024', 20, 'فروش پکیج اختصاصی (مثال)', 209280000.00000000, NULL, '2026-07-06', NULL, NULL, 0, 50.000, NULL, '۳.ارائه پیشنهاد/پیش فاکتور', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1025, 'POT1025', 2033, 'شباهنگ (مثال) - فرصت فروش پکیج اختصاصی', 196200000.00000000, NULL, '2026-06-28', NULL, NULL, 0, 50.000, NULL, '۳.ارائه پیشنهاد/پیش فاکتور', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(1026, 'POT1026', 2034, 'آذر مهر (مثال) - فرصت فروش ساده', 91560000.00000000, NULL, '2026-07-01', NULL, NULL, 0, 50.000, NULL, '۳.ارائه پیشنهاد/پیش فاکتور', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2038, 'POT2', 2035, 'نیروی ماهواره ای کوچک - فرصت', 786544000.00000000, NULL, '2026-07-31', NULL, NULL, 0, 50.000, NULL, '۳.ارائه پیشنهاد/پیش فاکتور', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2039, 'POT3', 2034, 'آذر مهر (مثال) - فرصت فروش پیشرفته', 114450000.00000000, NULL, '2026-06-26', NULL, NULL, 0, 80.000, NULL, '۴.مذاکره نهایی', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2040, 'POT4', 2036, 'آقای کامران دادجو (مثال) - فرصت فروش پکیج پیشرفته', 16350000.00000000, NULL, '2026-06-30', NULL, NULL, 0, 80.000, NULL, '۴.مذاکره نهایی', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2041, 'POT5', 23, 'الکترونیک گستر - فروش پکیج (مثال)', 84000000.00000000, NULL, '2026-06-21', NULL, NULL, 0, 100.000, NULL, '۵.الف.فروش موفق', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2042, 'POT6', 24, 'اورنگ (مثال) - فرصت فروش پیشرفته', 98100000.00000000, NULL, '2026-06-21', NULL, NULL, 0, 100.000, NULL, '۵.الف.فروش موفق', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2043, 'POT7', 25, 'کیان (مثال) - فرصت', 20000000.00000000, NULL, '2026-06-12', NULL, NULL, 0, 100.000, NULL, '۵.الف.فروش موفق', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2044, 'POT8', 2037, 'زامیاد (مثال) - فرصت فروش پکیج اختصاصی', 43600000.00000000, NULL, '2026-06-21', NULL, NULL, 0, 0.000, NULL, '۵.ب.فروش ناموفق', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2045, 'POT9', 24, 'اورنگ (مثال) - فرصت فروش پکیج اختصاصی', 152600000.00000000, NULL, '2026-06-19', NULL, NULL, 0, 0.000, NULL, '۵.ب.فروش ناموفق', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2046, 'POT2046', 2034, 'تست سیستم - فرصت گویا', 48500000.00000000, NULL, '2026-07-27', NULL, '', 0, 100.000, 0, '۵.الف.فروش موفق', '', 'نمایشگاه', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 48500000.00000000, '0', 0, '', 0),
(2047, 'POT11', 2028, 'فرصت ورودی تست ۱', 27500000.00000000, NULL, '2026-08-06', NULL, NULL, 0, 30.000, NULL, '۲.ارزیابی و تحلیل نیاز', 'کسب و کار جدید', 'وب سایت', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2048, 'POT12', 2029, 'فرصت ورودی تست ۲', 64000000.00000000, NULL, '2026-08-11', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'نمایشگاه', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2049, 'POT2049', 2028, 'نمونه تست B - فروش موفق تیر', 60000000.00000000, NULL, '2026-07-11', NULL, '', 0, 100.000, 0, '۵.الف.فروش موفق', 'مشتری موجود / تمدید', 'مشتری موجود', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 60000000.00000000, '0', 0, '', 0),
(2050, 'POT13', 2037, 'نمونه تست C - سررسید گذشته', 33000000.00000000, NULL, '2026-05-31', NULL, 'پیگیری تلفنی', 0, 30.000, 0, '۲.ارزیابی و تحلیل نیاز', '', 'تماس سرد', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 9900000.00000000, '0', 0, '', 0),
(2051, 'POT15', 2033, 'فرصت ورودی G1 - احتمال دستی', 72000000.00000000, NULL, '2026-08-16', NULL, NULL, 0, 45.000, NULL, '۴.مذاکره نهایی', 'کسب و کار جدید', 'تبلیغات', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, NULL, '0', NULL, NULL, 0),
(2052, 'POT16', 0, 'فرصت ورودی G2 - بدون کاربر', 18000000.00000000, NULL, '2026-09-24', NULL, NULL, 0, 10.000, NULL, '۱.آشنایی اولیه', 'کسب و کار جدید', 'سایر', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 1800000.00000000, '0', NULL, NULL, 0),
(2530, 'POT1101', 20, 'آزمون عملی فرم فرصت گویا 1786346601193', 2500000.00000000, NULL, '2026-08-10', NULL, '', 0, 50.000, 0, '۳.ارائه پیشنهاد/پیش فاکتور', '', '', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, 0, 0, 1250000.00000000, '0', 0, '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_potentialscf`
--

DROP TABLE IF EXISTS `vtiger_potentialscf`;
CREATE TABLE `vtiger_potentialscf` (
  `potentialid` int(19) NOT NULL DEFAULT 0,
  `cf_sales_channel` varchar(100) DEFAULT NULL,
  `cf_opportunity_currency` varchar(50) DEFAULT NULL,
  `cf_price_basis` int(19) DEFAULT NULL,
  `cf_sales_process` varchar(100) DEFAULT NULL,
  `cf_opportunity_priority` varchar(100) DEFAULT NULL,
  `cf_project_id` int(19) DEFAULT NULL,
  `cf_loss_reason` varchar(255) DEFAULT NULL,
  `cf_forecast_category` varchar(100) DEFAULT NULL,
  `cf_invoice_cycles` varchar(100) DEFAULT NULL,
  `cf_payment_end_date` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_potentialscf`
--

INSERT IGNORE INTO `vtiger_potentialscf` (`potentialid`, `cf_sales_channel`, `cf_opportunity_currency`, `cf_price_basis`, `cf_sales_process`, `cf_opportunity_priority`, `cf_project_id`, `cf_loss_reason`, `cf_forecast_category`, `cf_invoice_cycles`, `cf_payment_end_date`) VALUES
(1015, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1016, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1017, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1018, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1019, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1020, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1021, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1022, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1023, 'نمایندگی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1024, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1025, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1026, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2038, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2039, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2040, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2041, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2042, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2043, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2044, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2045, 'تلفنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2046, 'نمایندگی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2047, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2048, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2049, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2050, 'حضوری', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2051, 'نمایندگی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2052, 'آنلاین', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2530, '', 'Rial : ریال', 0, 'پیش فرض', 'متوسط', 0, '', 'اعمال', 'بدون تکرار', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_potstagehistory`
--

DROP TABLE IF EXISTS `vtiger_potstagehistory`;
CREATE TABLE `vtiger_potstagehistory` (
  `historyid` int(19) NOT NULL,
  `potentialid` int(19) NOT NULL,
  `amount` decimal(10,0) DEFAULT NULL,
  `stage` varchar(100) DEFAULT NULL,
  `probability` decimal(7,3) DEFAULT NULL,
  `expectedrevenue` decimal(10,0) DEFAULT NULL,
  `closedate` date DEFAULT NULL,
  `lastmodified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pricebook`
--

DROP TABLE IF EXISTS `vtiger_pricebook`;
CREATE TABLE `vtiger_pricebook` (
  `pricebookid` int(19) NOT NULL DEFAULT 0,
  `pricebook_no` varchar(100) NOT NULL,
  `bookname` varchar(100) DEFAULT NULL,
  `active` int(1) DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pricebookcf`
--

DROP TABLE IF EXISTS `vtiger_pricebookcf`;
CREATE TABLE `vtiger_pricebookcf` (
  `pricebookid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_pricebookproductrel`
--

DROP TABLE IF EXISTS `vtiger_pricebookproductrel`;
CREATE TABLE `vtiger_pricebookproductrel` (
  `pricebookid` int(19) NOT NULL,
  `productid` int(19) NOT NULL,
  `listprice` decimal(27,8) DEFAULT NULL,
  `usedcurrency` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_priority`
--

DROP TABLE IF EXISTS `vtiger_priority`;
CREATE TABLE `vtiger_priority` (
  `priorityid` int(19) NOT NULL,
  `priority` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_productcategory`
--

DROP TABLE IF EXISTS `vtiger_productcategory`;
CREATE TABLE `vtiger_productcategory` (
  `productcategoryid` int(19) NOT NULL,
  `productcategory` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_productcategory`
--

INSERT IGNORE INTO `vtiger_productcategory` (`productcategoryid`, `productcategory`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Hardware', 1, 136, 1, NULL),
(3, 'Software', 1, 137, 2, NULL),
(4, 'CRM Applications', 1, 138, 3, NULL),
(5, 'نرم افزار', 1, 0, 4, NULL),
(6, 'خدمات', 1, 0, 5, NULL),
(7, 'پشتیبانی', 1, 0, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_productcategory_seq`
--

DROP TABLE IF EXISTS `vtiger_productcategory_seq`;
CREATE TABLE `vtiger_productcategory_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_productcategory_seq`
--

INSERT IGNORE INTO `vtiger_productcategory_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_productcf`
--

DROP TABLE IF EXISTS `vtiger_productcf`;
CREATE TABLE `vtiger_productcf` (
  `productid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_productcf`
--

INSERT IGNORE INTO `vtiger_productcf` (`productid`) VALUES
(26),
(27),
(28),
(2053);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_productcurrencyrel`
--

DROP TABLE IF EXISTS `vtiger_productcurrencyrel`;
CREATE TABLE `vtiger_productcurrencyrel` (
  `productid` int(11) NOT NULL,
  `currencyid` int(11) NOT NULL,
  `converted_price` decimal(28,8) DEFAULT NULL,
  `actual_price` decimal(28,8) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_products`
--

DROP TABLE IF EXISTS `vtiger_products`;
CREATE TABLE `vtiger_products` (
  `productid` int(11) NOT NULL,
  `product_no` varchar(100) NOT NULL,
  `productname` varchar(255) DEFAULT NULL,
  `productcode` varchar(40) DEFAULT NULL,
  `productcategory` varchar(200) DEFAULT NULL,
  `manufacturer` varchar(200) DEFAULT NULL,
  `qty_per_unit` decimal(11,2) DEFAULT 0.00,
  `unit_price` decimal(25,8) DEFAULT NULL,
  `weight` decimal(11,3) DEFAULT NULL,
  `pack_size` int(11) DEFAULT NULL,
  `sales_start_date` date DEFAULT NULL,
  `sales_end_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `cost_factor` int(11) DEFAULT NULL,
  `commissionrate` decimal(7,3) DEFAULT NULL,
  `commissionmethod` varchar(50) DEFAULT NULL,
  `discontinued` int(1) NOT NULL DEFAULT 0,
  `usageunit` varchar(200) DEFAULT NULL,
  `reorderlevel` int(11) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `taxclass` varchar(200) DEFAULT NULL,
  `mfr_part_no` varchar(200) DEFAULT NULL,
  `vendor_part_no` varchar(200) DEFAULT NULL,
  `serialno` varchar(200) DEFAULT NULL,
  `qtyinstock` decimal(25,3) DEFAULT NULL,
  `productsheet` varchar(200) DEFAULT NULL,
  `qtyindemand` int(11) DEFAULT NULL,
  `glacct` varchar(200) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `imagename` text DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `is_subproducts_viewable` int(1) DEFAULT 1,
  `purchase_cost` decimal(27,8) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_products`
--

INSERT IGNORE INTO `vtiger_products` (`productid`, `product_no`, `productname`, `productcode`, `productcategory`, `manufacturer`, `qty_per_unit`, `unit_price`, `weight`, `pack_size`, `sales_start_date`, `sales_end_date`, `start_date`, `expiry_date`, `cost_factor`, `commissionrate`, `commissionmethod`, `discontinued`, `usageunit`, `reorderlevel`, `website`, `taxclass`, `mfr_part_no`, `vendor_part_no`, `serialno`, `qtyinstock`, `productsheet`, `qtyindemand`, `glacct`, `vendor_id`, `imagename`, `currency_id`, `is_subproducts_viewable`, `purchase_cost`, `tags`) VALUES
(26, 'PRO26', 'طراحی وب‌سایت (مثال)', NULL, 'خدمات', NULL, 0.00, 50000000.00000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 999.000, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL),
(27, 'PRO27', 'اپلیکیشن موبایل (مثال)', NULL, 'نرم افزار', NULL, 0.00, 80000000.00000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 997.000, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL),
(28, 'PRO28', 'پشتیبانی سالانه (مثال)', NULL, 'پشتیبانی', NULL, 0.00, 20000000.00000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1000.000, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL),
(2053, 'PRO2053', 'پکیج پیشرفته (مثال)', NULL, 'نرم افزار', NULL, 0.00, 15000000.00000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 999.000, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_producttaxrel`
--

DROP TABLE IF EXISTS `vtiger_producttaxrel`;
CREATE TABLE `vtiger_producttaxrel` (
  `productid` int(11) NOT NULL,
  `taxid` int(3) NOT NULL,
  `taxpercentage` decimal(7,3) DEFAULT NULL,
  `regions` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile`
--

DROP TABLE IF EXISTS `vtiger_profile`;
CREATE TABLE `vtiger_profile` (
  `profileid` int(10) NOT NULL,
  `profilename` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `directly_related_to_role` int(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile`
--

INSERT IGNORE INTO `vtiger_profile` (`profileid`, `profilename`, `description`, `directly_related_to_role`) VALUES
(1, 'Administrator', 'Admin Profile', 0),
(2, 'Sales Profile', 'Profile Related to Sales', 0),
(3, 'Support Profile', 'Profile Related to Support', 0),
(4, 'Guest Profile', 'Guest Profile for Test Users', 0),
(5, 'CEO - دسترسی نقش', 'پروفایل اختصاصی و قابل ممیزی برای نقش CEO', 1),
(6, 'Vice President - دسترسی نقش', 'پروفایل اختصاصی و قابل ممیزی برای نقش Vice President', 1),
(7, 'Sales Manager - دسترسی نقش', 'پروفایل اختصاصی و قابل ممیزی برای نقش Sales Manager', 1),
(8, 'Sales Person - دسترسی نقش', 'پروفایل اختصاصی و قابل ممیزی برای نقش Sales Person', 1),
(32, 'آزمون گویا - مجاز - 20260801-073004 - profile', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - allow', 1),
(33, 'آزمون گویا - ارث‌بری - 20260801-073004 - profile', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - inherit', 1),
(34, 'آزمون گویا - محدود - 20260801-073004 - دسترسی نقش', 'نقش آزمایشی خودکار برای اعتبارسنجی دسترسی کاربران فاقد نقش - deny', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile2field`
--

DROP TABLE IF EXISTS `vtiger_profile2field`;
CREATE TABLE `vtiger_profile2field` (
  `profileid` int(11) NOT NULL,
  `tabid` int(10) DEFAULT NULL,
  `fieldid` int(19) NOT NULL,
  `visible` int(19) DEFAULT NULL,
  `readonly` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile2field`
--

INSERT IGNORE INTO `vtiger_profile2field` (`profileid`, `tabid`, `fieldid`, `visible`, `readonly`) VALUES
(1, 6, 1, 0, 0),
(1, 6, 2, 0, 0),
(1, 6, 3, 0, 0),
(1, 6, 4, 0, 0),
(1, 6, 5, 0, 0),
(1, 6, 6, 0, 0),
(1, 6, 7, 0, 0),
(1, 6, 8, 0, 0),
(1, 6, 9, 0, 0),
(1, 6, 10, 0, 0),
(1, 6, 11, 0, 0),
(1, 6, 12, 0, 0),
(1, 6, 13, 0, 0),
(1, 6, 14, 0, 0),
(1, 6, 15, 0, 0),
(1, 6, 16, 0, 0),
(1, 6, 17, 0, 0),
(1, 6, 18, 0, 0),
(1, 6, 19, 0, 0),
(1, 6, 20, 0, 0),
(1, 6, 21, 0, 0),
(1, 6, 22, 0, 0),
(1, 6, 23, 0, 0),
(1, 6, 24, 0, 0),
(1, 6, 25, 0, 0),
(1, 6, 26, 0, 0),
(1, 6, 27, 0, 0),
(1, 6, 28, 0, 0),
(1, 6, 29, 0, 0),
(1, 6, 30, 0, 0),
(1, 6, 31, 0, 0),
(1, 6, 32, 0, 0),
(1, 6, 33, 0, 0),
(1, 6, 34, 0, 0),
(1, 6, 35, 0, 0),
(1, 6, 36, 0, 0),
(1, 7, 37, 0, 0),
(1, 7, 38, 0, 0),
(1, 7, 39, 0, 0),
(1, 7, 40, 0, 0),
(1, 7, 41, 0, 0),
(1, 7, 42, 0, 0),
(1, 7, 43, 0, 0),
(1, 7, 44, 0, 0),
(1, 7, 45, 0, 0),
(1, 7, 46, 0, 0),
(1, 7, 47, 0, 0),
(1, 7, 48, 0, 0),
(1, 7, 49, 0, 0),
(1, 7, 50, 0, 0),
(1, 7, 51, 0, 0),
(1, 7, 52, 0, 0),
(1, 7, 53, 0, 0),
(1, 7, 54, 0, 0),
(1, 7, 55, 0, 0),
(1, 7, 56, 0, 0),
(1, 7, 57, 0, 0),
(1, 7, 58, 0, 0),
(1, 7, 59, 0, 0),
(1, 7, 60, 0, 0),
(1, 7, 61, 0, 0),
(1, 7, 62, 0, 0),
(1, 7, 63, 0, 0),
(1, 7, 64, 0, 0),
(1, 7, 65, 0, 0),
(1, 4, 66, 0, 0),
(1, 4, 67, 0, 0),
(1, 4, 68, 0, 0),
(1, 4, 69, 0, 0),
(1, 4, 70, 0, 0),
(1, 4, 71, 0, 0),
(1, 4, 72, 0, 0),
(1, 4, 73, 0, 0),
(1, 4, 74, 0, 0),
(1, 4, 75, 0, 0),
(1, 4, 76, 0, 0),
(1, 4, 77, 0, 0),
(1, 4, 78, 0, 0),
(1, 4, 79, 0, 0),
(1, 4, 80, 0, 0),
(1, 4, 81, 0, 0),
(1, 4, 82, 0, 0),
(1, 4, 83, 0, 0),
(1, 4, 84, 0, 0),
(1, 4, 85, 0, 0),
(1, 4, 86, 0, 0),
(1, 4, 87, 0, 0),
(1, 4, 88, 0, 0),
(1, 4, 89, 0, 0),
(1, 4, 90, 0, 0),
(1, 4, 91, 0, 0),
(1, 4, 92, 0, 0),
(1, 4, 93, 0, 0),
(1, 4, 94, 0, 0),
(1, 4, 95, 0, 0),
(1, 4, 96, 0, 0),
(1, 4, 97, 0, 0),
(1, 4, 98, 0, 0),
(1, 4, 99, 0, 0),
(1, 4, 100, 0, 0),
(1, 4, 101, 0, 0),
(1, 4, 102, 0, 0),
(1, 4, 103, 0, 0),
(1, 4, 104, 0, 0),
(1, 4, 105, 0, 0),
(1, 4, 106, 0, 0),
(1, 4, 107, 0, 0),
(1, 4, 108, 0, 0),
(1, 4, 109, 0, 0),
(1, 2, 110, 0, 0),
(1, 2, 111, 0, 0),
(1, 2, 112, 0, 0),
(1, 2, 113, 0, 0),
(1, 2, 114, 0, 0),
(1, 2, 115, 0, 0),
(1, 2, 116, 0, 0),
(1, 2, 117, 0, 0),
(1, 2, 118, 0, 0),
(1, 2, 119, 0, 0),
(1, 2, 120, 0, 0),
(1, 2, 121, 0, 0),
(1, 2, 122, 0, 0),
(1, 2, 123, 0, 0),
(1, 2, 124, 0, 0),
(1, 2, 125, 0, 0),
(1, 26, 126, 0, 0),
(1, 26, 127, 0, 0),
(1, 26, 128, 0, 0),
(1, 26, 129, 0, 0),
(1, 26, 130, 0, 0),
(1, 26, 131, 0, 0),
(1, 26, 132, 0, 0),
(1, 26, 133, 0, 0),
(1, 26, 134, 0, 0),
(1, 26, 135, 0, 0),
(1, 26, 136, 0, 0),
(1, 26, 137, 0, 0),
(1, 26, 138, 0, 0),
(1, 26, 139, 0, 0),
(1, 26, 140, 0, 0),
(1, 26, 141, 0, 0),
(1, 26, 142, 0, 0),
(1, 26, 143, 0, 0),
(1, 26, 144, 0, 0),
(1, 26, 145, 0, 0),
(1, 26, 146, 0, 0),
(1, 26, 147, 0, 0),
(1, 26, 148, 0, 0),
(1, 26, 149, 0, 0),
(1, 26, 150, 0, 0),
(1, 4, 151, 0, 0),
(1, 6, 152, 0, 0),
(1, 7, 153, 0, 0),
(1, 26, 154, 0, 0),
(1, 13, 155, 0, 0),
(1, 13, 156, 0, 0),
(1, 13, 157, 0, 0),
(1, 13, 158, 0, 0),
(1, 13, 159, 0, 0),
(1, 13, 160, 0, 0),
(1, 13, 161, 0, 0),
(1, 13, 162, 0, 0),
(1, 13, 163, 0, 0),
(1, 13, 164, 0, 0),
(1, 13, 165, 0, 0),
(1, 13, 166, 0, 0),
(1, 13, 167, 0, 0),
(1, 13, 168, 0, 0),
(1, 13, 169, 0, 0),
(1, 13, 170, 0, 0),
(1, 13, 171, 0, 0),
(1, 13, 172, 0, 0),
(1, 13, 173, 0, 0),
(1, 14, 174, 0, 0),
(1, 14, 175, 0, 0),
(1, 14, 176, 0, 0),
(1, 14, 177, 0, 0),
(1, 14, 178, 0, 0),
(1, 14, 179, 0, 0),
(1, 14, 180, 0, 0),
(1, 14, 181, 0, 0),
(1, 14, 182, 0, 0),
(1, 14, 183, 0, 0),
(1, 14, 184, 0, 0),
(1, 14, 185, 0, 0),
(1, 14, 186, 0, 0),
(1, 14, 187, 0, 0),
(1, 14, 188, 0, 0),
(1, 14, 189, 0, 0),
(1, 14, 190, 0, 0),
(1, 14, 191, 0, 0),
(1, 14, 192, 0, 0),
(1, 14, 193, 0, 0),
(1, 14, 194, 0, 0),
(1, 14, 195, 0, 0),
(1, 14, 196, 0, 0),
(1, 14, 197, 0, 0),
(1, 14, 198, 0, 0),
(1, 14, 199, 0, 0),
(1, 14, 200, 0, 0),
(1, 14, 201, 0, 0),
(1, 14, 202, 0, 0),
(1, 14, 203, 0, 0),
(1, 14, 204, 0, 0),
(1, 8, 205, 0, 0),
(1, 8, 206, 0, 0),
(1, 8, 207, 0, 0),
(1, 8, 208, 0, 0),
(1, 8, 209, 0, 0),
(1, 8, 210, 0, 0),
(1, 8, 211, 0, 0),
(1, 8, 212, 0, 0),
(1, 8, 213, 0, 0),
(1, 8, 214, 0, 0),
(1, 8, 215, 0, 0),
(1, 8, 216, 0, 0),
(1, 8, 217, 0, 0),
(1, 8, 218, 0, 0),
(1, 8, 219, 0, 0),
(1, 10, 220, 0, 0),
(1, 10, 221, 0, 0),
(1, 10, 222, 0, 0),
(1, 10, 223, 0, 0),
(1, 10, 224, 0, 0),
(1, 10, 225, 0, 0),
(1, 10, 226, 0, 0),
(1, 10, 227, 0, 0),
(1, 10, 228, 0, 0),
(1, 10, 229, 0, 0),
(1, 10, 230, 0, 0),
(1, 10, 231, 0, 0),
(1, 9, 232, 0, 0),
(1, 9, 233, 0, 0),
(1, 9, 234, 0, 0),
(1, 9, 235, 0, 0),
(1, 9, 236, 0, 0),
(1, 9, 237, 0, 0),
(1, 9, 238, 0, 0),
(1, 9, 239, 0, 0),
(1, 9, 240, 0, 0),
(1, 9, 241, 0, 0),
(1, 9, 242, 0, 0),
(1, 9, 243, 0, 0),
(1, 9, 244, 0, 0),
(1, 9, 245, 0, 0),
(1, 9, 246, 0, 0),
(1, 9, 247, 0, 0),
(1, 9, 248, 0, 0),
(1, 9, 249, 0, 0),
(1, 9, 250, 0, 0),
(1, 9, 251, 0, 0),
(1, 9, 252, 0, 0),
(1, 9, 253, 0, 0),
(1, 9, 254, 0, 0),
(1, 9, 255, 0, 0),
(1, 16, 256, 0, 0),
(1, 16, 257, 0, 0),
(1, 16, 258, 0, 0),
(1, 16, 259, 0, 0),
(1, 16, 260, 0, 0),
(1, 16, 261, 0, 0),
(1, 16, 262, 0, 0),
(1, 16, 263, 0, 0),
(1, 16, 264, 0, 0),
(1, 16, 265, 0, 0),
(1, 16, 266, 0, 0),
(1, 16, 267, 0, 0),
(1, 16, 268, 0, 0),
(1, 16, 269, 0, 0),
(1, 16, 270, 0, 0),
(1, 16, 271, 0, 0),
(1, 16, 272, 0, 0),
(1, 16, 273, 0, 0),
(1, 16, 274, 0, 0),
(1, 16, 275, 0, 0),
(1, 16, 276, 0, 0),
(1, 16, 277, 0, 0),
(1, 16, 278, 0, 0),
(1, 15, 279, 0, 0),
(1, 15, 280, 0, 0),
(1, 15, 281, 0, 0),
(1, 15, 282, 0, 0),
(1, 15, 283, 0, 0),
(1, 15, 284, 0, 0),
(1, 15, 285, 0, 0),
(1, 15, 286, 0, 0),
(1, 15, 287, 0, 0),
(1, 15, 288, 0, 0),
(1, 18, 289, 0, 0),
(1, 18, 290, 0, 0),
(1, 18, 291, 0, 0),
(1, 18, 292, 0, 0),
(1, 18, 293, 0, 0),
(1, 18, 294, 0, 0),
(1, 18, 295, 0, 0),
(1, 18, 296, 0, 0),
(1, 18, 297, 0, 0),
(1, 18, 298, 0, 0),
(1, 18, 299, 0, 0),
(1, 18, 300, 0, 0),
(1, 18, 301, 0, 0),
(1, 18, 302, 0, 0),
(1, 18, 303, 0, 0),
(1, 18, 304, 0, 0),
(1, 18, 305, 0, 0),
(1, 19, 306, 0, 0),
(1, 19, 307, 0, 0),
(1, 19, 308, 0, 0),
(1, 19, 309, 0, 0),
(1, 19, 310, 0, 0),
(1, 19, 311, 0, 0),
(1, 19, 312, 0, 0),
(1, 19, 313, 0, 0),
(1, 20, 314, 0, 0),
(1, 20, 315, 0, 0),
(1, 20, 316, 0, 0),
(1, 20, 317, 0, 0),
(1, 20, 318, 0, 0),
(1, 20, 319, 0, 0),
(1, 20, 320, 0, 0),
(1, 20, 321, 0, 0),
(1, 20, 322, 0, 0),
(1, 20, 323, 0, 0),
(1, 20, 324, 0, 0),
(1, 20, 325, 0, 0),
(1, 20, 326, 0, 0),
(1, 20, 327, 0, 0),
(1, 20, 328, 0, 0),
(1, 20, 329, 0, 0),
(1, 20, 330, 0, 0),
(1, 20, 331, 0, 0),
(1, 20, 332, 0, 0),
(1, 20, 333, 0, 0),
(1, 20, 334, 0, 0),
(1, 20, 335, 0, 0),
(1, 20, 336, 0, 0),
(1, 20, 337, 0, 0),
(1, 20, 338, 0, 0),
(1, 20, 339, 0, 0),
(1, 20, 340, 0, 0),
(1, 20, 341, 0, 0),
(1, 20, 342, 0, 0),
(1, 20, 343, 0, 0),
(1, 20, 344, 0, 0),
(1, 20, 345, 0, 0),
(1, 20, 346, 0, 0),
(1, 20, 347, 0, 0),
(1, 20, 348, 0, 0),
(1, 20, 349, 0, 0),
(1, 20, 350, 0, 0),
(1, 21, 351, 0, 0),
(1, 21, 352, 0, 0),
(1, 21, 353, 0, 0),
(1, 21, 354, 0, 0),
(1, 21, 355, 0, 0),
(1, 21, 356, 0, 0),
(1, 21, 357, 0, 0),
(1, 21, 358, 0, 0),
(1, 21, 359, 0, 0),
(1, 21, 360, 0, 0),
(1, 21, 361, 0, 0),
(1, 21, 362, 0, 0),
(1, 21, 363, 0, 0),
(1, 21, 364, 0, 0),
(1, 21, 365, 0, 0),
(1, 21, 366, 0, 0),
(1, 21, 367, 0, 0),
(1, 21, 368, 0, 0),
(1, 21, 369, 0, 0),
(1, 21, 370, 0, 0),
(1, 21, 371, 0, 0),
(1, 21, 372, 0, 0),
(1, 21, 373, 0, 0),
(1, 21, 374, 0, 0),
(1, 21, 375, 0, 0),
(1, 21, 376, 0, 0),
(1, 21, 377, 0, 0),
(1, 21, 378, 0, 0),
(1, 21, 379, 0, 0),
(1, 21, 380, 0, 0),
(1, 21, 381, 0, 0),
(1, 21, 382, 0, 0),
(1, 21, 383, 0, 0),
(1, 21, 384, 0, 0),
(1, 21, 385, 0, 0),
(1, 21, 386, 0, 0),
(1, 21, 387, 0, 0),
(1, 21, 388, 0, 0),
(1, 22, 389, 0, 0),
(1, 22, 390, 0, 0),
(1, 22, 391, 0, 0),
(1, 22, 392, 0, 0),
(1, 22, 393, 0, 0),
(1, 22, 394, 0, 0),
(1, 22, 395, 0, 0),
(1, 22, 396, 0, 0),
(1, 22, 397, 0, 0),
(1, 22, 398, 0, 0),
(1, 22, 399, 0, 0),
(1, 22, 400, 0, 0),
(1, 22, 401, 0, 0),
(1, 22, 402, 0, 0),
(1, 22, 403, 0, 0),
(1, 22, 404, 0, 0),
(1, 22, 405, 0, 0),
(1, 22, 406, 0, 0),
(1, 22, 407, 0, 0),
(1, 22, 408, 0, 0),
(1, 22, 409, 0, 0),
(1, 22, 410, 0, 0),
(1, 22, 411, 0, 0),
(1, 22, 412, 0, 0),
(1, 22, 413, 0, 0),
(1, 22, 414, 0, 0),
(1, 22, 415, 0, 0),
(1, 22, 416, 0, 0),
(1, 22, 417, 0, 0),
(1, 22, 418, 0, 0),
(1, 22, 419, 0, 0),
(1, 22, 420, 0, 0),
(1, 22, 421, 0, 0),
(1, 22, 422, 0, 0),
(1, 22, 423, 0, 0),
(1, 22, 424, 0, 0),
(1, 22, 425, 0, 0),
(1, 22, 426, 0, 0),
(1, 22, 427, 0, 0),
(1, 22, 428, 0, 0),
(1, 22, 429, 0, 0),
(1, 22, 430, 0, 0),
(1, 22, 431, 0, 0),
(1, 22, 432, 0, 0),
(1, 22, 433, 0, 0),
(1, 22, 434, 0, 0),
(1, 22, 435, 0, 0),
(1, 23, 436, 0, 0),
(1, 23, 437, 0, 0),
(1, 23, 438, 0, 0),
(1, 23, 439, 0, 0),
(1, 23, 440, 0, 0),
(1, 23, 441, 0, 0),
(1, 23, 442, 0, 0),
(1, 23, 443, 0, 0),
(1, 23, 444, 0, 0),
(1, 23, 445, 0, 0),
(1, 23, 446, 0, 0),
(1, 23, 447, 0, 0),
(1, 23, 448, 0, 0),
(1, 23, 449, 0, 0),
(1, 23, 450, 0, 0),
(1, 23, 451, 0, 0),
(1, 23, 452, 0, 0),
(1, 23, 453, 0, 0),
(1, 23, 454, 0, 0),
(1, 23, 455, 0, 0),
(1, 23, 456, 0, 0),
(1, 23, 457, 0, 0),
(1, 23, 458, 0, 0),
(1, 23, 459, 0, 0),
(1, 23, 460, 0, 0),
(1, 23, 461, 0, 0),
(1, 23, 462, 0, 0),
(1, 23, 463, 0, 0),
(1, 23, 464, 0, 0),
(1, 23, 465, 0, 0),
(1, 23, 466, 0, 0),
(1, 23, 467, 0, 0),
(1, 23, 468, 0, 0),
(1, 23, 469, 0, 0),
(1, 23, 470, 0, 0),
(1, 23, 471, 0, 0),
(1, 23, 472, 0, 0),
(1, 23, 473, 0, 0),
(1, 23, 474, 0, 0),
(1, 10, 520, 0, 0),
(1, 10, 521, 0, 0),
(1, 10, 522, 0, 0),
(1, 10, 523, 0, 0),
(1, 10, 524, 0, 0),
(1, 10, 525, 0, 0),
(1, 34, 526, 0, 0),
(1, 34, 527, 0, 0),
(1, 34, 528, 0, 0),
(1, 34, 529, 0, 0),
(1, 34, 530, 0, 0),
(1, 34, 531, 0, 0),
(1, 34, 532, 0, 0),
(1, 34, 533, 0, 0),
(1, 34, 534, 0, 0),
(1, 34, 535, 0, 0),
(1, 34, 536, 0, 0),
(1, 34, 537, 0, 0),
(1, 34, 538, 0, 0),
(1, 34, 539, 0, 0),
(1, 34, 540, 0, 0),
(1, 34, 541, 0, 0),
(1, 34, 542, 0, 0),
(1, 29, 543, 0, 0),
(1, 35, 544, 0, 0),
(1, 35, 545, 0, 0),
(1, 35, 546, 0, 0),
(1, 35, 547, 0, 0),
(1, 35, 548, 0, 0),
(1, 35, 549, 0, 0),
(1, 35, 550, 0, 0),
(1, 35, 551, 0, 0),
(1, 35, 552, 0, 0),
(1, 35, 553, 0, 0),
(1, 35, 554, 0, 0),
(1, 35, 555, 0, 0),
(1, 35, 556, 0, 0),
(1, 35, 557, 0, 0),
(1, 35, 558, 0, 0),
(1, 35, 559, 0, 0),
(1, 35, 560, 0, 0),
(1, 35, 561, 0, 0),
(1, 35, 562, 0, 0),
(1, 35, 563, 0, 0),
(1, 35, 564, 0, 0),
(1, 35, 565, 0, 0),
(1, 36, 566, 0, 0),
(1, 36, 567, 0, 0),
(1, 36, 568, 0, 0),
(1, 36, 569, 0, 0),
(1, 36, 570, 0, 0),
(1, 36, 571, 0, 0),
(1, 36, 572, 0, 0),
(1, 36, 573, 0, 0),
(1, 36, 574, 0, 0),
(1, 36, 575, 0, 0),
(1, 36, 576, 0, 0),
(1, 36, 577, 0, 0),
(1, 36, 578, 0, 0),
(1, 36, 579, 0, 0),
(1, 36, 580, 0, 0),
(1, 36, 581, 0, 0),
(1, 36, 582, 0, 0),
(1, 36, 583, 0, 0),
(1, 36, 584, 0, 0),
(1, 36, 585, 0, 0),
(1, 36, 586, 0, 0),
(1, 36, 587, 0, 0),
(1, 38, 588, 0, 0),
(1, 38, 589, 0, 0),
(1, 38, 590, 0, 0),
(1, 38, 591, 0, 0),
(1, 38, 592, 0, 0),
(1, 38, 593, 0, 0),
(1, 38, 594, 0, 0),
(1, 38, 595, 0, 0),
(1, 38, 596, 0, 0),
(1, 38, 597, 0, 0),
(1, 38, 598, 0, 0),
(1, 38, 599, 0, 0),
(1, 38, 600, 0, 0),
(1, 38, 601, 0, 0),
(1, 38, 602, 0, 0),
(1, 38, 603, 0, 0),
(1, 38, 604, 0, 0),
(1, 38, 605, 0, 0),
(1, 38, 606, 0, 0),
(1, 38, 607, 0, 0),
(1, 38, 608, 0, 0),
(1, 42, 609, 0, 0),
(1, 42, 610, 0, 0),
(1, 42, 611, 0, 0),
(1, 42, 612, 0, 0),
(1, 42, 613, 0, 0),
(1, 42, 614, 0, 0),
(1, 42, 615, 0, 0),
(1, 42, 616, 0, 0),
(1, 43, 617, 0, 0),
(1, 43, 618, 0, 0),
(1, 43, 619, 0, 0),
(1, 43, 620, 0, 0),
(1, 43, 621, 0, 0),
(1, 43, 622, 0, 0),
(1, 43, 623, 0, 0),
(1, 43, 624, 0, 0),
(1, 43, 625, 0, 0),
(1, 43, 626, 0, 0),
(1, 43, 627, 0, 0),
(1, 43, 628, 0, 0),
(1, 43, 629, 0, 0),
(1, 44, 630, 0, 0),
(1, 44, 631, 0, 0),
(1, 44, 632, 0, 0),
(1, 44, 633, 0, 0),
(1, 44, 634, 0, 0),
(1, 44, 635, 0, 0),
(1, 44, 636, 0, 0),
(1, 44, 637, 0, 0),
(1, 44, 638, 0, 0),
(1, 44, 639, 0, 0),
(1, 44, 640, 0, 0),
(1, 44, 641, 0, 0),
(1, 44, 642, 0, 0),
(1, 44, 643, 0, 0),
(1, 44, 644, 0, 0),
(1, 44, 645, 0, 0),
(1, 44, 646, 0, 0),
(1, 44, 647, 0, 0),
(1, 45, 648, 0, 0),
(1, 45, 649, 0, 0),
(1, 45, 650, 0, 0),
(1, 45, 651, 0, 0),
(1, 45, 652, 0, 0),
(1, 45, 653, 0, 0),
(1, 45, 654, 0, 0),
(1, 45, 655, 0, 0),
(1, 45, 656, 0, 0),
(1, 45, 657, 0, 0),
(1, 45, 658, 0, 0),
(1, 45, 659, 0, 0),
(1, 45, 660, 0, 0),
(1, 45, 661, 0, 0),
(1, 45, 662, 0, 0),
(1, 45, 663, 0, 0),
(1, 45, 664, 0, 0),
(1, 45, 665, 0, 0),
(1, 45, 666, 0, 0),
(1, 45, 667, 0, 0),
(1, 47, 668, 0, 0),
(1, 47, 669, 0, 0),
(1, 47, 670, 0, 0),
(1, 47, 671, 0, 0),
(1, 47, 672, 0, 0),
(1, 47, 673, 0, 0),
(1, 2, 674, 0, 0),
(1, 29, 675, 0, 0),
(1, 23, 676, 0, 0),
(1, 23, 677, 0, 0),
(1, 23, 678, 0, 0),
(1, 23, 679, 0, 0),
(1, 23, 680, 0, 0),
(1, 23, 681, 0, 0),
(1, 23, 682, 0, 0),
(1, 23, 683, 0, 0),
(1, 23, 684, 0, 0),
(1, 22, 685, 0, 0),
(1, 22, 686, 0, 0),
(1, 22, 687, 0, 0),
(1, 22, 688, 0, 0),
(1, 22, 689, 0, 0),
(1, 22, 690, 0, 0),
(1, 22, 691, 0, 0),
(1, 22, 692, 0, 0),
(1, 22, 693, 0, 0),
(1, 21, 694, 0, 0),
(1, 21, 695, 0, 0),
(1, 21, 696, 0, 0),
(1, 21, 697, 0, 0),
(1, 21, 698, 0, 0),
(1, 21, 699, 0, 0),
(1, 21, 700, 0, 0),
(1, 21, 701, 0, 0),
(1, 21, 702, 0, 0),
(1, 20, 703, 0, 0),
(1, 20, 704, 0, 0),
(1, 20, 705, 0, 0),
(1, 20, 706, 0, 0),
(1, 20, 707, 0, 0),
(1, 20, 708, 0, 0),
(1, 20, 709, 0, 0),
(1, 20, 710, 0, 0),
(1, 20, 711, 0, 0),
(1, 29, 712, 0, 0),
(1, 44, 713, 0, 0),
(1, 42, 714, 0, 0),
(1, 29, 715, 0, 0),
(1, 29, 716, 0, 0),
(1, 29, 717, 0, 0),
(1, 23, 718, 0, 0),
(1, 22, 719, 0, 0),
(1, 21, 720, 0, 0),
(1, 20, 721, 0, 0),
(1, 29, 722, 0, 0),
(1, 6, 723, 0, 0),
(1, 4, 724, 0, 0),
(1, 2, 725, 0, 0),
(1, 29, 726, 0, 0),
(1, 23, 727, 0, 0),
(1, 23, 728, 0, 0),
(1, 21, 729, 0, 0),
(1, 21, 730, 0, 0),
(1, 18, 731, 0, 0),
(1, 7, 732, 0, 0),
(1, 42, 733, 0, 0),
(1, 42, 734, 0, 0),
(1, 23, 735, 0, 0),
(1, 20, 736, 0, 0),
(1, 21, 737, 0, 0),
(1, 22, 738, 0, 0),
(1, 29, 739, 0, 0),
(1, 2, 740, 0, 0),
(1, 13, 741, 0, 0),
(1, 29, 742, 0, 0),
(1, 29, 743, 0, 0),
(1, 29, 744, 0, 0),
(1, 29, 745, 0, 0),
(1, 14, 772, 0, 0),
(1, 36, 773, 0, 0),
(1, 23, 774, 0, 0),
(1, 29, 775, 0, 0),
(1, 23, 776, 0, 0),
(1, 23, 777, 0, 0),
(1, 23, 778, 0, 0),
(1, 20, 779, 0, 0),
(1, 20, 780, 0, 0),
(1, 20, 781, 0, 0),
(1, 21, 782, 0, 0),
(1, 22, 783, 0, 0),
(1, 22, 784, 0, 0),
(1, 22, 785, 0, 0),
(1, 42, 786, 0, 0),
(1, 42, 787, 0, 0),
(1, 42, 788, 0, 0),
(1, 2, 789, 0, 0),
(1, 4, 790, 0, 0),
(1, 6, 791, 0, 0),
(1, 7, 792, 0, 0),
(1, 8, 793, 0, 0),
(1, 9, 794, 0, 0),
(1, 10, 795, 0, 0),
(1, 13, 796, 0, 0),
(1, 14, 797, 0, 0),
(1, 15, 798, 0, 0),
(1, 16, 799, 0, 0),
(1, 18, 800, 0, 0),
(1, 19, 801, 0, 0),
(1, 20, 802, 0, 0),
(1, 21, 803, 0, 0),
(1, 22, 804, 0, 0),
(1, 23, 805, 0, 0),
(1, 26, 806, 0, 0),
(1, 10, 807, 0, 0),
(1, 2, 808, 0, 0),
(1, 4, 809, 0, 0),
(1, 6, 810, 0, 0),
(1, 7, 811, 0, 0),
(1, 8, 812, 0, 0),
(1, 9, 813, 0, 0),
(1, 10, 814, 0, 0),
(1, 13, 815, 0, 0),
(1, 14, 816, 0, 0),
(1, 15, 817, 0, 0),
(1, 16, 818, 0, 0),
(1, 18, 819, 0, 0),
(1, 19, 820, 0, 0),
(1, 20, 821, 0, 0),
(1, 21, 822, 0, 0),
(1, 22, 823, 0, 0),
(1, 23, 824, 0, 0),
(1, 26, 825, 0, 0),
(1, 2, 826, 0, 0),
(1, 4, 827, 0, 0),
(1, 6, 828, 0, 0),
(1, 7, 829, 0, 0),
(1, 8, 830, 0, 0),
(1, 9, 831, 0, 0),
(1, 10, 832, 0, 0),
(1, 13, 833, 0, 0),
(1, 14, 834, 0, 0),
(1, 15, 835, 0, 0),
(1, 16, 836, 0, 0),
(1, 18, 837, 0, 0),
(1, 19, 838, 0, 0),
(1, 20, 839, 0, 0),
(1, 21, 840, 0, 0),
(1, 22, 841, 0, 0),
(1, 23, 842, 0, 0),
(1, 26, 843, 0, 0),
(1, 20, 844, 0, 0),
(1, 21, 845, 0, 0),
(1, 22, 846, 0, 0),
(1, 23, 847, 0, 0),
(1, 45, 848, 0, 0),
(1, 45, 849, 0, 0),
(1, 29, 850, 0, 0),
(1, 22, 851, 0, 0),
(1, 29, 852, 0, 0),
(1, 16, 853, 0, 0),
(1, 16, 854, 0, 0),
(1, 16, 855, 0, 0),
(1, 16, 856, 0, 0),
(1, 9, 857, 0, 0),
(1, 9, 858, 0, 0),
(1, 16, 859, 0, 0),
(1, 50, 860, 0, 0),
(1, 50, 861, 0, 0),
(1, 50, 862, 0, 0),
(1, 50, 863, 0, 0),
(1, 50, 864, 0, 0),
(1, 50, 865, 0, 0),
(1, 6, 892, 0, 0),
(1, 6, 893, 0, 0),
(1, 6, 894, 0, 0),
(1, 6, 895, 0, 0),
(1, 6, 896, 0, 0),
(1, 6, 897, 0, 0),
(1, 6, 898, 0, 0),
(1, 6, 899, 0, 0),
(1, 6, 900, 0, 0),
(1, 6, 901, 0, 0),
(1, 6, 902, 0, 0),
(1, 6, 903, 0, 0),
(1, 6, 904, 0, 0),
(1, 6, 905, 0, 0),
(1, 6, 906, 0, 0),
(1, 6, 907, 0, 0),
(1, 6, 908, 0, 0),
(1, 6, 909, 0, 0),
(1, 6, 910, 0, 0),
(1, 6, 911, 0, 0),
(1, 6, 912, 0, 0),
(1, 6, 913, 0, 0),
(1, 6, 914, 0, 0),
(1, 6, 915, 0, 0),
(1, 6, 916, 0, 0),
(1, 6, 917, 0, 0),
(1, 6, 918, 0, 0),
(1, 6, 919, 0, 0),
(1, 6, 920, 0, 0),
(1, 6, 921, 0, 0),
(1, 6, 922, 0, 0),
(1, 6, 923, 0, 0),
(1, 6, 924, 0, 0),
(1, 6, 925, 0, 0),
(1, 6, 926, 0, 0),
(1, 23, 927, 0, 0),
(1, 52, 928, 0, 0),
(1, 52, 929, 0, 0),
(1, 52, 930, 0, 0),
(1, 52, 931, 0, 0),
(1, 52, 932, 0, 0),
(1, 52, 933, 0, 0),
(1, 52, 934, 0, 0),
(1, 52, 935, 0, 0),
(1, 52, 936, 0, 0),
(1, 52, 937, 0, 0),
(1, 52, 938, 0, 0),
(1, 52, 939, 0, 0),
(1, 52, 940, 0, 0),
(1, 52, 941, 0, 0),
(1, 52, 942, 0, 0),
(1, 52, 943, 0, 0),
(1, 52, 944, 0, 0),
(1, 52, 945, 0, 0),
(1, 52, 946, 0, 0),
(1, 52, 947, 0, 0),
(1, 52, 948, 0, 0),
(1, 52, 949, 0, 0),
(1, 52, 950, 0, 0),
(1, 52, 951, 0, 0),
(1, 52, 952, 0, 0),
(1, 21, 953, 0, 0),
(1, 53, 954, 0, 0),
(1, 53, 955, 0, 0),
(1, 53, 956, 0, 0),
(1, 53, 957, 0, 0),
(1, 53, 958, 0, 0),
(1, 53, 959, 0, 0),
(1, 53, 960, 0, 0),
(1, 53, 961, 0, 0),
(1, 53, 962, 0, 0),
(1, 53, 963, 0, 0),
(1, 53, 964, 0, 0),
(1, 53, 965, 0, 0),
(1, 53, 966, 0, 0),
(1, 53, 967, 0, 0),
(1, 53, 968, 0, 0),
(1, 53, 969, 0, 0),
(1, 54, 970, 0, 0),
(1, 54, 971, 0, 0),
(1, 54, 972, 0, 0),
(1, 54, 973, 0, 0),
(1, 54, 974, 0, 0),
(1, 54, 975, 0, 0),
(1, 54, 976, 0, 0),
(1, 54, 977, 0, 0),
(1, 54, 978, 0, 0),
(1, 54, 979, 0, 0),
(1, 54, 980, 0, 0),
(1, 54, 981, 0, 0),
(1, 54, 982, 0, 0),
(1, 54, 983, 0, 0),
(1, 54, 984, 0, 0),
(1, 54, 985, 0, 0),
(1, 55, 986, 0, 0),
(1, 55, 987, 0, 0),
(1, 55, 988, 0, 0),
(1, 55, 989, 0, 0),
(1, 55, 990, 0, 0),
(1, 55, 991, 0, 0),
(1, 55, 992, 0, 0),
(1, 55, 993, 0, 0),
(1, 55, 994, 0, 0),
(1, 55, 995, 0, 0),
(1, 55, 996, 0, 0),
(1, 55, 997, 0, 0),
(1, 55, 998, 0, 0),
(1, 55, 999, 0, 0),
(1, 55, 1000, 0, 0),
(1, 55, 1001, 0, 0),
(1, 55, 1002, 0, 0),
(1, 55, 1003, 0, 0),
(1, 55, 1004, 0, 0),
(1, 55, 1005, 0, 0),
(1, 55, 1006, 0, 0),
(1, 55, 1007, 0, 0),
(1, 7, 1008, 0, 0),
(1, 7, 1009, 0, 0),
(1, 7, 1010, 0, 0),
(1, 7, 1011, 0, 0),
(1, 7, 1012, 0, 0),
(1, 7, 1013, 0, 0),
(1, 7, 1014, 0, 0),
(1, 7, 1015, 0, 0),
(1, 7, 1016, 0, 0),
(1, 7, 1017, 0, 0),
(1, 7, 1018, 0, 0),
(1, 7, 1019, 0, 0),
(1, 7, 1020, 0, 0),
(1, 7, 1021, 0, 0),
(1, 7, 1022, 0, 0),
(1, 7, 1023, 0, 0),
(1, 7, 1024, 0, 0),
(1, 7, 1025, 0, 0),
(1, 7, 1026, 0, 0),
(1, 7, 1027, 0, 0),
(1, 7, 1028, 0, 0),
(1, 7, 1029, 0, 0),
(1, 7, 1030, 0, 0),
(1, 7, 1031, 0, 0),
(1, 7, 1032, 0, 0),
(1, 7, 1033, 0, 0),
(1, 56, 1034, 0, 0),
(1, 56, 1035, 0, 0),
(1, 56, 1036, 0, 0),
(1, 56, 1037, 0, 0),
(1, 56, 1038, 0, 0),
(1, 56, 1039, 0, 0),
(1, 56, 1040, 0, 0),
(1, 56, 1041, 0, 0),
(1, 56, 1042, 0, 0),
(1, 56, 1043, 0, 0),
(1, 56, 1044, 0, 0),
(1, 56, 1045, 0, 0),
(1, 56, 1046, 0, 0),
(1, 57, 1047, 0, 0),
(1, 57, 1048, 0, 0),
(1, 57, 1049, 0, 0),
(1, 57, 1050, 0, 0),
(1, 57, 1051, 0, 0),
(1, 57, 1052, 0, 0),
(1, 57, 1053, 0, 0),
(1, 57, 1054, 0, 0),
(1, 57, 1055, 0, 0),
(1, 57, 1056, 0, 0),
(1, 57, 1057, 0, 0),
(1, 57, 1058, 0, 0),
(1, 57, 1059, 0, 0),
(1, 57, 1060, 0, 0),
(1, 57, 1061, 0, 0),
(1, 57, 1062, 0, 0),
(1, 57, 1063, 0, 0),
(1, 58, 1064, 0, 0),
(1, 58, 1065, 0, 0),
(1, 58, 1066, 0, 0),
(1, 58, 1067, 0, 0),
(1, 58, 1068, 0, 0),
(1, 58, 1069, 0, 0),
(1, 58, 1070, 0, 0),
(1, 58, 1071, 0, 0),
(1, 58, 1072, 0, 0),
(1, 58, 1073, 0, 0),
(1, 58, 1074, 0, 0),
(1, 58, 1075, 0, 0),
(1, 58, 1076, 0, 0),
(1, 58, 1077, 0, 0),
(1, 58, 1078, 0, 0),
(1, 58, 1079, 0, 0),
(1, 58, 1080, 0, 0),
(1, 58, 1081, 0, 0),
(1, 58, 1082, 0, 0),
(1, 58, 1083, 0, 0),
(1, 58, 1084, 0, 0),
(1, 58, 1085, 0, 0),
(1, 59, 1086, 0, 0),
(1, 59, 1087, 0, 0),
(1, 59, 1088, 0, 0),
(1, 59, 1089, 0, 0),
(1, 59, 1090, 0, 0),
(1, 59, 1091, 0, 0),
(1, 59, 1092, 0, 0),
(1, 59, 1093, 0, 0),
(1, 59, 1094, 0, 0),
(1, 59, 1095, 0, 0),
(1, 59, 1096, 0, 0),
(1, 59, 1097, 0, 0),
(1, 59, 1098, 0, 0),
(1, 59, 1099, 0, 0),
(1, 59, 1100, 0, 0),
(1, 59, 1101, 0, 0),
(1, 59, 1102, 0, 0),
(1, 59, 1103, 0, 0),
(1, 59, 1104, 0, 0),
(1, 59, 1105, 0, 0),
(1, 59, 1106, 0, 0),
(1, 59, 1107, 0, 0),
(1, 59, 1108, 0, 0),
(1, 59, 1109, 0, 0),
(1, 60, 1110, 0, 0),
(1, 60, 1111, 0, 0),
(1, 60, 1112, 0, 0),
(1, 60, 1113, 0, 0),
(1, 60, 1114, 0, 0),
(1, 60, 1115, 0, 0),
(1, 60, 1116, 0, 0),
(1, 60, 1117, 0, 0),
(1, 60, 1118, 0, 0),
(1, 60, 1119, 0, 0),
(1, 60, 1120, 0, 0),
(1, 60, 1121, 0, 0),
(1, 60, 1122, 0, 0),
(1, 60, 1123, 0, 0),
(1, 60, 1124, 0, 0),
(1, 60, 1125, 0, 0),
(1, 60, 1126, 0, 0),
(1, 60, 1127, 0, 0),
(1, 61, 1128, 0, 0),
(1, 61, 1129, 0, 0),
(1, 61, 1130, 0, 0),
(1, 61, 1131, 0, 0),
(1, 61, 1132, 0, 0),
(1, 61, 1133, 0, 0),
(1, 61, 1134, 0, 0),
(1, 61, 1135, 0, 0),
(1, 61, 1136, 0, 0),
(1, 61, 1137, 0, 0),
(1, 61, 1138, 0, 0),
(1, 61, 1139, 0, 0),
(1, 61, 1140, 0, 0),
(1, 61, 1141, 0, 0),
(1, 61, 1142, 0, 0),
(1, 61, 1143, 0, 0),
(1, 61, 1144, 0, 0),
(1, 61, 1145, 0, 0),
(1, 61, 1146, 0, 0),
(1, 62, 1147, 0, 0),
(1, 62, 1148, 0, 0),
(1, 62, 1149, 0, 0),
(1, 62, 1150, 0, 0),
(1, 62, 1151, 0, 0),
(1, 62, 1152, 0, 0),
(1, 62, 1153, 0, 0),
(1, 62, 1154, 0, 0),
(1, 62, 1155, 0, 0),
(1, 62, 1156, 0, 0),
(1, 62, 1157, 0, 0),
(1, 62, 1158, 0, 0),
(1, 62, 1159, 0, 0),
(1, 62, 1160, 0, 0),
(1, 62, 1161, 0, 0),
(1, 62, 1162, 0, 0),
(1, 62, 1163, 0, 0),
(1, 62, 1164, 0, 0),
(1, 62, 1165, 0, 0),
(1, 62, 1166, 0, 0),
(1, 63, 1167, 0, 0),
(1, 63, 1168, 0, 0),
(1, 63, 1169, 0, 0),
(1, 63, 1170, 0, 0),
(1, 63, 1171, 0, 0),
(1, 63, 1172, 0, 0),
(1, 63, 1173, 0, 0),
(1, 63, 1174, 0, 0),
(1, 63, 1175, 0, 0),
(1, 63, 1176, 0, 0),
(1, 63, 1177, 0, 0),
(1, 63, 1178, 0, 0),
(1, 63, 1179, 0, 0),
(1, 21, 1189, 0, 0),
(1, 21, 1190, 0, 0),
(1, 21, 1191, 0, 0),
(1, 21, 1192, 0, 0),
(1, 21, 1193, 0, 0),
(1, 21, 1194, 0, 0),
(1, 21, 1195, 0, 0),
(1, 21, 1196, 0, 0),
(1, 21, 1197, 0, 0),
(1, 21, 1198, 0, 0),
(1, 21, 1199, 0, 0),
(1, 21, 1200, 0, 0),
(1, 21, 1201, 0, 0),
(1, 21, 1202, 0, 0),
(1, 21, 1203, 0, 0),
(1, 21, 1204, 0, 0),
(1, 21, 1205, 0, 0),
(1, 21, 1206, 0, 0),
(1, 21, 1207, 0, 0),
(1, 20, 1208, 0, 0),
(1, 20, 1209, 0, 0),
(1, 20, 1210, 0, 0),
(1, 20, 1211, 0, 0),
(1, 20, 1212, 0, 0),
(1, 4, 1213, 0, 0),
(1, 4, 1214, 0, 0),
(1, 4, 1215, 0, 0),
(1, 4, 1216, 0, 0),
(1, 4, 1217, 0, 0),
(1, 4, 1218, 0, 0),
(1, 4, 1219, 0, 0),
(1, 65, 1220, 0, 0),
(1, 65, 1221, 0, 0),
(1, 65, 1222, 0, 0),
(1, 65, 1223, 0, 0),
(1, 65, 1224, 0, 0),
(1, 65, 1225, 0, 0),
(1, 65, 1226, 0, 0),
(1, 65, 1227, 0, 0),
(1, 65, 1228, 0, 0),
(1, 65, 1229, 0, 0),
(1, 65, 1230, 0, 0),
(1, 65, 1231, 0, 0),
(1, 65, 1232, 0, 0),
(1, 65, 1233, 0, 0),
(1, 65, 1234, 0, 0),
(1, 2, 1235, 0, 0),
(1, 2, 1236, 0, 0),
(1, 2, 1237, 0, 0),
(1, 2, 1238, 0, 0),
(1, 2, 1239, 0, 0),
(1, 2, 1240, 0, 0),
(1, 2, 1241, 0, 0),
(1, 2, 1242, 0, 0),
(1, 2, 1243, 0, 0),
(2, 6, 1, 0, 0),
(2, 6, 2, 0, 0),
(2, 6, 3, 0, 0),
(2, 6, 4, 0, 0),
(2, 6, 5, 0, 0),
(2, 6, 6, 0, 0),
(2, 6, 7, 0, 0),
(2, 6, 8, 0, 0),
(2, 6, 9, 0, 0),
(2, 6, 10, 0, 0),
(2, 6, 11, 0, 0),
(2, 6, 12, 0, 0),
(2, 6, 13, 0, 0),
(2, 6, 14, 0, 0),
(2, 6, 15, 0, 0),
(2, 6, 16, 0, 0),
(2, 6, 17, 0, 0),
(2, 6, 18, 0, 0),
(2, 6, 19, 0, 0),
(2, 6, 20, 0, 0),
(2, 6, 21, 0, 0),
(2, 6, 22, 0, 0),
(2, 6, 23, 0, 0),
(2, 6, 24, 0, 0),
(2, 6, 25, 0, 0),
(2, 6, 26, 0, 0),
(2, 6, 27, 0, 0),
(2, 6, 28, 0, 0),
(2, 6, 29, 0, 0),
(2, 6, 30, 0, 0),
(2, 6, 31, 0, 0),
(2, 6, 32, 0, 0),
(2, 6, 33, 0, 0),
(2, 6, 34, 0, 0),
(2, 6, 35, 0, 0),
(2, 6, 36, 0, 0),
(2, 7, 37, 0, 0),
(2, 7, 38, 0, 0),
(2, 7, 39, 0, 0),
(2, 7, 40, 0, 0),
(2, 7, 41, 0, 0),
(2, 7, 42, 0, 0),
(2, 7, 43, 0, 0),
(2, 7, 44, 0, 0),
(2, 7, 45, 0, 0),
(2, 7, 46, 0, 0),
(2, 7, 47, 0, 0),
(2, 7, 48, 0, 0),
(2, 7, 49, 0, 0),
(2, 7, 50, 0, 0),
(2, 7, 51, 0, 0),
(2, 7, 52, 0, 0),
(2, 7, 53, 0, 0),
(2, 7, 54, 0, 0),
(2, 7, 55, 0, 0),
(2, 7, 56, 0, 0),
(2, 7, 57, 0, 0),
(2, 7, 58, 0, 0),
(2, 7, 59, 0, 0),
(2, 7, 60, 0, 0),
(2, 7, 61, 0, 0),
(2, 7, 62, 0, 0),
(2, 7, 63, 0, 0),
(2, 7, 64, 0, 0),
(2, 7, 65, 0, 0),
(2, 4, 66, 0, 0),
(2, 4, 67, 0, 0),
(2, 4, 68, 0, 0),
(2, 4, 69, 0, 0),
(2, 4, 70, 0, 0),
(2, 4, 71, 0, 0),
(2, 4, 72, 0, 0),
(2, 4, 73, 0, 0),
(2, 4, 74, 0, 0),
(2, 4, 75, 0, 0),
(2, 4, 76, 0, 0),
(2, 4, 77, 0, 0),
(2, 4, 78, 0, 0),
(2, 4, 79, 0, 0),
(2, 4, 80, 0, 0),
(2, 4, 81, 0, 0),
(2, 4, 82, 0, 0),
(2, 4, 83, 0, 0),
(2, 4, 84, 0, 0),
(2, 4, 85, 0, 0),
(2, 4, 86, 0, 0),
(2, 4, 87, 0, 0),
(2, 4, 88, 0, 0),
(2, 4, 89, 0, 0),
(2, 4, 90, 0, 0),
(2, 4, 91, 0, 0),
(2, 4, 92, 0, 0),
(2, 4, 93, 0, 0),
(2, 4, 94, 0, 0),
(2, 4, 95, 0, 0),
(2, 4, 96, 0, 0),
(2, 4, 97, 0, 0),
(2, 4, 98, 0, 0),
(2, 4, 99, 0, 0),
(2, 4, 100, 0, 0),
(2, 4, 101, 0, 0),
(2, 4, 102, 0, 0),
(2, 4, 103, 0, 0),
(2, 4, 104, 0, 0),
(2, 4, 105, 0, 0),
(2, 4, 106, 0, 0),
(2, 4, 107, 0, 0),
(2, 4, 108, 0, 0),
(2, 4, 109, 0, 0),
(2, 2, 110, 0, 0),
(2, 2, 111, 0, 0),
(2, 2, 112, 0, 0),
(2, 2, 113, 0, 0),
(2, 2, 114, 0, 0),
(2, 2, 115, 0, 0),
(2, 2, 116, 0, 0),
(2, 2, 117, 0, 0),
(2, 2, 118, 0, 0),
(2, 2, 119, 0, 0),
(2, 2, 120, 0, 0),
(2, 2, 121, 0, 0),
(2, 2, 122, 0, 0),
(2, 2, 123, 0, 0),
(2, 2, 124, 0, 0),
(2, 2, 125, 0, 0),
(2, 26, 126, 0, 0),
(2, 26, 127, 0, 0),
(2, 26, 128, 0, 0),
(2, 26, 129, 0, 0),
(2, 26, 130, 0, 0),
(2, 26, 131, 0, 0),
(2, 26, 132, 0, 0),
(2, 26, 133, 0, 0),
(2, 26, 134, 0, 0),
(2, 26, 135, 0, 0),
(2, 26, 136, 0, 0),
(2, 26, 137, 0, 0),
(2, 26, 138, 0, 0),
(2, 26, 139, 0, 0),
(2, 26, 140, 0, 0),
(2, 26, 141, 0, 0),
(2, 26, 142, 0, 0),
(2, 26, 143, 0, 0),
(2, 26, 144, 0, 0),
(2, 26, 145, 0, 0),
(2, 26, 146, 0, 0),
(2, 26, 147, 0, 0),
(2, 26, 148, 0, 0),
(2, 26, 149, 0, 0),
(2, 26, 150, 0, 0),
(2, 4, 151, 0, 0),
(2, 6, 152, 0, 0),
(2, 7, 153, 0, 0),
(2, 26, 154, 0, 0),
(2, 13, 155, 0, 0),
(2, 13, 156, 0, 0),
(2, 13, 157, 0, 0),
(2, 13, 158, 0, 0),
(2, 13, 159, 0, 0),
(2, 13, 160, 0, 0),
(2, 13, 161, 0, 0),
(2, 13, 162, 0, 0),
(2, 13, 163, 0, 0),
(2, 13, 164, 0, 0),
(2, 13, 165, 0, 0),
(2, 13, 166, 0, 0),
(2, 13, 167, 0, 0),
(2, 13, 168, 0, 0),
(2, 13, 169, 0, 0),
(2, 13, 170, 0, 0),
(2, 13, 171, 0, 0),
(2, 13, 172, 0, 0),
(2, 13, 173, 0, 0),
(2, 14, 174, 0, 0),
(2, 14, 175, 0, 0),
(2, 14, 176, 0, 0),
(2, 14, 177, 0, 0),
(2, 14, 178, 0, 0),
(2, 14, 179, 0, 0),
(2, 14, 180, 0, 0),
(2, 14, 181, 0, 0),
(2, 14, 182, 0, 0),
(2, 14, 183, 0, 0),
(2, 14, 184, 0, 0),
(2, 14, 185, 0, 0),
(2, 14, 186, 0, 0),
(2, 14, 187, 0, 0),
(2, 14, 188, 0, 0),
(2, 14, 189, 0, 0),
(2, 14, 190, 0, 0),
(2, 14, 191, 0, 0),
(2, 14, 192, 0, 0),
(2, 14, 193, 0, 0),
(2, 14, 194, 0, 0),
(2, 14, 195, 0, 0),
(2, 14, 196, 0, 0),
(2, 14, 197, 0, 0),
(2, 14, 198, 0, 0),
(2, 14, 199, 0, 0),
(2, 14, 200, 0, 0),
(2, 14, 201, 0, 0),
(2, 14, 202, 0, 0),
(2, 14, 203, 0, 0),
(2, 14, 204, 0, 0),
(2, 8, 205, 0, 0),
(2, 8, 206, 0, 0),
(2, 8, 207, 0, 0),
(2, 8, 208, 0, 0),
(2, 8, 209, 0, 0),
(2, 8, 210, 0, 0),
(2, 8, 211, 0, 0),
(2, 8, 212, 0, 0),
(2, 8, 213, 0, 0),
(2, 8, 214, 0, 0),
(2, 8, 215, 0, 0),
(2, 8, 216, 0, 0),
(2, 8, 217, 0, 0),
(2, 8, 218, 0, 0),
(2, 8, 219, 0, 0),
(2, 10, 220, 0, 0),
(2, 10, 221, 0, 0),
(2, 10, 222, 0, 0),
(2, 10, 223, 0, 0),
(2, 10, 224, 0, 0),
(2, 10, 225, 0, 0),
(2, 10, 226, 0, 0),
(2, 10, 227, 0, 0),
(2, 10, 228, 0, 0),
(2, 10, 229, 0, 0),
(2, 10, 230, 0, 0),
(2, 10, 231, 0, 0),
(2, 9, 232, 0, 0),
(2, 9, 233, 0, 0),
(2, 9, 234, 0, 0),
(2, 9, 235, 0, 0),
(2, 9, 236, 0, 0),
(2, 9, 237, 0, 0),
(2, 9, 238, 0, 0),
(2, 9, 239, 0, 0),
(2, 9, 240, 0, 0),
(2, 9, 241, 0, 0),
(2, 9, 242, 0, 0),
(2, 9, 243, 0, 0),
(2, 9, 244, 0, 0),
(2, 9, 245, 0, 0),
(2, 9, 246, 0, 0),
(2, 9, 247, 0, 0),
(2, 9, 248, 0, 0),
(2, 9, 249, 0, 0),
(2, 9, 250, 0, 0),
(2, 9, 251, 0, 0),
(2, 9, 252, 0, 0),
(2, 9, 253, 0, 0),
(2, 9, 254, 0, 0),
(2, 9, 255, 0, 0),
(2, 16, 256, 0, 0),
(2, 16, 257, 0, 0),
(2, 16, 258, 0, 0),
(2, 16, 259, 0, 0),
(2, 16, 260, 0, 0),
(2, 16, 261, 0, 0),
(2, 16, 262, 0, 0),
(2, 16, 263, 0, 0),
(2, 16, 264, 0, 0),
(2, 16, 265, 0, 0),
(2, 16, 266, 0, 0),
(2, 16, 267, 0, 0),
(2, 16, 268, 0, 0),
(2, 16, 269, 0, 0),
(2, 16, 270, 0, 0),
(2, 16, 271, 0, 0),
(2, 16, 272, 0, 0),
(2, 16, 273, 0, 0),
(2, 16, 274, 0, 0),
(2, 16, 275, 0, 0),
(2, 16, 276, 0, 0),
(2, 16, 277, 0, 0),
(2, 16, 278, 0, 0),
(2, 15, 279, 0, 0),
(2, 15, 280, 0, 0),
(2, 15, 281, 0, 0),
(2, 15, 282, 0, 0),
(2, 15, 283, 0, 0),
(2, 15, 284, 0, 0),
(2, 15, 285, 0, 0),
(2, 15, 286, 0, 0),
(2, 15, 287, 0, 0),
(2, 15, 288, 0, 0),
(2, 18, 289, 0, 0),
(2, 18, 290, 0, 0),
(2, 18, 291, 0, 0),
(2, 18, 292, 0, 0),
(2, 18, 293, 0, 0),
(2, 18, 294, 0, 0),
(2, 18, 295, 0, 0),
(2, 18, 296, 0, 0),
(2, 18, 297, 0, 0),
(2, 18, 298, 0, 0),
(2, 18, 299, 0, 0),
(2, 18, 300, 0, 0),
(2, 18, 301, 0, 0),
(2, 18, 302, 0, 0),
(2, 18, 303, 0, 0),
(2, 18, 304, 0, 0),
(2, 18, 305, 0, 0),
(2, 19, 306, 0, 0),
(2, 19, 307, 0, 0),
(2, 19, 308, 0, 0),
(2, 19, 309, 0, 0),
(2, 19, 310, 0, 0),
(2, 19, 311, 0, 0),
(2, 19, 312, 0, 0),
(2, 19, 313, 0, 0),
(2, 20, 314, 0, 0),
(2, 20, 315, 0, 0),
(2, 20, 316, 0, 0),
(2, 20, 317, 0, 0),
(2, 20, 318, 0, 0),
(2, 20, 319, 0, 0),
(2, 20, 320, 0, 0),
(2, 20, 321, 0, 0),
(2, 20, 322, 0, 0),
(2, 20, 323, 0, 0),
(2, 20, 324, 0, 0),
(2, 20, 325, 0, 0),
(2, 20, 326, 0, 0),
(2, 20, 327, 0, 0),
(2, 20, 328, 0, 0),
(2, 20, 329, 0, 0),
(2, 20, 330, 0, 0),
(2, 20, 331, 0, 0),
(2, 20, 332, 0, 0),
(2, 20, 333, 0, 0),
(2, 20, 334, 0, 0),
(2, 20, 335, 0, 0),
(2, 20, 336, 0, 0),
(2, 20, 337, 0, 0),
(2, 20, 338, 0, 0),
(2, 20, 339, 0, 0),
(2, 20, 340, 0, 0),
(2, 20, 341, 0, 0),
(2, 20, 342, 0, 0),
(2, 20, 343, 0, 0),
(2, 20, 344, 0, 0),
(2, 20, 345, 0, 0),
(2, 20, 346, 0, 0),
(2, 20, 347, 0, 0),
(2, 20, 348, 0, 0),
(2, 20, 349, 0, 0),
(2, 20, 350, 0, 0),
(2, 21, 351, 0, 0),
(2, 21, 352, 0, 0),
(2, 21, 353, 0, 0),
(2, 21, 354, 0, 0),
(2, 21, 355, 0, 0),
(2, 21, 356, 0, 0),
(2, 21, 357, 0, 0),
(2, 21, 358, 0, 0),
(2, 21, 359, 0, 0),
(2, 21, 360, 0, 0),
(2, 21, 361, 0, 0),
(2, 21, 362, 0, 0),
(2, 21, 363, 0, 0),
(2, 21, 364, 0, 0),
(2, 21, 365, 0, 0),
(2, 21, 366, 0, 0),
(2, 21, 367, 0, 0),
(2, 21, 368, 0, 0),
(2, 21, 369, 0, 0),
(2, 21, 370, 0, 0),
(2, 21, 371, 0, 0),
(2, 21, 372, 0, 0),
(2, 21, 373, 0, 0),
(2, 21, 374, 0, 0),
(2, 21, 375, 0, 0),
(2, 21, 376, 0, 0),
(2, 21, 377, 0, 0),
(2, 21, 378, 0, 0),
(2, 21, 379, 0, 0),
(2, 21, 380, 0, 0),
(2, 21, 381, 0, 0),
(2, 21, 382, 0, 0),
(2, 21, 383, 0, 0),
(2, 21, 384, 0, 0),
(2, 21, 385, 0, 0),
(2, 21, 386, 0, 0),
(2, 21, 387, 0, 0),
(2, 21, 388, 0, 0),
(2, 22, 389, 0, 0),
(2, 22, 390, 0, 0),
(2, 22, 391, 0, 0),
(2, 22, 392, 0, 0),
(2, 22, 393, 0, 0),
(2, 22, 394, 0, 0),
(2, 22, 395, 0, 0),
(2, 22, 396, 0, 0),
(2, 22, 397, 0, 0),
(2, 22, 398, 0, 0),
(2, 22, 399, 0, 0),
(2, 22, 400, 0, 0),
(2, 22, 401, 0, 0),
(2, 22, 402, 0, 0),
(2, 22, 403, 0, 0),
(2, 22, 404, 0, 0),
(2, 22, 405, 0, 0),
(2, 22, 406, 0, 0),
(2, 22, 407, 0, 0),
(2, 22, 408, 0, 0),
(2, 22, 409, 0, 0),
(2, 22, 410, 0, 0),
(2, 22, 411, 0, 0),
(2, 22, 412, 0, 0),
(2, 22, 413, 0, 0),
(2, 22, 414, 0, 0),
(2, 22, 415, 0, 0),
(2, 22, 416, 0, 0),
(2, 22, 417, 0, 0),
(2, 22, 418, 0, 0),
(2, 22, 419, 0, 0),
(2, 22, 420, 0, 0),
(2, 22, 421, 0, 0),
(2, 22, 422, 0, 0),
(2, 22, 423, 0, 0),
(2, 22, 424, 0, 0),
(2, 22, 425, 0, 0),
(2, 22, 426, 0, 0),
(2, 22, 427, 0, 0),
(2, 22, 428, 0, 0),
(2, 22, 429, 0, 0),
(2, 22, 430, 0, 0),
(2, 22, 431, 0, 0),
(2, 22, 432, 0, 0),
(2, 22, 433, 0, 0),
(2, 22, 434, 0, 0),
(2, 22, 435, 0, 0),
(2, 23, 436, 0, 0),
(2, 23, 437, 0, 0),
(2, 23, 438, 0, 0),
(2, 23, 439, 0, 0),
(2, 23, 440, 0, 0),
(2, 23, 441, 0, 0),
(2, 23, 442, 0, 0),
(2, 23, 443, 0, 0),
(2, 23, 444, 0, 0),
(2, 23, 445, 0, 0),
(2, 23, 446, 0, 0),
(2, 23, 447, 0, 0),
(2, 23, 448, 0, 0),
(2, 23, 449, 0, 0),
(2, 23, 450, 0, 0),
(2, 23, 451, 0, 0),
(2, 23, 452, 0, 0),
(2, 23, 453, 0, 0),
(2, 23, 454, 0, 0),
(2, 23, 455, 0, 0),
(2, 23, 456, 0, 0),
(2, 23, 457, 0, 0),
(2, 23, 458, 0, 0),
(2, 23, 459, 0, 0),
(2, 23, 460, 0, 0),
(2, 23, 461, 0, 0),
(2, 23, 462, 0, 0),
(2, 23, 463, 0, 0),
(2, 23, 464, 0, 0),
(2, 23, 465, 0, 0),
(2, 23, 466, 0, 0),
(2, 23, 467, 0, 0),
(2, 23, 468, 0, 0),
(2, 23, 469, 0, 0),
(2, 23, 470, 0, 0),
(2, 23, 471, 0, 0),
(2, 23, 472, 0, 0),
(2, 23, 473, 0, 0),
(2, 23, 474, 0, 0),
(2, 10, 520, 0, 0),
(2, 10, 521, 0, 0),
(2, 10, 522, 0, 0),
(2, 10, 523, 0, 0),
(2, 10, 524, 0, 0),
(2, 10, 525, 0, 0),
(2, 34, 526, 0, 0),
(2, 34, 527, 0, 0),
(2, 34, 528, 0, 0),
(2, 34, 529, 0, 0),
(2, 34, 530, 0, 0),
(2, 34, 531, 0, 0),
(2, 34, 532, 0, 0),
(2, 34, 533, 0, 0),
(2, 34, 534, 0, 0),
(2, 34, 535, 0, 0),
(2, 34, 536, 0, 0),
(2, 34, 537, 0, 0),
(2, 34, 538, 0, 0),
(2, 34, 539, 0, 0),
(2, 34, 540, 0, 0),
(2, 34, 541, 0, 0),
(2, 34, 542, 0, 0),
(2, 29, 543, 0, 0),
(2, 35, 544, 0, 0),
(2, 35, 545, 0, 0),
(2, 35, 546, 0, 0),
(2, 35, 547, 0, 0),
(2, 35, 548, 0, 0),
(2, 35, 549, 0, 0),
(2, 35, 550, 0, 0),
(2, 35, 551, 0, 0),
(2, 35, 552, 0, 0),
(2, 35, 553, 0, 0),
(2, 35, 554, 0, 0),
(2, 35, 555, 0, 0),
(2, 35, 556, 0, 0),
(2, 35, 557, 0, 0),
(2, 35, 558, 0, 0),
(2, 35, 559, 0, 0),
(2, 35, 560, 0, 0),
(2, 35, 561, 0, 0),
(2, 35, 562, 0, 0),
(2, 35, 563, 0, 0),
(2, 35, 564, 0, 0),
(2, 35, 565, 0, 0),
(2, 36, 566, 0, 0),
(2, 36, 567, 0, 0),
(2, 36, 568, 0, 0),
(2, 36, 569, 0, 0),
(2, 36, 570, 0, 0),
(2, 36, 571, 0, 0),
(2, 36, 572, 0, 0),
(2, 36, 573, 0, 0),
(2, 36, 574, 0, 0),
(2, 36, 575, 0, 0),
(2, 36, 576, 0, 0),
(2, 36, 577, 0, 0),
(2, 36, 578, 0, 0),
(2, 36, 579, 0, 0),
(2, 36, 580, 0, 0),
(2, 36, 581, 0, 0),
(2, 36, 582, 0, 0),
(2, 36, 583, 0, 0),
(2, 36, 584, 0, 0),
(2, 36, 585, 0, 0),
(2, 36, 586, 0, 0),
(2, 36, 587, 0, 0),
(2, 38, 588, 0, 0),
(2, 38, 589, 0, 0),
(2, 38, 590, 0, 0),
(2, 38, 591, 0, 0),
(2, 38, 592, 0, 0),
(2, 38, 593, 0, 0),
(2, 38, 594, 0, 0),
(2, 38, 595, 0, 0),
(2, 38, 596, 0, 0),
(2, 38, 597, 0, 0),
(2, 38, 598, 0, 0),
(2, 38, 599, 0, 0),
(2, 38, 600, 0, 0),
(2, 38, 601, 0, 0),
(2, 38, 602, 0, 0),
(2, 38, 603, 0, 0),
(2, 38, 604, 0, 0),
(2, 38, 605, 0, 0),
(2, 38, 606, 0, 0),
(2, 38, 607, 0, 0),
(2, 38, 608, 0, 0),
(2, 42, 609, 0, 0),
(2, 42, 610, 0, 0),
(2, 42, 611, 0, 0),
(2, 42, 612, 0, 0),
(2, 42, 613, 0, 0),
(2, 42, 614, 0, 0),
(2, 42, 615, 0, 0),
(2, 42, 616, 0, 0),
(2, 43, 617, 0, 0),
(2, 43, 618, 0, 0),
(2, 43, 619, 0, 0),
(2, 43, 620, 0, 0),
(2, 43, 621, 0, 0),
(2, 43, 622, 0, 0),
(2, 43, 623, 0, 0),
(2, 43, 624, 0, 0),
(2, 43, 625, 0, 0),
(2, 43, 626, 0, 0),
(2, 43, 627, 0, 0),
(2, 43, 628, 0, 0),
(2, 43, 629, 0, 0),
(2, 44, 630, 0, 0),
(2, 44, 631, 0, 0),
(2, 44, 632, 0, 0),
(2, 44, 633, 0, 0),
(2, 44, 634, 0, 0),
(2, 44, 635, 0, 0),
(2, 44, 636, 0, 0),
(2, 44, 637, 0, 0),
(2, 44, 638, 0, 0),
(2, 44, 639, 0, 0),
(2, 44, 640, 0, 0),
(2, 44, 641, 0, 0),
(2, 44, 642, 0, 0),
(2, 44, 643, 0, 0),
(2, 44, 644, 0, 0),
(2, 44, 645, 0, 0),
(2, 44, 646, 0, 0),
(2, 44, 647, 0, 0),
(2, 45, 648, 0, 0),
(2, 45, 649, 0, 0),
(2, 45, 650, 0, 0),
(2, 45, 651, 0, 0),
(2, 45, 652, 0, 0),
(2, 45, 653, 0, 0),
(2, 45, 654, 0, 0),
(2, 45, 655, 0, 0),
(2, 45, 656, 0, 0),
(2, 45, 657, 0, 0),
(2, 45, 658, 0, 0),
(2, 45, 659, 0, 0),
(2, 45, 660, 0, 0),
(2, 45, 661, 0, 0),
(2, 45, 662, 0, 0),
(2, 45, 663, 0, 0),
(2, 45, 664, 0, 0),
(2, 45, 665, 0, 0),
(2, 45, 666, 0, 0),
(2, 45, 667, 0, 0),
(2, 47, 668, 0, 0),
(2, 47, 669, 0, 0),
(2, 47, 670, 0, 0),
(2, 47, 671, 0, 0),
(2, 47, 672, 0, 0),
(2, 47, 673, 0, 0),
(2, 2, 674, 0, 0),
(2, 29, 675, 0, 0),
(2, 23, 676, 0, 0),
(2, 23, 677, 0, 0),
(2, 23, 678, 0, 0),
(2, 23, 679, 0, 0),
(2, 23, 680, 0, 0),
(2, 23, 681, 0, 0),
(2, 23, 682, 0, 0),
(2, 23, 683, 0, 0),
(2, 23, 684, 0, 0),
(2, 22, 685, 0, 0),
(2, 22, 686, 0, 0),
(2, 22, 687, 0, 0),
(2, 22, 688, 0, 0),
(2, 22, 689, 0, 0),
(2, 22, 690, 0, 0),
(2, 22, 691, 0, 0),
(2, 22, 692, 0, 0),
(2, 22, 693, 0, 0),
(2, 21, 694, 0, 0),
(2, 21, 695, 0, 0),
(2, 21, 696, 0, 0),
(2, 21, 697, 0, 0),
(2, 21, 698, 0, 0),
(2, 21, 699, 0, 0),
(2, 21, 700, 0, 0),
(2, 21, 701, 0, 0),
(2, 21, 702, 0, 0),
(2, 20, 703, 0, 0),
(2, 20, 704, 0, 0),
(2, 20, 705, 0, 0),
(2, 20, 706, 0, 0),
(2, 20, 707, 0, 0),
(2, 20, 708, 0, 0),
(2, 20, 709, 0, 0),
(2, 20, 710, 0, 0),
(2, 20, 711, 0, 0),
(2, 29, 712, 0, 0),
(2, 44, 713, 0, 0),
(2, 42, 714, 0, 0),
(2, 29, 715, 0, 0),
(2, 29, 716, 0, 0),
(2, 29, 717, 0, 0),
(2, 23, 718, 0, 0),
(2, 22, 719, 0, 0),
(2, 21, 720, 0, 0),
(2, 20, 721, 0, 0),
(2, 29, 722, 0, 0),
(2, 6, 723, 0, 0),
(2, 4, 724, 0, 0),
(2, 2, 725, 0, 0),
(2, 29, 726, 0, 0),
(2, 23, 727, 0, 0),
(2, 23, 728, 0, 0),
(2, 21, 729, 0, 0),
(2, 21, 730, 0, 0),
(2, 18, 731, 0, 0),
(2, 7, 732, 0, 0),
(2, 42, 733, 0, 0),
(2, 42, 734, 0, 0),
(2, 23, 735, 0, 0),
(2, 20, 736, 0, 0),
(2, 21, 737, 0, 0),
(2, 22, 738, 0, 0),
(2, 29, 739, 0, 0),
(2, 2, 740, 0, 0),
(2, 13, 741, 0, 0),
(2, 29, 742, 0, 0),
(2, 29, 743, 0, 0),
(2, 29, 744, 0, 0),
(2, 29, 745, 0, 0),
(2, 14, 772, 0, 0),
(2, 36, 773, 0, 0),
(2, 23, 774, 0, 0),
(2, 29, 775, 0, 0),
(2, 23, 776, 0, 0),
(2, 23, 777, 0, 0),
(2, 23, 778, 0, 0),
(2, 20, 779, 0, 0),
(2, 20, 780, 0, 0),
(2, 20, 781, 0, 0),
(2, 21, 782, 0, 0),
(2, 22, 783, 0, 0),
(2, 22, 784, 0, 0),
(2, 22, 785, 0, 0),
(2, 42, 786, 0, 0),
(2, 42, 787, 0, 0),
(2, 42, 788, 0, 0),
(2, 2, 789, 0, 0),
(2, 4, 790, 0, 0),
(2, 6, 791, 0, 0),
(2, 7, 792, 0, 0),
(2, 8, 793, 0, 0),
(2, 9, 794, 0, 0),
(2, 10, 795, 0, 0),
(2, 13, 796, 0, 0),
(2, 14, 797, 0, 0),
(2, 15, 798, 0, 0),
(2, 16, 799, 0, 0),
(2, 18, 800, 0, 0),
(2, 19, 801, 0, 0),
(2, 20, 802, 0, 0),
(2, 21, 803, 0, 0),
(2, 22, 804, 0, 0),
(2, 23, 805, 0, 0),
(2, 26, 806, 0, 0),
(2, 10, 807, 0, 0),
(2, 2, 808, 0, 0),
(2, 4, 809, 0, 0),
(2, 6, 810, 0, 0),
(2, 7, 811, 0, 0),
(2, 8, 812, 0, 0),
(2, 9, 813, 0, 0),
(2, 10, 814, 0, 0),
(2, 13, 815, 0, 0),
(2, 14, 816, 0, 0),
(2, 15, 817, 0, 0),
(2, 16, 818, 0, 0),
(2, 18, 819, 0, 0),
(2, 19, 820, 0, 0),
(2, 20, 821, 0, 0),
(2, 21, 822, 0, 0),
(2, 22, 823, 0, 0),
(2, 23, 824, 0, 0),
(2, 26, 825, 0, 0),
(2, 2, 826, 0, 0),
(2, 4, 827, 0, 0),
(2, 6, 828, 0, 0),
(2, 7, 829, 0, 0),
(2, 8, 830, 0, 0),
(2, 9, 831, 0, 0),
(2, 10, 832, 0, 0),
(2, 13, 833, 0, 0),
(2, 14, 834, 0, 0),
(2, 15, 835, 0, 0),
(2, 16, 836, 0, 0),
(2, 18, 837, 0, 0),
(2, 19, 838, 0, 0),
(2, 20, 839, 0, 0),
(2, 21, 840, 0, 0),
(2, 22, 841, 0, 0),
(2, 23, 842, 0, 0),
(2, 26, 843, 0, 0),
(2, 20, 844, 0, 0),
(2, 21, 845, 0, 0),
(2, 22, 846, 0, 0),
(2, 23, 847, 0, 0),
(2, 45, 848, 0, 0),
(2, 45, 849, 0, 0),
(2, 29, 850, 0, 0),
(2, 22, 851, 0, 0),
(2, 29, 852, 0, 0),
(2, 16, 853, 0, 0),
(2, 16, 854, 0, 0),
(2, 16, 855, 0, 0),
(2, 16, 856, 0, 0),
(2, 9, 857, 0, 0),
(2, 9, 858, 0, 0),
(2, 16, 859, 0, 0),
(2, 50, 860, 0, 0),
(2, 50, 861, 0, 0),
(2, 50, 862, 0, 0),
(2, 50, 863, 0, 0),
(2, 50, 864, 0, 0),
(2, 50, 865, 0, 0),
(2, 6, 892, 0, 0),
(2, 6, 893, 0, 0),
(2, 6, 894, 0, 0),
(2, 6, 895, 0, 0),
(2, 6, 896, 0, 0),
(2, 6, 897, 0, 0),
(2, 6, 898, 0, 0),
(2, 6, 899, 0, 0),
(2, 6, 900, 0, 0),
(2, 6, 901, 0, 0),
(2, 6, 902, 0, 0),
(2, 6, 903, 0, 0),
(2, 6, 904, 0, 0),
(2, 6, 905, 0, 0),
(2, 6, 906, 0, 0),
(2, 6, 907, 0, 0),
(2, 6, 908, 0, 0),
(2, 6, 909, 0, 0),
(2, 6, 910, 0, 0),
(2, 6, 911, 0, 0),
(2, 6, 912, 0, 0),
(2, 6, 913, 0, 0),
(2, 6, 914, 0, 0),
(2, 6, 915, 0, 0),
(2, 6, 916, 0, 0),
(2, 6, 917, 0, 0),
(2, 6, 918, 0, 0),
(2, 6, 919, 0, 0),
(2, 6, 920, 0, 0),
(2, 6, 921, 0, 0),
(2, 6, 922, 0, 0),
(2, 6, 923, 0, 0),
(2, 6, 924, 0, 0),
(2, 6, 925, 0, 0),
(2, 6, 926, 0, 0),
(2, 23, 927, 0, 0),
(2, 52, 928, 0, 0),
(2, 52, 929, 0, 0),
(2, 52, 930, 0, 0),
(2, 52, 931, 0, 0),
(2, 52, 932, 0, 0),
(2, 52, 933, 0, 0),
(2, 52, 934, 0, 0),
(2, 52, 935, 0, 0),
(2, 52, 936, 0, 0),
(2, 52, 937, 0, 0),
(2, 52, 938, 0, 0),
(2, 52, 939, 0, 0),
(2, 52, 940, 0, 0),
(2, 52, 941, 0, 0),
(2, 52, 942, 0, 0),
(2, 52, 943, 0, 0),
(2, 52, 944, 0, 0),
(2, 52, 945, 0, 0),
(2, 52, 946, 0, 0),
(2, 52, 947, 0, 0),
(2, 52, 948, 0, 0),
(2, 52, 949, 0, 0),
(2, 52, 950, 0, 0),
(2, 52, 951, 0, 0),
(2, 52, 952, 0, 0),
(2, 21, 953, 0, 0),
(2, 53, 954, 0, 0),
(2, 53, 955, 0, 0),
(2, 53, 956, 0, 0),
(2, 53, 957, 0, 0),
(2, 53, 958, 0, 0),
(2, 53, 959, 0, 0),
(2, 53, 960, 0, 0),
(2, 53, 961, 0, 0),
(2, 53, 962, 0, 0),
(2, 53, 963, 0, 0),
(2, 53, 964, 0, 0),
(2, 53, 965, 0, 0),
(2, 53, 966, 0, 0),
(2, 53, 967, 0, 0),
(2, 53, 968, 0, 0),
(2, 53, 969, 0, 0),
(2, 54, 970, 0, 0),
(2, 54, 971, 0, 0),
(2, 54, 972, 0, 0),
(2, 54, 973, 0, 0),
(2, 54, 974, 0, 0),
(2, 54, 975, 0, 0),
(2, 54, 976, 0, 0),
(2, 54, 977, 0, 0),
(2, 54, 978, 0, 0),
(2, 54, 979, 0, 0),
(2, 54, 980, 0, 0),
(2, 54, 981, 0, 0),
(2, 54, 982, 0, 0),
(2, 54, 983, 0, 0),
(2, 54, 984, 0, 0),
(2, 54, 985, 0, 0),
(2, 55, 986, 0, 0),
(2, 55, 987, 0, 0),
(2, 55, 988, 0, 0),
(2, 55, 989, 0, 0),
(2, 55, 990, 0, 0),
(2, 55, 991, 0, 0),
(2, 55, 992, 0, 0),
(2, 55, 993, 0, 0),
(2, 55, 994, 0, 0),
(2, 55, 995, 0, 0),
(2, 55, 996, 0, 0),
(2, 55, 997, 0, 0),
(2, 55, 998, 0, 0),
(2, 55, 999, 0, 0),
(2, 55, 1000, 0, 0),
(2, 55, 1001, 0, 0),
(2, 55, 1002, 0, 0),
(2, 55, 1003, 0, 0),
(2, 55, 1004, 0, 0),
(2, 55, 1005, 0, 0),
(2, 55, 1006, 0, 0),
(2, 55, 1007, 0, 0),
(2, 7, 1008, 0, 0),
(2, 7, 1009, 0, 0),
(2, 7, 1010, 0, 0),
(2, 7, 1011, 0, 0),
(2, 7, 1012, 0, 0),
(2, 7, 1013, 0, 0),
(2, 7, 1014, 0, 0),
(2, 7, 1015, 0, 0),
(2, 7, 1016, 0, 0),
(2, 7, 1017, 0, 0),
(2, 7, 1018, 0, 0),
(2, 7, 1019, 0, 0),
(2, 7, 1020, 0, 0),
(2, 7, 1021, 0, 0),
(2, 7, 1022, 0, 0),
(2, 7, 1023, 0, 0),
(2, 7, 1024, 0, 0),
(2, 7, 1025, 0, 0),
(2, 7, 1026, 0, 0),
(2, 7, 1027, 0, 0),
(2, 7, 1028, 0, 0),
(2, 7, 1029, 0, 0),
(2, 7, 1030, 0, 0),
(2, 7, 1031, 0, 0),
(2, 7, 1032, 0, 0),
(2, 7, 1033, 0, 0),
(2, 56, 1034, 0, 0),
(2, 56, 1035, 0, 0),
(2, 56, 1036, 0, 0),
(2, 56, 1037, 0, 0),
(2, 56, 1038, 0, 0),
(2, 56, 1039, 0, 0),
(2, 56, 1040, 0, 0),
(2, 56, 1041, 0, 0),
(2, 56, 1042, 0, 0),
(2, 56, 1043, 0, 0),
(2, 56, 1044, 0, 0),
(2, 56, 1045, 0, 0),
(2, 56, 1046, 0, 0),
(2, 57, 1047, 0, 0),
(2, 57, 1048, 0, 0),
(2, 57, 1049, 0, 0),
(2, 57, 1050, 0, 0),
(2, 57, 1051, 0, 0),
(2, 57, 1052, 0, 0),
(2, 57, 1053, 0, 0),
(2, 57, 1054, 0, 0),
(2, 57, 1055, 0, 0),
(2, 57, 1056, 0, 0),
(2, 57, 1057, 0, 0),
(2, 57, 1058, 0, 0),
(2, 57, 1059, 0, 0),
(2, 57, 1060, 0, 0),
(2, 57, 1061, 0, 0),
(2, 57, 1062, 0, 0),
(2, 57, 1063, 0, 0),
(2, 58, 1064, 0, 0),
(2, 58, 1065, 0, 0),
(2, 58, 1066, 0, 0),
(2, 58, 1067, 0, 0),
(2, 58, 1068, 0, 0),
(2, 58, 1069, 0, 0),
(2, 58, 1070, 0, 0),
(2, 58, 1071, 0, 0),
(2, 58, 1072, 0, 0),
(2, 58, 1073, 0, 0),
(2, 58, 1074, 0, 0),
(2, 58, 1075, 0, 0),
(2, 58, 1076, 0, 0),
(2, 58, 1077, 0, 0),
(2, 58, 1078, 0, 0),
(2, 58, 1079, 0, 0),
(2, 58, 1080, 0, 0),
(2, 58, 1081, 0, 0),
(2, 58, 1082, 0, 0),
(2, 58, 1083, 0, 0),
(2, 58, 1084, 0, 0),
(2, 58, 1085, 0, 0),
(2, 59, 1086, 0, 0),
(2, 59, 1087, 0, 0),
(2, 59, 1088, 0, 0),
(2, 59, 1089, 0, 0),
(2, 59, 1090, 0, 0),
(2, 59, 1091, 0, 0),
(2, 59, 1092, 0, 0),
(2, 59, 1093, 0, 0),
(2, 59, 1094, 0, 0),
(2, 59, 1095, 0, 0),
(2, 59, 1096, 0, 0),
(2, 59, 1097, 0, 0),
(2, 59, 1098, 0, 0),
(2, 59, 1099, 0, 0),
(2, 59, 1100, 0, 0),
(2, 59, 1101, 0, 0),
(2, 59, 1102, 0, 0),
(2, 59, 1103, 0, 0),
(2, 59, 1104, 0, 0),
(2, 59, 1105, 0, 0),
(2, 59, 1106, 0, 0),
(2, 59, 1107, 0, 0),
(2, 59, 1108, 0, 0),
(2, 59, 1109, 0, 0),
(2, 60, 1110, 0, 0),
(2, 60, 1111, 0, 0),
(2, 60, 1112, 0, 0),
(2, 60, 1113, 0, 0),
(2, 60, 1114, 0, 0),
(2, 60, 1115, 0, 0),
(2, 60, 1116, 0, 0),
(2, 60, 1117, 0, 0),
(2, 60, 1118, 0, 0),
(2, 60, 1119, 0, 0),
(2, 60, 1120, 0, 0),
(2, 60, 1121, 0, 0),
(2, 60, 1122, 0, 0),
(2, 60, 1123, 0, 0),
(2, 60, 1124, 0, 0),
(2, 60, 1125, 0, 0),
(2, 60, 1126, 0, 0),
(2, 60, 1127, 0, 0),
(2, 61, 1128, 0, 0),
(2, 61, 1129, 0, 0),
(2, 61, 1130, 0, 0),
(2, 61, 1131, 0, 0),
(2, 61, 1132, 0, 0),
(2, 61, 1133, 0, 0),
(2, 61, 1134, 0, 0),
(2, 61, 1135, 0, 0),
(2, 61, 1136, 0, 0),
(2, 61, 1137, 0, 0),
(2, 61, 1138, 0, 0),
(2, 61, 1139, 0, 0),
(2, 61, 1140, 0, 0),
(2, 61, 1141, 0, 0),
(2, 61, 1142, 0, 0),
(2, 61, 1143, 0, 0),
(2, 61, 1144, 0, 0),
(2, 61, 1145, 0, 0),
(2, 61, 1146, 0, 0),
(2, 62, 1147, 0, 0),
(2, 62, 1148, 0, 0),
(2, 62, 1149, 0, 0),
(2, 62, 1150, 0, 0),
(2, 62, 1151, 0, 0),
(2, 62, 1152, 0, 0),
(2, 62, 1153, 0, 0),
(2, 62, 1154, 0, 0),
(2, 62, 1155, 0, 0),
(2, 62, 1156, 0, 0),
(2, 62, 1157, 0, 0),
(2, 62, 1158, 0, 0),
(2, 62, 1159, 0, 0),
(2, 62, 1160, 0, 0),
(2, 62, 1161, 0, 0),
(2, 62, 1162, 0, 0),
(2, 62, 1163, 0, 0),
(2, 62, 1164, 0, 0),
(2, 62, 1165, 0, 0),
(2, 62, 1166, 0, 0),
(2, 63, 1167, 0, 0),
(2, 63, 1168, 0, 0),
(2, 63, 1169, 0, 0),
(2, 63, 1170, 0, 0),
(2, 63, 1171, 0, 0),
(2, 63, 1172, 0, 0),
(2, 63, 1173, 0, 0),
(2, 63, 1174, 0, 0),
(2, 63, 1175, 0, 0),
(2, 63, 1176, 0, 0),
(2, 63, 1177, 0, 0),
(2, 63, 1178, 0, 0),
(2, 63, 1179, 0, 0),
(2, 21, 1189, 0, 0),
(2, 21, 1190, 0, 0),
(2, 21, 1191, 0, 0),
(2, 21, 1192, 0, 0),
(2, 21, 1193, 0, 0),
(2, 21, 1194, 0, 0),
(2, 21, 1195, 0, 0),
(2, 21, 1196, 0, 0),
(2, 21, 1197, 0, 0),
(2, 21, 1198, 0, 0),
(2, 21, 1199, 0, 0),
(2, 21, 1200, 0, 0),
(2, 21, 1201, 0, 0),
(2, 21, 1202, 0, 0),
(2, 21, 1203, 0, 0),
(2, 21, 1204, 0, 0),
(2, 21, 1205, 0, 0),
(2, 21, 1206, 0, 0),
(2, 21, 1207, 0, 0),
(2, 20, 1208, 0, 0),
(2, 20, 1209, 0, 0),
(2, 20, 1210, 0, 0),
(2, 20, 1211, 0, 0),
(2, 20, 1212, 0, 0),
(2, 4, 1213, 0, 0),
(2, 4, 1214, 0, 0),
(2, 4, 1215, 0, 0),
(2, 4, 1216, 0, 0),
(2, 4, 1217, 0, 0),
(2, 4, 1218, 0, 0),
(2, 4, 1219, 0, 0),
(2, 65, 1220, 0, 0),
(2, 65, 1221, 0, 0),
(2, 65, 1222, 0, 0),
(2, 65, 1223, 0, 0),
(2, 65, 1224, 0, 0),
(2, 65, 1225, 0, 0),
(2, 65, 1226, 0, 0),
(2, 65, 1227, 0, 0),
(2, 65, 1228, 0, 0),
(2, 65, 1229, 0, 0),
(2, 65, 1230, 0, 0),
(2, 65, 1231, 0, 0),
(2, 65, 1232, 0, 0),
(2, 65, 1233, 0, 0),
(2, 65, 1234, 0, 0),
(2, 2, 1235, 0, 0),
(2, 2, 1236, 0, 0),
(2, 2, 1237, 0, 0),
(2, 2, 1238, 0, 0),
(2, 2, 1239, 0, 0),
(2, 2, 1240, 0, 0),
(2, 2, 1241, 0, 0),
(2, 2, 1242, 0, 0),
(2, 2, 1243, 0, 0),
(3, 6, 1, 0, 0),
(3, 6, 2, 0, 0),
(3, 6, 3, 0, 0),
(3, 6, 4, 0, 0),
(3, 6, 5, 0, 0),
(3, 6, 6, 0, 0),
(3, 6, 7, 0, 0),
(3, 6, 8, 0, 0),
(3, 6, 9, 0, 0),
(3, 6, 10, 0, 0),
(3, 6, 11, 0, 0),
(3, 6, 12, 0, 0),
(3, 6, 13, 0, 0),
(3, 6, 14, 0, 0),
(3, 6, 15, 0, 0),
(3, 6, 16, 0, 0),
(3, 6, 17, 0, 0),
(3, 6, 18, 0, 0),
(3, 6, 19, 0, 0),
(3, 6, 20, 0, 0),
(3, 6, 21, 0, 0),
(3, 6, 22, 0, 0),
(3, 6, 23, 0, 0),
(3, 6, 24, 0, 0),
(3, 6, 25, 0, 0),
(3, 6, 26, 0, 0),
(3, 6, 27, 0, 0),
(3, 6, 28, 0, 0),
(3, 6, 29, 0, 0),
(3, 6, 30, 0, 0),
(3, 6, 31, 0, 0),
(3, 6, 32, 0, 0),
(3, 6, 33, 0, 0),
(3, 6, 34, 0, 0),
(3, 6, 35, 0, 0),
(3, 6, 36, 0, 0),
(3, 7, 37, 0, 0),
(3, 7, 38, 0, 0),
(3, 7, 39, 0, 0),
(3, 7, 40, 0, 0),
(3, 7, 41, 0, 0),
(3, 7, 42, 0, 0),
(3, 7, 43, 0, 0),
(3, 7, 44, 0, 0),
(3, 7, 45, 0, 0),
(3, 7, 46, 0, 0),
(3, 7, 47, 0, 0),
(3, 7, 48, 0, 0),
(3, 7, 49, 0, 0),
(3, 7, 50, 0, 0),
(3, 7, 51, 0, 0),
(3, 7, 52, 0, 0),
(3, 7, 53, 0, 0),
(3, 7, 54, 0, 0),
(3, 7, 55, 0, 0),
(3, 7, 56, 0, 0),
(3, 7, 57, 0, 0),
(3, 7, 58, 0, 0),
(3, 7, 59, 0, 0),
(3, 7, 60, 0, 0),
(3, 7, 61, 0, 0),
(3, 7, 62, 0, 0),
(3, 7, 63, 0, 0),
(3, 7, 64, 0, 0),
(3, 7, 65, 0, 0),
(3, 4, 66, 0, 0),
(3, 4, 67, 0, 0),
(3, 4, 68, 0, 0),
(3, 4, 69, 0, 0),
(3, 4, 70, 0, 0),
(3, 4, 71, 0, 0),
(3, 4, 72, 0, 0),
(3, 4, 73, 0, 0),
(3, 4, 74, 0, 0),
(3, 4, 75, 0, 0),
(3, 4, 76, 0, 0),
(3, 4, 77, 0, 0),
(3, 4, 78, 0, 0),
(3, 4, 79, 0, 0),
(3, 4, 80, 0, 0),
(3, 4, 81, 0, 0),
(3, 4, 82, 0, 0),
(3, 4, 83, 0, 0),
(3, 4, 84, 0, 0),
(3, 4, 85, 0, 0),
(3, 4, 86, 0, 0),
(3, 4, 87, 0, 0),
(3, 4, 88, 0, 0),
(3, 4, 89, 0, 0),
(3, 4, 90, 0, 0),
(3, 4, 91, 0, 0),
(3, 4, 92, 0, 0),
(3, 4, 93, 0, 0),
(3, 4, 94, 0, 0),
(3, 4, 95, 0, 0),
(3, 4, 96, 0, 0),
(3, 4, 97, 0, 0),
(3, 4, 98, 0, 0),
(3, 4, 99, 0, 0),
(3, 4, 100, 0, 0),
(3, 4, 101, 0, 0),
(3, 4, 102, 0, 0),
(3, 4, 103, 0, 0),
(3, 4, 104, 0, 0),
(3, 4, 105, 0, 0),
(3, 4, 106, 0, 0),
(3, 4, 107, 0, 0),
(3, 4, 108, 0, 0),
(3, 4, 109, 0, 0),
(3, 2, 110, 0, 0),
(3, 2, 111, 0, 0),
(3, 2, 112, 0, 0),
(3, 2, 113, 0, 0),
(3, 2, 114, 0, 0),
(3, 2, 115, 0, 0),
(3, 2, 116, 0, 0),
(3, 2, 117, 0, 0),
(3, 2, 118, 0, 0),
(3, 2, 119, 0, 0),
(3, 2, 120, 0, 0),
(3, 2, 121, 0, 0),
(3, 2, 122, 0, 0),
(3, 2, 123, 0, 0),
(3, 2, 124, 0, 0),
(3, 2, 125, 0, 0),
(3, 26, 126, 0, 0),
(3, 26, 127, 0, 0),
(3, 26, 128, 0, 0),
(3, 26, 129, 0, 0),
(3, 26, 130, 0, 0),
(3, 26, 131, 0, 0),
(3, 26, 132, 0, 0),
(3, 26, 133, 0, 0),
(3, 26, 134, 0, 0),
(3, 26, 135, 0, 0),
(3, 26, 136, 0, 0),
(3, 26, 137, 0, 0),
(3, 26, 138, 0, 0),
(3, 26, 139, 0, 0),
(3, 26, 140, 0, 0),
(3, 26, 141, 0, 0),
(3, 26, 142, 0, 0),
(3, 26, 143, 0, 0),
(3, 26, 144, 0, 0),
(3, 26, 145, 0, 0),
(3, 26, 146, 0, 0),
(3, 26, 147, 0, 0),
(3, 26, 148, 0, 0),
(3, 26, 149, 0, 0),
(3, 26, 150, 0, 0),
(3, 4, 151, 0, 0),
(3, 6, 152, 0, 0),
(3, 7, 153, 0, 0),
(3, 26, 154, 0, 0),
(3, 13, 155, 0, 0),
(3, 13, 156, 0, 0),
(3, 13, 157, 0, 0),
(3, 13, 158, 0, 0),
(3, 13, 159, 0, 0),
(3, 13, 160, 0, 0),
(3, 13, 161, 0, 0),
(3, 13, 162, 0, 0),
(3, 13, 163, 0, 0),
(3, 13, 164, 0, 0),
(3, 13, 165, 0, 0),
(3, 13, 166, 0, 0),
(3, 13, 167, 0, 0),
(3, 13, 168, 0, 0),
(3, 13, 169, 0, 0),
(3, 13, 170, 0, 0),
(3, 13, 171, 0, 0),
(3, 13, 172, 0, 0),
(3, 13, 173, 0, 0),
(3, 14, 174, 0, 0),
(3, 14, 175, 0, 0),
(3, 14, 176, 0, 0),
(3, 14, 177, 0, 0),
(3, 14, 178, 0, 0),
(3, 14, 179, 0, 0),
(3, 14, 180, 0, 0),
(3, 14, 181, 0, 0),
(3, 14, 182, 0, 0),
(3, 14, 183, 0, 0),
(3, 14, 184, 0, 0),
(3, 14, 185, 0, 0),
(3, 14, 186, 0, 0),
(3, 14, 187, 0, 0),
(3, 14, 188, 0, 0),
(3, 14, 189, 0, 0),
(3, 14, 190, 0, 0),
(3, 14, 191, 0, 0),
(3, 14, 192, 0, 0),
(3, 14, 193, 0, 0),
(3, 14, 194, 0, 0),
(3, 14, 195, 0, 0),
(3, 14, 196, 0, 0),
(3, 14, 197, 0, 0),
(3, 14, 198, 0, 0),
(3, 14, 199, 0, 0),
(3, 14, 200, 0, 0),
(3, 14, 201, 0, 0),
(3, 14, 202, 0, 0),
(3, 14, 203, 0, 0),
(3, 14, 204, 0, 0),
(3, 8, 205, 0, 0),
(3, 8, 206, 0, 0),
(3, 8, 207, 0, 0),
(3, 8, 208, 0, 0),
(3, 8, 209, 0, 0),
(3, 8, 210, 0, 0),
(3, 8, 211, 0, 0),
(3, 8, 212, 0, 0),
(3, 8, 213, 0, 0),
(3, 8, 214, 0, 0),
(3, 8, 215, 0, 0),
(3, 8, 216, 0, 0),
(3, 8, 217, 0, 0),
(3, 8, 218, 0, 0),
(3, 8, 219, 0, 0),
(3, 10, 220, 0, 0),
(3, 10, 221, 0, 0),
(3, 10, 222, 0, 0),
(3, 10, 223, 0, 0),
(3, 10, 224, 0, 0),
(3, 10, 225, 0, 0),
(3, 10, 226, 0, 0),
(3, 10, 227, 0, 0),
(3, 10, 228, 0, 0),
(3, 10, 229, 0, 0),
(3, 10, 230, 0, 0),
(3, 10, 231, 0, 0),
(3, 9, 232, 0, 0),
(3, 9, 233, 0, 0),
(3, 9, 234, 0, 0),
(3, 9, 235, 0, 0),
(3, 9, 236, 0, 0),
(3, 9, 237, 0, 0),
(3, 9, 238, 0, 0),
(3, 9, 239, 0, 0),
(3, 9, 240, 0, 0),
(3, 9, 241, 0, 0),
(3, 9, 242, 0, 0),
(3, 9, 243, 0, 0),
(3, 9, 244, 0, 0),
(3, 9, 245, 0, 0),
(3, 9, 246, 0, 0),
(3, 9, 247, 0, 0),
(3, 9, 248, 0, 0),
(3, 9, 249, 0, 0),
(3, 9, 250, 0, 0),
(3, 9, 251, 0, 0),
(3, 9, 252, 0, 0),
(3, 9, 253, 0, 0),
(3, 9, 254, 0, 0),
(3, 9, 255, 0, 0),
(3, 16, 256, 0, 0),
(3, 16, 257, 0, 0),
(3, 16, 258, 0, 0),
(3, 16, 259, 0, 0),
(3, 16, 260, 0, 0),
(3, 16, 261, 0, 0),
(3, 16, 262, 0, 0),
(3, 16, 263, 0, 0),
(3, 16, 264, 0, 0),
(3, 16, 265, 0, 0),
(3, 16, 266, 0, 0),
(3, 16, 267, 0, 0),
(3, 16, 268, 0, 0),
(3, 16, 269, 0, 0),
(3, 16, 270, 0, 0),
(3, 16, 271, 0, 0),
(3, 16, 272, 0, 0),
(3, 16, 273, 0, 0),
(3, 16, 274, 0, 0),
(3, 16, 275, 0, 0),
(3, 16, 276, 0, 0),
(3, 16, 277, 0, 0),
(3, 16, 278, 0, 0),
(3, 15, 279, 0, 0),
(3, 15, 280, 0, 0),
(3, 15, 281, 0, 0),
(3, 15, 282, 0, 0),
(3, 15, 283, 0, 0),
(3, 15, 284, 0, 0),
(3, 15, 285, 0, 0),
(3, 15, 286, 0, 0),
(3, 15, 287, 0, 0),
(3, 15, 288, 0, 0),
(3, 18, 289, 0, 0),
(3, 18, 290, 0, 0),
(3, 18, 291, 0, 0),
(3, 18, 292, 0, 0),
(3, 18, 293, 0, 0),
(3, 18, 294, 0, 0),
(3, 18, 295, 0, 0),
(3, 18, 296, 0, 0),
(3, 18, 297, 0, 0),
(3, 18, 298, 0, 0),
(3, 18, 299, 0, 0),
(3, 18, 300, 0, 0),
(3, 18, 301, 0, 0),
(3, 18, 302, 0, 0),
(3, 18, 303, 0, 0),
(3, 18, 304, 0, 0),
(3, 18, 305, 0, 0),
(3, 19, 306, 0, 0),
(3, 19, 307, 0, 0),
(3, 19, 308, 0, 0),
(3, 19, 309, 0, 0),
(3, 19, 310, 0, 0),
(3, 19, 311, 0, 0),
(3, 19, 312, 0, 0),
(3, 19, 313, 0, 0),
(3, 20, 314, 0, 0),
(3, 20, 315, 0, 0),
(3, 20, 316, 0, 0),
(3, 20, 317, 0, 0),
(3, 20, 318, 0, 0),
(3, 20, 319, 0, 0),
(3, 20, 320, 0, 0),
(3, 20, 321, 0, 0),
(3, 20, 322, 0, 0),
(3, 20, 323, 0, 0),
(3, 20, 324, 0, 0),
(3, 20, 325, 0, 0),
(3, 20, 326, 0, 0),
(3, 20, 327, 0, 0),
(3, 20, 328, 0, 0),
(3, 20, 329, 0, 0),
(3, 20, 330, 0, 0),
(3, 20, 331, 0, 0),
(3, 20, 332, 0, 0),
(3, 20, 333, 0, 0),
(3, 20, 334, 0, 0),
(3, 20, 335, 0, 0),
(3, 20, 336, 0, 0),
(3, 20, 337, 0, 0),
(3, 20, 338, 0, 0),
(3, 20, 339, 0, 0),
(3, 20, 340, 0, 0),
(3, 20, 341, 0, 0),
(3, 20, 342, 0, 0),
(3, 20, 343, 0, 0),
(3, 20, 344, 0, 0),
(3, 20, 345, 0, 0),
(3, 20, 346, 0, 0),
(3, 20, 347, 0, 0),
(3, 20, 348, 0, 0),
(3, 20, 349, 0, 0),
(3, 20, 350, 0, 0),
(3, 21, 351, 0, 0),
(3, 21, 352, 0, 0),
(3, 21, 353, 0, 0),
(3, 21, 354, 0, 0),
(3, 21, 355, 0, 0),
(3, 21, 356, 0, 0),
(3, 21, 357, 0, 0),
(3, 21, 358, 0, 0),
(3, 21, 359, 0, 0),
(3, 21, 360, 0, 0),
(3, 21, 361, 0, 0),
(3, 21, 362, 0, 0),
(3, 21, 363, 0, 0),
(3, 21, 364, 0, 0),
(3, 21, 365, 0, 0),
(3, 21, 366, 0, 0),
(3, 21, 367, 0, 0),
(3, 21, 368, 0, 0),
(3, 21, 369, 0, 0),
(3, 21, 370, 0, 0),
(3, 21, 371, 0, 0),
(3, 21, 372, 0, 0),
(3, 21, 373, 0, 0),
(3, 21, 374, 0, 0),
(3, 21, 375, 0, 0),
(3, 21, 376, 0, 0),
(3, 21, 377, 0, 0),
(3, 21, 378, 0, 0),
(3, 21, 379, 0, 0),
(3, 21, 380, 0, 0),
(3, 21, 381, 0, 0),
(3, 21, 382, 0, 0),
(3, 21, 383, 0, 0),
(3, 21, 384, 0, 0),
(3, 21, 385, 0, 0),
(3, 21, 386, 0, 0),
(3, 21, 387, 0, 0),
(3, 21, 388, 0, 0),
(3, 22, 389, 0, 0),
(3, 22, 390, 0, 0),
(3, 22, 391, 0, 0),
(3, 22, 392, 0, 0),
(3, 22, 393, 0, 0),
(3, 22, 394, 0, 0),
(3, 22, 395, 0, 0),
(3, 22, 396, 0, 0),
(3, 22, 397, 0, 0),
(3, 22, 398, 0, 0),
(3, 22, 399, 0, 0),
(3, 22, 400, 0, 0),
(3, 22, 401, 0, 0),
(3, 22, 402, 0, 0),
(3, 22, 403, 0, 0),
(3, 22, 404, 0, 0),
(3, 22, 405, 0, 0),
(3, 22, 406, 0, 0),
(3, 22, 407, 0, 0),
(3, 22, 408, 0, 0),
(3, 22, 409, 0, 0),
(3, 22, 410, 0, 0),
(3, 22, 411, 0, 0),
(3, 22, 412, 0, 0),
(3, 22, 413, 0, 0),
(3, 22, 414, 0, 0),
(3, 22, 415, 0, 0),
(3, 22, 416, 0, 0),
(3, 22, 417, 0, 0),
(3, 22, 418, 0, 0),
(3, 22, 419, 0, 0),
(3, 22, 420, 0, 0),
(3, 22, 421, 0, 0),
(3, 22, 422, 0, 0),
(3, 22, 423, 0, 0),
(3, 22, 424, 0, 0),
(3, 22, 425, 0, 0),
(3, 22, 426, 0, 0),
(3, 22, 427, 0, 0),
(3, 22, 428, 0, 0),
(3, 22, 429, 0, 0),
(3, 22, 430, 0, 0),
(3, 22, 431, 0, 0),
(3, 22, 432, 0, 0),
(3, 22, 433, 0, 0),
(3, 22, 434, 0, 0),
(3, 22, 435, 0, 0),
(3, 23, 436, 0, 0),
(3, 23, 437, 0, 0),
(3, 23, 438, 0, 0),
(3, 23, 439, 0, 0),
(3, 23, 440, 0, 0),
(3, 23, 441, 0, 0),
(3, 23, 442, 0, 0),
(3, 23, 443, 0, 0),
(3, 23, 444, 0, 0),
(3, 23, 445, 0, 0),
(3, 23, 446, 0, 0),
(3, 23, 447, 0, 0),
(3, 23, 448, 0, 0),
(3, 23, 449, 0, 0),
(3, 23, 450, 0, 0),
(3, 23, 451, 0, 0),
(3, 23, 452, 0, 0),
(3, 23, 453, 0, 0),
(3, 23, 454, 0, 0),
(3, 23, 455, 0, 0),
(3, 23, 456, 0, 0),
(3, 23, 457, 0, 0),
(3, 23, 458, 0, 0),
(3, 23, 459, 0, 0),
(3, 23, 460, 0, 0),
(3, 23, 461, 0, 0),
(3, 23, 462, 0, 0),
(3, 23, 463, 0, 0),
(3, 23, 464, 0, 0),
(3, 23, 465, 0, 0),
(3, 23, 466, 0, 0),
(3, 23, 467, 0, 0),
(3, 23, 468, 0, 0),
(3, 23, 469, 0, 0),
(3, 23, 470, 0, 0),
(3, 23, 471, 0, 0),
(3, 23, 472, 0, 0),
(3, 23, 473, 0, 0),
(3, 23, 474, 0, 0),
(3, 10, 520, 0, 0),
(3, 10, 521, 0, 0),
(3, 10, 522, 0, 0),
(3, 10, 523, 0, 0),
(3, 10, 524, 0, 0),
(3, 10, 525, 0, 0),
(3, 34, 526, 0, 0),
(3, 34, 527, 0, 0),
(3, 34, 528, 0, 0),
(3, 34, 529, 0, 0),
(3, 34, 530, 0, 0),
(3, 34, 531, 0, 0),
(3, 34, 532, 0, 0),
(3, 34, 533, 0, 0),
(3, 34, 534, 0, 0),
(3, 34, 535, 0, 0),
(3, 34, 536, 0, 0),
(3, 34, 537, 0, 0),
(3, 34, 538, 0, 0),
(3, 34, 539, 0, 0),
(3, 34, 540, 0, 0),
(3, 34, 541, 0, 0),
(3, 34, 542, 0, 0),
(3, 29, 543, 0, 0),
(3, 35, 544, 0, 0),
(3, 35, 545, 0, 0),
(3, 35, 546, 0, 0),
(3, 35, 547, 0, 0),
(3, 35, 548, 0, 0),
(3, 35, 549, 0, 0),
(3, 35, 550, 0, 0),
(3, 35, 551, 0, 0),
(3, 35, 552, 0, 0),
(3, 35, 553, 0, 0),
(3, 35, 554, 0, 0),
(3, 35, 555, 0, 0),
(3, 35, 556, 0, 0),
(3, 35, 557, 0, 0),
(3, 35, 558, 0, 0),
(3, 35, 559, 0, 0),
(3, 35, 560, 0, 0),
(3, 35, 561, 0, 0),
(3, 35, 562, 0, 0),
(3, 35, 563, 0, 0),
(3, 35, 564, 0, 0),
(3, 35, 565, 0, 0),
(3, 36, 566, 0, 0),
(3, 36, 567, 0, 0),
(3, 36, 568, 0, 0),
(3, 36, 569, 0, 0),
(3, 36, 570, 0, 0),
(3, 36, 571, 0, 0),
(3, 36, 572, 0, 0),
(3, 36, 573, 0, 0),
(3, 36, 574, 0, 0);
INSERT IGNORE INTO `vtiger_profile2field` (`profileid`, `tabid`, `fieldid`, `visible`, `readonly`) VALUES
(3, 36, 575, 0, 0),
(3, 36, 576, 0, 0),
(3, 36, 577, 0, 0),
(3, 36, 578, 0, 0),
(3, 36, 579, 0, 0),
(3, 36, 580, 0, 0),
(3, 36, 581, 0, 0),
(3, 36, 582, 0, 0),
(3, 36, 583, 0, 0),
(3, 36, 584, 0, 0),
(3, 36, 585, 0, 0),
(3, 36, 586, 0, 0),
(3, 36, 587, 0, 0),
(3, 38, 588, 0, 0),
(3, 38, 589, 0, 0),
(3, 38, 590, 0, 0),
(3, 38, 591, 0, 0),
(3, 38, 592, 0, 0),
(3, 38, 593, 0, 0),
(3, 38, 594, 0, 0),
(3, 38, 595, 0, 0),
(3, 38, 596, 0, 0),
(3, 38, 597, 0, 0),
(3, 38, 598, 0, 0),
(3, 38, 599, 0, 0),
(3, 38, 600, 0, 0),
(3, 38, 601, 0, 0),
(3, 38, 602, 0, 0),
(3, 38, 603, 0, 0),
(3, 38, 604, 0, 0),
(3, 38, 605, 0, 0),
(3, 38, 606, 0, 0),
(3, 38, 607, 0, 0),
(3, 38, 608, 0, 0),
(3, 42, 609, 0, 0),
(3, 42, 610, 0, 0),
(3, 42, 611, 0, 0),
(3, 42, 612, 0, 0),
(3, 42, 613, 0, 0),
(3, 42, 614, 0, 0),
(3, 42, 615, 0, 0),
(3, 42, 616, 0, 0),
(3, 43, 617, 0, 0),
(3, 43, 618, 0, 0),
(3, 43, 619, 0, 0),
(3, 43, 620, 0, 0),
(3, 43, 621, 0, 0),
(3, 43, 622, 0, 0),
(3, 43, 623, 0, 0),
(3, 43, 624, 0, 0),
(3, 43, 625, 0, 0),
(3, 43, 626, 0, 0),
(3, 43, 627, 0, 0),
(3, 43, 628, 0, 0),
(3, 43, 629, 0, 0),
(3, 44, 630, 0, 0),
(3, 44, 631, 0, 0),
(3, 44, 632, 0, 0),
(3, 44, 633, 0, 0),
(3, 44, 634, 0, 0),
(3, 44, 635, 0, 0),
(3, 44, 636, 0, 0),
(3, 44, 637, 0, 0),
(3, 44, 638, 0, 0),
(3, 44, 639, 0, 0),
(3, 44, 640, 0, 0),
(3, 44, 641, 0, 0),
(3, 44, 642, 0, 0),
(3, 44, 643, 0, 0),
(3, 44, 644, 0, 0),
(3, 44, 645, 0, 0),
(3, 44, 646, 0, 0),
(3, 44, 647, 0, 0),
(3, 45, 648, 0, 0),
(3, 45, 649, 0, 0),
(3, 45, 650, 0, 0),
(3, 45, 651, 0, 0),
(3, 45, 652, 0, 0),
(3, 45, 653, 0, 0),
(3, 45, 654, 0, 0),
(3, 45, 655, 0, 0),
(3, 45, 656, 0, 0),
(3, 45, 657, 0, 0),
(3, 45, 658, 0, 0),
(3, 45, 659, 0, 0),
(3, 45, 660, 0, 0),
(3, 45, 661, 0, 0),
(3, 45, 662, 0, 0),
(3, 45, 663, 0, 0),
(3, 45, 664, 0, 0),
(3, 45, 665, 0, 0),
(3, 45, 666, 0, 0),
(3, 45, 667, 0, 0),
(3, 47, 668, 0, 0),
(3, 47, 669, 0, 0),
(3, 47, 670, 0, 0),
(3, 47, 671, 0, 0),
(3, 47, 672, 0, 0),
(3, 47, 673, 0, 0),
(3, 2, 674, 0, 0),
(3, 29, 675, 0, 0),
(3, 23, 676, 0, 0),
(3, 23, 677, 0, 0),
(3, 23, 678, 0, 0),
(3, 23, 679, 0, 0),
(3, 23, 680, 0, 0),
(3, 23, 681, 0, 0),
(3, 23, 682, 0, 0),
(3, 23, 683, 0, 0),
(3, 23, 684, 0, 0),
(3, 22, 685, 0, 0),
(3, 22, 686, 0, 0),
(3, 22, 687, 0, 0),
(3, 22, 688, 0, 0),
(3, 22, 689, 0, 0),
(3, 22, 690, 0, 0),
(3, 22, 691, 0, 0),
(3, 22, 692, 0, 0),
(3, 22, 693, 0, 0),
(3, 21, 694, 0, 0),
(3, 21, 695, 0, 0),
(3, 21, 696, 0, 0),
(3, 21, 697, 0, 0),
(3, 21, 698, 0, 0),
(3, 21, 699, 0, 0),
(3, 21, 700, 0, 0),
(3, 21, 701, 0, 0),
(3, 21, 702, 0, 0),
(3, 20, 703, 0, 0),
(3, 20, 704, 0, 0),
(3, 20, 705, 0, 0),
(3, 20, 706, 0, 0),
(3, 20, 707, 0, 0),
(3, 20, 708, 0, 0),
(3, 20, 709, 0, 0),
(3, 20, 710, 0, 0),
(3, 20, 711, 0, 0),
(3, 29, 712, 0, 0),
(3, 44, 713, 0, 0),
(3, 42, 714, 0, 0),
(3, 29, 715, 0, 0),
(3, 29, 716, 0, 0),
(3, 29, 717, 0, 0),
(3, 23, 718, 0, 0),
(3, 22, 719, 0, 0),
(3, 21, 720, 0, 0),
(3, 20, 721, 0, 0),
(3, 29, 722, 0, 0),
(3, 6, 723, 0, 0),
(3, 4, 724, 0, 0),
(3, 2, 725, 0, 0),
(3, 29, 726, 0, 0),
(3, 23, 727, 0, 0),
(3, 23, 728, 0, 0),
(3, 21, 729, 0, 0),
(3, 21, 730, 0, 0),
(3, 18, 731, 0, 0),
(3, 7, 732, 0, 0),
(3, 42, 733, 0, 0),
(3, 42, 734, 0, 0),
(3, 23, 735, 0, 0),
(3, 20, 736, 0, 0),
(3, 21, 737, 0, 0),
(3, 22, 738, 0, 0),
(3, 29, 739, 0, 0),
(3, 2, 740, 0, 0),
(3, 13, 741, 0, 0),
(3, 29, 742, 0, 0),
(3, 29, 743, 0, 0),
(3, 29, 744, 0, 0),
(3, 29, 745, 0, 0),
(3, 14, 772, 0, 0),
(3, 36, 773, 0, 0),
(3, 23, 774, 0, 0),
(3, 29, 775, 0, 0),
(3, 23, 776, 0, 0),
(3, 23, 777, 0, 0),
(3, 23, 778, 0, 0),
(3, 20, 779, 0, 0),
(3, 20, 780, 0, 0),
(3, 20, 781, 0, 0),
(3, 21, 782, 0, 0),
(3, 22, 783, 0, 0),
(3, 22, 784, 0, 0),
(3, 22, 785, 0, 0),
(3, 42, 786, 0, 0),
(3, 42, 787, 0, 0),
(3, 42, 788, 0, 0),
(3, 2, 789, 0, 0),
(3, 4, 790, 0, 0),
(3, 6, 791, 0, 0),
(3, 7, 792, 0, 0),
(3, 8, 793, 0, 0),
(3, 9, 794, 0, 0),
(3, 10, 795, 0, 0),
(3, 13, 796, 0, 0),
(3, 14, 797, 0, 0),
(3, 15, 798, 0, 0),
(3, 16, 799, 0, 0),
(3, 18, 800, 0, 0),
(3, 19, 801, 0, 0),
(3, 20, 802, 0, 0),
(3, 21, 803, 0, 0),
(3, 22, 804, 0, 0),
(3, 23, 805, 0, 0),
(3, 26, 806, 0, 0),
(3, 10, 807, 0, 0),
(3, 2, 808, 0, 0),
(3, 4, 809, 0, 0),
(3, 6, 810, 0, 0),
(3, 7, 811, 0, 0),
(3, 8, 812, 0, 0),
(3, 9, 813, 0, 0),
(3, 10, 814, 0, 0),
(3, 13, 815, 0, 0),
(3, 14, 816, 0, 0),
(3, 15, 817, 0, 0),
(3, 16, 818, 0, 0),
(3, 18, 819, 0, 0),
(3, 19, 820, 0, 0),
(3, 20, 821, 0, 0),
(3, 21, 822, 0, 0),
(3, 22, 823, 0, 0),
(3, 23, 824, 0, 0),
(3, 26, 825, 0, 0),
(3, 2, 826, 0, 0),
(3, 4, 827, 0, 0),
(3, 6, 828, 0, 0),
(3, 7, 829, 0, 0),
(3, 8, 830, 0, 0),
(3, 9, 831, 0, 0),
(3, 10, 832, 0, 0),
(3, 13, 833, 0, 0),
(3, 14, 834, 0, 0),
(3, 15, 835, 0, 0),
(3, 16, 836, 0, 0),
(3, 18, 837, 0, 0),
(3, 19, 838, 0, 0),
(3, 20, 839, 0, 0),
(3, 21, 840, 0, 0),
(3, 22, 841, 0, 0),
(3, 23, 842, 0, 0),
(3, 26, 843, 0, 0),
(3, 20, 844, 0, 0),
(3, 21, 845, 0, 0),
(3, 22, 846, 0, 0),
(3, 23, 847, 0, 0),
(3, 45, 848, 0, 0),
(3, 45, 849, 0, 0),
(3, 29, 850, 0, 0),
(3, 22, 851, 0, 0),
(3, 29, 852, 0, 0),
(3, 16, 853, 0, 0),
(3, 16, 854, 0, 0),
(3, 16, 855, 0, 0),
(3, 16, 856, 0, 0),
(3, 9, 857, 0, 0),
(3, 9, 858, 0, 0),
(3, 16, 859, 0, 0),
(3, 50, 860, 0, 0),
(3, 50, 861, 0, 0),
(3, 50, 862, 0, 0),
(3, 50, 863, 0, 0),
(3, 50, 864, 0, 0),
(3, 50, 865, 0, 0),
(3, 6, 892, 0, 0),
(3, 6, 893, 0, 0),
(3, 6, 894, 0, 0),
(3, 6, 895, 0, 0),
(3, 6, 896, 0, 0),
(3, 6, 897, 0, 0),
(3, 6, 898, 0, 0),
(3, 6, 899, 0, 0),
(3, 6, 900, 0, 0),
(3, 6, 901, 0, 0),
(3, 6, 902, 0, 0),
(3, 6, 903, 0, 0),
(3, 6, 904, 0, 0),
(3, 6, 905, 0, 0),
(3, 6, 906, 0, 0),
(3, 6, 907, 0, 0),
(3, 6, 908, 0, 0),
(3, 6, 909, 0, 0),
(3, 6, 910, 0, 0),
(3, 6, 911, 0, 0),
(3, 6, 912, 0, 0),
(3, 6, 913, 0, 0),
(3, 6, 914, 0, 0),
(3, 6, 915, 0, 0),
(3, 6, 916, 0, 0),
(3, 6, 917, 0, 0),
(3, 6, 918, 0, 0),
(3, 6, 919, 0, 0),
(3, 6, 920, 0, 0),
(3, 6, 921, 0, 0),
(3, 6, 922, 0, 0),
(3, 6, 923, 0, 0),
(3, 6, 924, 0, 0),
(3, 6, 925, 0, 0),
(3, 6, 926, 0, 0),
(3, 23, 927, 0, 0),
(3, 52, 928, 0, 0),
(3, 52, 929, 0, 0),
(3, 52, 930, 0, 0),
(3, 52, 931, 0, 0),
(3, 52, 932, 0, 0),
(3, 52, 933, 0, 0),
(3, 52, 934, 0, 0),
(3, 52, 935, 0, 0),
(3, 52, 936, 0, 0),
(3, 52, 937, 0, 0),
(3, 52, 938, 0, 0),
(3, 52, 939, 0, 0),
(3, 52, 940, 0, 0),
(3, 52, 941, 0, 0),
(3, 52, 942, 0, 0),
(3, 52, 943, 0, 0),
(3, 52, 944, 0, 0),
(3, 52, 945, 0, 0),
(3, 52, 946, 0, 0),
(3, 52, 947, 0, 0),
(3, 52, 948, 0, 0),
(3, 52, 949, 0, 0),
(3, 52, 950, 0, 0),
(3, 52, 951, 0, 0),
(3, 52, 952, 0, 0),
(3, 21, 953, 0, 0),
(3, 53, 954, 0, 0),
(3, 53, 955, 0, 0),
(3, 53, 956, 0, 0),
(3, 53, 957, 0, 0),
(3, 53, 958, 0, 0),
(3, 53, 959, 0, 0),
(3, 53, 960, 0, 0),
(3, 53, 961, 0, 0),
(3, 53, 962, 0, 0),
(3, 53, 963, 0, 0),
(3, 53, 964, 0, 0),
(3, 53, 965, 0, 0),
(3, 53, 966, 0, 0),
(3, 53, 967, 0, 0),
(3, 53, 968, 0, 0),
(3, 53, 969, 0, 0),
(3, 54, 970, 0, 0),
(3, 54, 971, 0, 0),
(3, 54, 972, 0, 0),
(3, 54, 973, 0, 0),
(3, 54, 974, 0, 0),
(3, 54, 975, 0, 0),
(3, 54, 976, 0, 0),
(3, 54, 977, 0, 0),
(3, 54, 978, 0, 0),
(3, 54, 979, 0, 0),
(3, 54, 980, 0, 0),
(3, 54, 981, 0, 0),
(3, 54, 982, 0, 0),
(3, 54, 983, 0, 0),
(3, 54, 984, 0, 0),
(3, 54, 985, 0, 0),
(3, 55, 986, 0, 0),
(3, 55, 987, 0, 0),
(3, 55, 988, 0, 0),
(3, 55, 989, 0, 0),
(3, 55, 990, 0, 0),
(3, 55, 991, 0, 0),
(3, 55, 992, 0, 0),
(3, 55, 993, 0, 0),
(3, 55, 994, 0, 0),
(3, 55, 995, 0, 0),
(3, 55, 996, 0, 0),
(3, 55, 997, 0, 0),
(3, 55, 998, 0, 0),
(3, 55, 999, 0, 0),
(3, 55, 1000, 0, 0),
(3, 55, 1001, 0, 0),
(3, 55, 1002, 0, 0),
(3, 55, 1003, 0, 0),
(3, 55, 1004, 0, 0),
(3, 55, 1005, 0, 0),
(3, 55, 1006, 0, 0),
(3, 55, 1007, 0, 0),
(3, 7, 1008, 0, 0),
(3, 7, 1009, 0, 0),
(3, 7, 1010, 0, 0),
(3, 7, 1011, 0, 0),
(3, 7, 1012, 0, 0),
(3, 7, 1013, 0, 0),
(3, 7, 1014, 0, 0),
(3, 7, 1015, 0, 0),
(3, 7, 1016, 0, 0),
(3, 7, 1017, 0, 0),
(3, 7, 1018, 0, 0),
(3, 7, 1019, 0, 0),
(3, 7, 1020, 0, 0),
(3, 7, 1021, 0, 0),
(3, 7, 1022, 0, 0),
(3, 7, 1023, 0, 0),
(3, 7, 1024, 0, 0),
(3, 7, 1025, 0, 0),
(3, 7, 1026, 0, 0),
(3, 7, 1027, 0, 0),
(3, 7, 1028, 0, 0),
(3, 7, 1029, 0, 0),
(3, 7, 1030, 0, 0),
(3, 7, 1031, 0, 0),
(3, 7, 1032, 0, 0),
(3, 7, 1033, 0, 0),
(3, 56, 1034, 0, 0),
(3, 56, 1035, 0, 0),
(3, 56, 1036, 0, 0),
(3, 56, 1037, 0, 0),
(3, 56, 1038, 0, 0),
(3, 56, 1039, 0, 0),
(3, 56, 1040, 0, 0),
(3, 56, 1041, 0, 0),
(3, 56, 1042, 0, 0),
(3, 56, 1043, 0, 0),
(3, 56, 1044, 0, 0),
(3, 56, 1045, 0, 0),
(3, 56, 1046, 0, 0),
(3, 57, 1047, 0, 0),
(3, 57, 1048, 0, 0),
(3, 57, 1049, 0, 0),
(3, 57, 1050, 0, 0),
(3, 57, 1051, 0, 0),
(3, 57, 1052, 0, 0),
(3, 57, 1053, 0, 0),
(3, 57, 1054, 0, 0),
(3, 57, 1055, 0, 0),
(3, 57, 1056, 0, 0),
(3, 57, 1057, 0, 0),
(3, 57, 1058, 0, 0),
(3, 57, 1059, 0, 0),
(3, 57, 1060, 0, 0),
(3, 57, 1061, 0, 0),
(3, 57, 1062, 0, 0),
(3, 57, 1063, 0, 0),
(3, 58, 1064, 0, 0),
(3, 58, 1065, 0, 0),
(3, 58, 1066, 0, 0),
(3, 58, 1067, 0, 0),
(3, 58, 1068, 0, 0),
(3, 58, 1069, 0, 0),
(3, 58, 1070, 0, 0),
(3, 58, 1071, 0, 0),
(3, 58, 1072, 0, 0),
(3, 58, 1073, 0, 0),
(3, 58, 1074, 0, 0),
(3, 58, 1075, 0, 0),
(3, 58, 1076, 0, 0),
(3, 58, 1077, 0, 0),
(3, 58, 1078, 0, 0),
(3, 58, 1079, 0, 0),
(3, 58, 1080, 0, 0),
(3, 58, 1081, 0, 0),
(3, 58, 1082, 0, 0),
(3, 58, 1083, 0, 0),
(3, 58, 1084, 0, 0),
(3, 58, 1085, 0, 0),
(3, 59, 1086, 0, 0),
(3, 59, 1087, 0, 0),
(3, 59, 1088, 0, 0),
(3, 59, 1089, 0, 0),
(3, 59, 1090, 0, 0),
(3, 59, 1091, 0, 0),
(3, 59, 1092, 0, 0),
(3, 59, 1093, 0, 0),
(3, 59, 1094, 0, 0),
(3, 59, 1095, 0, 0),
(3, 59, 1096, 0, 0),
(3, 59, 1097, 0, 0),
(3, 59, 1098, 0, 0),
(3, 59, 1099, 0, 0),
(3, 59, 1100, 0, 0),
(3, 59, 1101, 0, 0),
(3, 59, 1102, 0, 0),
(3, 59, 1103, 0, 0),
(3, 59, 1104, 0, 0),
(3, 59, 1105, 0, 0),
(3, 59, 1106, 0, 0),
(3, 59, 1107, 0, 0),
(3, 59, 1108, 0, 0),
(3, 59, 1109, 0, 0),
(3, 60, 1110, 0, 0),
(3, 60, 1111, 0, 0),
(3, 60, 1112, 0, 0),
(3, 60, 1113, 0, 0),
(3, 60, 1114, 0, 0),
(3, 60, 1115, 0, 0),
(3, 60, 1116, 0, 0),
(3, 60, 1117, 0, 0),
(3, 60, 1118, 0, 0),
(3, 60, 1119, 0, 0),
(3, 60, 1120, 0, 0),
(3, 60, 1121, 0, 0),
(3, 60, 1122, 0, 0),
(3, 60, 1123, 0, 0),
(3, 60, 1124, 0, 0),
(3, 60, 1125, 0, 0),
(3, 60, 1126, 0, 0),
(3, 60, 1127, 0, 0),
(3, 61, 1128, 0, 0),
(3, 61, 1129, 0, 0),
(3, 61, 1130, 0, 0),
(3, 61, 1131, 0, 0),
(3, 61, 1132, 0, 0),
(3, 61, 1133, 0, 0),
(3, 61, 1134, 0, 0),
(3, 61, 1135, 0, 0),
(3, 61, 1136, 0, 0),
(3, 61, 1137, 0, 0),
(3, 61, 1138, 0, 0),
(3, 61, 1139, 0, 0),
(3, 61, 1140, 0, 0),
(3, 61, 1141, 0, 0),
(3, 61, 1142, 0, 0),
(3, 61, 1143, 0, 0),
(3, 61, 1144, 0, 0),
(3, 61, 1145, 0, 0),
(3, 61, 1146, 0, 0),
(3, 62, 1147, 0, 0),
(3, 62, 1148, 0, 0),
(3, 62, 1149, 0, 0),
(3, 62, 1150, 0, 0),
(3, 62, 1151, 0, 0),
(3, 62, 1152, 0, 0),
(3, 62, 1153, 0, 0),
(3, 62, 1154, 0, 0),
(3, 62, 1155, 0, 0),
(3, 62, 1156, 0, 0),
(3, 62, 1157, 0, 0),
(3, 62, 1158, 0, 0),
(3, 62, 1159, 0, 0),
(3, 62, 1160, 0, 0),
(3, 62, 1161, 0, 0),
(3, 62, 1162, 0, 0),
(3, 62, 1163, 0, 0),
(3, 62, 1164, 0, 0),
(3, 62, 1165, 0, 0),
(3, 62, 1166, 0, 0),
(3, 63, 1167, 0, 0),
(3, 63, 1168, 0, 0),
(3, 63, 1169, 0, 0),
(3, 63, 1170, 0, 0),
(3, 63, 1171, 0, 0),
(3, 63, 1172, 0, 0),
(3, 63, 1173, 0, 0),
(3, 63, 1174, 0, 0),
(3, 63, 1175, 0, 0),
(3, 63, 1176, 0, 0),
(3, 63, 1177, 0, 0),
(3, 63, 1178, 0, 0),
(3, 63, 1179, 0, 0),
(3, 21, 1189, 0, 0),
(3, 21, 1190, 0, 0),
(3, 21, 1191, 0, 0),
(3, 21, 1192, 0, 0),
(3, 21, 1193, 0, 0),
(3, 21, 1194, 0, 0),
(3, 21, 1195, 0, 0),
(3, 21, 1196, 0, 0),
(3, 21, 1197, 0, 0),
(3, 21, 1198, 0, 0),
(3, 21, 1199, 0, 0),
(3, 21, 1200, 0, 0),
(3, 21, 1201, 0, 0),
(3, 21, 1202, 0, 0),
(3, 21, 1203, 0, 0),
(3, 21, 1204, 0, 0),
(3, 21, 1205, 0, 0),
(3, 21, 1206, 0, 0),
(3, 21, 1207, 0, 0),
(3, 20, 1208, 0, 0),
(3, 20, 1209, 0, 0),
(3, 20, 1210, 0, 0),
(3, 20, 1211, 0, 0),
(3, 20, 1212, 0, 0),
(3, 4, 1213, 0, 0),
(3, 4, 1214, 0, 0),
(3, 4, 1215, 0, 0),
(3, 4, 1216, 0, 0),
(3, 4, 1217, 0, 0),
(3, 4, 1218, 0, 0),
(3, 4, 1219, 0, 0),
(3, 65, 1220, 0, 0),
(3, 65, 1221, 0, 0),
(3, 65, 1222, 0, 0),
(3, 65, 1223, 0, 0),
(3, 65, 1224, 0, 0),
(3, 65, 1225, 0, 0),
(3, 65, 1226, 0, 0),
(3, 65, 1227, 0, 0),
(3, 65, 1228, 0, 0),
(3, 65, 1229, 0, 0),
(3, 65, 1230, 0, 0),
(3, 65, 1231, 0, 0),
(3, 65, 1232, 0, 0),
(3, 65, 1233, 0, 0),
(3, 65, 1234, 0, 0),
(3, 2, 1235, 0, 0),
(3, 2, 1236, 0, 0),
(3, 2, 1237, 0, 0),
(3, 2, 1238, 0, 0),
(3, 2, 1239, 0, 0),
(3, 2, 1240, 0, 0),
(3, 2, 1241, 0, 0),
(3, 2, 1242, 0, 0),
(3, 2, 1243, 0, 0),
(4, 6, 1, 0, 0),
(4, 6, 2, 0, 0),
(4, 6, 3, 0, 0),
(4, 6, 4, 0, 0),
(4, 6, 5, 0, 0),
(4, 6, 6, 0, 0),
(4, 6, 7, 0, 0),
(4, 6, 8, 0, 0),
(4, 6, 9, 0, 0),
(4, 6, 10, 0, 0),
(4, 6, 11, 0, 0),
(4, 6, 12, 0, 0),
(4, 6, 13, 0, 0),
(4, 6, 14, 0, 0),
(4, 6, 15, 0, 0),
(4, 6, 16, 0, 0),
(4, 6, 17, 0, 0),
(4, 6, 18, 0, 0),
(4, 6, 19, 0, 0),
(4, 6, 20, 0, 0),
(4, 6, 21, 0, 0),
(4, 6, 22, 0, 0),
(4, 6, 23, 0, 0),
(4, 6, 24, 0, 0),
(4, 6, 25, 0, 0),
(4, 6, 26, 0, 0),
(4, 6, 27, 0, 0),
(4, 6, 28, 0, 0),
(4, 6, 29, 0, 0),
(4, 6, 30, 0, 0),
(4, 6, 31, 0, 0),
(4, 6, 32, 0, 0),
(4, 6, 33, 0, 0),
(4, 6, 34, 0, 0),
(4, 6, 35, 0, 0),
(4, 6, 36, 0, 0),
(4, 7, 37, 0, 0),
(4, 7, 38, 0, 0),
(4, 7, 39, 0, 0),
(4, 7, 40, 0, 0),
(4, 7, 41, 0, 0),
(4, 7, 42, 0, 0),
(4, 7, 43, 0, 0),
(4, 7, 44, 0, 0),
(4, 7, 45, 0, 0),
(4, 7, 46, 0, 0),
(4, 7, 47, 0, 0),
(4, 7, 48, 0, 0),
(4, 7, 49, 0, 0),
(4, 7, 50, 0, 0),
(4, 7, 51, 0, 0),
(4, 7, 52, 0, 0),
(4, 7, 53, 0, 0),
(4, 7, 54, 0, 0),
(4, 7, 55, 0, 0),
(4, 7, 56, 0, 0),
(4, 7, 57, 0, 0),
(4, 7, 58, 0, 0),
(4, 7, 59, 0, 0),
(4, 7, 60, 0, 0),
(4, 7, 61, 0, 0),
(4, 7, 62, 0, 0),
(4, 7, 63, 0, 0),
(4, 7, 64, 0, 0),
(4, 7, 65, 0, 0),
(4, 4, 66, 0, 0),
(4, 4, 67, 0, 0),
(4, 4, 68, 0, 0),
(4, 4, 69, 0, 0),
(4, 4, 70, 0, 0),
(4, 4, 71, 0, 0),
(4, 4, 72, 0, 0),
(4, 4, 73, 0, 0),
(4, 4, 74, 0, 0),
(4, 4, 75, 0, 0),
(4, 4, 76, 0, 0),
(4, 4, 77, 0, 0),
(4, 4, 78, 0, 0),
(4, 4, 79, 0, 0),
(4, 4, 80, 0, 0),
(4, 4, 81, 0, 0),
(4, 4, 82, 0, 0),
(4, 4, 83, 0, 0),
(4, 4, 84, 0, 0),
(4, 4, 85, 0, 0),
(4, 4, 86, 0, 0),
(4, 4, 87, 0, 0),
(4, 4, 88, 0, 0),
(4, 4, 89, 0, 0),
(4, 4, 90, 0, 0),
(4, 4, 91, 0, 0),
(4, 4, 92, 0, 0),
(4, 4, 93, 0, 0),
(4, 4, 94, 0, 0),
(4, 4, 95, 0, 0),
(4, 4, 96, 0, 0),
(4, 4, 97, 0, 0),
(4, 4, 98, 0, 0),
(4, 4, 99, 0, 0),
(4, 4, 100, 0, 0),
(4, 4, 101, 0, 0),
(4, 4, 102, 0, 0),
(4, 4, 103, 0, 0),
(4, 4, 104, 0, 0),
(4, 4, 105, 0, 0),
(4, 4, 106, 0, 0),
(4, 4, 107, 0, 0),
(4, 4, 108, 0, 0),
(4, 4, 109, 0, 0),
(4, 2, 110, 0, 0),
(4, 2, 111, 0, 0),
(4, 2, 112, 0, 0),
(4, 2, 113, 0, 0),
(4, 2, 114, 0, 0),
(4, 2, 115, 0, 0),
(4, 2, 116, 0, 0),
(4, 2, 117, 0, 0),
(4, 2, 118, 0, 0),
(4, 2, 119, 0, 0),
(4, 2, 120, 0, 0),
(4, 2, 121, 0, 0),
(4, 2, 122, 0, 0),
(4, 2, 123, 0, 0),
(4, 2, 124, 0, 0),
(4, 2, 125, 0, 0),
(4, 26, 126, 0, 0),
(4, 26, 127, 0, 0),
(4, 26, 128, 0, 0),
(4, 26, 129, 0, 0),
(4, 26, 130, 0, 0),
(4, 26, 131, 0, 0),
(4, 26, 132, 0, 0),
(4, 26, 133, 0, 0),
(4, 26, 134, 0, 0),
(4, 26, 135, 0, 0),
(4, 26, 136, 0, 0),
(4, 26, 137, 0, 0),
(4, 26, 138, 0, 0),
(4, 26, 139, 0, 0),
(4, 26, 140, 0, 0),
(4, 26, 141, 0, 0),
(4, 26, 142, 0, 0),
(4, 26, 143, 0, 0),
(4, 26, 144, 0, 0),
(4, 26, 145, 0, 0),
(4, 26, 146, 0, 0),
(4, 26, 147, 0, 0),
(4, 26, 148, 0, 0),
(4, 26, 149, 0, 0),
(4, 26, 150, 0, 0),
(4, 4, 151, 0, 0),
(4, 6, 152, 0, 0),
(4, 7, 153, 0, 0),
(4, 26, 154, 0, 0),
(4, 13, 155, 0, 0),
(4, 13, 156, 0, 0),
(4, 13, 157, 0, 0),
(4, 13, 158, 0, 0),
(4, 13, 159, 0, 0),
(4, 13, 160, 0, 0),
(4, 13, 161, 0, 0),
(4, 13, 162, 0, 0),
(4, 13, 163, 0, 0),
(4, 13, 164, 0, 0),
(4, 13, 165, 0, 0),
(4, 13, 166, 0, 0),
(4, 13, 167, 0, 0),
(4, 13, 168, 0, 0),
(4, 13, 169, 0, 0),
(4, 13, 170, 0, 0),
(4, 13, 171, 0, 0),
(4, 13, 172, 0, 0),
(4, 13, 173, 0, 0),
(4, 14, 174, 0, 0),
(4, 14, 175, 0, 0),
(4, 14, 176, 0, 0),
(4, 14, 177, 0, 0),
(4, 14, 178, 0, 0),
(4, 14, 179, 0, 0),
(4, 14, 180, 0, 0),
(4, 14, 181, 0, 0),
(4, 14, 182, 0, 0),
(4, 14, 183, 0, 0),
(4, 14, 184, 0, 0),
(4, 14, 185, 0, 0),
(4, 14, 186, 0, 0),
(4, 14, 187, 0, 0),
(4, 14, 188, 0, 0),
(4, 14, 189, 0, 0),
(4, 14, 190, 0, 0),
(4, 14, 191, 0, 0),
(4, 14, 192, 0, 0),
(4, 14, 193, 0, 0),
(4, 14, 194, 0, 0),
(4, 14, 195, 0, 0),
(4, 14, 196, 0, 0),
(4, 14, 197, 0, 0),
(4, 14, 198, 0, 0),
(4, 14, 199, 0, 0),
(4, 14, 200, 0, 0),
(4, 14, 201, 0, 0),
(4, 14, 202, 0, 0),
(4, 14, 203, 0, 0),
(4, 14, 204, 0, 0),
(4, 8, 205, 0, 0),
(4, 8, 206, 0, 0),
(4, 8, 207, 0, 0),
(4, 8, 208, 0, 0),
(4, 8, 209, 0, 0),
(4, 8, 210, 0, 0),
(4, 8, 211, 0, 0),
(4, 8, 212, 0, 0),
(4, 8, 213, 0, 0),
(4, 8, 214, 0, 0),
(4, 8, 215, 0, 0),
(4, 8, 216, 0, 0),
(4, 8, 217, 0, 0),
(4, 8, 218, 0, 0),
(4, 8, 219, 0, 0),
(4, 10, 220, 0, 0),
(4, 10, 221, 0, 0),
(4, 10, 222, 0, 0),
(4, 10, 223, 0, 0),
(4, 10, 224, 0, 0),
(4, 10, 225, 0, 0),
(4, 10, 226, 0, 0),
(4, 10, 227, 0, 0),
(4, 10, 228, 0, 0),
(4, 10, 229, 0, 0),
(4, 10, 230, 0, 0),
(4, 10, 231, 0, 0),
(4, 9, 232, 0, 0),
(4, 9, 233, 0, 0),
(4, 9, 234, 0, 0),
(4, 9, 235, 0, 0),
(4, 9, 236, 0, 0),
(4, 9, 237, 0, 0),
(4, 9, 238, 0, 0),
(4, 9, 239, 0, 0),
(4, 9, 240, 0, 0),
(4, 9, 241, 0, 0),
(4, 9, 242, 0, 0),
(4, 9, 243, 0, 0),
(4, 9, 244, 0, 0),
(4, 9, 245, 0, 0),
(4, 9, 246, 0, 0),
(4, 9, 247, 0, 0),
(4, 9, 248, 0, 0),
(4, 9, 249, 0, 0),
(4, 9, 250, 0, 0),
(4, 9, 251, 0, 0),
(4, 9, 252, 0, 0),
(4, 9, 253, 0, 0),
(4, 9, 254, 0, 0),
(4, 9, 255, 0, 0),
(4, 16, 256, 0, 0),
(4, 16, 257, 0, 0),
(4, 16, 258, 0, 0),
(4, 16, 259, 0, 0),
(4, 16, 260, 0, 0),
(4, 16, 261, 0, 0),
(4, 16, 262, 0, 0),
(4, 16, 263, 0, 0),
(4, 16, 264, 0, 0),
(4, 16, 265, 0, 0),
(4, 16, 266, 0, 0),
(4, 16, 267, 0, 0),
(4, 16, 268, 0, 0),
(4, 16, 269, 0, 0),
(4, 16, 270, 0, 0),
(4, 16, 271, 0, 0),
(4, 16, 272, 0, 0),
(4, 16, 273, 0, 0),
(4, 16, 274, 0, 0),
(4, 16, 275, 0, 0),
(4, 16, 276, 0, 0),
(4, 16, 277, 0, 0),
(4, 16, 278, 0, 0),
(4, 15, 279, 0, 0),
(4, 15, 280, 0, 0),
(4, 15, 281, 0, 0),
(4, 15, 282, 0, 0),
(4, 15, 283, 0, 0),
(4, 15, 284, 0, 0),
(4, 15, 285, 0, 0),
(4, 15, 286, 0, 0),
(4, 15, 287, 0, 0),
(4, 15, 288, 0, 0),
(4, 18, 289, 0, 0),
(4, 18, 290, 0, 0),
(4, 18, 291, 0, 0),
(4, 18, 292, 0, 0),
(4, 18, 293, 0, 0),
(4, 18, 294, 0, 0),
(4, 18, 295, 0, 0),
(4, 18, 296, 0, 0),
(4, 18, 297, 0, 0),
(4, 18, 298, 0, 0),
(4, 18, 299, 0, 0),
(4, 18, 300, 0, 0),
(4, 18, 301, 0, 0),
(4, 18, 302, 0, 0),
(4, 18, 303, 0, 0),
(4, 18, 304, 0, 0),
(4, 18, 305, 0, 0),
(4, 19, 306, 0, 0),
(4, 19, 307, 0, 0),
(4, 19, 308, 0, 0),
(4, 19, 309, 0, 0),
(4, 19, 310, 0, 0),
(4, 19, 311, 0, 0),
(4, 19, 312, 0, 0),
(4, 19, 313, 0, 0),
(4, 20, 314, 0, 0),
(4, 20, 315, 0, 0),
(4, 20, 316, 0, 0),
(4, 20, 317, 0, 0),
(4, 20, 318, 0, 0),
(4, 20, 319, 0, 0),
(4, 20, 320, 0, 0),
(4, 20, 321, 0, 0),
(4, 20, 322, 0, 0),
(4, 20, 323, 0, 0),
(4, 20, 324, 0, 0),
(4, 20, 325, 0, 0),
(4, 20, 326, 0, 0),
(4, 20, 327, 0, 0),
(4, 20, 328, 0, 0),
(4, 20, 329, 0, 0),
(4, 20, 330, 0, 0),
(4, 20, 331, 0, 0),
(4, 20, 332, 0, 0),
(4, 20, 333, 0, 0),
(4, 20, 334, 0, 0),
(4, 20, 335, 0, 0),
(4, 20, 336, 0, 0),
(4, 20, 337, 0, 0),
(4, 20, 338, 0, 0),
(4, 20, 339, 0, 0),
(4, 20, 340, 0, 0),
(4, 20, 341, 0, 0),
(4, 20, 342, 0, 0),
(4, 20, 343, 0, 0),
(4, 20, 344, 0, 0),
(4, 20, 345, 0, 0),
(4, 20, 346, 0, 0),
(4, 20, 347, 0, 0),
(4, 20, 348, 0, 0),
(4, 20, 349, 0, 0),
(4, 20, 350, 0, 0),
(4, 21, 351, 0, 0),
(4, 21, 352, 0, 0),
(4, 21, 353, 0, 0),
(4, 21, 354, 0, 0),
(4, 21, 355, 0, 0),
(4, 21, 356, 0, 0),
(4, 21, 357, 0, 0),
(4, 21, 358, 0, 0),
(4, 21, 359, 0, 0),
(4, 21, 360, 0, 0),
(4, 21, 361, 0, 0),
(4, 21, 362, 0, 0),
(4, 21, 363, 0, 0),
(4, 21, 364, 0, 0),
(4, 21, 365, 0, 0),
(4, 21, 366, 0, 0),
(4, 21, 367, 0, 0),
(4, 21, 368, 0, 0),
(4, 21, 369, 0, 0),
(4, 21, 370, 0, 0),
(4, 21, 371, 0, 0),
(4, 21, 372, 0, 0),
(4, 21, 373, 0, 0),
(4, 21, 374, 0, 0),
(4, 21, 375, 0, 0),
(4, 21, 376, 0, 0),
(4, 21, 377, 0, 0),
(4, 21, 378, 0, 0),
(4, 21, 379, 0, 0),
(4, 21, 380, 0, 0),
(4, 21, 381, 0, 0),
(4, 21, 382, 0, 0),
(4, 21, 383, 0, 0),
(4, 21, 384, 0, 0),
(4, 21, 385, 0, 0),
(4, 21, 386, 0, 0),
(4, 21, 387, 0, 0),
(4, 21, 388, 0, 0),
(4, 22, 389, 0, 0),
(4, 22, 390, 0, 0),
(4, 22, 391, 0, 0),
(4, 22, 392, 0, 0),
(4, 22, 393, 0, 0),
(4, 22, 394, 0, 0),
(4, 22, 395, 0, 0),
(4, 22, 396, 0, 0),
(4, 22, 397, 0, 0),
(4, 22, 398, 0, 0),
(4, 22, 399, 0, 0),
(4, 22, 400, 0, 0),
(4, 22, 401, 0, 0),
(4, 22, 402, 0, 0),
(4, 22, 403, 0, 0),
(4, 22, 404, 0, 0),
(4, 22, 405, 0, 0),
(4, 22, 406, 0, 0),
(4, 22, 407, 0, 0),
(4, 22, 408, 0, 0),
(4, 22, 409, 0, 0),
(4, 22, 410, 0, 0),
(4, 22, 411, 0, 0),
(4, 22, 412, 0, 0),
(4, 22, 413, 0, 0),
(4, 22, 414, 0, 0),
(4, 22, 415, 0, 0),
(4, 22, 416, 0, 0),
(4, 22, 417, 0, 0),
(4, 22, 418, 0, 0),
(4, 22, 419, 0, 0),
(4, 22, 420, 0, 0),
(4, 22, 421, 0, 0),
(4, 22, 422, 0, 0),
(4, 22, 423, 0, 0),
(4, 22, 424, 0, 0),
(4, 22, 425, 0, 0),
(4, 22, 426, 0, 0),
(4, 22, 427, 0, 0),
(4, 22, 428, 0, 0),
(4, 22, 429, 0, 0),
(4, 22, 430, 0, 0),
(4, 22, 431, 0, 0),
(4, 22, 432, 0, 0),
(4, 22, 433, 0, 0),
(4, 22, 434, 0, 0),
(4, 22, 435, 0, 0),
(4, 23, 436, 0, 0),
(4, 23, 437, 0, 0),
(4, 23, 438, 0, 0),
(4, 23, 439, 0, 0),
(4, 23, 440, 0, 0),
(4, 23, 441, 0, 0),
(4, 23, 442, 0, 0),
(4, 23, 443, 0, 0),
(4, 23, 444, 0, 0),
(4, 23, 445, 0, 0),
(4, 23, 446, 0, 0),
(4, 23, 447, 0, 0),
(4, 23, 448, 0, 0),
(4, 23, 449, 0, 0),
(4, 23, 450, 0, 0),
(4, 23, 451, 0, 0),
(4, 23, 452, 0, 0),
(4, 23, 453, 0, 0),
(4, 23, 454, 0, 0),
(4, 23, 455, 0, 0),
(4, 23, 456, 0, 0),
(4, 23, 457, 0, 0),
(4, 23, 458, 0, 0),
(4, 23, 459, 0, 0),
(4, 23, 460, 0, 0),
(4, 23, 461, 0, 0),
(4, 23, 462, 0, 0),
(4, 23, 463, 0, 0),
(4, 23, 464, 0, 0),
(4, 23, 465, 0, 0),
(4, 23, 466, 0, 0),
(4, 23, 467, 0, 0),
(4, 23, 468, 0, 0),
(4, 23, 469, 0, 0),
(4, 23, 470, 0, 0),
(4, 23, 471, 0, 0),
(4, 23, 472, 0, 0),
(4, 23, 473, 0, 0),
(4, 23, 474, 0, 0),
(4, 10, 520, 0, 0),
(4, 10, 521, 0, 0),
(4, 10, 522, 0, 0),
(4, 10, 523, 0, 0),
(4, 10, 524, 0, 0),
(4, 10, 525, 0, 0),
(4, 34, 526, 0, 0),
(4, 34, 527, 0, 0),
(4, 34, 528, 0, 0),
(4, 34, 529, 0, 0),
(4, 34, 530, 0, 0),
(4, 34, 531, 0, 0),
(4, 34, 532, 0, 0),
(4, 34, 533, 0, 0),
(4, 34, 534, 0, 0),
(4, 34, 535, 0, 0),
(4, 34, 536, 0, 0),
(4, 34, 537, 0, 0),
(4, 34, 538, 0, 0),
(4, 34, 539, 0, 0),
(4, 34, 540, 0, 0),
(4, 34, 541, 0, 0),
(4, 34, 542, 0, 0),
(4, 29, 543, 0, 0),
(4, 35, 544, 0, 0),
(4, 35, 545, 0, 0),
(4, 35, 546, 0, 0),
(4, 35, 547, 0, 0),
(4, 35, 548, 0, 0),
(4, 35, 549, 0, 0),
(4, 35, 550, 0, 0),
(4, 35, 551, 0, 0),
(4, 35, 552, 0, 0),
(4, 35, 553, 0, 0),
(4, 35, 554, 0, 0),
(4, 35, 555, 0, 0),
(4, 35, 556, 0, 0),
(4, 35, 557, 0, 0),
(4, 35, 558, 0, 0),
(4, 35, 559, 0, 0),
(4, 35, 560, 0, 0),
(4, 35, 561, 0, 0),
(4, 35, 562, 0, 0),
(4, 35, 563, 0, 0),
(4, 35, 564, 0, 0),
(4, 35, 565, 0, 0),
(4, 36, 566, 0, 0),
(4, 36, 567, 0, 0),
(4, 36, 568, 0, 0),
(4, 36, 569, 0, 0),
(4, 36, 570, 0, 0),
(4, 36, 571, 0, 0),
(4, 36, 572, 0, 0),
(4, 36, 573, 0, 0),
(4, 36, 574, 0, 0),
(4, 36, 575, 0, 0),
(4, 36, 576, 0, 0),
(4, 36, 577, 0, 0),
(4, 36, 578, 0, 0),
(4, 36, 579, 0, 0),
(4, 36, 580, 0, 0),
(4, 36, 581, 0, 0),
(4, 36, 582, 0, 0),
(4, 36, 583, 0, 0),
(4, 36, 584, 0, 0),
(4, 36, 585, 0, 0),
(4, 36, 586, 0, 0),
(4, 36, 587, 0, 0),
(4, 38, 588, 0, 0),
(4, 38, 589, 0, 0),
(4, 38, 590, 0, 0),
(4, 38, 591, 0, 0),
(4, 38, 592, 0, 0),
(4, 38, 593, 0, 0),
(4, 38, 594, 0, 0),
(4, 38, 595, 0, 0),
(4, 38, 596, 0, 0),
(4, 38, 597, 0, 0),
(4, 38, 598, 0, 0),
(4, 38, 599, 0, 0),
(4, 38, 600, 0, 0),
(4, 38, 601, 0, 0),
(4, 38, 602, 0, 0),
(4, 38, 603, 0, 0),
(4, 38, 604, 0, 0),
(4, 38, 605, 0, 0),
(4, 38, 606, 0, 0),
(4, 38, 607, 0, 0),
(4, 38, 608, 0, 0),
(4, 42, 609, 0, 0),
(4, 42, 610, 0, 0),
(4, 42, 611, 0, 0),
(4, 42, 612, 0, 0),
(4, 42, 613, 0, 0),
(4, 42, 614, 0, 0),
(4, 42, 615, 0, 0),
(4, 42, 616, 0, 0),
(4, 43, 617, 0, 0),
(4, 43, 618, 0, 0),
(4, 43, 619, 0, 0),
(4, 43, 620, 0, 0),
(4, 43, 621, 0, 0),
(4, 43, 622, 0, 0),
(4, 43, 623, 0, 0),
(4, 43, 624, 0, 0),
(4, 43, 625, 0, 0),
(4, 43, 626, 0, 0),
(4, 43, 627, 0, 0),
(4, 43, 628, 0, 0),
(4, 43, 629, 0, 0),
(4, 44, 630, 0, 0),
(4, 44, 631, 0, 0),
(4, 44, 632, 0, 0),
(4, 44, 633, 0, 0),
(4, 44, 634, 0, 0),
(4, 44, 635, 0, 0),
(4, 44, 636, 0, 0),
(4, 44, 637, 0, 0),
(4, 44, 638, 0, 0),
(4, 44, 639, 0, 0),
(4, 44, 640, 0, 0),
(4, 44, 641, 0, 0),
(4, 44, 642, 0, 0),
(4, 44, 643, 0, 0),
(4, 44, 644, 0, 0),
(4, 44, 645, 0, 0),
(4, 44, 646, 0, 0),
(4, 44, 647, 0, 0),
(4, 45, 648, 0, 0),
(4, 45, 649, 0, 0),
(4, 45, 650, 0, 0),
(4, 45, 651, 0, 0),
(4, 45, 652, 0, 0),
(4, 45, 653, 0, 0),
(4, 45, 654, 0, 0),
(4, 45, 655, 0, 0),
(4, 45, 656, 0, 0),
(4, 45, 657, 0, 0),
(4, 45, 658, 0, 0),
(4, 45, 659, 0, 0),
(4, 45, 660, 0, 0),
(4, 45, 661, 0, 0),
(4, 45, 662, 0, 0),
(4, 45, 663, 0, 0),
(4, 45, 664, 0, 0),
(4, 45, 665, 0, 0),
(4, 45, 666, 0, 0),
(4, 45, 667, 0, 0),
(4, 47, 668, 0, 0),
(4, 47, 669, 0, 0),
(4, 47, 670, 0, 0),
(4, 47, 671, 0, 0),
(4, 47, 672, 0, 0),
(4, 47, 673, 0, 0),
(4, 2, 674, 0, 0),
(4, 29, 675, 0, 0),
(4, 23, 676, 0, 0),
(4, 23, 677, 0, 0),
(4, 23, 678, 0, 0),
(4, 23, 679, 0, 0),
(4, 23, 680, 0, 0),
(4, 23, 681, 0, 0),
(4, 23, 682, 0, 0),
(4, 23, 683, 0, 0),
(4, 23, 684, 0, 0),
(4, 22, 685, 0, 0),
(4, 22, 686, 0, 0),
(4, 22, 687, 0, 0),
(4, 22, 688, 0, 0),
(4, 22, 689, 0, 0),
(4, 22, 690, 0, 0),
(4, 22, 691, 0, 0),
(4, 22, 692, 0, 0),
(4, 22, 693, 0, 0),
(4, 21, 694, 0, 0),
(4, 21, 695, 0, 0),
(4, 21, 696, 0, 0),
(4, 21, 697, 0, 0),
(4, 21, 698, 0, 0),
(4, 21, 699, 0, 0),
(4, 21, 700, 0, 0),
(4, 21, 701, 0, 0),
(4, 21, 702, 0, 0),
(4, 20, 703, 0, 0),
(4, 20, 704, 0, 0),
(4, 20, 705, 0, 0),
(4, 20, 706, 0, 0),
(4, 20, 707, 0, 0),
(4, 20, 708, 0, 0),
(4, 20, 709, 0, 0),
(4, 20, 710, 0, 0),
(4, 20, 711, 0, 0),
(4, 29, 712, 0, 0),
(4, 44, 713, 0, 0),
(4, 42, 714, 0, 0),
(4, 29, 715, 0, 0),
(4, 29, 716, 0, 0),
(4, 29, 717, 0, 0),
(4, 23, 718, 0, 0),
(4, 22, 719, 0, 0),
(4, 21, 720, 0, 0),
(4, 20, 721, 0, 0),
(4, 29, 722, 0, 0),
(4, 6, 723, 0, 0),
(4, 4, 724, 0, 0),
(4, 2, 725, 0, 0),
(4, 29, 726, 0, 0),
(4, 23, 727, 0, 0),
(4, 23, 728, 0, 0),
(4, 21, 729, 0, 0),
(4, 21, 730, 0, 0),
(4, 18, 731, 0, 0),
(4, 7, 732, 0, 0),
(4, 42, 733, 0, 0),
(4, 42, 734, 0, 0),
(4, 23, 735, 0, 0),
(4, 20, 736, 0, 0),
(4, 21, 737, 0, 0),
(4, 22, 738, 0, 0),
(4, 29, 739, 0, 0),
(4, 2, 740, 0, 0),
(4, 13, 741, 0, 0),
(4, 29, 742, 0, 0),
(4, 29, 743, 0, 0),
(4, 29, 744, 0, 0),
(4, 29, 745, 0, 0),
(4, 14, 772, 0, 0),
(4, 36, 773, 0, 0),
(4, 23, 774, 0, 0),
(4, 29, 775, 0, 0),
(4, 23, 776, 0, 0),
(4, 23, 777, 0, 0),
(4, 23, 778, 0, 0),
(4, 20, 779, 0, 0),
(4, 20, 780, 0, 0),
(4, 20, 781, 0, 0),
(4, 21, 782, 0, 0),
(4, 22, 783, 0, 0),
(4, 22, 784, 0, 0),
(4, 22, 785, 0, 0),
(4, 42, 786, 0, 0),
(4, 42, 787, 0, 0),
(4, 42, 788, 0, 0),
(4, 2, 789, 0, 0),
(4, 4, 790, 0, 0),
(4, 6, 791, 0, 0),
(4, 7, 792, 0, 0),
(4, 8, 793, 0, 0),
(4, 9, 794, 0, 0),
(4, 10, 795, 0, 0),
(4, 13, 796, 0, 0),
(4, 14, 797, 0, 0),
(4, 15, 798, 0, 0),
(4, 16, 799, 0, 0),
(4, 18, 800, 0, 0),
(4, 19, 801, 0, 0),
(4, 20, 802, 0, 0),
(4, 21, 803, 0, 0),
(4, 22, 804, 0, 0),
(4, 23, 805, 0, 0),
(4, 26, 806, 0, 0),
(4, 10, 807, 0, 0),
(4, 2, 808, 0, 0),
(4, 4, 809, 0, 0),
(4, 6, 810, 0, 0),
(4, 7, 811, 0, 0),
(4, 8, 812, 0, 0),
(4, 9, 813, 0, 0),
(4, 10, 814, 0, 0),
(4, 13, 815, 0, 0),
(4, 14, 816, 0, 0),
(4, 15, 817, 0, 0),
(4, 16, 818, 0, 0),
(4, 18, 819, 0, 0),
(4, 19, 820, 0, 0),
(4, 20, 821, 0, 0),
(4, 21, 822, 0, 0),
(4, 22, 823, 0, 0),
(4, 23, 824, 0, 0),
(4, 26, 825, 0, 0),
(4, 2, 826, 0, 0),
(4, 4, 827, 0, 0),
(4, 6, 828, 0, 0),
(4, 7, 829, 0, 0),
(4, 8, 830, 0, 0),
(4, 9, 831, 0, 0),
(4, 10, 832, 0, 0),
(4, 13, 833, 0, 0),
(4, 14, 834, 0, 0),
(4, 15, 835, 0, 0),
(4, 16, 836, 0, 0),
(4, 18, 837, 0, 0),
(4, 19, 838, 0, 0),
(4, 20, 839, 0, 0),
(4, 21, 840, 0, 0),
(4, 22, 841, 0, 0),
(4, 23, 842, 0, 0),
(4, 26, 843, 0, 0),
(4, 20, 844, 0, 0),
(4, 21, 845, 0, 0),
(4, 22, 846, 0, 0),
(4, 23, 847, 0, 0),
(4, 45, 848, 0, 0),
(4, 45, 849, 0, 0),
(4, 29, 850, 0, 0),
(4, 22, 851, 0, 0),
(4, 29, 852, 0, 0),
(4, 16, 853, 0, 0),
(4, 16, 854, 0, 0),
(4, 16, 855, 0, 0),
(4, 16, 856, 0, 0),
(4, 9, 857, 0, 0),
(4, 9, 858, 0, 0),
(4, 16, 859, 0, 0),
(4, 50, 860, 0, 0),
(4, 50, 861, 0, 0),
(4, 50, 862, 0, 0),
(4, 50, 863, 0, 0),
(4, 50, 864, 0, 0),
(4, 50, 865, 0, 0),
(4, 6, 892, 0, 0),
(4, 6, 893, 0, 0),
(4, 6, 894, 0, 0),
(4, 6, 895, 0, 0),
(4, 6, 896, 0, 0),
(4, 6, 897, 0, 0),
(4, 6, 898, 0, 0),
(4, 6, 899, 0, 0),
(4, 6, 900, 0, 0),
(4, 6, 901, 0, 0),
(4, 6, 902, 0, 0),
(4, 6, 903, 0, 0),
(4, 6, 904, 0, 0),
(4, 6, 905, 0, 0),
(4, 6, 906, 0, 0),
(4, 6, 907, 0, 0),
(4, 6, 908, 0, 0),
(4, 6, 909, 0, 0),
(4, 6, 910, 0, 0),
(4, 6, 911, 0, 0),
(4, 6, 912, 0, 0),
(4, 6, 913, 0, 0),
(4, 6, 914, 0, 0),
(4, 6, 915, 0, 0),
(4, 6, 916, 0, 0),
(4, 6, 917, 0, 0),
(4, 6, 918, 0, 0),
(4, 6, 919, 0, 0),
(4, 6, 920, 0, 0),
(4, 6, 921, 0, 0),
(4, 6, 922, 0, 0),
(4, 6, 923, 0, 0),
(4, 6, 924, 0, 0),
(4, 6, 925, 0, 0),
(4, 6, 926, 0, 0),
(4, 23, 927, 0, 0),
(4, 52, 928, 0, 0),
(4, 52, 929, 0, 0),
(4, 52, 930, 0, 0),
(4, 52, 931, 0, 0),
(4, 52, 932, 0, 0),
(4, 52, 933, 0, 0),
(4, 52, 934, 0, 0),
(4, 52, 935, 0, 0),
(4, 52, 936, 0, 0),
(4, 52, 937, 0, 0),
(4, 52, 938, 0, 0),
(4, 52, 939, 0, 0),
(4, 52, 940, 0, 0),
(4, 52, 941, 0, 0),
(4, 52, 942, 0, 0),
(4, 52, 943, 0, 0),
(4, 52, 944, 0, 0),
(4, 52, 945, 0, 0),
(4, 52, 946, 0, 0),
(4, 52, 947, 0, 0),
(4, 52, 948, 0, 0),
(4, 52, 949, 0, 0),
(4, 52, 950, 0, 0),
(4, 52, 951, 0, 0),
(4, 52, 952, 0, 0),
(4, 21, 953, 0, 0),
(4, 53, 954, 0, 0),
(4, 53, 955, 0, 0),
(4, 53, 956, 0, 0),
(4, 53, 957, 0, 0),
(4, 53, 958, 0, 0),
(4, 53, 959, 0, 0),
(4, 53, 960, 0, 0),
(4, 53, 961, 0, 0),
(4, 53, 962, 0, 0),
(4, 53, 963, 0, 0),
(4, 53, 964, 0, 0),
(4, 53, 965, 0, 0),
(4, 53, 966, 0, 0),
(4, 53, 967, 0, 0),
(4, 53, 968, 0, 0),
(4, 53, 969, 0, 0),
(4, 54, 970, 0, 0),
(4, 54, 971, 0, 0),
(4, 54, 972, 0, 0),
(4, 54, 973, 0, 0),
(4, 54, 974, 0, 0),
(4, 54, 975, 0, 0),
(4, 54, 976, 0, 0),
(4, 54, 977, 0, 0),
(4, 54, 978, 0, 0),
(4, 54, 979, 0, 0),
(4, 54, 980, 0, 0),
(4, 54, 981, 0, 0),
(4, 54, 982, 0, 0),
(4, 54, 983, 0, 0),
(4, 54, 984, 0, 0),
(4, 54, 985, 0, 0),
(4, 55, 986, 0, 0),
(4, 55, 987, 0, 0),
(4, 55, 988, 0, 0),
(4, 55, 989, 0, 0),
(4, 55, 990, 0, 0),
(4, 55, 991, 0, 0),
(4, 55, 992, 0, 0),
(4, 55, 993, 0, 0),
(4, 55, 994, 0, 0),
(4, 55, 995, 0, 0),
(4, 55, 996, 0, 0),
(4, 55, 997, 0, 0),
(4, 55, 998, 0, 0),
(4, 55, 999, 0, 0),
(4, 55, 1000, 0, 0),
(4, 55, 1001, 0, 0),
(4, 55, 1002, 0, 0),
(4, 55, 1003, 0, 0),
(4, 55, 1004, 0, 0),
(4, 55, 1005, 0, 0),
(4, 55, 1006, 0, 0),
(4, 55, 1007, 0, 0),
(4, 7, 1008, 0, 0),
(4, 7, 1009, 0, 0),
(4, 7, 1010, 0, 0),
(4, 7, 1011, 0, 0),
(4, 7, 1012, 0, 0),
(4, 7, 1013, 0, 0),
(4, 7, 1014, 0, 0),
(4, 7, 1015, 0, 0),
(4, 7, 1016, 0, 0),
(4, 7, 1017, 0, 0),
(4, 7, 1018, 0, 0),
(4, 7, 1019, 0, 0),
(4, 7, 1020, 0, 0),
(4, 7, 1021, 0, 0),
(4, 7, 1022, 0, 0),
(4, 7, 1023, 0, 0),
(4, 7, 1024, 0, 0),
(4, 7, 1025, 0, 0),
(4, 7, 1026, 0, 0),
(4, 7, 1027, 0, 0),
(4, 7, 1028, 0, 0),
(4, 7, 1029, 0, 0),
(4, 7, 1030, 0, 0),
(4, 7, 1031, 0, 0),
(4, 7, 1032, 0, 0),
(4, 7, 1033, 0, 0),
(4, 56, 1034, 0, 0),
(4, 56, 1035, 0, 0),
(4, 56, 1036, 0, 0),
(4, 56, 1037, 0, 0),
(4, 56, 1038, 0, 0),
(4, 56, 1039, 0, 0),
(4, 56, 1040, 0, 0),
(4, 56, 1041, 0, 0),
(4, 56, 1042, 0, 0),
(4, 56, 1043, 0, 0),
(4, 56, 1044, 0, 0),
(4, 56, 1045, 0, 0),
(4, 56, 1046, 0, 0),
(4, 57, 1047, 0, 0),
(4, 57, 1048, 0, 0),
(4, 57, 1049, 0, 0),
(4, 57, 1050, 0, 0),
(4, 57, 1051, 0, 0),
(4, 57, 1052, 0, 0),
(4, 57, 1053, 0, 0),
(4, 57, 1054, 0, 0),
(4, 57, 1055, 0, 0),
(4, 57, 1056, 0, 0),
(4, 57, 1057, 0, 0),
(4, 57, 1058, 0, 0),
(4, 57, 1059, 0, 0),
(4, 57, 1060, 0, 0),
(4, 57, 1061, 0, 0),
(4, 57, 1062, 0, 0),
(4, 57, 1063, 0, 0),
(4, 58, 1064, 0, 0),
(4, 58, 1065, 0, 0),
(4, 58, 1066, 0, 0),
(4, 58, 1067, 0, 0),
(4, 58, 1068, 0, 0),
(4, 58, 1069, 0, 0),
(4, 58, 1070, 0, 0),
(4, 58, 1071, 0, 0),
(4, 58, 1072, 0, 0),
(4, 58, 1073, 0, 0),
(4, 58, 1074, 0, 0),
(4, 58, 1075, 0, 0),
(4, 58, 1076, 0, 0),
(4, 58, 1077, 0, 0),
(4, 58, 1078, 0, 0),
(4, 58, 1079, 0, 0),
(4, 58, 1080, 0, 0),
(4, 58, 1081, 0, 0),
(4, 58, 1082, 0, 0),
(4, 58, 1083, 0, 0),
(4, 58, 1084, 0, 0),
(4, 58, 1085, 0, 0),
(4, 59, 1086, 0, 0),
(4, 59, 1087, 0, 0),
(4, 59, 1088, 0, 0),
(4, 59, 1089, 0, 0),
(4, 59, 1090, 0, 0),
(4, 59, 1091, 0, 0),
(4, 59, 1092, 0, 0),
(4, 59, 1093, 0, 0),
(4, 59, 1094, 0, 0),
(4, 59, 1095, 0, 0),
(4, 59, 1096, 0, 0),
(4, 59, 1097, 0, 0),
(4, 59, 1098, 0, 0),
(4, 59, 1099, 0, 0),
(4, 59, 1100, 0, 0),
(4, 59, 1101, 0, 0),
(4, 59, 1102, 0, 0),
(4, 59, 1103, 0, 0),
(4, 59, 1104, 0, 0),
(4, 59, 1105, 0, 0),
(4, 59, 1106, 0, 0),
(4, 59, 1107, 0, 0),
(4, 59, 1108, 0, 0),
(4, 59, 1109, 0, 0),
(4, 60, 1110, 0, 0),
(4, 60, 1111, 0, 0),
(4, 60, 1112, 0, 0),
(4, 60, 1113, 0, 0),
(4, 60, 1114, 0, 0),
(4, 60, 1115, 0, 0),
(4, 60, 1116, 0, 0),
(4, 60, 1117, 0, 0),
(4, 60, 1118, 0, 0),
(4, 60, 1119, 0, 0),
(4, 60, 1120, 0, 0),
(4, 60, 1121, 0, 0),
(4, 60, 1122, 0, 0),
(4, 60, 1123, 0, 0),
(4, 60, 1124, 0, 0),
(4, 60, 1125, 0, 0),
(4, 60, 1126, 0, 0),
(4, 60, 1127, 0, 0),
(4, 61, 1128, 0, 0),
(4, 61, 1129, 0, 0),
(4, 61, 1130, 0, 0),
(4, 61, 1131, 0, 0),
(4, 61, 1132, 0, 0),
(4, 61, 1133, 0, 0),
(4, 61, 1134, 0, 0),
(4, 61, 1135, 0, 0),
(4, 61, 1136, 0, 0),
(4, 61, 1137, 0, 0),
(4, 61, 1138, 0, 0),
(4, 61, 1139, 0, 0),
(4, 61, 1140, 0, 0),
(4, 61, 1141, 0, 0),
(4, 61, 1142, 0, 0),
(4, 61, 1143, 0, 0),
(4, 61, 1144, 0, 0),
(4, 61, 1145, 0, 0),
(4, 61, 1146, 0, 0),
(4, 62, 1147, 0, 0),
(4, 62, 1148, 0, 0),
(4, 62, 1149, 0, 0),
(4, 62, 1150, 0, 0),
(4, 62, 1151, 0, 0),
(4, 62, 1152, 0, 0),
(4, 62, 1153, 0, 0),
(4, 62, 1154, 0, 0),
(4, 62, 1155, 0, 0),
(4, 62, 1156, 0, 0),
(4, 62, 1157, 0, 0),
(4, 62, 1158, 0, 0),
(4, 62, 1159, 0, 0),
(4, 62, 1160, 0, 0),
(4, 62, 1161, 0, 0),
(4, 62, 1162, 0, 0),
(4, 62, 1163, 0, 0),
(4, 62, 1164, 0, 0),
(4, 62, 1165, 0, 0),
(4, 62, 1166, 0, 0),
(4, 63, 1167, 0, 0),
(4, 63, 1168, 0, 0),
(4, 63, 1169, 0, 0),
(4, 63, 1170, 0, 0),
(4, 63, 1171, 0, 0),
(4, 63, 1172, 0, 0),
(4, 63, 1173, 0, 0),
(4, 63, 1174, 0, 0),
(4, 63, 1175, 0, 0),
(4, 63, 1176, 0, 0),
(4, 63, 1177, 0, 0),
(4, 63, 1178, 0, 0),
(4, 63, 1179, 0, 0),
(4, 21, 1189, 0, 0),
(4, 21, 1190, 0, 0),
(4, 21, 1191, 0, 0),
(4, 21, 1192, 0, 0),
(4, 21, 1193, 0, 0),
(4, 21, 1194, 0, 0),
(4, 21, 1195, 0, 0),
(4, 21, 1196, 0, 0),
(4, 21, 1197, 0, 0),
(4, 21, 1198, 0, 0),
(4, 21, 1199, 0, 0),
(4, 21, 1200, 0, 0),
(4, 21, 1201, 0, 0),
(4, 21, 1202, 0, 0),
(4, 21, 1203, 0, 0),
(4, 21, 1204, 0, 0),
(4, 21, 1205, 0, 0),
(4, 21, 1206, 0, 0),
(4, 21, 1207, 0, 0),
(4, 20, 1208, 0, 0),
(4, 20, 1209, 0, 0),
(4, 20, 1210, 0, 0),
(4, 20, 1211, 0, 0),
(4, 20, 1212, 0, 0),
(4, 4, 1213, 0, 0),
(4, 4, 1214, 0, 0),
(4, 4, 1215, 0, 0),
(4, 4, 1216, 0, 0),
(4, 4, 1217, 0, 0),
(4, 4, 1218, 0, 0),
(4, 4, 1219, 0, 0),
(4, 65, 1220, 0, 0),
(4, 65, 1221, 0, 0),
(4, 65, 1222, 0, 0),
(4, 65, 1223, 0, 0),
(4, 65, 1224, 0, 0),
(4, 65, 1225, 0, 0),
(4, 65, 1226, 0, 0),
(4, 65, 1227, 0, 0),
(4, 65, 1228, 0, 0),
(4, 65, 1229, 0, 0),
(4, 65, 1230, 0, 0),
(4, 65, 1231, 0, 0),
(4, 65, 1232, 0, 0),
(4, 65, 1233, 0, 0),
(4, 65, 1234, 0, 0),
(4, 2, 1235, 0, 0),
(4, 2, 1236, 0, 0),
(4, 2, 1237, 0, 0),
(4, 2, 1238, 0, 0),
(4, 2, 1239, 0, 0),
(4, 2, 1240, 0, 0),
(4, 2, 1241, 0, 0),
(4, 2, 1242, 0, 0),
(4, 2, 1243, 0, 0),
(5, 6, 1, 0, 0),
(5, 6, 2, 0, 0),
(5, 6, 3, 0, 0),
(5, 6, 4, 0, 0),
(5, 6, 5, 0, 0),
(5, 6, 6, 0, 0),
(5, 6, 7, 0, 0),
(5, 6, 8, 0, 0),
(5, 6, 9, 0, 0),
(5, 6, 10, 0, 0),
(5, 6, 11, 0, 0),
(5, 6, 12, 0, 0),
(5, 6, 13, 0, 0),
(5, 6, 14, 0, 0),
(5, 6, 15, 0, 0),
(5, 6, 16, 0, 0),
(5, 6, 17, 0, 0),
(5, 6, 18, 0, 0),
(5, 6, 19, 0, 0),
(5, 6, 20, 0, 0),
(5, 6, 21, 0, 0),
(5, 6, 22, 0, 0),
(5, 6, 23, 0, 0),
(5, 6, 24, 0, 0),
(5, 6, 25, 0, 0),
(5, 6, 26, 0, 0),
(5, 6, 27, 0, 0),
(5, 6, 28, 0, 0),
(5, 6, 29, 0, 0),
(5, 6, 30, 0, 0),
(5, 6, 31, 0, 0),
(5, 6, 32, 0, 0),
(5, 6, 33, 0, 0),
(5, 6, 34, 0, 0),
(5, 6, 35, 0, 0),
(5, 6, 36, 0, 0),
(5, 7, 37, 0, 0),
(5, 7, 38, 0, 0),
(5, 7, 39, 0, 0),
(5, 7, 40, 0, 0),
(5, 7, 41, 0, 0),
(5, 7, 42, 0, 0),
(5, 7, 43, 0, 0),
(5, 7, 44, 0, 0),
(5, 7, 45, 0, 0),
(5, 7, 46, 0, 0),
(5, 7, 47, 0, 0),
(5, 7, 48, 0, 0),
(5, 7, 49, 0, 0),
(5, 7, 50, 0, 0),
(5, 7, 51, 0, 0),
(5, 7, 52, 0, 0),
(5, 7, 53, 0, 0),
(5, 7, 54, 0, 0),
(5, 7, 55, 0, 0),
(5, 7, 56, 0, 0),
(5, 7, 57, 0, 0),
(5, 7, 58, 0, 0),
(5, 7, 59, 0, 0),
(5, 7, 60, 0, 0),
(5, 7, 61, 0, 0),
(5, 7, 62, 0, 0),
(5, 7, 63, 0, 0),
(5, 7, 64, 0, 0),
(5, 7, 65, 0, 0),
(5, 4, 66, 0, 0),
(5, 4, 67, 0, 0),
(5, 4, 68, 0, 0),
(5, 4, 69, 0, 0),
(5, 4, 70, 0, 0),
(5, 4, 71, 0, 0),
(5, 4, 72, 0, 0),
(5, 4, 73, 0, 0),
(5, 4, 74, 0, 0),
(5, 4, 75, 0, 0),
(5, 4, 76, 0, 0),
(5, 4, 77, 0, 0),
(5, 4, 78, 0, 0),
(5, 4, 79, 0, 0),
(5, 4, 80, 0, 0),
(5, 4, 81, 0, 0),
(5, 4, 82, 0, 0),
(5, 4, 83, 0, 0),
(5, 4, 84, 0, 0),
(5, 4, 85, 0, 0),
(5, 4, 86, 0, 0),
(5, 4, 87, 0, 0),
(5, 4, 88, 0, 0),
(5, 4, 89, 0, 0),
(5, 4, 90, 0, 0),
(5, 4, 91, 0, 0),
(5, 4, 92, 0, 0),
(5, 4, 93, 0, 0),
(5, 4, 94, 0, 0),
(5, 4, 95, 0, 0),
(5, 4, 96, 0, 0),
(5, 4, 97, 0, 0),
(5, 4, 98, 0, 0),
(5, 4, 99, 0, 0),
(5, 4, 100, 0, 0),
(5, 4, 101, 0, 0),
(5, 4, 102, 0, 0),
(5, 4, 103, 0, 0),
(5, 4, 104, 0, 0),
(5, 4, 105, 0, 0),
(5, 4, 106, 0, 0),
(5, 4, 107, 0, 0),
(5, 4, 108, 0, 0),
(5, 4, 109, 0, 0),
(5, 2, 110, 0, 0),
(5, 2, 111, 0, 0),
(5, 2, 112, 0, 0),
(5, 2, 113, 0, 0),
(5, 2, 114, 0, 0),
(5, 2, 115, 0, 0),
(5, 2, 116, 0, 0),
(5, 2, 117, 0, 0),
(5, 2, 118, 0, 0),
(5, 2, 119, 0, 0),
(5, 2, 120, 0, 0),
(5, 2, 121, 0, 0),
(5, 2, 122, 0, 0),
(5, 2, 123, 0, 0),
(5, 2, 124, 0, 0),
(5, 2, 125, 0, 0),
(5, 26, 126, 0, 0),
(5, 26, 127, 0, 0),
(5, 26, 128, 0, 0),
(5, 26, 129, 0, 0),
(5, 26, 130, 0, 0),
(5, 26, 131, 0, 0),
(5, 26, 132, 0, 0),
(5, 26, 133, 0, 0),
(5, 26, 134, 0, 0),
(5, 26, 135, 0, 0),
(5, 26, 136, 0, 0),
(5, 26, 137, 0, 0),
(5, 26, 138, 0, 0),
(5, 26, 139, 0, 0),
(5, 26, 140, 0, 0),
(5, 26, 141, 0, 0),
(5, 26, 142, 0, 0),
(5, 26, 143, 0, 0),
(5, 26, 144, 0, 0),
(5, 26, 145, 0, 0),
(5, 26, 146, 0, 0),
(5, 26, 147, 0, 0),
(5, 26, 148, 0, 0),
(5, 26, 149, 0, 0),
(5, 26, 150, 0, 0),
(5, 4, 151, 0, 0),
(5, 6, 152, 0, 0),
(5, 7, 153, 0, 0),
(5, 26, 154, 0, 0),
(5, 13, 155, 0, 0),
(5, 13, 156, 0, 0),
(5, 13, 157, 0, 0),
(5, 13, 158, 0, 0),
(5, 13, 159, 0, 0),
(5, 13, 160, 0, 0),
(5, 13, 161, 0, 0),
(5, 13, 162, 0, 0),
(5, 13, 163, 0, 0),
(5, 13, 164, 0, 0),
(5, 13, 165, 0, 0),
(5, 13, 166, 0, 0),
(5, 13, 167, 0, 0),
(5, 13, 168, 0, 0),
(5, 13, 169, 0, 0),
(5, 13, 170, 0, 0),
(5, 13, 171, 0, 0),
(5, 13, 172, 0, 0),
(5, 13, 173, 0, 0),
(5, 14, 174, 0, 0),
(5, 14, 175, 0, 0),
(5, 14, 176, 0, 0),
(5, 14, 177, 0, 0),
(5, 14, 178, 0, 0),
(5, 14, 179, 0, 0),
(5, 14, 180, 0, 0),
(5, 14, 181, 0, 0),
(5, 14, 182, 0, 0),
(5, 14, 183, 0, 0),
(5, 14, 184, 0, 0),
(5, 14, 185, 0, 0),
(5, 14, 186, 0, 0),
(5, 14, 187, 0, 0),
(5, 14, 188, 0, 0),
(5, 14, 189, 0, 0),
(5, 14, 190, 0, 0),
(5, 14, 191, 0, 0),
(5, 14, 192, 0, 0),
(5, 14, 193, 0, 0),
(5, 14, 194, 0, 0),
(5, 14, 195, 0, 0),
(5, 14, 196, 0, 0),
(5, 14, 197, 0, 0),
(5, 14, 198, 0, 0),
(5, 14, 199, 0, 0),
(5, 14, 200, 0, 0),
(5, 14, 201, 0, 0),
(5, 14, 202, 0, 0),
(5, 14, 203, 0, 0),
(5, 14, 204, 0, 0),
(5, 8, 205, 0, 0),
(5, 8, 206, 0, 0),
(5, 8, 207, 0, 0),
(5, 8, 208, 0, 0),
(5, 8, 209, 0, 0),
(5, 8, 210, 0, 0),
(5, 8, 211, 0, 0),
(5, 8, 212, 0, 0),
(5, 8, 213, 0, 0),
(5, 8, 214, 0, 0),
(5, 8, 215, 0, 0),
(5, 8, 216, 0, 0),
(5, 8, 217, 0, 0),
(5, 8, 218, 0, 0),
(5, 8, 219, 0, 0),
(5, 10, 220, 0, 0),
(5, 10, 221, 0, 0),
(5, 10, 222, 0, 0),
(5, 10, 223, 0, 0),
(5, 10, 224, 0, 0),
(5, 10, 225, 0, 0),
(5, 10, 226, 0, 0),
(5, 10, 227, 0, 0),
(5, 10, 228, 0, 0),
(5, 10, 229, 0, 0),
(5, 10, 230, 0, 0),
(5, 10, 231, 0, 0),
(5, 9, 232, 0, 0),
(5, 9, 233, 0, 0),
(5, 9, 234, 0, 0),
(5, 9, 235, 0, 0),
(5, 9, 236, 0, 0),
(5, 9, 237, 0, 0),
(5, 9, 238, 0, 0),
(5, 9, 239, 0, 0),
(5, 9, 240, 0, 0),
(5, 9, 241, 0, 0),
(5, 9, 242, 0, 0),
(5, 9, 243, 0, 0),
(5, 9, 244, 0, 0),
(5, 9, 245, 0, 0),
(5, 9, 246, 0, 0),
(5, 9, 247, 0, 0),
(5, 9, 248, 0, 0),
(5, 9, 249, 0, 0),
(5, 9, 250, 0, 0),
(5, 9, 251, 0, 0),
(5, 9, 252, 0, 0),
(5, 9, 253, 0, 0),
(5, 9, 254, 0, 0),
(5, 9, 255, 0, 0),
(5, 16, 256, 0, 0),
(5, 16, 257, 0, 0),
(5, 16, 258, 0, 0),
(5, 16, 259, 0, 0),
(5, 16, 260, 0, 0),
(5, 16, 261, 0, 0),
(5, 16, 262, 0, 0),
(5, 16, 263, 0, 0),
(5, 16, 264, 0, 0),
(5, 16, 265, 0, 0),
(5, 16, 266, 0, 0),
(5, 16, 267, 0, 0),
(5, 16, 268, 0, 0),
(5, 16, 269, 0, 0),
(5, 16, 270, 0, 0),
(5, 16, 271, 0, 0),
(5, 16, 272, 0, 0),
(5, 16, 273, 0, 0),
(5, 16, 274, 0, 0),
(5, 16, 275, 0, 0),
(5, 16, 276, 0, 0),
(5, 16, 277, 0, 0),
(5, 16, 278, 0, 0),
(5, 15, 279, 0, 0),
(5, 15, 280, 0, 0),
(5, 15, 281, 0, 0),
(5, 15, 282, 0, 0),
(5, 15, 283, 0, 0),
(5, 15, 284, 0, 0),
(5, 15, 285, 0, 0),
(5, 15, 286, 0, 0),
(5, 15, 287, 0, 0),
(5, 15, 288, 0, 0),
(5, 18, 289, 0, 0),
(5, 18, 290, 0, 0),
(5, 18, 291, 0, 0),
(5, 18, 292, 0, 0),
(5, 18, 293, 0, 0),
(5, 18, 294, 0, 0),
(5, 18, 295, 0, 0),
(5, 18, 296, 0, 0),
(5, 18, 297, 0, 0),
(5, 18, 298, 0, 0),
(5, 18, 299, 0, 0),
(5, 18, 300, 0, 0),
(5, 18, 301, 0, 0),
(5, 18, 302, 0, 0),
(5, 18, 303, 0, 0),
(5, 18, 304, 0, 0),
(5, 18, 305, 0, 0),
(5, 19, 306, 0, 0),
(5, 19, 307, 0, 0),
(5, 19, 308, 0, 0),
(5, 19, 309, 0, 0),
(5, 19, 310, 0, 0),
(5, 19, 311, 0, 0),
(5, 19, 312, 0, 0),
(5, 19, 313, 0, 0),
(5, 20, 314, 0, 0),
(5, 20, 315, 0, 0),
(5, 20, 316, 0, 0),
(5, 20, 317, 0, 0),
(5, 20, 318, 0, 0),
(5, 20, 319, 0, 0),
(5, 20, 320, 0, 0),
(5, 20, 321, 0, 0),
(5, 20, 322, 0, 0),
(5, 20, 323, 0, 0),
(5, 20, 324, 0, 0),
(5, 20, 325, 0, 0),
(5, 20, 326, 0, 0),
(5, 20, 327, 0, 0),
(5, 20, 328, 0, 0),
(5, 20, 329, 0, 0),
(5, 20, 330, 0, 0),
(5, 20, 331, 0, 0),
(5, 20, 332, 0, 0),
(5, 20, 333, 0, 0),
(5, 20, 334, 0, 0),
(5, 20, 335, 0, 0),
(5, 20, 336, 0, 0),
(5, 20, 337, 0, 0),
(5, 20, 338, 0, 0),
(5, 20, 339, 0, 0),
(5, 20, 340, 0, 0),
(5, 20, 341, 0, 0),
(5, 20, 342, 0, 0),
(5, 20, 343, 0, 0),
(5, 20, 344, 0, 0),
(5, 20, 345, 0, 0),
(5, 20, 346, 0, 0),
(5, 20, 347, 0, 0),
(5, 20, 348, 0, 0),
(5, 20, 349, 0, 0),
(5, 20, 350, 0, 0),
(5, 21, 351, 0, 0),
(5, 21, 352, 0, 0),
(5, 21, 353, 0, 0),
(5, 21, 354, 0, 0),
(5, 21, 355, 0, 0),
(5, 21, 356, 0, 0),
(5, 21, 357, 0, 0),
(5, 21, 358, 0, 0),
(5, 21, 359, 0, 0),
(5, 21, 360, 0, 0),
(5, 21, 361, 0, 0),
(5, 21, 362, 0, 0),
(5, 21, 363, 0, 0),
(5, 21, 364, 0, 0),
(5, 21, 365, 0, 0),
(5, 21, 366, 0, 0),
(5, 21, 367, 0, 0),
(5, 21, 368, 0, 0),
(5, 21, 369, 0, 0),
(5, 21, 370, 0, 0),
(5, 21, 371, 0, 0),
(5, 21, 372, 0, 0),
(5, 21, 373, 0, 0),
(5, 21, 374, 0, 0),
(5, 21, 375, 0, 0),
(5, 21, 376, 0, 0),
(5, 21, 377, 0, 0),
(5, 21, 378, 0, 0),
(5, 21, 379, 0, 0),
(5, 21, 380, 0, 0),
(5, 21, 381, 0, 0),
(5, 21, 382, 0, 0),
(5, 21, 383, 0, 0),
(5, 21, 384, 0, 0),
(5, 21, 385, 0, 0),
(5, 21, 386, 0, 0),
(5, 21, 387, 0, 0),
(5, 21, 388, 0, 0),
(5, 22, 389, 0, 0),
(5, 22, 390, 0, 0),
(5, 22, 391, 0, 0),
(5, 22, 392, 0, 0),
(5, 22, 393, 0, 0),
(5, 22, 394, 0, 0),
(5, 22, 395, 0, 0),
(5, 22, 396, 0, 0),
(5, 22, 397, 0, 0),
(5, 22, 398, 0, 0),
(5, 22, 399, 0, 0),
(5, 22, 400, 0, 0),
(5, 22, 401, 0, 0),
(5, 22, 402, 0, 0),
(5, 22, 403, 0, 0),
(5, 22, 404, 0, 0),
(5, 22, 405, 0, 0),
(5, 22, 406, 0, 0),
(5, 22, 407, 0, 0),
(5, 22, 408, 0, 0),
(5, 22, 409, 0, 0),
(5, 22, 410, 0, 0),
(5, 22, 411, 0, 0),
(5, 22, 412, 0, 0),
(5, 22, 413, 0, 0),
(5, 22, 414, 0, 0),
(5, 22, 415, 0, 0),
(5, 22, 416, 0, 0),
(5, 22, 417, 0, 0),
(5, 22, 418, 0, 0),
(5, 22, 419, 0, 0),
(5, 22, 420, 0, 0),
(5, 22, 421, 0, 0),
(5, 22, 422, 0, 0),
(5, 22, 423, 0, 0),
(5, 22, 424, 0, 0),
(5, 22, 425, 0, 0),
(5, 22, 426, 0, 0),
(5, 22, 427, 0, 0),
(5, 22, 428, 0, 0),
(5, 22, 429, 0, 0),
(5, 22, 430, 0, 0),
(5, 22, 431, 0, 0),
(5, 22, 432, 0, 0),
(5, 22, 433, 0, 0),
(5, 22, 434, 0, 0),
(5, 22, 435, 0, 0),
(5, 23, 436, 0, 0),
(5, 23, 437, 0, 0),
(5, 23, 438, 0, 0),
(5, 23, 439, 0, 0),
(5, 23, 440, 0, 0),
(5, 23, 441, 0, 0),
(5, 23, 442, 0, 0),
(5, 23, 443, 0, 0),
(5, 23, 444, 0, 0),
(5, 23, 445, 0, 0),
(5, 23, 446, 0, 0),
(5, 23, 447, 0, 0),
(5, 23, 448, 0, 0),
(5, 23, 449, 0, 0),
(5, 23, 450, 0, 0),
(5, 23, 451, 0, 0),
(5, 23, 452, 0, 0),
(5, 23, 453, 0, 0),
(5, 23, 454, 0, 0),
(5, 23, 455, 0, 0),
(5, 23, 456, 0, 0),
(5, 23, 457, 0, 0),
(5, 23, 458, 0, 0),
(5, 23, 459, 0, 0),
(5, 23, 460, 0, 0),
(5, 23, 461, 0, 0),
(5, 23, 462, 0, 0),
(5, 23, 463, 0, 0),
(5, 23, 464, 0, 0),
(5, 23, 465, 0, 0),
(5, 23, 466, 0, 0),
(5, 23, 467, 0, 0),
(5, 23, 468, 0, 0),
(5, 23, 469, 0, 0),
(5, 23, 470, 0, 0),
(5, 23, 471, 0, 0),
(5, 23, 472, 0, 0),
(5, 23, 473, 0, 0),
(5, 23, 474, 0, 0),
(5, 10, 520, 0, 0),
(5, 10, 521, 0, 0),
(5, 10, 522, 0, 0),
(5, 10, 523, 0, 0),
(5, 10, 524, 0, 0),
(5, 10, 525, 0, 0),
(5, 34, 526, 0, 0),
(5, 34, 527, 0, 0),
(5, 34, 528, 0, 0),
(5, 34, 529, 0, 0),
(5, 34, 530, 0, 0),
(5, 34, 531, 0, 0),
(5, 34, 532, 0, 0),
(5, 34, 533, 0, 0),
(5, 34, 534, 0, 0),
(5, 34, 535, 0, 0),
(5, 34, 536, 0, 0),
(5, 34, 537, 0, 0),
(5, 34, 538, 0, 0),
(5, 34, 539, 0, 0),
(5, 34, 540, 0, 0),
(5, 34, 541, 0, 0),
(5, 34, 542, 0, 0),
(5, 29, 543, 0, 0),
(5, 35, 544, 0, 0),
(5, 35, 545, 0, 0),
(5, 35, 546, 0, 0),
(5, 35, 547, 0, 0),
(5, 35, 548, 0, 0),
(5, 35, 549, 0, 0),
(5, 35, 550, 0, 0),
(5, 35, 551, 0, 0),
(5, 35, 552, 0, 0),
(5, 35, 553, 0, 0),
(5, 35, 554, 0, 0),
(5, 35, 555, 0, 0),
(5, 35, 556, 0, 0),
(5, 35, 557, 0, 0),
(5, 35, 558, 0, 0),
(5, 35, 559, 0, 0),
(5, 35, 560, 0, 0),
(5, 35, 561, 0, 0),
(5, 35, 562, 0, 0),
(5, 35, 563, 0, 0),
(5, 35, 564, 0, 0),
(5, 35, 565, 0, 0),
(5, 36, 566, 0, 0),
(5, 36, 567, 0, 0),
(5, 36, 568, 0, 0),
(5, 36, 569, 0, 0),
(5, 36, 570, 0, 0),
(5, 36, 571, 0, 0),
(5, 36, 572, 0, 0),
(5, 36, 573, 0, 0),
(5, 36, 574, 0, 0),
(5, 36, 575, 0, 0),
(5, 36, 576, 0, 0),
(5, 36, 577, 0, 0),
(5, 36, 578, 0, 0),
(5, 36, 579, 0, 0),
(5, 36, 580, 0, 0),
(5, 36, 581, 0, 0),
(5, 36, 582, 0, 0),
(5, 36, 583, 0, 0),
(5, 36, 584, 0, 0),
(5, 36, 585, 0, 0),
(5, 36, 586, 0, 0),
(5, 36, 587, 0, 0),
(5, 38, 588, 0, 0),
(5, 38, 589, 0, 0),
(5, 38, 590, 0, 0),
(5, 38, 591, 0, 0),
(5, 38, 592, 0, 0),
(5, 38, 593, 0, 0),
(5, 38, 594, 0, 0),
(5, 38, 595, 0, 0),
(5, 38, 596, 0, 0),
(5, 38, 597, 0, 0),
(5, 38, 598, 0, 0),
(5, 38, 599, 0, 0),
(5, 38, 600, 0, 0),
(5, 38, 601, 0, 0),
(5, 38, 602, 0, 0),
(5, 38, 603, 0, 0),
(5, 38, 604, 0, 0),
(5, 38, 605, 0, 0),
(5, 38, 606, 0, 0),
(5, 38, 607, 0, 0),
(5, 38, 608, 0, 0),
(5, 42, 609, 0, 0),
(5, 42, 610, 0, 0),
(5, 42, 611, 0, 0),
(5, 42, 612, 0, 0),
(5, 42, 613, 0, 0),
(5, 42, 614, 0, 0),
(5, 42, 615, 0, 0),
(5, 42, 616, 0, 0),
(5, 43, 617, 0, 0),
(5, 43, 618, 0, 0),
(5, 43, 619, 0, 0),
(5, 43, 620, 0, 0),
(5, 43, 621, 0, 0),
(5, 43, 622, 0, 0),
(5, 43, 623, 0, 0),
(5, 43, 624, 0, 0),
(5, 43, 625, 0, 0),
(5, 43, 626, 0, 0),
(5, 43, 627, 0, 0),
(5, 43, 628, 0, 0),
(5, 43, 629, 0, 0),
(5, 44, 630, 0, 0),
(5, 44, 631, 0, 0),
(5, 44, 632, 0, 0),
(5, 44, 633, 0, 0),
(5, 44, 634, 0, 0),
(5, 44, 635, 0, 0),
(5, 44, 636, 0, 0),
(5, 44, 637, 0, 0),
(5, 44, 638, 0, 0),
(5, 44, 639, 0, 0),
(5, 44, 640, 0, 0),
(5, 44, 641, 0, 0),
(5, 44, 642, 0, 0),
(5, 44, 643, 0, 0),
(5, 44, 644, 0, 0),
(5, 44, 645, 0, 0),
(5, 44, 646, 0, 0),
(5, 44, 647, 0, 0),
(5, 45, 648, 0, 0),
(5, 45, 649, 0, 0),
(5, 45, 650, 0, 0),
(5, 45, 651, 0, 0),
(5, 45, 652, 0, 0),
(5, 45, 653, 0, 0),
(5, 45, 654, 0, 0),
(5, 45, 655, 0, 0),
(5, 45, 656, 0, 0),
(5, 45, 657, 0, 0),
(5, 45, 658, 0, 0),
(5, 45, 659, 0, 0),
(5, 45, 660, 0, 0),
(5, 45, 661, 0, 0),
(5, 45, 662, 0, 0),
(5, 45, 663, 0, 0),
(5, 45, 664, 0, 0),
(5, 45, 665, 0, 0),
(5, 45, 666, 0, 0),
(5, 45, 667, 0, 0),
(5, 47, 668, 0, 0),
(5, 47, 669, 0, 0),
(5, 47, 670, 0, 0),
(5, 47, 671, 0, 0),
(5, 47, 672, 0, 0),
(5, 47, 673, 0, 0),
(5, 2, 674, 0, 0),
(5, 29, 675, 0, 0),
(5, 23, 676, 0, 0),
(5, 23, 677, 0, 0),
(5, 23, 678, 0, 0),
(5, 23, 679, 0, 0),
(5, 23, 680, 0, 0),
(5, 23, 681, 0, 0),
(5, 23, 682, 0, 0),
(5, 23, 683, 0, 0),
(5, 23, 684, 0, 0),
(5, 22, 685, 0, 0),
(5, 22, 686, 0, 0),
(5, 22, 687, 0, 0),
(5, 22, 688, 0, 0),
(5, 22, 689, 0, 0),
(5, 22, 690, 0, 0),
(5, 22, 691, 0, 0),
(5, 22, 692, 0, 0),
(5, 22, 693, 0, 0),
(5, 21, 694, 0, 0),
(5, 21, 695, 0, 0),
(5, 21, 696, 0, 0),
(5, 21, 697, 0, 0),
(5, 21, 698, 0, 0),
(5, 21, 699, 0, 0),
(5, 21, 700, 0, 0),
(5, 21, 701, 0, 0),
(5, 21, 702, 0, 0),
(5, 20, 703, 0, 0),
(5, 20, 704, 0, 0),
(5, 20, 705, 0, 0),
(5, 20, 706, 0, 0),
(5, 20, 707, 0, 0),
(5, 20, 708, 0, 0),
(5, 20, 709, 0, 0),
(5, 20, 710, 0, 0),
(5, 20, 711, 0, 0),
(5, 29, 712, 0, 0),
(5, 44, 713, 0, 0),
(5, 42, 714, 0, 0),
(5, 29, 715, 0, 0),
(5, 29, 716, 0, 0),
(5, 29, 717, 0, 0),
(5, 23, 718, 0, 0),
(5, 22, 719, 0, 0),
(5, 21, 720, 0, 0),
(5, 20, 721, 0, 0),
(5, 29, 722, 0, 0),
(5, 6, 723, 0, 0),
(5, 4, 724, 0, 0),
(5, 2, 725, 0, 0),
(5, 29, 726, 0, 0),
(5, 23, 727, 0, 0),
(5, 23, 728, 0, 0),
(5, 21, 729, 0, 0),
(5, 21, 730, 0, 0),
(5, 18, 731, 0, 0),
(5, 7, 732, 0, 0),
(5, 42, 733, 0, 0),
(5, 42, 734, 0, 0),
(5, 23, 735, 0, 0),
(5, 20, 736, 0, 0),
(5, 21, 737, 0, 0),
(5, 22, 738, 0, 0),
(5, 29, 739, 0, 0),
(5, 2, 740, 0, 0),
(5, 13, 741, 0, 0),
(5, 29, 742, 0, 0),
(5, 29, 743, 0, 0),
(5, 29, 744, 0, 0),
(5, 29, 745, 0, 0),
(5, 14, 772, 0, 0),
(5, 36, 773, 0, 0),
(5, 23, 774, 0, 0),
(5, 29, 775, 0, 0),
(5, 23, 776, 0, 0),
(5, 23, 777, 0, 0),
(5, 23, 778, 0, 0),
(5, 20, 779, 0, 0),
(5, 20, 780, 0, 0),
(5, 20, 781, 0, 0),
(5, 21, 782, 0, 0),
(5, 22, 783, 0, 0),
(5, 22, 784, 0, 0),
(5, 22, 785, 0, 0),
(5, 42, 786, 0, 0),
(5, 42, 787, 0, 0),
(5, 42, 788, 0, 0),
(5, 2, 789, 0, 0),
(5, 4, 790, 0, 0),
(5, 6, 791, 0, 0),
(5, 7, 792, 0, 0),
(5, 8, 793, 0, 0),
(5, 9, 794, 0, 0),
(5, 10, 795, 0, 0),
(5, 13, 796, 0, 0),
(5, 14, 797, 0, 0),
(5, 15, 798, 0, 0),
(5, 16, 799, 0, 0),
(5, 18, 800, 0, 0),
(5, 19, 801, 0, 0),
(5, 20, 802, 0, 0),
(5, 21, 803, 0, 0),
(5, 22, 804, 0, 0),
(5, 23, 805, 0, 0),
(5, 26, 806, 0, 0),
(5, 10, 807, 0, 0),
(5, 2, 808, 0, 0),
(5, 4, 809, 0, 0),
(5, 6, 810, 0, 0),
(5, 7, 811, 0, 0),
(5, 8, 812, 0, 0),
(5, 9, 813, 0, 0),
(5, 10, 814, 0, 0),
(5, 13, 815, 0, 0),
(5, 14, 816, 0, 0),
(5, 15, 817, 0, 0),
(5, 16, 818, 0, 0),
(5, 18, 819, 0, 0),
(5, 19, 820, 0, 0),
(5, 20, 821, 0, 0),
(5, 21, 822, 0, 0),
(5, 22, 823, 0, 0),
(5, 23, 824, 0, 0),
(5, 26, 825, 0, 0),
(5, 2, 826, 0, 0),
(5, 4, 827, 0, 0),
(5, 6, 828, 0, 0),
(5, 7, 829, 0, 0),
(5, 8, 830, 0, 0),
(5, 9, 831, 0, 0),
(5, 10, 832, 0, 0),
(5, 13, 833, 0, 0),
(5, 14, 834, 0, 0),
(5, 15, 835, 0, 0),
(5, 16, 836, 0, 0),
(5, 18, 837, 0, 0),
(5, 19, 838, 0, 0),
(5, 20, 839, 0, 0),
(5, 21, 840, 0, 0),
(5, 22, 841, 0, 0),
(5, 23, 842, 0, 0),
(5, 26, 843, 0, 0),
(5, 20, 844, 0, 0),
(5, 21, 845, 0, 0),
(5, 22, 846, 0, 0),
(5, 23, 847, 0, 0),
(5, 45, 848, 0, 0),
(5, 45, 849, 0, 0),
(5, 29, 850, 0, 0),
(5, 22, 851, 0, 0),
(5, 29, 852, 0, 0),
(5, 16, 853, 0, 0),
(5, 16, 854, 0, 0),
(5, 16, 855, 0, 0),
(5, 16, 856, 0, 0),
(5, 9, 857, 0, 0),
(5, 9, 858, 0, 0),
(5, 16, 859, 0, 0),
(5, 50, 860, 0, 0),
(5, 50, 861, 0, 0),
(5, 50, 862, 0, 0),
(5, 50, 863, 0, 0),
(5, 50, 864, 0, 0),
(5, 50, 865, 0, 0),
(5, 6, 892, 0, 0),
(5, 6, 893, 0, 0),
(5, 6, 894, 0, 0),
(5, 6, 895, 0, 0),
(5, 6, 896, 0, 0),
(5, 6, 897, 0, 0),
(5, 6, 898, 0, 0),
(5, 6, 899, 0, 0),
(5, 6, 900, 0, 0),
(5, 6, 901, 0, 0),
(5, 6, 902, 0, 0),
(5, 6, 903, 0, 0),
(5, 6, 904, 0, 0),
(5, 6, 905, 0, 0),
(5, 6, 906, 0, 0),
(5, 6, 907, 0, 0),
(5, 6, 908, 0, 0),
(5, 6, 909, 0, 0),
(5, 6, 910, 0, 0),
(5, 6, 911, 0, 0),
(5, 6, 912, 0, 0),
(5, 6, 913, 0, 0),
(5, 6, 914, 0, 0),
(5, 6, 915, 0, 0),
(5, 6, 916, 0, 0),
(5, 6, 917, 0, 0),
(5, 6, 918, 0, 0),
(5, 6, 919, 0, 0),
(5, 6, 920, 0, 0),
(5, 6, 921, 0, 0),
(5, 6, 922, 0, 0),
(5, 6, 923, 0, 0),
(5, 6, 924, 0, 0),
(5, 6, 925, 0, 0),
(5, 6, 926, 0, 0),
(5, 23, 927, 0, 0),
(5, 52, 928, 0, 0),
(5, 52, 929, 0, 0),
(5, 52, 930, 0, 0),
(5, 52, 931, 0, 0),
(5, 52, 932, 0, 0),
(5, 52, 933, 0, 0),
(5, 52, 934, 0, 0),
(5, 52, 935, 0, 0),
(5, 52, 936, 0, 0),
(5, 52, 937, 0, 0),
(5, 52, 938, 0, 0),
(5, 52, 939, 0, 0),
(5, 52, 940, 0, 0),
(5, 52, 941, 0, 0),
(5, 52, 942, 0, 0),
(5, 52, 943, 0, 0),
(5, 52, 944, 0, 0),
(5, 52, 945, 0, 0),
(5, 52, 946, 0, 0),
(5, 52, 947, 0, 0),
(5, 52, 948, 0, 0),
(5, 52, 949, 0, 0),
(5, 52, 950, 0, 0),
(5, 52, 951, 0, 0),
(5, 52, 952, 0, 0),
(5, 21, 953, 0, 0),
(5, 53, 954, 0, 0),
(5, 53, 955, 0, 0),
(5, 53, 956, 0, 0),
(5, 53, 957, 0, 0),
(5, 53, 958, 0, 0),
(5, 53, 959, 0, 0),
(5, 53, 960, 0, 0),
(5, 53, 961, 0, 0),
(5, 53, 962, 0, 0),
(5, 53, 963, 0, 0),
(5, 53, 964, 0, 0),
(5, 53, 965, 0, 0),
(5, 53, 966, 0, 0),
(5, 53, 967, 0, 0),
(5, 53, 968, 0, 0),
(5, 53, 969, 0, 0),
(5, 54, 970, 0, 0),
(5, 54, 971, 0, 0),
(5, 54, 972, 0, 0),
(5, 54, 973, 0, 0),
(5, 54, 974, 0, 0),
(5, 54, 975, 0, 0),
(5, 54, 976, 0, 0),
(5, 54, 977, 0, 0),
(5, 54, 978, 0, 0),
(5, 54, 979, 0, 0),
(5, 54, 980, 0, 0),
(5, 54, 981, 0, 0),
(5, 54, 982, 0, 0),
(5, 54, 983, 0, 0),
(5, 54, 984, 0, 0),
(5, 54, 985, 0, 0),
(5, 55, 986, 0, 0),
(5, 55, 987, 0, 0),
(5, 55, 988, 0, 0),
(5, 55, 989, 0, 0),
(5, 55, 990, 0, 0),
(5, 55, 991, 0, 0),
(5, 55, 992, 0, 0),
(5, 55, 993, 0, 0),
(5, 55, 994, 0, 0),
(5, 55, 995, 0, 0),
(5, 55, 996, 0, 0),
(5, 55, 997, 0, 0),
(5, 55, 998, 0, 0),
(5, 55, 999, 0, 0),
(5, 55, 1000, 0, 0),
(5, 55, 1001, 0, 0),
(5, 55, 1002, 0, 0),
(5, 55, 1003, 0, 0),
(5, 55, 1004, 0, 0),
(5, 55, 1005, 0, 0),
(5, 55, 1006, 0, 0),
(5, 55, 1007, 0, 0),
(5, 7, 1008, 0, 0),
(5, 7, 1009, 0, 0),
(5, 7, 1010, 0, 0),
(5, 7, 1011, 0, 0),
(5, 7, 1012, 0, 0),
(5, 7, 1013, 0, 0),
(5, 7, 1014, 0, 0),
(5, 7, 1015, 0, 0),
(5, 7, 1016, 0, 0),
(5, 7, 1017, 0, 0),
(5, 7, 1018, 0, 0),
(5, 7, 1019, 0, 0),
(5, 7, 1020, 0, 0),
(5, 7, 1021, 0, 0),
(5, 7, 1022, 0, 0),
(5, 7, 1023, 0, 0),
(5, 7, 1024, 0, 0),
(5, 7, 1025, 0, 0),
(5, 7, 1026, 0, 0),
(5, 7, 1027, 0, 0),
(5, 7, 1028, 0, 0),
(5, 7, 1029, 0, 0),
(5, 7, 1030, 0, 0),
(5, 7, 1031, 0, 0),
(5, 7, 1032, 0, 0),
(5, 7, 1033, 0, 0),
(5, 56, 1034, 0, 0),
(5, 56, 1035, 0, 0),
(5, 56, 1036, 0, 0),
(5, 56, 1037, 0, 0),
(5, 56, 1038, 0, 0),
(5, 56, 1039, 0, 0),
(5, 56, 1040, 0, 0),
(5, 56, 1041, 0, 0),
(5, 56, 1042, 0, 0),
(5, 56, 1043, 0, 0),
(5, 56, 1044, 0, 0),
(5, 56, 1045, 0, 0),
(5, 56, 1046, 0, 0),
(5, 57, 1047, 0, 0),
(5, 57, 1048, 0, 0),
(5, 57, 1049, 0, 0),
(5, 57, 1050, 0, 0),
(5, 57, 1051, 0, 0),
(5, 57, 1052, 0, 0),
(5, 57, 1053, 0, 0),
(5, 57, 1054, 0, 0),
(5, 57, 1055, 0, 0),
(5, 57, 1056, 0, 0),
(5, 57, 1057, 0, 0),
(5, 57, 1058, 0, 0),
(5, 57, 1059, 0, 0),
(5, 57, 1060, 0, 0),
(5, 57, 1061, 0, 0),
(5, 57, 1062, 0, 0),
(5, 57, 1063, 0, 0),
(5, 58, 1064, 0, 0),
(5, 58, 1065, 0, 0),
(5, 58, 1066, 0, 0),
(5, 58, 1067, 0, 0),
(5, 58, 1068, 0, 0),
(5, 58, 1069, 0, 0),
(5, 58, 1070, 0, 0),
(5, 58, 1071, 0, 0),
(5, 58, 1072, 0, 0),
(5, 58, 1073, 0, 0),
(5, 58, 1074, 0, 0),
(5, 58, 1075, 0, 0),
(5, 58, 1076, 0, 0),
(5, 58, 1077, 0, 0),
(5, 58, 1078, 0, 0),
(5, 58, 1079, 0, 0),
(5, 58, 1080, 0, 0),
(5, 58, 1081, 0, 0),
(5, 58, 1082, 0, 0),
(5, 58, 1083, 0, 0),
(5, 58, 1084, 0, 0),
(5, 58, 1085, 0, 0),
(5, 59, 1086, 0, 0),
(5, 59, 1087, 0, 0),
(5, 59, 1088, 0, 0),
(5, 59, 1089, 0, 0),
(5, 59, 1090, 0, 0),
(5, 59, 1091, 0, 0),
(5, 59, 1092, 0, 0),
(5, 59, 1093, 0, 0),
(5, 59, 1094, 0, 0),
(5, 59, 1095, 0, 0),
(5, 59, 1096, 0, 0),
(5, 59, 1097, 0, 0),
(5, 59, 1098, 0, 0),
(5, 59, 1099, 0, 0),
(5, 59, 1100, 0, 0),
(5, 59, 1101, 0, 0),
(5, 59, 1102, 0, 0),
(5, 59, 1103, 0, 0),
(5, 59, 1104, 0, 0),
(5, 59, 1105, 0, 0),
(5, 59, 1106, 0, 0),
(5, 59, 1107, 0, 0),
(5, 59, 1108, 0, 0),
(5, 59, 1109, 0, 0),
(5, 60, 1110, 0, 0),
(5, 60, 1111, 0, 0),
(5, 60, 1112, 0, 0),
(5, 60, 1113, 0, 0),
(5, 60, 1114, 0, 0),
(5, 60, 1115, 0, 0),
(5, 60, 1116, 0, 0),
(5, 60, 1117, 0, 0),
(5, 60, 1118, 0, 0),
(5, 60, 1119, 0, 0),
(5, 60, 1120, 0, 0),
(5, 60, 1121, 0, 0),
(5, 60, 1122, 0, 0),
(5, 60, 1123, 0, 0),
(5, 60, 1124, 0, 0),
(5, 60, 1125, 0, 0),
(5, 60, 1126, 0, 0),
(5, 60, 1127, 0, 0),
(5, 61, 1128, 0, 0),
(5, 61, 1129, 0, 0),
(5, 61, 1130, 0, 0),
(5, 61, 1131, 0, 0),
(5, 61, 1132, 0, 0),
(5, 61, 1133, 0, 0),
(5, 61, 1134, 0, 0),
(5, 61, 1135, 0, 0),
(5, 61, 1136, 0, 0);
INSERT IGNORE INTO `vtiger_profile2field` (`profileid`, `tabid`, `fieldid`, `visible`, `readonly`) VALUES
(5, 61, 1137, 0, 0),
(5, 61, 1138, 0, 0),
(5, 61, 1139, 0, 0),
(5, 61, 1140, 0, 0),
(5, 61, 1141, 0, 0),
(5, 61, 1142, 0, 0),
(5, 61, 1143, 0, 0),
(5, 61, 1144, 0, 0),
(5, 61, 1145, 0, 0),
(5, 61, 1146, 0, 0),
(5, 62, 1147, 0, 0),
(5, 62, 1148, 0, 0),
(5, 62, 1149, 0, 0),
(5, 62, 1150, 0, 0),
(5, 62, 1151, 0, 0),
(5, 62, 1152, 0, 0),
(5, 62, 1153, 0, 0),
(5, 62, 1154, 0, 0),
(5, 62, 1155, 0, 0),
(5, 62, 1156, 0, 0),
(5, 62, 1157, 0, 0),
(5, 62, 1158, 0, 0),
(5, 62, 1159, 0, 0),
(5, 62, 1160, 0, 0),
(5, 62, 1161, 0, 0),
(5, 62, 1162, 0, 0),
(5, 62, 1163, 0, 0),
(5, 62, 1164, 0, 0),
(5, 62, 1165, 0, 0),
(5, 62, 1166, 0, 0),
(5, 63, 1167, 0, 0),
(5, 63, 1168, 0, 0),
(5, 63, 1169, 0, 0),
(5, 63, 1170, 0, 0),
(5, 63, 1171, 0, 0),
(5, 63, 1172, 0, 0),
(5, 63, 1173, 0, 0),
(5, 63, 1174, 0, 0),
(5, 63, 1175, 0, 0),
(5, 63, 1176, 0, 0),
(5, 63, 1177, 0, 0),
(5, 63, 1178, 0, 0),
(5, 63, 1179, 0, 0),
(5, 21, 1189, 0, 0),
(5, 21, 1190, 0, 0),
(5, 21, 1191, 0, 0),
(5, 21, 1192, 0, 0),
(5, 21, 1193, 0, 0),
(5, 21, 1194, 0, 0),
(5, 21, 1195, 0, 0),
(5, 21, 1196, 0, 0),
(5, 21, 1197, 0, 0),
(5, 21, 1198, 0, 0),
(5, 21, 1199, 0, 0),
(5, 21, 1200, 0, 0),
(5, 21, 1201, 0, 0),
(5, 21, 1202, 0, 0),
(5, 21, 1203, 0, 0),
(5, 21, 1204, 0, 0),
(5, 21, 1205, 0, 0),
(5, 21, 1206, 0, 0),
(5, 21, 1207, 0, 0),
(5, 20, 1208, 0, 0),
(5, 20, 1209, 0, 0),
(5, 20, 1210, 0, 0),
(5, 20, 1211, 0, 0),
(5, 20, 1212, 0, 0),
(5, 4, 1213, 0, 0),
(5, 4, 1214, 0, 0),
(5, 4, 1215, 0, 0),
(5, 4, 1216, 0, 0),
(5, 4, 1217, 0, 0),
(5, 4, 1218, 0, 0),
(5, 4, 1219, 0, 0),
(5, 65, 1220, 0, 0),
(5, 65, 1221, 0, 0),
(5, 65, 1222, 0, 0),
(5, 65, 1223, 0, 0),
(5, 65, 1224, 0, 0),
(5, 65, 1225, 0, 0),
(5, 65, 1226, 0, 0),
(5, 65, 1227, 0, 0),
(5, 65, 1228, 0, 0),
(5, 65, 1229, 0, 0),
(5, 65, 1230, 0, 0),
(5, 65, 1231, 0, 0),
(5, 65, 1232, 0, 0),
(5, 65, 1233, 0, 0),
(5, 65, 1234, 0, 0),
(5, 2, 1235, 0, 0),
(5, 2, 1236, 0, 0),
(5, 2, 1237, 0, 0),
(5, 2, 1238, 0, 0),
(5, 2, 1239, 0, 0),
(5, 2, 1240, 0, 0),
(5, 2, 1241, 0, 0),
(5, 2, 1242, 0, 0),
(5, 2, 1243, 0, 0),
(6, 6, 1, 0, 0),
(6, 6, 2, 0, 0),
(6, 6, 3, 0, 0),
(6, 6, 4, 0, 0),
(6, 6, 5, 0, 0),
(6, 6, 6, 0, 0),
(6, 6, 7, 0, 0),
(6, 6, 8, 0, 0),
(6, 6, 9, 0, 0),
(6, 6, 10, 0, 0),
(6, 6, 11, 0, 0),
(6, 6, 12, 0, 0),
(6, 6, 13, 0, 0),
(6, 6, 14, 0, 0),
(6, 6, 15, 0, 0),
(6, 6, 16, 0, 0),
(6, 6, 17, 0, 0),
(6, 6, 18, 0, 0),
(6, 6, 19, 0, 0),
(6, 6, 20, 0, 0),
(6, 6, 21, 0, 0),
(6, 6, 22, 0, 0),
(6, 6, 23, 0, 0),
(6, 6, 24, 0, 0),
(6, 6, 25, 0, 0),
(6, 6, 26, 0, 0),
(6, 6, 27, 0, 0),
(6, 6, 28, 0, 0),
(6, 6, 29, 0, 0),
(6, 6, 30, 0, 0),
(6, 6, 31, 0, 0),
(6, 6, 32, 0, 0),
(6, 6, 33, 0, 0),
(6, 6, 34, 0, 0),
(6, 6, 35, 0, 0),
(6, 6, 36, 0, 0),
(6, 7, 37, 0, 0),
(6, 7, 38, 0, 0),
(6, 7, 39, 0, 0),
(6, 7, 40, 0, 0),
(6, 7, 41, 0, 0),
(6, 7, 42, 0, 0),
(6, 7, 43, 0, 0),
(6, 7, 44, 0, 0),
(6, 7, 45, 0, 0),
(6, 7, 46, 0, 0),
(6, 7, 47, 0, 0),
(6, 7, 48, 0, 0),
(6, 7, 49, 0, 0),
(6, 7, 50, 0, 0),
(6, 7, 51, 0, 0),
(6, 7, 52, 0, 0),
(6, 7, 53, 0, 0),
(6, 7, 54, 0, 0),
(6, 7, 55, 0, 0),
(6, 7, 56, 0, 0),
(6, 7, 57, 0, 0),
(6, 7, 58, 0, 0),
(6, 7, 59, 0, 0),
(6, 7, 60, 0, 0),
(6, 7, 61, 0, 0),
(6, 7, 62, 0, 0),
(6, 7, 63, 0, 0),
(6, 7, 64, 0, 0),
(6, 7, 65, 0, 0),
(6, 4, 66, 0, 0),
(6, 4, 67, 0, 0),
(6, 4, 68, 0, 0),
(6, 4, 69, 0, 0),
(6, 4, 70, 0, 0),
(6, 4, 71, 0, 0),
(6, 4, 72, 0, 0),
(6, 4, 73, 0, 0),
(6, 4, 74, 0, 0),
(6, 4, 75, 0, 0),
(6, 4, 76, 0, 0),
(6, 4, 77, 0, 0),
(6, 4, 78, 0, 0),
(6, 4, 79, 0, 0),
(6, 4, 80, 0, 0),
(6, 4, 81, 0, 0),
(6, 4, 82, 0, 0),
(6, 4, 83, 0, 0),
(6, 4, 84, 0, 0),
(6, 4, 85, 0, 0),
(6, 4, 86, 0, 0),
(6, 4, 87, 0, 0),
(6, 4, 88, 0, 0),
(6, 4, 89, 0, 0),
(6, 4, 90, 0, 0),
(6, 4, 91, 0, 0),
(6, 4, 92, 0, 0),
(6, 4, 93, 0, 0),
(6, 4, 94, 0, 0),
(6, 4, 95, 0, 0),
(6, 4, 96, 0, 0),
(6, 4, 97, 0, 0),
(6, 4, 98, 0, 0),
(6, 4, 99, 0, 0),
(6, 4, 100, 0, 0),
(6, 4, 101, 0, 0),
(6, 4, 102, 0, 0),
(6, 4, 103, 0, 0),
(6, 4, 104, 0, 0),
(6, 4, 105, 0, 0),
(6, 4, 106, 0, 0),
(6, 4, 107, 0, 0),
(6, 4, 108, 0, 0),
(6, 4, 109, 0, 0),
(6, 2, 110, 0, 0),
(6, 2, 111, 0, 0),
(6, 2, 112, 0, 0),
(6, 2, 113, 0, 0),
(6, 2, 114, 0, 0),
(6, 2, 115, 0, 0),
(6, 2, 116, 0, 0),
(6, 2, 117, 0, 0),
(6, 2, 118, 0, 0),
(6, 2, 119, 0, 0),
(6, 2, 120, 0, 0),
(6, 2, 121, 0, 0),
(6, 2, 122, 0, 0),
(6, 2, 123, 0, 0),
(6, 2, 124, 0, 0),
(6, 2, 125, 0, 0),
(6, 26, 126, 0, 0),
(6, 26, 127, 0, 0),
(6, 26, 128, 0, 0),
(6, 26, 129, 0, 0),
(6, 26, 130, 0, 0),
(6, 26, 131, 0, 0),
(6, 26, 132, 0, 0),
(6, 26, 133, 0, 0),
(6, 26, 134, 0, 0),
(6, 26, 135, 0, 0),
(6, 26, 136, 0, 0),
(6, 26, 137, 0, 0),
(6, 26, 138, 0, 0),
(6, 26, 139, 0, 0),
(6, 26, 140, 0, 0),
(6, 26, 141, 0, 0),
(6, 26, 142, 0, 0),
(6, 26, 143, 0, 0),
(6, 26, 144, 0, 0),
(6, 26, 145, 0, 0),
(6, 26, 146, 0, 0),
(6, 26, 147, 0, 0),
(6, 26, 148, 0, 0),
(6, 26, 149, 0, 0),
(6, 26, 150, 0, 0),
(6, 4, 151, 0, 0),
(6, 6, 152, 0, 0),
(6, 7, 153, 0, 0),
(6, 26, 154, 0, 0),
(6, 13, 155, 0, 0),
(6, 13, 156, 0, 0),
(6, 13, 157, 0, 0),
(6, 13, 158, 0, 0),
(6, 13, 159, 0, 0),
(6, 13, 160, 0, 0),
(6, 13, 161, 0, 0),
(6, 13, 162, 0, 0),
(6, 13, 163, 0, 0),
(6, 13, 164, 0, 0),
(6, 13, 165, 0, 0),
(6, 13, 166, 0, 0),
(6, 13, 167, 0, 0),
(6, 13, 168, 0, 0),
(6, 13, 169, 0, 0),
(6, 13, 170, 0, 0),
(6, 13, 171, 0, 0),
(6, 13, 172, 0, 0),
(6, 13, 173, 0, 0),
(6, 14, 174, 0, 0),
(6, 14, 175, 0, 0),
(6, 14, 176, 0, 0),
(6, 14, 177, 0, 0),
(6, 14, 178, 0, 0),
(6, 14, 179, 0, 0),
(6, 14, 180, 0, 0),
(6, 14, 181, 0, 0),
(6, 14, 182, 0, 0),
(6, 14, 183, 0, 0),
(6, 14, 184, 0, 0),
(6, 14, 185, 0, 0),
(6, 14, 186, 0, 0),
(6, 14, 187, 0, 0),
(6, 14, 188, 0, 0),
(6, 14, 189, 0, 0),
(6, 14, 190, 0, 0),
(6, 14, 191, 0, 0),
(6, 14, 192, 0, 0),
(6, 14, 193, 0, 0),
(6, 14, 194, 0, 0),
(6, 14, 195, 0, 0),
(6, 14, 196, 0, 0),
(6, 14, 197, 0, 0),
(6, 14, 198, 0, 0),
(6, 14, 199, 0, 0),
(6, 14, 200, 0, 0),
(6, 14, 201, 0, 0),
(6, 14, 202, 0, 0),
(6, 14, 203, 0, 0),
(6, 14, 204, 0, 0),
(6, 8, 205, 0, 0),
(6, 8, 206, 0, 0),
(6, 8, 207, 0, 0),
(6, 8, 208, 0, 0),
(6, 8, 209, 0, 0),
(6, 8, 210, 0, 0),
(6, 8, 211, 0, 0),
(6, 8, 212, 0, 0),
(6, 8, 213, 0, 0),
(6, 8, 214, 0, 0),
(6, 8, 215, 0, 0),
(6, 8, 216, 0, 0),
(6, 8, 217, 0, 0),
(6, 8, 218, 0, 0),
(6, 8, 219, 0, 0),
(6, 10, 220, 0, 0),
(6, 10, 221, 0, 0),
(6, 10, 222, 0, 0),
(6, 10, 223, 0, 0),
(6, 10, 224, 0, 0),
(6, 10, 225, 0, 0),
(6, 10, 226, 0, 0),
(6, 10, 227, 0, 0),
(6, 10, 228, 0, 0),
(6, 10, 229, 0, 0),
(6, 10, 230, 0, 0),
(6, 10, 231, 0, 0),
(6, 9, 232, 0, 0),
(6, 9, 233, 0, 0),
(6, 9, 234, 0, 0),
(6, 9, 235, 0, 0),
(6, 9, 236, 0, 0),
(6, 9, 237, 0, 0),
(6, 9, 238, 0, 0),
(6, 9, 239, 0, 0),
(6, 9, 240, 0, 0),
(6, 9, 241, 0, 0),
(6, 9, 242, 0, 0),
(6, 9, 243, 0, 0),
(6, 9, 244, 0, 0),
(6, 9, 245, 0, 0),
(6, 9, 246, 0, 0),
(6, 9, 247, 0, 0),
(6, 9, 248, 0, 0),
(6, 9, 249, 0, 0),
(6, 9, 250, 0, 0),
(6, 9, 251, 0, 0),
(6, 9, 252, 0, 0),
(6, 9, 253, 0, 0),
(6, 9, 254, 0, 0),
(6, 9, 255, 0, 0),
(6, 16, 256, 0, 0),
(6, 16, 257, 0, 0),
(6, 16, 258, 0, 0),
(6, 16, 259, 0, 0),
(6, 16, 260, 0, 0),
(6, 16, 261, 0, 0),
(6, 16, 262, 0, 0),
(6, 16, 263, 0, 0),
(6, 16, 264, 0, 0),
(6, 16, 265, 0, 0),
(6, 16, 266, 0, 0),
(6, 16, 267, 0, 0),
(6, 16, 268, 0, 0),
(6, 16, 269, 0, 0),
(6, 16, 270, 0, 0),
(6, 16, 271, 0, 0),
(6, 16, 272, 0, 0),
(6, 16, 273, 0, 0),
(6, 16, 274, 0, 0),
(6, 16, 275, 0, 0),
(6, 16, 276, 0, 0),
(6, 16, 277, 0, 0),
(6, 16, 278, 0, 0),
(6, 15, 279, 0, 0),
(6, 15, 280, 0, 0),
(6, 15, 281, 0, 0),
(6, 15, 282, 0, 0),
(6, 15, 283, 0, 0),
(6, 15, 284, 0, 0),
(6, 15, 285, 0, 0),
(6, 15, 286, 0, 0),
(6, 15, 287, 0, 0),
(6, 15, 288, 0, 0),
(6, 18, 289, 0, 0),
(6, 18, 290, 0, 0),
(6, 18, 291, 0, 0),
(6, 18, 292, 0, 0),
(6, 18, 293, 0, 0),
(6, 18, 294, 0, 0),
(6, 18, 295, 0, 0),
(6, 18, 296, 0, 0),
(6, 18, 297, 0, 0),
(6, 18, 298, 0, 0),
(6, 18, 299, 0, 0),
(6, 18, 300, 0, 0),
(6, 18, 301, 0, 0),
(6, 18, 302, 0, 0),
(6, 18, 303, 0, 0),
(6, 18, 304, 0, 0),
(6, 18, 305, 0, 0),
(6, 19, 306, 0, 0),
(6, 19, 307, 0, 0),
(6, 19, 308, 0, 0),
(6, 19, 309, 0, 0),
(6, 19, 310, 0, 0),
(6, 19, 311, 0, 0),
(6, 19, 312, 0, 0),
(6, 19, 313, 0, 0),
(6, 20, 314, 0, 0),
(6, 20, 315, 0, 0),
(6, 20, 316, 0, 0),
(6, 20, 317, 0, 0),
(6, 20, 318, 0, 0),
(6, 20, 319, 0, 0),
(6, 20, 320, 0, 0),
(6, 20, 321, 0, 0),
(6, 20, 322, 0, 0),
(6, 20, 323, 0, 0),
(6, 20, 324, 0, 0),
(6, 20, 325, 0, 0),
(6, 20, 326, 0, 0),
(6, 20, 327, 0, 0),
(6, 20, 328, 0, 0),
(6, 20, 329, 0, 0),
(6, 20, 330, 0, 0),
(6, 20, 331, 0, 0),
(6, 20, 332, 0, 0),
(6, 20, 333, 0, 0),
(6, 20, 334, 0, 0),
(6, 20, 335, 0, 0),
(6, 20, 336, 0, 0),
(6, 20, 337, 0, 0),
(6, 20, 338, 0, 0),
(6, 20, 339, 0, 0),
(6, 20, 340, 0, 0),
(6, 20, 341, 0, 0),
(6, 20, 342, 0, 0),
(6, 20, 343, 0, 0),
(6, 20, 344, 0, 0),
(6, 20, 345, 0, 0),
(6, 20, 346, 0, 0),
(6, 20, 347, 0, 0),
(6, 20, 348, 0, 0),
(6, 20, 349, 0, 0),
(6, 20, 350, 0, 0),
(6, 21, 351, 0, 0),
(6, 21, 352, 0, 0),
(6, 21, 353, 0, 0),
(6, 21, 354, 0, 0),
(6, 21, 355, 0, 0),
(6, 21, 356, 0, 0),
(6, 21, 357, 0, 0),
(6, 21, 358, 0, 0),
(6, 21, 359, 0, 0),
(6, 21, 360, 0, 0),
(6, 21, 361, 0, 0),
(6, 21, 362, 0, 0),
(6, 21, 363, 0, 0),
(6, 21, 364, 0, 0),
(6, 21, 365, 0, 0),
(6, 21, 366, 0, 0),
(6, 21, 367, 0, 0),
(6, 21, 368, 0, 0),
(6, 21, 369, 0, 0),
(6, 21, 370, 0, 0),
(6, 21, 371, 0, 0),
(6, 21, 372, 0, 0),
(6, 21, 373, 0, 0),
(6, 21, 374, 0, 0),
(6, 21, 375, 0, 0),
(6, 21, 376, 0, 0),
(6, 21, 377, 0, 0),
(6, 21, 378, 0, 0),
(6, 21, 379, 0, 0),
(6, 21, 380, 0, 0),
(6, 21, 381, 0, 0),
(6, 21, 382, 0, 0),
(6, 21, 383, 0, 0),
(6, 21, 384, 0, 0),
(6, 21, 385, 0, 0),
(6, 21, 386, 0, 0),
(6, 21, 387, 0, 0),
(6, 21, 388, 0, 0),
(6, 22, 389, 0, 0),
(6, 22, 390, 0, 0),
(6, 22, 391, 0, 0),
(6, 22, 392, 0, 0),
(6, 22, 393, 0, 0),
(6, 22, 394, 0, 0),
(6, 22, 395, 0, 0),
(6, 22, 396, 0, 0),
(6, 22, 397, 0, 0),
(6, 22, 398, 0, 0),
(6, 22, 399, 0, 0),
(6, 22, 400, 0, 0),
(6, 22, 401, 0, 0),
(6, 22, 402, 0, 0),
(6, 22, 403, 0, 0),
(6, 22, 404, 0, 0),
(6, 22, 405, 0, 0),
(6, 22, 406, 0, 0),
(6, 22, 407, 0, 0),
(6, 22, 408, 0, 0),
(6, 22, 409, 0, 0),
(6, 22, 410, 0, 0),
(6, 22, 411, 0, 0),
(6, 22, 412, 0, 0),
(6, 22, 413, 0, 0),
(6, 22, 414, 0, 0),
(6, 22, 415, 0, 0),
(6, 22, 416, 0, 0),
(6, 22, 417, 0, 0),
(6, 22, 418, 0, 0),
(6, 22, 419, 0, 0),
(6, 22, 420, 0, 0),
(6, 22, 421, 0, 0),
(6, 22, 422, 0, 0),
(6, 22, 423, 0, 0),
(6, 22, 424, 0, 0),
(6, 22, 425, 0, 0),
(6, 22, 426, 0, 0),
(6, 22, 427, 0, 0),
(6, 22, 428, 0, 0),
(6, 22, 429, 0, 0),
(6, 22, 430, 0, 0),
(6, 22, 431, 0, 0),
(6, 22, 432, 0, 0),
(6, 22, 433, 0, 0),
(6, 22, 434, 0, 0),
(6, 22, 435, 0, 0),
(6, 23, 436, 0, 0),
(6, 23, 437, 0, 0),
(6, 23, 438, 0, 0),
(6, 23, 439, 0, 0),
(6, 23, 440, 0, 0),
(6, 23, 441, 0, 0),
(6, 23, 442, 0, 0),
(6, 23, 443, 0, 0),
(6, 23, 444, 0, 0),
(6, 23, 445, 0, 0),
(6, 23, 446, 0, 0),
(6, 23, 447, 0, 0),
(6, 23, 448, 0, 0),
(6, 23, 449, 0, 0),
(6, 23, 450, 0, 0),
(6, 23, 451, 0, 0),
(6, 23, 452, 0, 0),
(6, 23, 453, 0, 0),
(6, 23, 454, 0, 0),
(6, 23, 455, 0, 0),
(6, 23, 456, 0, 0),
(6, 23, 457, 0, 0),
(6, 23, 458, 0, 0),
(6, 23, 459, 0, 0),
(6, 23, 460, 0, 0),
(6, 23, 461, 0, 0),
(6, 23, 462, 0, 0),
(6, 23, 463, 0, 0),
(6, 23, 464, 0, 0),
(6, 23, 465, 0, 0),
(6, 23, 466, 0, 0),
(6, 23, 467, 0, 0),
(6, 23, 468, 0, 0),
(6, 23, 469, 0, 0),
(6, 23, 470, 0, 0),
(6, 23, 471, 0, 0),
(6, 23, 472, 0, 0),
(6, 23, 473, 0, 0),
(6, 23, 474, 0, 0),
(6, 10, 520, 0, 0),
(6, 10, 521, 0, 0),
(6, 10, 522, 0, 0),
(6, 10, 523, 0, 0),
(6, 10, 524, 0, 0),
(6, 10, 525, 0, 0),
(6, 34, 526, 0, 0),
(6, 34, 527, 0, 0),
(6, 34, 528, 0, 0),
(6, 34, 529, 0, 0),
(6, 34, 530, 0, 0),
(6, 34, 531, 0, 0),
(6, 34, 532, 0, 0),
(6, 34, 533, 0, 0),
(6, 34, 534, 0, 0),
(6, 34, 535, 0, 0),
(6, 34, 536, 0, 0),
(6, 34, 537, 0, 0),
(6, 34, 538, 0, 0),
(6, 34, 539, 0, 0),
(6, 34, 540, 0, 0),
(6, 34, 541, 0, 0),
(6, 34, 542, 0, 0),
(6, 29, 543, 0, 0),
(6, 35, 544, 0, 0),
(6, 35, 545, 0, 0),
(6, 35, 546, 0, 0),
(6, 35, 547, 0, 0),
(6, 35, 548, 0, 0),
(6, 35, 549, 0, 0),
(6, 35, 550, 0, 0),
(6, 35, 551, 0, 0),
(6, 35, 552, 0, 0),
(6, 35, 553, 0, 0),
(6, 35, 554, 0, 0),
(6, 35, 555, 0, 0),
(6, 35, 556, 0, 0),
(6, 35, 557, 0, 0),
(6, 35, 558, 0, 0),
(6, 35, 559, 0, 0),
(6, 35, 560, 0, 0),
(6, 35, 561, 0, 0),
(6, 35, 562, 0, 0),
(6, 35, 563, 0, 0),
(6, 35, 564, 0, 0),
(6, 35, 565, 0, 0),
(6, 36, 566, 0, 0),
(6, 36, 567, 0, 0),
(6, 36, 568, 0, 0),
(6, 36, 569, 0, 0),
(6, 36, 570, 0, 0),
(6, 36, 571, 0, 0),
(6, 36, 572, 0, 0),
(6, 36, 573, 0, 0),
(6, 36, 574, 0, 0),
(6, 36, 575, 0, 0),
(6, 36, 576, 0, 0),
(6, 36, 577, 0, 0),
(6, 36, 578, 0, 0),
(6, 36, 579, 0, 0),
(6, 36, 580, 0, 0),
(6, 36, 581, 0, 0),
(6, 36, 582, 0, 0),
(6, 36, 583, 0, 0),
(6, 36, 584, 0, 0),
(6, 36, 585, 0, 0),
(6, 36, 586, 0, 0),
(6, 36, 587, 0, 0),
(6, 38, 588, 0, 0),
(6, 38, 589, 0, 0),
(6, 38, 590, 0, 0),
(6, 38, 591, 0, 0),
(6, 38, 592, 0, 0),
(6, 38, 593, 0, 0),
(6, 38, 594, 0, 0),
(6, 38, 595, 0, 0),
(6, 38, 596, 0, 0),
(6, 38, 597, 0, 0),
(6, 38, 598, 0, 0),
(6, 38, 599, 0, 0),
(6, 38, 600, 0, 0),
(6, 38, 601, 0, 0),
(6, 38, 602, 0, 0),
(6, 38, 603, 0, 0),
(6, 38, 604, 0, 0),
(6, 38, 605, 0, 0),
(6, 38, 606, 0, 0),
(6, 38, 607, 0, 0),
(6, 38, 608, 0, 0),
(6, 42, 609, 0, 0),
(6, 42, 610, 0, 0),
(6, 42, 611, 0, 0),
(6, 42, 612, 0, 0),
(6, 42, 613, 0, 0),
(6, 42, 614, 0, 0),
(6, 42, 615, 0, 0),
(6, 42, 616, 0, 0),
(6, 43, 617, 0, 0),
(6, 43, 618, 0, 0),
(6, 43, 619, 0, 0),
(6, 43, 620, 0, 0),
(6, 43, 621, 0, 0),
(6, 43, 622, 0, 0),
(6, 43, 623, 0, 0),
(6, 43, 624, 0, 0),
(6, 43, 625, 0, 0),
(6, 43, 626, 0, 0),
(6, 43, 627, 0, 0),
(6, 43, 628, 0, 0),
(6, 43, 629, 0, 0),
(6, 44, 630, 0, 0),
(6, 44, 631, 0, 0),
(6, 44, 632, 0, 0),
(6, 44, 633, 0, 0),
(6, 44, 634, 0, 0),
(6, 44, 635, 0, 0),
(6, 44, 636, 0, 0),
(6, 44, 637, 0, 0),
(6, 44, 638, 0, 0),
(6, 44, 639, 0, 0),
(6, 44, 640, 0, 0),
(6, 44, 641, 0, 0),
(6, 44, 642, 0, 0),
(6, 44, 643, 0, 0),
(6, 44, 644, 0, 0),
(6, 44, 645, 0, 0),
(6, 44, 646, 0, 0),
(6, 44, 647, 0, 0),
(6, 45, 648, 0, 0),
(6, 45, 649, 0, 0),
(6, 45, 650, 0, 0),
(6, 45, 651, 0, 0),
(6, 45, 652, 0, 0),
(6, 45, 653, 0, 0),
(6, 45, 654, 0, 0),
(6, 45, 655, 0, 0),
(6, 45, 656, 0, 0),
(6, 45, 657, 0, 0),
(6, 45, 658, 0, 0),
(6, 45, 659, 0, 0),
(6, 45, 660, 0, 0),
(6, 45, 661, 0, 0),
(6, 45, 662, 0, 0),
(6, 45, 663, 0, 0),
(6, 45, 664, 0, 0),
(6, 45, 665, 0, 0),
(6, 45, 666, 0, 0),
(6, 45, 667, 0, 0),
(6, 47, 668, 0, 0),
(6, 47, 669, 0, 0),
(6, 47, 670, 0, 0),
(6, 47, 671, 0, 0),
(6, 47, 672, 0, 0),
(6, 47, 673, 0, 0),
(6, 2, 674, 0, 0),
(6, 29, 675, 0, 0),
(6, 23, 676, 0, 0),
(6, 23, 677, 0, 0),
(6, 23, 678, 0, 0),
(6, 23, 679, 0, 0),
(6, 23, 680, 0, 0),
(6, 23, 681, 0, 0),
(6, 23, 682, 0, 0),
(6, 23, 683, 0, 0),
(6, 23, 684, 0, 0),
(6, 22, 685, 0, 0),
(6, 22, 686, 0, 0),
(6, 22, 687, 0, 0),
(6, 22, 688, 0, 0),
(6, 22, 689, 0, 0),
(6, 22, 690, 0, 0),
(6, 22, 691, 0, 0),
(6, 22, 692, 0, 0),
(6, 22, 693, 0, 0),
(6, 21, 694, 0, 0),
(6, 21, 695, 0, 0),
(6, 21, 696, 0, 0),
(6, 21, 697, 0, 0),
(6, 21, 698, 0, 0),
(6, 21, 699, 0, 0),
(6, 21, 700, 0, 0),
(6, 21, 701, 0, 0),
(6, 21, 702, 0, 0),
(6, 20, 703, 0, 0),
(6, 20, 704, 0, 0),
(6, 20, 705, 0, 0),
(6, 20, 706, 0, 0),
(6, 20, 707, 0, 0),
(6, 20, 708, 0, 0),
(6, 20, 709, 0, 0),
(6, 20, 710, 0, 0),
(6, 20, 711, 0, 0),
(6, 29, 712, 0, 0),
(6, 44, 713, 0, 0),
(6, 42, 714, 0, 0),
(6, 29, 715, 0, 0),
(6, 29, 716, 0, 0),
(6, 29, 717, 0, 0),
(6, 23, 718, 0, 0),
(6, 22, 719, 0, 0),
(6, 21, 720, 0, 0),
(6, 20, 721, 0, 0),
(6, 29, 722, 0, 0),
(6, 6, 723, 0, 0),
(6, 4, 724, 0, 0),
(6, 2, 725, 0, 0),
(6, 29, 726, 0, 0),
(6, 23, 727, 0, 0),
(6, 23, 728, 0, 0),
(6, 21, 729, 0, 0),
(6, 21, 730, 0, 0),
(6, 18, 731, 0, 0),
(6, 7, 732, 0, 0),
(6, 42, 733, 0, 0),
(6, 42, 734, 0, 0),
(6, 23, 735, 0, 0),
(6, 20, 736, 0, 0),
(6, 21, 737, 0, 0),
(6, 22, 738, 0, 0),
(6, 29, 739, 0, 0),
(6, 2, 740, 0, 0),
(6, 13, 741, 0, 0),
(6, 29, 742, 0, 0),
(6, 29, 743, 0, 0),
(6, 29, 744, 0, 0),
(6, 29, 745, 0, 0),
(6, 14, 772, 0, 0),
(6, 36, 773, 0, 0),
(6, 23, 774, 0, 0),
(6, 29, 775, 0, 0),
(6, 23, 776, 0, 0),
(6, 23, 777, 0, 0),
(6, 23, 778, 0, 0),
(6, 20, 779, 0, 0),
(6, 20, 780, 0, 0),
(6, 20, 781, 0, 0),
(6, 21, 782, 0, 0),
(6, 22, 783, 0, 0),
(6, 22, 784, 0, 0),
(6, 22, 785, 0, 0),
(6, 42, 786, 0, 0),
(6, 42, 787, 0, 0),
(6, 42, 788, 0, 0),
(6, 2, 789, 0, 0),
(6, 4, 790, 0, 0),
(6, 6, 791, 0, 0),
(6, 7, 792, 0, 0),
(6, 8, 793, 0, 0),
(6, 9, 794, 0, 0),
(6, 10, 795, 0, 0),
(6, 13, 796, 0, 0),
(6, 14, 797, 0, 0),
(6, 15, 798, 0, 0),
(6, 16, 799, 0, 0),
(6, 18, 800, 0, 0),
(6, 19, 801, 0, 0),
(6, 20, 802, 0, 0),
(6, 21, 803, 0, 0),
(6, 22, 804, 0, 0),
(6, 23, 805, 0, 0),
(6, 26, 806, 0, 0),
(6, 10, 807, 0, 0),
(6, 2, 808, 0, 0),
(6, 4, 809, 0, 0),
(6, 6, 810, 0, 0),
(6, 7, 811, 0, 0),
(6, 8, 812, 0, 0),
(6, 9, 813, 0, 0),
(6, 10, 814, 0, 0),
(6, 13, 815, 0, 0),
(6, 14, 816, 0, 0),
(6, 15, 817, 0, 0),
(6, 16, 818, 0, 0),
(6, 18, 819, 0, 0),
(6, 19, 820, 0, 0),
(6, 20, 821, 0, 0),
(6, 21, 822, 0, 0),
(6, 22, 823, 0, 0),
(6, 23, 824, 0, 0),
(6, 26, 825, 0, 0),
(6, 2, 826, 0, 0),
(6, 4, 827, 0, 0),
(6, 6, 828, 0, 0),
(6, 7, 829, 0, 0),
(6, 8, 830, 0, 0),
(6, 9, 831, 0, 0),
(6, 10, 832, 0, 0),
(6, 13, 833, 0, 0),
(6, 14, 834, 0, 0),
(6, 15, 835, 0, 0),
(6, 16, 836, 0, 0),
(6, 18, 837, 0, 0),
(6, 19, 838, 0, 0),
(6, 20, 839, 0, 0),
(6, 21, 840, 0, 0),
(6, 22, 841, 0, 0),
(6, 23, 842, 0, 0),
(6, 26, 843, 0, 0),
(6, 20, 844, 0, 0),
(6, 21, 845, 0, 0),
(6, 22, 846, 0, 0),
(6, 23, 847, 0, 0),
(6, 45, 848, 0, 0),
(6, 45, 849, 0, 0),
(6, 29, 850, 0, 0),
(6, 22, 851, 0, 0),
(6, 29, 852, 0, 0),
(6, 16, 853, 0, 0),
(6, 16, 854, 0, 0),
(6, 16, 855, 0, 0),
(6, 16, 856, 0, 0),
(6, 9, 857, 0, 0),
(6, 9, 858, 0, 0),
(6, 16, 859, 0, 0),
(6, 50, 860, 0, 0),
(6, 50, 861, 0, 0),
(6, 50, 862, 0, 0),
(6, 50, 863, 0, 0),
(6, 50, 864, 0, 0),
(6, 50, 865, 0, 0),
(6, 6, 892, 0, 0),
(6, 6, 893, 0, 0),
(6, 6, 894, 0, 0),
(6, 6, 895, 0, 0),
(6, 6, 896, 0, 0),
(6, 6, 897, 0, 0),
(6, 6, 898, 0, 0),
(6, 6, 899, 0, 0),
(6, 6, 900, 0, 0),
(6, 6, 901, 0, 0),
(6, 6, 902, 0, 0),
(6, 6, 903, 0, 0),
(6, 6, 904, 0, 0),
(6, 6, 905, 0, 0),
(6, 6, 906, 0, 0),
(6, 6, 907, 0, 0),
(6, 6, 908, 0, 0),
(6, 6, 909, 0, 0),
(6, 6, 910, 0, 0),
(6, 6, 911, 0, 0),
(6, 6, 912, 0, 0),
(6, 6, 913, 0, 0),
(6, 6, 914, 0, 0),
(6, 6, 915, 0, 0),
(6, 6, 916, 0, 0),
(6, 6, 917, 0, 0),
(6, 6, 918, 0, 0),
(6, 6, 919, 0, 0),
(6, 6, 920, 0, 0),
(6, 6, 921, 0, 0),
(6, 6, 922, 0, 0),
(6, 6, 923, 0, 0),
(6, 6, 924, 0, 0),
(6, 6, 925, 0, 0),
(6, 6, 926, 0, 0),
(6, 23, 927, 0, 0),
(6, 52, 928, 0, 0),
(6, 52, 929, 0, 0),
(6, 52, 930, 0, 0),
(6, 52, 931, 0, 0),
(6, 52, 932, 0, 0),
(6, 52, 933, 0, 0),
(6, 52, 934, 0, 0),
(6, 52, 935, 0, 0),
(6, 52, 936, 0, 0),
(6, 52, 937, 0, 0),
(6, 52, 938, 0, 0),
(6, 52, 939, 0, 0),
(6, 52, 940, 0, 0),
(6, 52, 941, 0, 0),
(6, 52, 942, 0, 0),
(6, 52, 943, 0, 0),
(6, 52, 944, 0, 0),
(6, 52, 945, 0, 0),
(6, 52, 946, 0, 0),
(6, 52, 947, 0, 0),
(6, 52, 948, 0, 0),
(6, 52, 949, 0, 0),
(6, 52, 950, 0, 0),
(6, 52, 951, 0, 0),
(6, 52, 952, 0, 0),
(6, 21, 953, 0, 0),
(6, 53, 954, 0, 0),
(6, 53, 955, 0, 0),
(6, 53, 956, 0, 0),
(6, 53, 957, 0, 0),
(6, 53, 958, 0, 0),
(6, 53, 959, 0, 0),
(6, 53, 960, 0, 0),
(6, 53, 961, 0, 0),
(6, 53, 962, 0, 0),
(6, 53, 963, 0, 0),
(6, 53, 964, 0, 0),
(6, 53, 965, 0, 0),
(6, 53, 966, 0, 0),
(6, 53, 967, 0, 0),
(6, 53, 968, 0, 0),
(6, 53, 969, 0, 0),
(6, 54, 970, 0, 0),
(6, 54, 971, 0, 0),
(6, 54, 972, 0, 0),
(6, 54, 973, 0, 0),
(6, 54, 974, 0, 0),
(6, 54, 975, 0, 0),
(6, 54, 976, 0, 0),
(6, 54, 977, 0, 0),
(6, 54, 978, 0, 0),
(6, 54, 979, 0, 0),
(6, 54, 980, 0, 0),
(6, 54, 981, 0, 0),
(6, 54, 982, 0, 0),
(6, 54, 983, 0, 0),
(6, 54, 984, 0, 0),
(6, 54, 985, 0, 0),
(6, 55, 986, 0, 0),
(6, 55, 987, 0, 0),
(6, 55, 988, 0, 0),
(6, 55, 989, 0, 0),
(6, 55, 990, 0, 0),
(6, 55, 991, 0, 0),
(6, 55, 992, 0, 0),
(6, 55, 993, 0, 0),
(6, 55, 994, 0, 0),
(6, 55, 995, 0, 0),
(6, 55, 996, 0, 0),
(6, 55, 997, 0, 0),
(6, 55, 998, 0, 0),
(6, 55, 999, 0, 0),
(6, 55, 1000, 0, 0),
(6, 55, 1001, 0, 0),
(6, 55, 1002, 0, 0),
(6, 55, 1003, 0, 0),
(6, 55, 1004, 0, 0),
(6, 55, 1005, 0, 0),
(6, 55, 1006, 0, 0),
(6, 55, 1007, 0, 0),
(6, 7, 1008, 0, 0),
(6, 7, 1009, 0, 0),
(6, 7, 1010, 0, 0),
(6, 7, 1011, 0, 0),
(6, 7, 1012, 0, 0),
(6, 7, 1013, 0, 0),
(6, 7, 1014, 0, 0),
(6, 7, 1015, 0, 0),
(6, 7, 1016, 0, 0),
(6, 7, 1017, 0, 0),
(6, 7, 1018, 0, 0),
(6, 7, 1019, 0, 0),
(6, 7, 1020, 0, 0),
(6, 7, 1021, 0, 0),
(6, 7, 1022, 0, 0),
(6, 7, 1023, 0, 0),
(6, 7, 1024, 0, 0),
(6, 7, 1025, 0, 0),
(6, 7, 1026, 0, 0),
(6, 7, 1027, 0, 0),
(6, 7, 1028, 0, 0),
(6, 7, 1029, 0, 0),
(6, 7, 1030, 0, 0),
(6, 7, 1031, 0, 0),
(6, 7, 1032, 0, 0),
(6, 7, 1033, 0, 0),
(6, 56, 1034, 0, 0),
(6, 56, 1035, 0, 0),
(6, 56, 1036, 0, 0),
(6, 56, 1037, 0, 0),
(6, 56, 1038, 0, 0),
(6, 56, 1039, 0, 0),
(6, 56, 1040, 0, 0),
(6, 56, 1041, 0, 0),
(6, 56, 1042, 0, 0),
(6, 56, 1043, 0, 0),
(6, 56, 1044, 0, 0),
(6, 56, 1045, 0, 0),
(6, 56, 1046, 0, 0),
(6, 57, 1047, 0, 0),
(6, 57, 1048, 0, 0),
(6, 57, 1049, 0, 0),
(6, 57, 1050, 0, 0),
(6, 57, 1051, 0, 0),
(6, 57, 1052, 0, 0),
(6, 57, 1053, 0, 0),
(6, 57, 1054, 0, 0),
(6, 57, 1055, 0, 0),
(6, 57, 1056, 0, 0),
(6, 57, 1057, 0, 0),
(6, 57, 1058, 0, 0),
(6, 57, 1059, 0, 0),
(6, 57, 1060, 0, 0),
(6, 57, 1061, 0, 0),
(6, 57, 1062, 0, 0),
(6, 57, 1063, 0, 0),
(6, 58, 1064, 0, 0),
(6, 58, 1065, 0, 0),
(6, 58, 1066, 0, 0),
(6, 58, 1067, 0, 0),
(6, 58, 1068, 0, 0),
(6, 58, 1069, 0, 0),
(6, 58, 1070, 0, 0),
(6, 58, 1071, 0, 0),
(6, 58, 1072, 0, 0),
(6, 58, 1073, 0, 0),
(6, 58, 1074, 0, 0),
(6, 58, 1075, 0, 0),
(6, 58, 1076, 0, 0),
(6, 58, 1077, 0, 0),
(6, 58, 1078, 0, 0),
(6, 58, 1079, 0, 0),
(6, 58, 1080, 0, 0),
(6, 58, 1081, 0, 0),
(6, 58, 1082, 0, 0),
(6, 58, 1083, 0, 0),
(6, 58, 1084, 0, 0),
(6, 58, 1085, 0, 0),
(6, 59, 1086, 0, 0),
(6, 59, 1087, 0, 0),
(6, 59, 1088, 0, 0),
(6, 59, 1089, 0, 0),
(6, 59, 1090, 0, 0),
(6, 59, 1091, 0, 0),
(6, 59, 1092, 0, 0),
(6, 59, 1093, 0, 0),
(6, 59, 1094, 0, 0),
(6, 59, 1095, 0, 0),
(6, 59, 1096, 0, 0),
(6, 59, 1097, 0, 0),
(6, 59, 1098, 0, 0),
(6, 59, 1099, 0, 0),
(6, 59, 1100, 0, 0),
(6, 59, 1101, 0, 0),
(6, 59, 1102, 0, 0),
(6, 59, 1103, 0, 0),
(6, 59, 1104, 0, 0),
(6, 59, 1105, 0, 0),
(6, 59, 1106, 0, 0),
(6, 59, 1107, 0, 0),
(6, 59, 1108, 0, 0),
(6, 59, 1109, 0, 0),
(6, 60, 1110, 0, 0),
(6, 60, 1111, 0, 0),
(6, 60, 1112, 0, 0),
(6, 60, 1113, 0, 0),
(6, 60, 1114, 0, 0),
(6, 60, 1115, 0, 0),
(6, 60, 1116, 0, 0),
(6, 60, 1117, 0, 0),
(6, 60, 1118, 0, 0),
(6, 60, 1119, 0, 0),
(6, 60, 1120, 0, 0),
(6, 60, 1121, 0, 0),
(6, 60, 1122, 0, 0),
(6, 60, 1123, 0, 0),
(6, 60, 1124, 0, 0),
(6, 60, 1125, 0, 0),
(6, 60, 1126, 0, 0),
(6, 60, 1127, 0, 0),
(6, 61, 1128, 0, 0),
(6, 61, 1129, 0, 0),
(6, 61, 1130, 0, 0),
(6, 61, 1131, 0, 0),
(6, 61, 1132, 0, 0),
(6, 61, 1133, 0, 0),
(6, 61, 1134, 0, 0),
(6, 61, 1135, 0, 0),
(6, 61, 1136, 0, 0),
(6, 61, 1137, 0, 0),
(6, 61, 1138, 0, 0),
(6, 61, 1139, 0, 0),
(6, 61, 1140, 0, 0),
(6, 61, 1141, 0, 0),
(6, 61, 1142, 0, 0),
(6, 61, 1143, 0, 0),
(6, 61, 1144, 0, 0),
(6, 61, 1145, 0, 0),
(6, 61, 1146, 0, 0),
(6, 62, 1147, 0, 0),
(6, 62, 1148, 0, 0),
(6, 62, 1149, 0, 0),
(6, 62, 1150, 0, 0),
(6, 62, 1151, 0, 0),
(6, 62, 1152, 0, 0),
(6, 62, 1153, 0, 0),
(6, 62, 1154, 0, 0),
(6, 62, 1155, 0, 0),
(6, 62, 1156, 0, 0),
(6, 62, 1157, 0, 0),
(6, 62, 1158, 0, 0),
(6, 62, 1159, 0, 0),
(6, 62, 1160, 0, 0),
(6, 62, 1161, 0, 0),
(6, 62, 1162, 0, 0),
(6, 62, 1163, 0, 0),
(6, 62, 1164, 0, 0),
(6, 62, 1165, 0, 0),
(6, 62, 1166, 0, 0),
(6, 63, 1167, 0, 0),
(6, 63, 1168, 0, 0),
(6, 63, 1169, 0, 0),
(6, 63, 1170, 0, 0),
(6, 63, 1171, 0, 0),
(6, 63, 1172, 0, 0),
(6, 63, 1173, 0, 0),
(6, 63, 1174, 0, 0),
(6, 63, 1175, 0, 0),
(6, 63, 1176, 0, 0),
(6, 63, 1177, 0, 0),
(6, 63, 1178, 0, 0),
(6, 63, 1179, 0, 0),
(6, 21, 1189, 0, 0),
(6, 21, 1190, 0, 0),
(6, 21, 1191, 0, 0),
(6, 21, 1192, 0, 0),
(6, 21, 1193, 0, 0),
(6, 21, 1194, 0, 0),
(6, 21, 1195, 0, 0),
(6, 21, 1196, 0, 0),
(6, 21, 1197, 0, 0),
(6, 21, 1198, 0, 0),
(6, 21, 1199, 0, 0),
(6, 21, 1200, 0, 0),
(6, 21, 1201, 0, 0),
(6, 21, 1202, 0, 0),
(6, 21, 1203, 0, 0),
(6, 21, 1204, 0, 0),
(6, 21, 1205, 0, 0),
(6, 21, 1206, 0, 0),
(6, 21, 1207, 0, 0),
(6, 20, 1208, 0, 0),
(6, 20, 1209, 0, 0),
(6, 20, 1210, 0, 0),
(6, 20, 1211, 0, 0),
(6, 20, 1212, 0, 0),
(6, 4, 1213, 0, 0),
(6, 4, 1214, 0, 0),
(6, 4, 1215, 0, 0),
(6, 4, 1216, 0, 0),
(6, 4, 1217, 0, 0),
(6, 4, 1218, 0, 0),
(6, 4, 1219, 0, 0),
(6, 65, 1220, 0, 0),
(6, 65, 1221, 0, 0),
(6, 65, 1222, 0, 0),
(6, 65, 1223, 0, 0),
(6, 65, 1224, 0, 0),
(6, 65, 1225, 0, 0),
(6, 65, 1226, 0, 0),
(6, 65, 1227, 0, 0),
(6, 65, 1228, 0, 0),
(6, 65, 1229, 0, 0),
(6, 65, 1230, 0, 0),
(6, 65, 1231, 0, 0),
(6, 65, 1232, 0, 0),
(6, 65, 1233, 0, 0),
(6, 65, 1234, 0, 0),
(6, 2, 1235, 0, 0),
(6, 2, 1236, 0, 0),
(6, 2, 1237, 0, 0),
(6, 2, 1238, 0, 0),
(6, 2, 1239, 0, 0),
(6, 2, 1240, 0, 0),
(6, 2, 1241, 0, 0),
(6, 2, 1242, 0, 0),
(6, 2, 1243, 0, 0),
(7, 6, 1, 0, 0),
(7, 6, 2, 0, 0),
(7, 6, 3, 0, 0),
(7, 6, 4, 0, 0),
(7, 6, 5, 0, 0),
(7, 6, 6, 0, 0),
(7, 6, 7, 0, 0),
(7, 6, 8, 0, 0),
(7, 6, 9, 0, 0),
(7, 6, 10, 0, 0),
(7, 6, 11, 0, 0),
(7, 6, 12, 0, 0),
(7, 6, 13, 0, 0),
(7, 6, 14, 0, 0),
(7, 6, 15, 0, 0),
(7, 6, 16, 0, 0),
(7, 6, 17, 0, 0),
(7, 6, 18, 0, 0),
(7, 6, 19, 0, 0),
(7, 6, 20, 0, 0),
(7, 6, 21, 0, 0),
(7, 6, 22, 0, 0),
(7, 6, 23, 0, 0),
(7, 6, 24, 0, 0),
(7, 6, 25, 0, 0),
(7, 6, 26, 0, 0),
(7, 6, 27, 0, 0),
(7, 6, 28, 0, 0),
(7, 6, 29, 0, 0),
(7, 6, 30, 0, 0),
(7, 6, 31, 0, 0),
(7, 6, 32, 0, 0),
(7, 6, 33, 0, 0),
(7, 6, 34, 0, 0),
(7, 6, 35, 0, 0),
(7, 6, 36, 0, 0),
(7, 7, 37, 0, 0),
(7, 7, 38, 0, 0),
(7, 7, 39, 0, 0),
(7, 7, 40, 0, 0),
(7, 7, 41, 0, 0),
(7, 7, 42, 0, 0),
(7, 7, 43, 0, 0),
(7, 7, 44, 0, 0),
(7, 7, 45, 0, 0),
(7, 7, 46, 0, 0),
(7, 7, 47, 0, 0),
(7, 7, 48, 0, 0),
(7, 7, 49, 0, 0),
(7, 7, 50, 0, 0),
(7, 7, 51, 0, 0),
(7, 7, 52, 0, 0),
(7, 7, 53, 0, 0),
(7, 7, 54, 0, 0),
(7, 7, 55, 0, 0),
(7, 7, 56, 0, 0),
(7, 7, 57, 0, 0),
(7, 7, 58, 0, 0),
(7, 7, 59, 0, 0),
(7, 7, 60, 0, 0),
(7, 7, 61, 0, 0),
(7, 7, 62, 0, 0),
(7, 7, 63, 0, 0),
(7, 7, 64, 0, 0),
(7, 7, 65, 0, 0),
(7, 4, 66, 0, 0),
(7, 4, 67, 0, 0),
(7, 4, 68, 0, 0),
(7, 4, 69, 0, 0),
(7, 4, 70, 0, 0),
(7, 4, 71, 0, 0),
(7, 4, 72, 0, 0),
(7, 4, 73, 0, 0),
(7, 4, 74, 0, 0),
(7, 4, 75, 0, 0),
(7, 4, 76, 0, 0),
(7, 4, 77, 0, 0),
(7, 4, 78, 0, 0),
(7, 4, 79, 0, 0),
(7, 4, 80, 0, 0),
(7, 4, 81, 0, 0),
(7, 4, 82, 0, 0),
(7, 4, 83, 0, 0),
(7, 4, 84, 0, 0),
(7, 4, 85, 0, 0),
(7, 4, 86, 0, 0),
(7, 4, 87, 0, 0),
(7, 4, 88, 0, 0),
(7, 4, 89, 0, 0),
(7, 4, 90, 0, 0),
(7, 4, 91, 0, 0),
(7, 4, 92, 0, 0),
(7, 4, 93, 0, 0),
(7, 4, 94, 0, 0),
(7, 4, 95, 0, 0),
(7, 4, 96, 0, 0),
(7, 4, 97, 0, 0),
(7, 4, 98, 0, 0),
(7, 4, 99, 0, 0),
(7, 4, 100, 0, 0),
(7, 4, 101, 0, 0),
(7, 4, 102, 0, 0),
(7, 4, 103, 0, 0),
(7, 4, 104, 0, 0),
(7, 4, 105, 0, 0),
(7, 4, 106, 0, 0),
(7, 4, 107, 0, 0),
(7, 4, 108, 0, 0),
(7, 4, 109, 0, 0),
(7, 2, 110, 0, 0),
(7, 2, 111, 0, 0),
(7, 2, 112, 0, 0),
(7, 2, 113, 0, 0),
(7, 2, 114, 0, 0),
(7, 2, 115, 0, 0),
(7, 2, 116, 0, 0),
(7, 2, 117, 0, 0),
(7, 2, 118, 0, 0),
(7, 2, 119, 0, 0),
(7, 2, 120, 0, 0),
(7, 2, 121, 0, 0),
(7, 2, 122, 0, 0),
(7, 2, 123, 0, 0),
(7, 2, 124, 0, 0),
(7, 2, 125, 0, 0),
(7, 26, 126, 0, 0),
(7, 26, 127, 0, 0),
(7, 26, 128, 0, 0),
(7, 26, 129, 0, 0),
(7, 26, 130, 0, 0),
(7, 26, 131, 0, 0),
(7, 26, 132, 0, 0),
(7, 26, 133, 0, 0),
(7, 26, 134, 0, 0),
(7, 26, 135, 0, 0),
(7, 26, 136, 0, 0),
(7, 26, 137, 0, 0),
(7, 26, 138, 0, 0),
(7, 26, 139, 0, 0),
(7, 26, 140, 0, 0),
(7, 26, 141, 0, 0),
(7, 26, 142, 0, 0),
(7, 26, 143, 0, 0),
(7, 26, 144, 0, 0),
(7, 26, 145, 0, 0),
(7, 26, 146, 0, 0),
(7, 26, 147, 0, 0),
(7, 26, 148, 0, 0),
(7, 26, 149, 0, 0),
(7, 26, 150, 0, 0),
(7, 4, 151, 0, 0),
(7, 6, 152, 0, 0),
(7, 7, 153, 0, 0),
(7, 26, 154, 0, 0),
(7, 13, 155, 0, 0),
(7, 13, 156, 0, 0),
(7, 13, 157, 0, 0),
(7, 13, 158, 0, 0),
(7, 13, 159, 0, 0),
(7, 13, 160, 0, 0),
(7, 13, 161, 0, 0),
(7, 13, 162, 0, 0),
(7, 13, 163, 0, 0),
(7, 13, 164, 0, 0),
(7, 13, 165, 0, 0),
(7, 13, 166, 0, 0),
(7, 13, 167, 0, 0),
(7, 13, 168, 0, 0),
(7, 13, 169, 0, 0),
(7, 13, 170, 0, 0),
(7, 13, 171, 0, 0),
(7, 13, 172, 0, 0),
(7, 13, 173, 0, 0),
(7, 14, 174, 0, 0),
(7, 14, 175, 0, 0),
(7, 14, 176, 0, 0),
(7, 14, 177, 0, 0),
(7, 14, 178, 0, 0),
(7, 14, 179, 0, 0),
(7, 14, 180, 0, 0),
(7, 14, 181, 0, 0),
(7, 14, 182, 0, 0),
(7, 14, 183, 0, 0),
(7, 14, 184, 0, 0),
(7, 14, 185, 0, 0),
(7, 14, 186, 0, 0),
(7, 14, 187, 0, 0),
(7, 14, 188, 0, 0),
(7, 14, 189, 0, 0),
(7, 14, 190, 0, 0),
(7, 14, 191, 0, 0),
(7, 14, 192, 0, 0),
(7, 14, 193, 0, 0),
(7, 14, 194, 0, 0),
(7, 14, 195, 0, 0),
(7, 14, 196, 0, 0),
(7, 14, 197, 0, 0),
(7, 14, 198, 0, 0),
(7, 14, 199, 0, 0),
(7, 14, 200, 0, 0),
(7, 14, 201, 0, 0),
(7, 14, 202, 0, 0),
(7, 14, 203, 0, 0),
(7, 14, 204, 0, 0),
(7, 8, 205, 0, 0),
(7, 8, 206, 0, 0),
(7, 8, 207, 0, 0),
(7, 8, 208, 0, 0),
(7, 8, 209, 0, 0),
(7, 8, 210, 0, 0),
(7, 8, 211, 0, 0),
(7, 8, 212, 0, 0),
(7, 8, 213, 0, 0),
(7, 8, 214, 0, 0),
(7, 8, 215, 0, 0),
(7, 8, 216, 0, 0),
(7, 8, 217, 0, 0),
(7, 8, 218, 0, 0),
(7, 8, 219, 0, 0),
(7, 10, 220, 0, 0),
(7, 10, 221, 0, 0),
(7, 10, 222, 0, 0),
(7, 10, 223, 0, 0),
(7, 10, 224, 0, 0),
(7, 10, 225, 0, 0),
(7, 10, 226, 0, 0),
(7, 10, 227, 0, 0),
(7, 10, 228, 0, 0),
(7, 10, 229, 0, 0),
(7, 10, 230, 0, 0),
(7, 10, 231, 0, 0),
(7, 9, 232, 0, 0),
(7, 9, 233, 0, 0),
(7, 9, 234, 0, 0),
(7, 9, 235, 0, 0),
(7, 9, 236, 0, 0),
(7, 9, 237, 0, 0),
(7, 9, 238, 0, 0),
(7, 9, 239, 0, 0),
(7, 9, 240, 0, 0),
(7, 9, 241, 0, 0),
(7, 9, 242, 0, 0),
(7, 9, 243, 0, 0),
(7, 9, 244, 0, 0),
(7, 9, 245, 0, 0),
(7, 9, 246, 0, 0),
(7, 9, 247, 0, 0),
(7, 9, 248, 0, 0),
(7, 9, 249, 0, 0),
(7, 9, 250, 0, 0),
(7, 9, 251, 0, 0),
(7, 9, 252, 0, 0),
(7, 9, 253, 0, 0),
(7, 9, 254, 0, 0),
(7, 9, 255, 0, 0),
(7, 16, 256, 0, 0),
(7, 16, 257, 0, 0),
(7, 16, 258, 0, 0),
(7, 16, 259, 0, 0),
(7, 16, 260, 0, 0),
(7, 16, 261, 0, 0),
(7, 16, 262, 0, 0),
(7, 16, 263, 0, 0),
(7, 16, 264, 0, 0),
(7, 16, 265, 0, 0),
(7, 16, 266, 0, 0),
(7, 16, 267, 0, 0),
(7, 16, 268, 0, 0),
(7, 16, 269, 0, 0),
(7, 16, 270, 0, 0),
(7, 16, 271, 0, 0),
(7, 16, 272, 0, 0),
(7, 16, 273, 0, 0),
(7, 16, 274, 0, 0),
(7, 16, 275, 0, 0),
(7, 16, 276, 0, 0),
(7, 16, 277, 0, 0),
(7, 16, 278, 0, 0),
(7, 15, 279, 0, 0),
(7, 15, 280, 0, 0),
(7, 15, 281, 0, 0),
(7, 15, 282, 0, 0),
(7, 15, 283, 0, 0),
(7, 15, 284, 0, 0),
(7, 15, 285, 0, 0),
(7, 15, 286, 0, 0),
(7, 15, 287, 0, 0),
(7, 15, 288, 0, 0),
(7, 18, 289, 0, 0),
(7, 18, 290, 0, 0),
(7, 18, 291, 0, 0),
(7, 18, 292, 0, 0),
(7, 18, 293, 0, 0),
(7, 18, 294, 0, 0),
(7, 18, 295, 0, 0),
(7, 18, 296, 0, 0),
(7, 18, 297, 0, 0),
(7, 18, 298, 0, 0),
(7, 18, 299, 0, 0),
(7, 18, 300, 0, 0),
(7, 18, 301, 0, 0),
(7, 18, 302, 0, 0),
(7, 18, 303, 0, 0),
(7, 18, 304, 0, 0),
(7, 18, 305, 0, 0),
(7, 19, 306, 0, 0),
(7, 19, 307, 0, 0),
(7, 19, 308, 0, 0),
(7, 19, 309, 0, 0),
(7, 19, 310, 0, 0),
(7, 19, 311, 0, 0),
(7, 19, 312, 0, 0),
(7, 19, 313, 0, 0),
(7, 20, 314, 0, 0),
(7, 20, 315, 0, 0),
(7, 20, 316, 0, 0),
(7, 20, 317, 0, 0),
(7, 20, 318, 0, 0),
(7, 20, 319, 0, 0),
(7, 20, 320, 0, 0),
(7, 20, 321, 0, 0),
(7, 20, 322, 0, 0),
(7, 20, 323, 0, 0),
(7, 20, 324, 0, 0),
(7, 20, 325, 0, 0),
(7, 20, 326, 0, 0),
(7, 20, 327, 0, 0),
(7, 20, 328, 0, 0),
(7, 20, 329, 0, 0),
(7, 20, 330, 0, 0),
(7, 20, 331, 0, 0),
(7, 20, 332, 0, 0),
(7, 20, 333, 0, 0),
(7, 20, 334, 0, 0),
(7, 20, 335, 0, 0),
(7, 20, 336, 0, 0),
(7, 20, 337, 0, 0),
(7, 20, 338, 0, 0),
(7, 20, 339, 0, 0),
(7, 20, 340, 0, 0),
(7, 20, 341, 0, 0),
(7, 20, 342, 0, 0),
(7, 20, 343, 0, 0),
(7, 20, 344, 0, 0),
(7, 20, 345, 0, 0),
(7, 20, 346, 0, 0),
(7, 20, 347, 0, 0),
(7, 20, 348, 0, 0),
(7, 20, 349, 0, 0),
(7, 20, 350, 0, 0),
(7, 21, 351, 0, 0),
(7, 21, 352, 0, 0),
(7, 21, 353, 0, 0),
(7, 21, 354, 0, 0),
(7, 21, 355, 0, 0),
(7, 21, 356, 0, 0),
(7, 21, 357, 0, 0),
(7, 21, 358, 0, 0),
(7, 21, 359, 0, 0),
(7, 21, 360, 0, 0),
(7, 21, 361, 0, 0),
(7, 21, 362, 0, 0),
(7, 21, 363, 0, 0),
(7, 21, 364, 0, 0),
(7, 21, 365, 0, 0),
(7, 21, 366, 0, 0),
(7, 21, 367, 0, 0),
(7, 21, 368, 0, 0),
(7, 21, 369, 0, 0),
(7, 21, 370, 0, 0),
(7, 21, 371, 0, 0),
(7, 21, 372, 0, 0),
(7, 21, 373, 0, 0),
(7, 21, 374, 0, 0),
(7, 21, 375, 0, 0),
(7, 21, 376, 0, 0),
(7, 21, 377, 0, 0),
(7, 21, 378, 0, 0),
(7, 21, 379, 0, 0),
(7, 21, 380, 0, 0),
(7, 21, 381, 0, 0),
(7, 21, 382, 0, 0),
(7, 21, 383, 0, 0),
(7, 21, 384, 0, 0),
(7, 21, 385, 0, 0),
(7, 21, 386, 0, 0),
(7, 21, 387, 0, 0),
(7, 21, 388, 0, 0),
(7, 22, 389, 0, 0),
(7, 22, 390, 0, 0),
(7, 22, 391, 0, 0),
(7, 22, 392, 0, 0),
(7, 22, 393, 0, 0),
(7, 22, 394, 0, 0),
(7, 22, 395, 0, 0),
(7, 22, 396, 0, 0),
(7, 22, 397, 0, 0),
(7, 22, 398, 0, 0),
(7, 22, 399, 0, 0),
(7, 22, 400, 0, 0),
(7, 22, 401, 0, 0),
(7, 22, 402, 0, 0),
(7, 22, 403, 0, 0),
(7, 22, 404, 0, 0),
(7, 22, 405, 0, 0),
(7, 22, 406, 0, 0),
(7, 22, 407, 0, 0),
(7, 22, 408, 0, 0),
(7, 22, 409, 0, 0),
(7, 22, 410, 0, 0),
(7, 22, 411, 0, 0),
(7, 22, 412, 0, 0),
(7, 22, 413, 0, 0),
(7, 22, 414, 0, 0),
(7, 22, 415, 0, 0),
(7, 22, 416, 0, 0),
(7, 22, 417, 0, 0),
(7, 22, 418, 0, 0),
(7, 22, 419, 0, 0),
(7, 22, 420, 0, 0),
(7, 22, 421, 0, 0),
(7, 22, 422, 0, 0),
(7, 22, 423, 0, 0),
(7, 22, 424, 0, 0),
(7, 22, 425, 0, 0),
(7, 22, 426, 0, 0),
(7, 22, 427, 0, 0),
(7, 22, 428, 0, 0),
(7, 22, 429, 0, 0),
(7, 22, 430, 0, 0),
(7, 22, 431, 0, 0),
(7, 22, 432, 0, 0),
(7, 22, 433, 0, 0),
(7, 22, 434, 0, 0),
(7, 22, 435, 0, 0),
(7, 23, 436, 0, 0),
(7, 23, 437, 0, 0),
(7, 23, 438, 0, 0),
(7, 23, 439, 0, 0),
(7, 23, 440, 0, 0),
(7, 23, 441, 0, 0),
(7, 23, 442, 0, 0),
(7, 23, 443, 0, 0),
(7, 23, 444, 0, 0),
(7, 23, 445, 0, 0),
(7, 23, 446, 0, 0),
(7, 23, 447, 0, 0),
(7, 23, 448, 0, 0),
(7, 23, 449, 0, 0),
(7, 23, 450, 0, 0),
(7, 23, 451, 0, 0),
(7, 23, 452, 0, 0),
(7, 23, 453, 0, 0),
(7, 23, 454, 0, 0),
(7, 23, 455, 0, 0),
(7, 23, 456, 0, 0),
(7, 23, 457, 0, 0),
(7, 23, 458, 0, 0),
(7, 23, 459, 0, 0),
(7, 23, 460, 0, 0),
(7, 23, 461, 0, 0),
(7, 23, 462, 0, 0),
(7, 23, 463, 0, 0),
(7, 23, 464, 0, 0),
(7, 23, 465, 0, 0),
(7, 23, 466, 0, 0),
(7, 23, 467, 0, 0),
(7, 23, 468, 0, 0),
(7, 23, 469, 0, 0),
(7, 23, 470, 0, 0),
(7, 23, 471, 0, 0),
(7, 23, 472, 0, 0),
(7, 23, 473, 0, 0),
(7, 23, 474, 0, 0),
(7, 10, 520, 0, 0),
(7, 10, 521, 0, 0),
(7, 10, 522, 0, 0),
(7, 10, 523, 0, 0),
(7, 10, 524, 0, 0),
(7, 10, 525, 0, 0),
(7, 34, 526, 0, 0),
(7, 34, 527, 0, 0),
(7, 34, 528, 0, 0),
(7, 34, 529, 0, 0),
(7, 34, 530, 0, 0),
(7, 34, 531, 0, 0),
(7, 34, 532, 0, 0),
(7, 34, 533, 0, 0),
(7, 34, 534, 0, 0),
(7, 34, 535, 0, 0),
(7, 34, 536, 0, 0),
(7, 34, 537, 0, 0),
(7, 34, 538, 0, 0),
(7, 34, 539, 0, 0),
(7, 34, 540, 0, 0),
(7, 34, 541, 0, 0),
(7, 34, 542, 0, 0),
(7, 29, 543, 0, 0),
(7, 35, 544, 0, 0),
(7, 35, 545, 0, 0),
(7, 35, 546, 0, 0),
(7, 35, 547, 0, 0),
(7, 35, 548, 0, 0),
(7, 35, 549, 0, 0),
(7, 35, 550, 0, 0),
(7, 35, 551, 0, 0),
(7, 35, 552, 0, 0),
(7, 35, 553, 0, 0),
(7, 35, 554, 0, 0),
(7, 35, 555, 0, 0),
(7, 35, 556, 0, 0),
(7, 35, 557, 0, 0),
(7, 35, 558, 0, 0),
(7, 35, 559, 0, 0),
(7, 35, 560, 0, 0),
(7, 35, 561, 0, 0),
(7, 35, 562, 0, 0),
(7, 35, 563, 0, 0),
(7, 35, 564, 0, 0),
(7, 35, 565, 0, 0),
(7, 36, 566, 0, 0),
(7, 36, 567, 0, 0),
(7, 36, 568, 0, 0),
(7, 36, 569, 0, 0),
(7, 36, 570, 0, 0),
(7, 36, 571, 0, 0),
(7, 36, 572, 0, 0),
(7, 36, 573, 0, 0),
(7, 36, 574, 0, 0),
(7, 36, 575, 0, 0),
(7, 36, 576, 0, 0),
(7, 36, 577, 0, 0),
(7, 36, 578, 0, 0),
(7, 36, 579, 0, 0),
(7, 36, 580, 0, 0),
(7, 36, 581, 0, 0),
(7, 36, 582, 0, 0),
(7, 36, 583, 0, 0),
(7, 36, 584, 0, 0),
(7, 36, 585, 0, 0),
(7, 36, 586, 0, 0),
(7, 36, 587, 0, 0),
(7, 38, 588, 0, 0),
(7, 38, 589, 0, 0),
(7, 38, 590, 0, 0),
(7, 38, 591, 0, 0),
(7, 38, 592, 0, 0),
(7, 38, 593, 0, 0),
(7, 38, 594, 0, 0),
(7, 38, 595, 0, 0),
(7, 38, 596, 0, 0),
(7, 38, 597, 0, 0),
(7, 38, 598, 0, 0),
(7, 38, 599, 0, 0),
(7, 38, 600, 0, 0),
(7, 38, 601, 0, 0),
(7, 38, 602, 0, 0),
(7, 38, 603, 0, 0),
(7, 38, 604, 0, 0),
(7, 38, 605, 0, 0),
(7, 38, 606, 0, 0),
(7, 38, 607, 0, 0),
(7, 38, 608, 0, 0),
(7, 42, 609, 0, 0),
(7, 42, 610, 0, 0),
(7, 42, 611, 0, 0),
(7, 42, 612, 0, 0),
(7, 42, 613, 0, 0),
(7, 42, 614, 0, 0),
(7, 42, 615, 0, 0),
(7, 42, 616, 0, 0),
(7, 43, 617, 0, 0),
(7, 43, 618, 0, 0),
(7, 43, 619, 0, 0),
(7, 43, 620, 0, 0),
(7, 43, 621, 0, 0),
(7, 43, 622, 0, 0),
(7, 43, 623, 0, 0),
(7, 43, 624, 0, 0),
(7, 43, 625, 0, 0),
(7, 43, 626, 0, 0),
(7, 43, 627, 0, 0),
(7, 43, 628, 0, 0),
(7, 43, 629, 0, 0),
(7, 44, 630, 0, 0),
(7, 44, 631, 0, 0),
(7, 44, 632, 0, 0),
(7, 44, 633, 0, 0),
(7, 44, 634, 0, 0),
(7, 44, 635, 0, 0),
(7, 44, 636, 0, 0),
(7, 44, 637, 0, 0),
(7, 44, 638, 0, 0),
(7, 44, 639, 0, 0),
(7, 44, 640, 0, 0),
(7, 44, 641, 0, 0),
(7, 44, 642, 0, 0),
(7, 44, 643, 0, 0),
(7, 44, 644, 0, 0),
(7, 44, 645, 0, 0),
(7, 44, 646, 0, 0),
(7, 44, 647, 0, 0),
(7, 45, 648, 0, 0),
(7, 45, 649, 0, 0),
(7, 45, 650, 0, 0),
(7, 45, 651, 0, 0),
(7, 45, 652, 0, 0),
(7, 45, 653, 0, 0),
(7, 45, 654, 0, 0),
(7, 45, 655, 0, 0),
(7, 45, 656, 0, 0),
(7, 45, 657, 0, 0),
(7, 45, 658, 0, 0),
(7, 45, 659, 0, 0),
(7, 45, 660, 0, 0),
(7, 45, 661, 0, 0),
(7, 45, 662, 0, 0),
(7, 45, 663, 0, 0),
(7, 45, 664, 0, 0),
(7, 45, 665, 0, 0),
(7, 45, 666, 0, 0),
(7, 45, 667, 0, 0),
(7, 47, 668, 0, 0),
(7, 47, 669, 0, 0),
(7, 47, 670, 0, 0),
(7, 47, 671, 0, 0),
(7, 47, 672, 0, 0),
(7, 47, 673, 0, 0),
(7, 2, 674, 0, 0),
(7, 29, 675, 0, 0),
(7, 23, 676, 0, 0),
(7, 23, 677, 0, 0),
(7, 23, 678, 0, 0),
(7, 23, 679, 0, 0),
(7, 23, 680, 0, 0),
(7, 23, 681, 0, 0),
(7, 23, 682, 0, 0),
(7, 23, 683, 0, 0),
(7, 23, 684, 0, 0),
(7, 22, 685, 0, 0),
(7, 22, 686, 0, 0),
(7, 22, 687, 0, 0),
(7, 22, 688, 0, 0),
(7, 22, 689, 0, 0),
(7, 22, 690, 0, 0),
(7, 22, 691, 0, 0),
(7, 22, 692, 0, 0),
(7, 22, 693, 0, 0),
(7, 21, 694, 0, 0),
(7, 21, 695, 0, 0),
(7, 21, 696, 0, 0),
(7, 21, 697, 0, 0),
(7, 21, 698, 0, 0),
(7, 21, 699, 0, 0),
(7, 21, 700, 0, 0),
(7, 21, 701, 0, 0),
(7, 21, 702, 0, 0),
(7, 20, 703, 0, 0),
(7, 20, 704, 0, 0),
(7, 20, 705, 0, 0),
(7, 20, 706, 0, 0),
(7, 20, 707, 0, 0),
(7, 20, 708, 0, 0),
(7, 20, 709, 0, 0),
(7, 20, 710, 0, 0),
(7, 20, 711, 0, 0),
(7, 29, 712, 0, 0),
(7, 44, 713, 0, 0),
(7, 42, 714, 0, 0),
(7, 29, 715, 0, 0),
(7, 29, 716, 0, 0),
(7, 29, 717, 0, 0),
(7, 23, 718, 0, 0),
(7, 22, 719, 0, 0),
(7, 21, 720, 0, 0),
(7, 20, 721, 0, 0),
(7, 29, 722, 0, 0),
(7, 6, 723, 0, 0),
(7, 4, 724, 0, 0),
(7, 2, 725, 0, 0),
(7, 29, 726, 0, 0),
(7, 23, 727, 0, 0),
(7, 23, 728, 0, 0),
(7, 21, 729, 0, 0),
(7, 21, 730, 0, 0),
(7, 18, 731, 0, 0),
(7, 7, 732, 0, 0),
(7, 42, 733, 0, 0),
(7, 42, 734, 0, 0),
(7, 23, 735, 0, 0),
(7, 20, 736, 0, 0),
(7, 21, 737, 0, 0),
(7, 22, 738, 0, 0),
(7, 29, 739, 0, 0),
(7, 2, 740, 0, 0),
(7, 13, 741, 0, 0),
(7, 29, 742, 0, 0),
(7, 29, 743, 0, 0),
(7, 29, 744, 0, 0),
(7, 29, 745, 0, 0),
(7, 14, 772, 0, 0),
(7, 36, 773, 0, 0),
(7, 23, 774, 0, 0),
(7, 29, 775, 0, 0),
(7, 23, 776, 0, 0),
(7, 23, 777, 0, 0),
(7, 23, 778, 0, 0),
(7, 20, 779, 0, 0),
(7, 20, 780, 0, 0),
(7, 20, 781, 0, 0),
(7, 21, 782, 0, 0),
(7, 22, 783, 0, 0),
(7, 22, 784, 0, 0),
(7, 22, 785, 0, 0),
(7, 42, 786, 0, 0),
(7, 42, 787, 0, 0),
(7, 42, 788, 0, 0),
(7, 2, 789, 0, 0),
(7, 4, 790, 0, 0),
(7, 6, 791, 0, 0),
(7, 7, 792, 0, 0),
(7, 8, 793, 0, 0),
(7, 9, 794, 0, 0),
(7, 10, 795, 0, 0),
(7, 13, 796, 0, 0),
(7, 14, 797, 0, 0),
(7, 15, 798, 0, 0),
(7, 16, 799, 0, 0),
(7, 18, 800, 0, 0),
(7, 19, 801, 0, 0),
(7, 20, 802, 0, 0),
(7, 21, 803, 0, 0),
(7, 22, 804, 0, 0),
(7, 23, 805, 0, 0),
(7, 26, 806, 0, 0),
(7, 10, 807, 0, 0),
(7, 2, 808, 0, 0),
(7, 4, 809, 0, 0),
(7, 6, 810, 0, 0),
(7, 7, 811, 0, 0),
(7, 8, 812, 0, 0),
(7, 9, 813, 0, 0),
(7, 10, 814, 0, 0),
(7, 13, 815, 0, 0),
(7, 14, 816, 0, 0),
(7, 15, 817, 0, 0),
(7, 16, 818, 0, 0),
(7, 18, 819, 0, 0),
(7, 19, 820, 0, 0),
(7, 20, 821, 0, 0),
(7, 21, 822, 0, 0),
(7, 22, 823, 0, 0),
(7, 23, 824, 0, 0),
(7, 26, 825, 0, 0),
(7, 2, 826, 0, 0),
(7, 4, 827, 0, 0),
(7, 6, 828, 0, 0),
(7, 7, 829, 0, 0),
(7, 8, 830, 0, 0),
(7, 9, 831, 0, 0),
(7, 10, 832, 0, 0),
(7, 13, 833, 0, 0),
(7, 14, 834, 0, 0),
(7, 15, 835, 0, 0),
(7, 16, 836, 0, 0),
(7, 18, 837, 0, 0),
(7, 19, 838, 0, 0),
(7, 20, 839, 0, 0),
(7, 21, 840, 0, 0),
(7, 22, 841, 0, 0),
(7, 23, 842, 0, 0),
(7, 26, 843, 0, 0),
(7, 20, 844, 0, 0),
(7, 21, 845, 0, 0),
(7, 22, 846, 0, 0),
(7, 23, 847, 0, 0),
(7, 45, 848, 0, 0),
(7, 45, 849, 0, 0),
(7, 29, 850, 0, 0),
(7, 22, 851, 0, 0),
(7, 29, 852, 0, 0),
(7, 16, 853, 0, 0),
(7, 16, 854, 0, 0),
(7, 16, 855, 0, 0),
(7, 16, 856, 0, 0),
(7, 9, 857, 0, 0),
(7, 9, 858, 0, 0),
(7, 16, 859, 0, 0),
(7, 50, 860, 0, 0),
(7, 50, 861, 0, 0),
(7, 50, 862, 0, 0),
(7, 50, 863, 0, 0),
(7, 50, 864, 0, 0),
(7, 50, 865, 0, 0),
(7, 6, 892, 0, 0),
(7, 6, 893, 0, 0),
(7, 6, 894, 0, 0),
(7, 6, 895, 0, 0),
(7, 6, 896, 0, 0),
(7, 6, 897, 0, 0),
(7, 6, 898, 0, 0),
(7, 6, 899, 0, 0),
(7, 6, 900, 0, 0),
(7, 6, 901, 0, 0),
(7, 6, 902, 0, 0),
(7, 6, 903, 0, 0),
(7, 6, 904, 0, 0),
(7, 6, 905, 0, 0),
(7, 6, 906, 0, 0),
(7, 6, 907, 0, 0),
(7, 6, 908, 0, 0),
(7, 6, 909, 0, 0),
(7, 6, 910, 0, 0),
(7, 6, 911, 0, 0),
(7, 6, 912, 0, 0),
(7, 6, 913, 0, 0),
(7, 6, 914, 0, 0),
(7, 6, 915, 0, 0),
(7, 6, 916, 0, 0),
(7, 6, 917, 0, 0),
(7, 6, 918, 0, 0),
(7, 6, 919, 0, 0),
(7, 6, 920, 0, 0),
(7, 6, 921, 0, 0),
(7, 6, 922, 0, 0),
(7, 6, 923, 0, 0),
(7, 6, 924, 0, 0),
(7, 6, 925, 0, 0),
(7, 6, 926, 0, 0),
(7, 23, 927, 0, 0),
(7, 52, 928, 0, 0),
(7, 52, 929, 0, 0),
(7, 52, 930, 0, 0),
(7, 52, 931, 0, 0),
(7, 52, 932, 0, 0),
(7, 52, 933, 0, 0),
(7, 52, 934, 0, 0),
(7, 52, 935, 0, 0),
(7, 52, 936, 0, 0),
(7, 52, 937, 0, 0),
(7, 52, 938, 0, 0),
(7, 52, 939, 0, 0),
(7, 52, 940, 0, 0),
(7, 52, 941, 0, 0),
(7, 52, 942, 0, 0),
(7, 52, 943, 0, 0),
(7, 52, 944, 0, 0),
(7, 52, 945, 0, 0),
(7, 52, 946, 0, 0),
(7, 52, 947, 0, 0),
(7, 52, 948, 0, 0),
(7, 52, 949, 0, 0),
(7, 52, 950, 0, 0),
(7, 52, 951, 0, 0),
(7, 52, 952, 0, 0),
(7, 21, 953, 0, 0),
(7, 53, 954, 0, 0),
(7, 53, 955, 0, 0),
(7, 53, 956, 0, 0),
(7, 53, 957, 0, 0),
(7, 53, 958, 0, 0),
(7, 53, 959, 0, 0),
(7, 53, 960, 0, 0),
(7, 53, 961, 0, 0),
(7, 53, 962, 0, 0),
(7, 53, 963, 0, 0),
(7, 53, 964, 0, 0),
(7, 53, 965, 0, 0),
(7, 53, 966, 0, 0),
(7, 53, 967, 0, 0),
(7, 53, 968, 0, 0),
(7, 53, 969, 0, 0),
(7, 54, 970, 0, 0),
(7, 54, 971, 0, 0),
(7, 54, 972, 0, 0),
(7, 54, 973, 0, 0),
(7, 54, 974, 0, 0),
(7, 54, 975, 0, 0),
(7, 54, 976, 0, 0),
(7, 54, 977, 0, 0),
(7, 54, 978, 0, 0),
(7, 54, 979, 0, 0),
(7, 54, 980, 0, 0),
(7, 54, 981, 0, 0),
(7, 54, 982, 0, 0),
(7, 54, 983, 0, 0),
(7, 54, 984, 0, 0),
(7, 54, 985, 0, 0),
(7, 55, 986, 0, 0),
(7, 55, 987, 0, 0),
(7, 55, 988, 0, 0),
(7, 55, 989, 0, 0),
(7, 55, 990, 0, 0),
(7, 55, 991, 0, 0),
(7, 55, 992, 0, 0),
(7, 55, 993, 0, 0),
(7, 55, 994, 0, 0),
(7, 55, 995, 0, 0),
(7, 55, 996, 0, 0),
(7, 55, 997, 0, 0),
(7, 55, 998, 0, 0),
(7, 55, 999, 0, 0),
(7, 55, 1000, 0, 0),
(7, 55, 1001, 0, 0),
(7, 55, 1002, 0, 0),
(7, 55, 1003, 0, 0),
(7, 55, 1004, 0, 0),
(7, 55, 1005, 0, 0),
(7, 55, 1006, 0, 0),
(7, 55, 1007, 0, 0),
(7, 7, 1008, 0, 0),
(7, 7, 1009, 0, 0),
(7, 7, 1010, 0, 0),
(7, 7, 1011, 0, 0),
(7, 7, 1012, 0, 0),
(7, 7, 1013, 0, 0),
(7, 7, 1014, 0, 0),
(7, 7, 1015, 0, 0),
(7, 7, 1016, 0, 0),
(7, 7, 1017, 0, 0),
(7, 7, 1018, 0, 0),
(7, 7, 1019, 0, 0),
(7, 7, 1020, 0, 0),
(7, 7, 1021, 0, 0),
(7, 7, 1022, 0, 0),
(7, 7, 1023, 0, 0),
(7, 7, 1024, 0, 0),
(7, 7, 1025, 0, 0),
(7, 7, 1026, 0, 0),
(7, 7, 1027, 0, 0),
(7, 7, 1028, 0, 0),
(7, 7, 1029, 0, 0),
(7, 7, 1030, 0, 0),
(7, 7, 1031, 0, 0),
(7, 7, 1032, 0, 0),
(7, 7, 1033, 0, 0),
(7, 56, 1034, 0, 0),
(7, 56, 1035, 0, 0),
(7, 56, 1036, 0, 0),
(7, 56, 1037, 0, 0),
(7, 56, 1038, 0, 0),
(7, 56, 1039, 0, 0),
(7, 56, 1040, 0, 0),
(7, 56, 1041, 0, 0),
(7, 56, 1042, 0, 0),
(7, 56, 1043, 0, 0),
(7, 56, 1044, 0, 0),
(7, 56, 1045, 0, 0),
(7, 56, 1046, 0, 0),
(7, 57, 1047, 0, 0),
(7, 57, 1048, 0, 0),
(7, 57, 1049, 0, 0),
(7, 57, 1050, 0, 0),
(7, 57, 1051, 0, 0),
(7, 57, 1052, 0, 0),
(7, 57, 1053, 0, 0),
(7, 57, 1054, 0, 0),
(7, 57, 1055, 0, 0),
(7, 57, 1056, 0, 0),
(7, 57, 1057, 0, 0),
(7, 57, 1058, 0, 0),
(7, 57, 1059, 0, 0),
(7, 57, 1060, 0, 0),
(7, 57, 1061, 0, 0),
(7, 57, 1062, 0, 0),
(7, 57, 1063, 0, 0),
(7, 58, 1064, 0, 0),
(7, 58, 1065, 0, 0),
(7, 58, 1066, 0, 0),
(7, 58, 1067, 0, 0),
(7, 58, 1068, 0, 0),
(7, 58, 1069, 0, 0),
(7, 58, 1070, 0, 0),
(7, 58, 1071, 0, 0),
(7, 58, 1072, 0, 0),
(7, 58, 1073, 0, 0),
(7, 58, 1074, 0, 0),
(7, 58, 1075, 0, 0),
(7, 58, 1076, 0, 0),
(7, 58, 1077, 0, 0),
(7, 58, 1078, 0, 0),
(7, 58, 1079, 0, 0),
(7, 58, 1080, 0, 0),
(7, 58, 1081, 0, 0),
(7, 58, 1082, 0, 0),
(7, 58, 1083, 0, 0),
(7, 58, 1084, 0, 0),
(7, 58, 1085, 0, 0),
(7, 59, 1086, 0, 0),
(7, 59, 1087, 0, 0),
(7, 59, 1088, 0, 0),
(7, 59, 1089, 0, 0),
(7, 59, 1090, 0, 0),
(7, 59, 1091, 0, 0),
(7, 59, 1092, 0, 0),
(7, 59, 1093, 0, 0),
(7, 59, 1094, 0, 0),
(7, 59, 1095, 0, 0),
(7, 59, 1096, 0, 0),
(7, 59, 1097, 0, 0),
(7, 59, 1098, 0, 0),
(7, 59, 1099, 0, 0),
(7, 59, 1100, 0, 0),
(7, 59, 1101, 0, 0),
(7, 59, 1102, 0, 0),
(7, 59, 1103, 0, 0),
(7, 59, 1104, 0, 0),
(7, 59, 1105, 0, 0),
(7, 59, 1106, 0, 0),
(7, 59, 1107, 0, 0),
(7, 59, 1108, 0, 0),
(7, 59, 1109, 0, 0),
(7, 60, 1110, 0, 0),
(7, 60, 1111, 0, 0),
(7, 60, 1112, 0, 0),
(7, 60, 1113, 0, 0),
(7, 60, 1114, 0, 0),
(7, 60, 1115, 0, 0),
(7, 60, 1116, 0, 0),
(7, 60, 1117, 0, 0),
(7, 60, 1118, 0, 0),
(7, 60, 1119, 0, 0),
(7, 60, 1120, 0, 0),
(7, 60, 1121, 0, 0),
(7, 60, 1122, 0, 0),
(7, 60, 1123, 0, 0),
(7, 60, 1124, 0, 0),
(7, 60, 1125, 0, 0),
(7, 60, 1126, 0, 0),
(7, 60, 1127, 0, 0),
(7, 61, 1128, 0, 0),
(7, 61, 1129, 0, 0),
(7, 61, 1130, 0, 0),
(7, 61, 1131, 0, 0),
(7, 61, 1132, 0, 0),
(7, 61, 1133, 0, 0),
(7, 61, 1134, 0, 0),
(7, 61, 1135, 0, 0),
(7, 61, 1136, 0, 0),
(7, 61, 1137, 0, 0),
(7, 61, 1138, 0, 0),
(7, 61, 1139, 0, 0),
(7, 61, 1140, 0, 0),
(7, 61, 1141, 0, 0),
(7, 61, 1142, 0, 0),
(7, 61, 1143, 0, 0),
(7, 61, 1144, 0, 0),
(7, 61, 1145, 0, 0),
(7, 61, 1146, 0, 0),
(7, 62, 1147, 0, 0),
(7, 62, 1148, 0, 0),
(7, 62, 1149, 0, 0),
(7, 62, 1150, 0, 0),
(7, 62, 1151, 0, 0),
(7, 62, 1152, 0, 0),
(7, 62, 1153, 0, 0),
(7, 62, 1154, 0, 0),
(7, 62, 1155, 0, 0),
(7, 62, 1156, 0, 0),
(7, 62, 1157, 0, 0),
(7, 62, 1158, 0, 0),
(7, 62, 1159, 0, 0),
(7, 62, 1160, 0, 0),
(7, 62, 1161, 0, 0),
(7, 62, 1162, 0, 0),
(7, 62, 1163, 0, 0),
(7, 62, 1164, 0, 0),
(7, 62, 1165, 0, 0),
(7, 62, 1166, 0, 0),
(7, 63, 1167, 0, 0),
(7, 63, 1168, 0, 0),
(7, 63, 1169, 0, 0),
(7, 63, 1170, 0, 0),
(7, 63, 1171, 0, 0),
(7, 63, 1172, 0, 0),
(7, 63, 1173, 0, 0),
(7, 63, 1174, 0, 0),
(7, 63, 1175, 0, 0),
(7, 63, 1176, 0, 0),
(7, 63, 1177, 0, 0),
(7, 63, 1178, 0, 0),
(7, 63, 1179, 0, 0),
(7, 21, 1189, 0, 0),
(7, 21, 1190, 0, 0),
(7, 21, 1191, 0, 0),
(7, 21, 1192, 0, 0),
(7, 21, 1193, 0, 0),
(7, 21, 1194, 0, 0),
(7, 21, 1195, 0, 0),
(7, 21, 1196, 0, 0),
(7, 21, 1197, 0, 0),
(7, 21, 1198, 0, 0),
(7, 21, 1199, 0, 0),
(7, 21, 1200, 0, 0),
(7, 21, 1201, 0, 0),
(7, 21, 1202, 0, 0),
(7, 21, 1203, 0, 0),
(7, 21, 1204, 0, 0),
(7, 21, 1205, 0, 0),
(7, 21, 1206, 0, 0),
(7, 21, 1207, 0, 0),
(7, 20, 1208, 0, 0),
(7, 20, 1209, 0, 0),
(7, 20, 1210, 0, 0),
(7, 20, 1211, 0, 0),
(7, 20, 1212, 0, 0),
(7, 4, 1213, 0, 0),
(7, 4, 1214, 0, 0),
(7, 4, 1215, 0, 0),
(7, 4, 1216, 0, 0),
(7, 4, 1217, 0, 0),
(7, 4, 1218, 0, 0),
(7, 4, 1219, 0, 0),
(7, 65, 1220, 0, 0),
(7, 65, 1221, 0, 0),
(7, 65, 1222, 0, 0),
(7, 65, 1223, 0, 0),
(7, 65, 1224, 0, 0),
(7, 65, 1225, 0, 0),
(7, 65, 1226, 0, 0),
(7, 65, 1227, 0, 0),
(7, 65, 1228, 0, 0),
(7, 65, 1229, 0, 0),
(7, 65, 1230, 0, 0),
(7, 65, 1231, 0, 0),
(7, 65, 1232, 0, 0),
(7, 65, 1233, 0, 0),
(7, 65, 1234, 0, 0),
(7, 2, 1235, 0, 0),
(7, 2, 1236, 0, 0),
(7, 2, 1237, 0, 0),
(7, 2, 1238, 0, 0),
(7, 2, 1239, 0, 0),
(7, 2, 1240, 0, 0),
(7, 2, 1241, 0, 0),
(7, 2, 1242, 0, 0),
(7, 2, 1243, 0, 0),
(8, 6, 1, 0, 0),
(8, 6, 2, 0, 0),
(8, 6, 3, 0, 0),
(8, 6, 4, 0, 0),
(8, 6, 5, 0, 0),
(8, 6, 6, 0, 0),
(8, 6, 7, 0, 0),
(8, 6, 8, 0, 0),
(8, 6, 9, 0, 0),
(8, 6, 10, 0, 0),
(8, 6, 11, 0, 0),
(8, 6, 12, 0, 0),
(8, 6, 13, 0, 0),
(8, 6, 14, 0, 0),
(8, 6, 15, 0, 0),
(8, 6, 16, 0, 0),
(8, 6, 17, 0, 0),
(8, 6, 18, 0, 0),
(8, 6, 19, 0, 0),
(8, 6, 20, 0, 0),
(8, 6, 21, 0, 0),
(8, 6, 22, 0, 0),
(8, 6, 23, 0, 0),
(8, 6, 24, 0, 0),
(8, 6, 25, 0, 0),
(8, 6, 26, 0, 0),
(8, 6, 27, 0, 0),
(8, 6, 28, 0, 0),
(8, 6, 29, 0, 0),
(8, 6, 30, 0, 0),
(8, 6, 31, 0, 0),
(8, 6, 32, 0, 0),
(8, 6, 33, 0, 0),
(8, 6, 34, 0, 0),
(8, 6, 35, 0, 0),
(8, 6, 36, 0, 0),
(8, 7, 37, 0, 0),
(8, 7, 38, 0, 0),
(8, 7, 39, 0, 0),
(8, 7, 40, 0, 0),
(8, 7, 41, 0, 0),
(8, 7, 42, 0, 0),
(8, 7, 43, 0, 0),
(8, 7, 44, 0, 0),
(8, 7, 45, 0, 0),
(8, 7, 46, 0, 0),
(8, 7, 47, 0, 0),
(8, 7, 48, 0, 0),
(8, 7, 49, 0, 0),
(8, 7, 50, 0, 0),
(8, 7, 51, 0, 0),
(8, 7, 52, 0, 0),
(8, 7, 53, 0, 0),
(8, 7, 54, 0, 0),
(8, 7, 55, 0, 0),
(8, 7, 56, 0, 0),
(8, 7, 57, 0, 0),
(8, 7, 58, 0, 0),
(8, 7, 59, 0, 0),
(8, 7, 60, 0, 0),
(8, 7, 61, 0, 0),
(8, 7, 62, 0, 0),
(8, 7, 63, 0, 0),
(8, 7, 64, 0, 0),
(8, 7, 65, 0, 0),
(8, 4, 66, 0, 0),
(8, 4, 67, 0, 0),
(8, 4, 68, 0, 0),
(8, 4, 69, 0, 0),
(8, 4, 70, 0, 0),
(8, 4, 71, 0, 0),
(8, 4, 72, 0, 0),
(8, 4, 73, 0, 0),
(8, 4, 74, 0, 0),
(8, 4, 75, 0, 0),
(8, 4, 76, 0, 0),
(8, 4, 77, 0, 0),
(8, 4, 78, 0, 0),
(8, 4, 79, 0, 0),
(8, 4, 80, 0, 0),
(8, 4, 81, 0, 0),
(8, 4, 82, 0, 0),
(8, 4, 83, 0, 0),
(8, 4, 84, 0, 0),
(8, 4, 85, 0, 0),
(8, 4, 86, 0, 0),
(8, 4, 87, 0, 0),
(8, 4, 88, 0, 0),
(8, 4, 89, 0, 0),
(8, 4, 90, 0, 0),
(8, 4, 91, 0, 0),
(8, 4, 92, 0, 0),
(8, 4, 93, 0, 0),
(8, 4, 94, 0, 0),
(8, 4, 95, 0, 0),
(8, 4, 96, 0, 0),
(8, 4, 97, 0, 0),
(8, 4, 98, 0, 0),
(8, 4, 99, 0, 0),
(8, 4, 100, 0, 0),
(8, 4, 101, 0, 0),
(8, 4, 102, 0, 0),
(8, 4, 103, 0, 0),
(8, 4, 104, 0, 0),
(8, 4, 105, 0, 0),
(8, 4, 106, 0, 0),
(8, 4, 107, 0, 0),
(8, 4, 108, 0, 0),
(8, 4, 109, 0, 0),
(8, 2, 110, 0, 0),
(8, 2, 111, 0, 0),
(8, 2, 112, 0, 0),
(8, 2, 113, 0, 0),
(8, 2, 114, 0, 0),
(8, 2, 115, 0, 0),
(8, 2, 116, 0, 0),
(8, 2, 117, 0, 0),
(8, 2, 118, 0, 0),
(8, 2, 119, 0, 0),
(8, 2, 120, 0, 0),
(8, 2, 121, 0, 0),
(8, 2, 122, 0, 0),
(8, 2, 123, 0, 0),
(8, 2, 124, 0, 0),
(8, 2, 125, 0, 0),
(8, 26, 126, 0, 0),
(8, 26, 127, 0, 0),
(8, 26, 128, 0, 0),
(8, 26, 129, 0, 0),
(8, 26, 130, 0, 0),
(8, 26, 131, 0, 0),
(8, 26, 132, 0, 0),
(8, 26, 133, 0, 0),
(8, 26, 134, 0, 0),
(8, 26, 135, 0, 0),
(8, 26, 136, 0, 0),
(8, 26, 137, 0, 0),
(8, 26, 138, 0, 0),
(8, 26, 139, 0, 0),
(8, 26, 140, 0, 0),
(8, 26, 141, 0, 0),
(8, 26, 142, 0, 0),
(8, 26, 143, 0, 0),
(8, 26, 144, 0, 0),
(8, 26, 145, 0, 0),
(8, 26, 146, 0, 0),
(8, 26, 147, 0, 0),
(8, 26, 148, 0, 0),
(8, 26, 149, 0, 0),
(8, 26, 150, 0, 0),
(8, 4, 151, 0, 0),
(8, 6, 152, 0, 0),
(8, 7, 153, 0, 0),
(8, 26, 154, 0, 0),
(8, 13, 155, 0, 0),
(8, 13, 156, 0, 0),
(8, 13, 157, 0, 0),
(8, 13, 158, 0, 0),
(8, 13, 159, 0, 0),
(8, 13, 160, 0, 0),
(8, 13, 161, 0, 0),
(8, 13, 162, 0, 0),
(8, 13, 163, 0, 0),
(8, 13, 164, 0, 0),
(8, 13, 165, 0, 0),
(8, 13, 166, 0, 0),
(8, 13, 167, 0, 0),
(8, 13, 168, 0, 0),
(8, 13, 169, 0, 0),
(8, 13, 170, 0, 0),
(8, 13, 171, 0, 0),
(8, 13, 172, 0, 0),
(8, 13, 173, 0, 0),
(8, 14, 174, 0, 0),
(8, 14, 175, 0, 0),
(8, 14, 176, 0, 0),
(8, 14, 177, 0, 0),
(8, 14, 178, 0, 0),
(8, 14, 179, 0, 0),
(8, 14, 180, 0, 0),
(8, 14, 181, 0, 0),
(8, 14, 182, 0, 0),
(8, 14, 183, 0, 0),
(8, 14, 184, 0, 0),
(8, 14, 185, 0, 0),
(8, 14, 186, 0, 0),
(8, 14, 187, 0, 0),
(8, 14, 188, 0, 0),
(8, 14, 189, 0, 0),
(8, 14, 190, 0, 0),
(8, 14, 191, 0, 0),
(8, 14, 192, 0, 0),
(8, 14, 193, 0, 0),
(8, 14, 194, 0, 0),
(8, 14, 195, 0, 0),
(8, 14, 196, 0, 0),
(8, 14, 197, 0, 0),
(8, 14, 198, 0, 0),
(8, 14, 199, 0, 0),
(8, 14, 200, 0, 0),
(8, 14, 201, 0, 0),
(8, 14, 202, 0, 0),
(8, 14, 203, 0, 0),
(8, 14, 204, 0, 0),
(8, 8, 205, 0, 0),
(8, 8, 206, 0, 0),
(8, 8, 207, 0, 0),
(8, 8, 208, 0, 0),
(8, 8, 209, 0, 0),
(8, 8, 210, 0, 0),
(8, 8, 211, 0, 0),
(8, 8, 212, 0, 0),
(8, 8, 213, 0, 0),
(8, 8, 214, 0, 0),
(8, 8, 215, 0, 0),
(8, 8, 216, 0, 0),
(8, 8, 217, 0, 0),
(8, 8, 218, 0, 0),
(8, 8, 219, 0, 0),
(8, 10, 220, 0, 0),
(8, 10, 221, 0, 0),
(8, 10, 222, 0, 0),
(8, 10, 223, 0, 0),
(8, 10, 224, 0, 0),
(8, 10, 225, 0, 0),
(8, 10, 226, 0, 0),
(8, 10, 227, 0, 0),
(8, 10, 228, 0, 0),
(8, 10, 229, 0, 0),
(8, 10, 230, 0, 0),
(8, 10, 231, 0, 0),
(8, 9, 232, 0, 0),
(8, 9, 233, 0, 0),
(8, 9, 234, 0, 0),
(8, 9, 235, 0, 0),
(8, 9, 236, 0, 0),
(8, 9, 237, 0, 0),
(8, 9, 238, 0, 0),
(8, 9, 239, 0, 0),
(8, 9, 240, 0, 0),
(8, 9, 241, 0, 0),
(8, 9, 242, 0, 0),
(8, 9, 243, 0, 0),
(8, 9, 244, 0, 0),
(8, 9, 245, 0, 0),
(8, 9, 246, 0, 0),
(8, 9, 247, 0, 0),
(8, 9, 248, 0, 0),
(8, 9, 249, 0, 0),
(8, 9, 250, 0, 0),
(8, 9, 251, 0, 0),
(8, 9, 252, 0, 0),
(8, 9, 253, 0, 0),
(8, 9, 254, 0, 0),
(8, 9, 255, 0, 0),
(8, 16, 256, 0, 0),
(8, 16, 257, 0, 0),
(8, 16, 258, 0, 0),
(8, 16, 259, 0, 0),
(8, 16, 260, 0, 0),
(8, 16, 261, 0, 0),
(8, 16, 262, 0, 0),
(8, 16, 263, 0, 0),
(8, 16, 264, 0, 0),
(8, 16, 265, 0, 0),
(8, 16, 266, 0, 0),
(8, 16, 267, 0, 0),
(8, 16, 268, 0, 0),
(8, 16, 269, 0, 0),
(8, 16, 270, 0, 0),
(8, 16, 271, 0, 0),
(8, 16, 272, 0, 0),
(8, 16, 273, 0, 0),
(8, 16, 274, 0, 0),
(8, 16, 275, 0, 0),
(8, 16, 276, 0, 0),
(8, 16, 277, 0, 0),
(8, 16, 278, 0, 0),
(8, 15, 279, 0, 0),
(8, 15, 280, 0, 0),
(8, 15, 281, 0, 0),
(8, 15, 282, 0, 0),
(8, 15, 283, 0, 0),
(8, 15, 284, 0, 0),
(8, 15, 285, 0, 0),
(8, 15, 286, 0, 0),
(8, 15, 287, 0, 0),
(8, 15, 288, 0, 0),
(8, 18, 289, 0, 0),
(8, 18, 290, 0, 0),
(8, 18, 291, 0, 0),
(8, 18, 292, 0, 0),
(8, 18, 293, 0, 0),
(8, 18, 294, 0, 0),
(8, 18, 295, 0, 0),
(8, 18, 296, 0, 0),
(8, 18, 297, 0, 0),
(8, 18, 298, 0, 0),
(8, 18, 299, 0, 0),
(8, 18, 300, 0, 0),
(8, 18, 301, 0, 0),
(8, 18, 302, 0, 0),
(8, 18, 303, 0, 0),
(8, 18, 304, 0, 0),
(8, 18, 305, 0, 0),
(8, 19, 306, 0, 0),
(8, 19, 307, 0, 0),
(8, 19, 308, 0, 0),
(8, 19, 309, 0, 0),
(8, 19, 310, 0, 0),
(8, 19, 311, 0, 0),
(8, 19, 312, 0, 0),
(8, 19, 313, 0, 0),
(8, 20, 314, 0, 0),
(8, 20, 315, 0, 0),
(8, 20, 316, 0, 0),
(8, 20, 317, 0, 0),
(8, 20, 318, 0, 0),
(8, 20, 319, 0, 0),
(8, 20, 320, 0, 0),
(8, 20, 321, 0, 0),
(8, 20, 322, 0, 0),
(8, 20, 323, 0, 0),
(8, 20, 324, 0, 0),
(8, 20, 325, 0, 0),
(8, 20, 326, 0, 0),
(8, 20, 327, 0, 0),
(8, 20, 328, 0, 0),
(8, 20, 329, 0, 0),
(8, 20, 330, 0, 0),
(8, 20, 331, 0, 0),
(8, 20, 332, 0, 0),
(8, 20, 333, 0, 0),
(8, 20, 334, 0, 0),
(8, 20, 335, 0, 0),
(8, 20, 336, 0, 0),
(8, 20, 337, 0, 0),
(8, 20, 338, 0, 0),
(8, 20, 339, 0, 0),
(8, 20, 340, 0, 0),
(8, 20, 341, 0, 0),
(8, 20, 342, 0, 0),
(8, 20, 343, 0, 0),
(8, 20, 344, 0, 0),
(8, 20, 345, 0, 0),
(8, 20, 346, 0, 0),
(8, 20, 347, 0, 0),
(8, 20, 348, 0, 0),
(8, 20, 349, 0, 0),
(8, 20, 350, 0, 0),
(8, 21, 351, 0, 0),
(8, 21, 352, 0, 0),
(8, 21, 353, 0, 0),
(8, 21, 354, 0, 0),
(8, 21, 355, 0, 0),
(8, 21, 356, 0, 0),
(8, 21, 357, 0, 0),
(8, 21, 358, 0, 0),
(8, 21, 359, 0, 0),
(8, 21, 360, 0, 0),
(8, 21, 361, 0, 0),
(8, 21, 362, 0, 0),
(8, 21, 363, 0, 0),
(8, 21, 364, 0, 0),
(8, 21, 365, 0, 0),
(8, 21, 366, 0, 0),
(8, 21, 367, 0, 0),
(8, 21, 368, 0, 0),
(8, 21, 369, 0, 0),
(8, 21, 370, 0, 0),
(8, 21, 371, 0, 0),
(8, 21, 372, 0, 0),
(8, 21, 373, 0, 0),
(8, 21, 374, 0, 0),
(8, 21, 375, 0, 0),
(8, 21, 376, 0, 0),
(8, 21, 377, 0, 0),
(8, 21, 378, 0, 0),
(8, 21, 379, 0, 0),
(8, 21, 380, 0, 0),
(8, 21, 381, 0, 0),
(8, 21, 382, 0, 0),
(8, 21, 383, 0, 0),
(8, 21, 384, 0, 0),
(8, 21, 385, 0, 0),
(8, 21, 386, 0, 0),
(8, 21, 387, 0, 0),
(8, 21, 388, 0, 0),
(8, 22, 389, 0, 0),
(8, 22, 390, 0, 0),
(8, 22, 391, 0, 0),
(8, 22, 392, 0, 0),
(8, 22, 393, 0, 0),
(8, 22, 394, 0, 0),
(8, 22, 395, 0, 0),
(8, 22, 396, 0, 0),
(8, 22, 397, 0, 0),
(8, 22, 398, 0, 0),
(8, 22, 399, 0, 0),
(8, 22, 400, 0, 0),
(8, 22, 401, 0, 0),
(8, 22, 402, 0, 0),
(8, 22, 403, 0, 0),
(8, 22, 404, 0, 0),
(8, 22, 405, 0, 0),
(8, 22, 406, 0, 0),
(8, 22, 407, 0, 0),
(8, 22, 408, 0, 0),
(8, 22, 409, 0, 0),
(8, 22, 410, 0, 0),
(8, 22, 411, 0, 0),
(8, 22, 412, 0, 0),
(8, 22, 413, 0, 0),
(8, 22, 414, 0, 0),
(8, 22, 415, 0, 0),
(8, 22, 416, 0, 0),
(8, 22, 417, 0, 0),
(8, 22, 418, 0, 0),
(8, 22, 419, 0, 0),
(8, 22, 420, 0, 0),
(8, 22, 421, 0, 0),
(8, 22, 422, 0, 0),
(8, 22, 423, 0, 0),
(8, 22, 424, 0, 0),
(8, 22, 425, 0, 0),
(8, 22, 426, 0, 0);
INSERT IGNORE INTO `vtiger_profile2field` (`profileid`, `tabid`, `fieldid`, `visible`, `readonly`) VALUES
(8, 22, 427, 0, 0),
(8, 22, 428, 0, 0),
(8, 22, 429, 0, 0),
(8, 22, 430, 0, 0),
(8, 22, 431, 0, 0),
(8, 22, 432, 0, 0),
(8, 22, 433, 0, 0),
(8, 22, 434, 0, 0),
(8, 22, 435, 0, 0),
(8, 23, 436, 0, 0),
(8, 23, 437, 0, 0),
(8, 23, 438, 0, 0),
(8, 23, 439, 0, 0),
(8, 23, 440, 0, 0),
(8, 23, 441, 0, 0),
(8, 23, 442, 0, 0),
(8, 23, 443, 0, 0),
(8, 23, 444, 0, 0),
(8, 23, 445, 0, 0),
(8, 23, 446, 0, 0),
(8, 23, 447, 0, 0),
(8, 23, 448, 0, 0),
(8, 23, 449, 0, 0),
(8, 23, 450, 0, 0),
(8, 23, 451, 0, 0),
(8, 23, 452, 0, 0),
(8, 23, 453, 0, 0),
(8, 23, 454, 0, 0),
(8, 23, 455, 0, 0),
(8, 23, 456, 0, 0),
(8, 23, 457, 0, 0),
(8, 23, 458, 0, 0),
(8, 23, 459, 0, 0),
(8, 23, 460, 0, 0),
(8, 23, 461, 0, 0),
(8, 23, 462, 0, 0),
(8, 23, 463, 0, 0),
(8, 23, 464, 0, 0),
(8, 23, 465, 0, 0),
(8, 23, 466, 0, 0),
(8, 23, 467, 0, 0),
(8, 23, 468, 0, 0),
(8, 23, 469, 0, 0),
(8, 23, 470, 0, 0),
(8, 23, 471, 0, 0),
(8, 23, 472, 0, 0),
(8, 23, 473, 0, 0),
(8, 23, 474, 0, 0),
(8, 10, 520, 0, 0),
(8, 10, 521, 0, 0),
(8, 10, 522, 0, 0),
(8, 10, 523, 0, 0),
(8, 10, 524, 0, 0),
(8, 10, 525, 0, 0),
(8, 34, 526, 0, 0),
(8, 34, 527, 0, 0),
(8, 34, 528, 0, 0),
(8, 34, 529, 0, 0),
(8, 34, 530, 0, 0),
(8, 34, 531, 0, 0),
(8, 34, 532, 0, 0),
(8, 34, 533, 0, 0),
(8, 34, 534, 0, 0),
(8, 34, 535, 0, 0),
(8, 34, 536, 0, 0),
(8, 34, 537, 0, 0),
(8, 34, 538, 0, 0),
(8, 34, 539, 0, 0),
(8, 34, 540, 0, 0),
(8, 34, 541, 0, 0),
(8, 34, 542, 0, 0),
(8, 29, 543, 0, 0),
(8, 35, 544, 0, 0),
(8, 35, 545, 0, 0),
(8, 35, 546, 0, 0),
(8, 35, 547, 0, 0),
(8, 35, 548, 0, 0),
(8, 35, 549, 0, 0),
(8, 35, 550, 0, 0),
(8, 35, 551, 0, 0),
(8, 35, 552, 0, 0),
(8, 35, 553, 0, 0),
(8, 35, 554, 0, 0),
(8, 35, 555, 0, 0),
(8, 35, 556, 0, 0),
(8, 35, 557, 0, 0),
(8, 35, 558, 0, 0),
(8, 35, 559, 0, 0),
(8, 35, 560, 0, 0),
(8, 35, 561, 0, 0),
(8, 35, 562, 0, 0),
(8, 35, 563, 0, 0),
(8, 35, 564, 0, 0),
(8, 35, 565, 0, 0),
(8, 36, 566, 0, 0),
(8, 36, 567, 0, 0),
(8, 36, 568, 0, 0),
(8, 36, 569, 0, 0),
(8, 36, 570, 0, 0),
(8, 36, 571, 0, 0),
(8, 36, 572, 0, 0),
(8, 36, 573, 0, 0),
(8, 36, 574, 0, 0),
(8, 36, 575, 0, 0),
(8, 36, 576, 0, 0),
(8, 36, 577, 0, 0),
(8, 36, 578, 0, 0),
(8, 36, 579, 0, 0),
(8, 36, 580, 0, 0),
(8, 36, 581, 0, 0),
(8, 36, 582, 0, 0),
(8, 36, 583, 0, 0),
(8, 36, 584, 0, 0),
(8, 36, 585, 0, 0),
(8, 36, 586, 0, 0),
(8, 36, 587, 0, 0),
(8, 38, 588, 0, 0),
(8, 38, 589, 0, 0),
(8, 38, 590, 0, 0),
(8, 38, 591, 0, 0),
(8, 38, 592, 0, 0),
(8, 38, 593, 0, 0),
(8, 38, 594, 0, 0),
(8, 38, 595, 0, 0),
(8, 38, 596, 0, 0),
(8, 38, 597, 0, 0),
(8, 38, 598, 0, 0),
(8, 38, 599, 0, 0),
(8, 38, 600, 0, 0),
(8, 38, 601, 0, 0),
(8, 38, 602, 0, 0),
(8, 38, 603, 0, 0),
(8, 38, 604, 0, 0),
(8, 38, 605, 0, 0),
(8, 38, 606, 0, 0),
(8, 38, 607, 0, 0),
(8, 38, 608, 0, 0),
(8, 42, 609, 0, 0),
(8, 42, 610, 0, 0),
(8, 42, 611, 0, 0),
(8, 42, 612, 0, 0),
(8, 42, 613, 0, 0),
(8, 42, 614, 0, 0),
(8, 42, 615, 0, 0),
(8, 42, 616, 0, 0),
(8, 43, 617, 0, 0),
(8, 43, 618, 0, 0),
(8, 43, 619, 0, 0),
(8, 43, 620, 0, 0),
(8, 43, 621, 0, 0),
(8, 43, 622, 0, 0),
(8, 43, 623, 0, 0),
(8, 43, 624, 0, 0),
(8, 43, 625, 0, 0),
(8, 43, 626, 0, 0),
(8, 43, 627, 0, 0),
(8, 43, 628, 0, 0),
(8, 43, 629, 0, 0),
(8, 44, 630, 0, 0),
(8, 44, 631, 0, 0),
(8, 44, 632, 0, 0),
(8, 44, 633, 0, 0),
(8, 44, 634, 0, 0),
(8, 44, 635, 0, 0),
(8, 44, 636, 0, 0),
(8, 44, 637, 0, 0),
(8, 44, 638, 0, 0),
(8, 44, 639, 0, 0),
(8, 44, 640, 0, 0),
(8, 44, 641, 0, 0),
(8, 44, 642, 0, 0),
(8, 44, 643, 0, 0),
(8, 44, 644, 0, 0),
(8, 44, 645, 0, 0),
(8, 44, 646, 0, 0),
(8, 44, 647, 0, 0),
(8, 45, 648, 0, 0),
(8, 45, 649, 0, 0),
(8, 45, 650, 0, 0),
(8, 45, 651, 0, 0),
(8, 45, 652, 0, 0),
(8, 45, 653, 0, 0),
(8, 45, 654, 0, 0),
(8, 45, 655, 0, 0),
(8, 45, 656, 0, 0),
(8, 45, 657, 0, 0),
(8, 45, 658, 0, 0),
(8, 45, 659, 0, 0),
(8, 45, 660, 0, 0),
(8, 45, 661, 0, 0),
(8, 45, 662, 0, 0),
(8, 45, 663, 0, 0),
(8, 45, 664, 0, 0),
(8, 45, 665, 0, 0),
(8, 45, 666, 0, 0),
(8, 45, 667, 0, 0),
(8, 47, 668, 0, 0),
(8, 47, 669, 0, 0),
(8, 47, 670, 0, 0),
(8, 47, 671, 0, 0),
(8, 47, 672, 0, 0),
(8, 47, 673, 0, 0),
(8, 2, 674, 0, 0),
(8, 29, 675, 0, 0),
(8, 23, 676, 0, 0),
(8, 23, 677, 0, 0),
(8, 23, 678, 0, 0),
(8, 23, 679, 0, 0),
(8, 23, 680, 0, 0),
(8, 23, 681, 0, 0),
(8, 23, 682, 0, 0),
(8, 23, 683, 0, 0),
(8, 23, 684, 0, 0),
(8, 22, 685, 0, 0),
(8, 22, 686, 0, 0),
(8, 22, 687, 0, 0),
(8, 22, 688, 0, 0),
(8, 22, 689, 0, 0),
(8, 22, 690, 0, 0),
(8, 22, 691, 0, 0),
(8, 22, 692, 0, 0),
(8, 22, 693, 0, 0),
(8, 21, 694, 0, 0),
(8, 21, 695, 0, 0),
(8, 21, 696, 0, 0),
(8, 21, 697, 0, 0),
(8, 21, 698, 0, 0),
(8, 21, 699, 0, 0),
(8, 21, 700, 0, 0),
(8, 21, 701, 0, 0),
(8, 21, 702, 0, 0),
(8, 20, 703, 0, 0),
(8, 20, 704, 0, 0),
(8, 20, 705, 0, 0),
(8, 20, 706, 0, 0),
(8, 20, 707, 0, 0),
(8, 20, 708, 0, 0),
(8, 20, 709, 0, 0),
(8, 20, 710, 0, 0),
(8, 20, 711, 0, 0),
(8, 29, 712, 0, 0),
(8, 44, 713, 0, 0),
(8, 42, 714, 0, 0),
(8, 29, 715, 0, 0),
(8, 29, 716, 0, 0),
(8, 29, 717, 0, 0),
(8, 23, 718, 0, 0),
(8, 22, 719, 0, 0),
(8, 21, 720, 0, 0),
(8, 20, 721, 0, 0),
(8, 29, 722, 0, 0),
(8, 6, 723, 0, 0),
(8, 4, 724, 0, 0),
(8, 2, 725, 0, 0),
(8, 29, 726, 0, 0),
(8, 23, 727, 0, 0),
(8, 23, 728, 0, 0),
(8, 21, 729, 0, 0),
(8, 21, 730, 0, 0),
(8, 18, 731, 0, 0),
(8, 7, 732, 0, 0),
(8, 42, 733, 0, 0),
(8, 42, 734, 0, 0),
(8, 23, 735, 0, 0),
(8, 20, 736, 0, 0),
(8, 21, 737, 0, 0),
(8, 22, 738, 0, 0),
(8, 29, 739, 0, 0),
(8, 2, 740, 0, 0),
(8, 13, 741, 0, 0),
(8, 29, 742, 0, 0),
(8, 29, 743, 0, 0),
(8, 29, 744, 0, 0),
(8, 29, 745, 0, 0),
(8, 14, 772, 0, 0),
(8, 36, 773, 0, 0),
(8, 23, 774, 0, 0),
(8, 29, 775, 0, 0),
(8, 23, 776, 0, 0),
(8, 23, 777, 0, 0),
(8, 23, 778, 0, 0),
(8, 20, 779, 0, 0),
(8, 20, 780, 0, 0),
(8, 20, 781, 0, 0),
(8, 21, 782, 0, 0),
(8, 22, 783, 0, 0),
(8, 22, 784, 0, 0),
(8, 22, 785, 0, 0),
(8, 42, 786, 0, 0),
(8, 42, 787, 0, 0),
(8, 42, 788, 0, 0),
(8, 2, 789, 0, 0),
(8, 4, 790, 0, 0),
(8, 6, 791, 0, 0),
(8, 7, 792, 0, 0),
(8, 8, 793, 0, 0),
(8, 9, 794, 0, 0),
(8, 10, 795, 0, 0),
(8, 13, 796, 0, 0),
(8, 14, 797, 0, 0),
(8, 15, 798, 0, 0),
(8, 16, 799, 0, 0),
(8, 18, 800, 0, 0),
(8, 19, 801, 0, 0),
(8, 20, 802, 0, 0),
(8, 21, 803, 0, 0),
(8, 22, 804, 0, 0),
(8, 23, 805, 0, 0),
(8, 26, 806, 0, 0),
(8, 10, 807, 0, 0),
(8, 2, 808, 0, 0),
(8, 4, 809, 0, 0),
(8, 6, 810, 0, 0),
(8, 7, 811, 0, 0),
(8, 8, 812, 0, 0),
(8, 9, 813, 0, 0),
(8, 10, 814, 0, 0),
(8, 13, 815, 0, 0),
(8, 14, 816, 0, 0),
(8, 15, 817, 0, 0),
(8, 16, 818, 0, 0),
(8, 18, 819, 0, 0),
(8, 19, 820, 0, 0),
(8, 20, 821, 0, 0),
(8, 21, 822, 0, 0),
(8, 22, 823, 0, 0),
(8, 23, 824, 0, 0),
(8, 26, 825, 0, 0),
(8, 2, 826, 0, 0),
(8, 4, 827, 0, 0),
(8, 6, 828, 0, 0),
(8, 7, 829, 0, 0),
(8, 8, 830, 0, 0),
(8, 9, 831, 0, 0),
(8, 10, 832, 0, 0),
(8, 13, 833, 0, 0),
(8, 14, 834, 0, 0),
(8, 15, 835, 0, 0),
(8, 16, 836, 0, 0),
(8, 18, 837, 0, 0),
(8, 19, 838, 0, 0),
(8, 20, 839, 0, 0),
(8, 21, 840, 0, 0),
(8, 22, 841, 0, 0),
(8, 23, 842, 0, 0),
(8, 26, 843, 0, 0),
(8, 20, 844, 0, 0),
(8, 21, 845, 0, 0),
(8, 22, 846, 0, 0),
(8, 23, 847, 0, 0),
(8, 45, 848, 0, 0),
(8, 45, 849, 0, 0),
(8, 29, 850, 0, 0),
(8, 22, 851, 0, 0),
(8, 29, 852, 0, 0),
(8, 16, 853, 0, 0),
(8, 16, 854, 0, 0),
(8, 16, 855, 0, 0),
(8, 16, 856, 0, 0),
(8, 9, 857, 0, 0),
(8, 9, 858, 0, 0),
(8, 16, 859, 0, 0),
(8, 50, 860, 0, 0),
(8, 50, 861, 0, 0),
(8, 50, 862, 0, 0),
(8, 50, 863, 0, 0),
(8, 50, 864, 0, 0),
(8, 50, 865, 0, 0),
(8, 6, 892, 0, 0),
(8, 6, 893, 0, 0),
(8, 6, 894, 0, 0),
(8, 6, 895, 0, 0),
(8, 6, 896, 0, 0),
(8, 6, 897, 0, 0),
(8, 6, 898, 0, 0),
(8, 6, 899, 0, 0),
(8, 6, 900, 0, 0),
(8, 6, 901, 0, 0),
(8, 6, 902, 0, 0),
(8, 6, 903, 0, 0),
(8, 6, 904, 0, 0),
(8, 6, 905, 0, 0),
(8, 6, 906, 0, 0),
(8, 6, 907, 0, 0),
(8, 6, 908, 0, 0),
(8, 6, 909, 0, 0),
(8, 6, 910, 0, 0),
(8, 6, 911, 0, 0),
(8, 6, 912, 0, 0),
(8, 6, 913, 0, 0),
(8, 6, 914, 0, 0),
(8, 6, 915, 0, 0),
(8, 6, 916, 0, 0),
(8, 6, 917, 0, 0),
(8, 6, 918, 0, 0),
(8, 6, 919, 0, 0),
(8, 6, 920, 0, 0),
(8, 6, 921, 0, 0),
(8, 6, 922, 0, 0),
(8, 6, 923, 0, 0),
(8, 6, 924, 0, 0),
(8, 6, 925, 0, 0),
(8, 6, 926, 0, 0),
(8, 23, 927, 0, 0),
(8, 52, 928, 0, 0),
(8, 52, 929, 0, 0),
(8, 52, 930, 0, 0),
(8, 52, 931, 0, 0),
(8, 52, 932, 0, 0),
(8, 52, 933, 0, 0),
(8, 52, 934, 0, 0),
(8, 52, 935, 0, 0),
(8, 52, 936, 0, 0),
(8, 52, 937, 0, 0),
(8, 52, 938, 0, 0),
(8, 52, 939, 0, 0),
(8, 52, 940, 0, 0),
(8, 52, 941, 0, 0),
(8, 52, 942, 0, 0),
(8, 52, 943, 0, 0),
(8, 52, 944, 0, 0),
(8, 52, 945, 0, 0),
(8, 52, 946, 0, 0),
(8, 52, 947, 0, 0),
(8, 52, 948, 0, 0),
(8, 52, 949, 0, 0),
(8, 52, 950, 0, 0),
(8, 52, 951, 0, 0),
(8, 52, 952, 0, 0),
(8, 21, 953, 0, 0),
(8, 53, 954, 0, 0),
(8, 53, 955, 0, 0),
(8, 53, 956, 0, 0),
(8, 53, 957, 0, 0),
(8, 53, 958, 0, 0),
(8, 53, 959, 0, 0),
(8, 53, 960, 0, 0),
(8, 53, 961, 0, 0),
(8, 53, 962, 0, 0),
(8, 53, 963, 0, 0),
(8, 53, 964, 0, 0),
(8, 53, 965, 0, 0),
(8, 53, 966, 0, 0),
(8, 53, 967, 0, 0),
(8, 53, 968, 0, 0),
(8, 53, 969, 0, 0),
(8, 54, 970, 0, 0),
(8, 54, 971, 0, 0),
(8, 54, 972, 0, 0),
(8, 54, 973, 0, 0),
(8, 54, 974, 0, 0),
(8, 54, 975, 0, 0),
(8, 54, 976, 0, 0),
(8, 54, 977, 0, 0),
(8, 54, 978, 0, 0),
(8, 54, 979, 0, 0),
(8, 54, 980, 0, 0),
(8, 54, 981, 0, 0),
(8, 54, 982, 0, 0),
(8, 54, 983, 0, 0),
(8, 54, 984, 0, 0),
(8, 54, 985, 0, 0),
(8, 55, 986, 0, 0),
(8, 55, 987, 0, 0),
(8, 55, 988, 0, 0),
(8, 55, 989, 0, 0),
(8, 55, 990, 0, 0),
(8, 55, 991, 0, 0),
(8, 55, 992, 0, 0),
(8, 55, 993, 0, 0),
(8, 55, 994, 0, 0),
(8, 55, 995, 0, 0),
(8, 55, 996, 0, 0),
(8, 55, 997, 0, 0),
(8, 55, 998, 0, 0),
(8, 55, 999, 0, 0),
(8, 55, 1000, 0, 0),
(8, 55, 1001, 0, 0),
(8, 55, 1002, 0, 0),
(8, 55, 1003, 0, 0),
(8, 55, 1004, 0, 0),
(8, 55, 1005, 0, 0),
(8, 55, 1006, 0, 0),
(8, 55, 1007, 0, 0),
(8, 7, 1008, 0, 0),
(8, 7, 1009, 0, 0),
(8, 7, 1010, 0, 0),
(8, 7, 1011, 0, 0),
(8, 7, 1012, 0, 0),
(8, 7, 1013, 0, 0),
(8, 7, 1014, 0, 0),
(8, 7, 1015, 0, 0),
(8, 7, 1016, 0, 0),
(8, 7, 1017, 0, 0),
(8, 7, 1018, 0, 0),
(8, 7, 1019, 0, 0),
(8, 7, 1020, 0, 0),
(8, 7, 1021, 0, 0),
(8, 7, 1022, 0, 0),
(8, 7, 1023, 0, 0),
(8, 7, 1024, 0, 0),
(8, 7, 1025, 0, 0),
(8, 7, 1026, 0, 0),
(8, 7, 1027, 0, 0),
(8, 7, 1028, 0, 0),
(8, 7, 1029, 0, 0),
(8, 7, 1030, 0, 0),
(8, 7, 1031, 0, 0),
(8, 7, 1032, 0, 0),
(8, 7, 1033, 0, 0),
(8, 56, 1034, 0, 0),
(8, 56, 1035, 0, 0),
(8, 56, 1036, 0, 0),
(8, 56, 1037, 0, 0),
(8, 56, 1038, 0, 0),
(8, 56, 1039, 0, 0),
(8, 56, 1040, 0, 0),
(8, 56, 1041, 0, 0),
(8, 56, 1042, 0, 0),
(8, 56, 1043, 0, 0),
(8, 56, 1044, 0, 0),
(8, 56, 1045, 0, 0),
(8, 56, 1046, 0, 0),
(8, 57, 1047, 0, 0),
(8, 57, 1048, 0, 0),
(8, 57, 1049, 0, 0),
(8, 57, 1050, 0, 0),
(8, 57, 1051, 0, 0),
(8, 57, 1052, 0, 0),
(8, 57, 1053, 0, 0),
(8, 57, 1054, 0, 0),
(8, 57, 1055, 0, 0),
(8, 57, 1056, 0, 0),
(8, 57, 1057, 0, 0),
(8, 57, 1058, 0, 0),
(8, 57, 1059, 0, 0),
(8, 57, 1060, 0, 0),
(8, 57, 1061, 0, 0),
(8, 57, 1062, 0, 0),
(8, 57, 1063, 0, 0),
(8, 58, 1064, 0, 0),
(8, 58, 1065, 0, 0),
(8, 58, 1066, 0, 0),
(8, 58, 1067, 0, 0),
(8, 58, 1068, 0, 0),
(8, 58, 1069, 0, 0),
(8, 58, 1070, 0, 0),
(8, 58, 1071, 0, 0),
(8, 58, 1072, 0, 0),
(8, 58, 1073, 0, 0),
(8, 58, 1074, 0, 0),
(8, 58, 1075, 0, 0),
(8, 58, 1076, 0, 0),
(8, 58, 1077, 0, 0),
(8, 58, 1078, 0, 0),
(8, 58, 1079, 0, 0),
(8, 58, 1080, 0, 0),
(8, 58, 1081, 0, 0),
(8, 58, 1082, 0, 0),
(8, 58, 1083, 0, 0),
(8, 58, 1084, 0, 0),
(8, 58, 1085, 0, 0),
(8, 59, 1086, 0, 0),
(8, 59, 1087, 0, 0),
(8, 59, 1088, 0, 0),
(8, 59, 1089, 0, 0),
(8, 59, 1090, 0, 0),
(8, 59, 1091, 0, 0),
(8, 59, 1092, 0, 0),
(8, 59, 1093, 0, 0),
(8, 59, 1094, 0, 0),
(8, 59, 1095, 0, 0),
(8, 59, 1096, 0, 0),
(8, 59, 1097, 0, 0),
(8, 59, 1098, 0, 0),
(8, 59, 1099, 0, 0),
(8, 59, 1100, 0, 0),
(8, 59, 1101, 0, 0),
(8, 59, 1102, 0, 0),
(8, 59, 1103, 0, 0),
(8, 59, 1104, 0, 0),
(8, 59, 1105, 0, 0),
(8, 59, 1106, 0, 0),
(8, 59, 1107, 0, 0),
(8, 59, 1108, 0, 0),
(8, 59, 1109, 0, 0),
(8, 60, 1110, 0, 0),
(8, 60, 1111, 0, 0),
(8, 60, 1112, 0, 0),
(8, 60, 1113, 0, 0),
(8, 60, 1114, 0, 0),
(8, 60, 1115, 0, 0),
(8, 60, 1116, 0, 0),
(8, 60, 1117, 0, 0),
(8, 60, 1118, 0, 0),
(8, 60, 1119, 0, 0),
(8, 60, 1120, 0, 0),
(8, 60, 1121, 0, 0),
(8, 60, 1122, 0, 0),
(8, 60, 1123, 0, 0),
(8, 60, 1124, 0, 0),
(8, 60, 1125, 0, 0),
(8, 60, 1126, 0, 0),
(8, 60, 1127, 0, 0),
(8, 61, 1128, 0, 0),
(8, 61, 1129, 0, 0),
(8, 61, 1130, 0, 0),
(8, 61, 1131, 0, 0),
(8, 61, 1132, 0, 0),
(8, 61, 1133, 0, 0),
(8, 61, 1134, 0, 0),
(8, 61, 1135, 0, 0),
(8, 61, 1136, 0, 0),
(8, 61, 1137, 0, 0),
(8, 61, 1138, 0, 0),
(8, 61, 1139, 0, 0),
(8, 61, 1140, 0, 0),
(8, 61, 1141, 0, 0),
(8, 61, 1142, 0, 0),
(8, 61, 1143, 0, 0),
(8, 61, 1144, 0, 0),
(8, 61, 1145, 0, 0),
(8, 61, 1146, 0, 0),
(8, 62, 1147, 0, 0),
(8, 62, 1148, 0, 0),
(8, 62, 1149, 0, 0),
(8, 62, 1150, 0, 0),
(8, 62, 1151, 0, 0),
(8, 62, 1152, 0, 0),
(8, 62, 1153, 0, 0),
(8, 62, 1154, 0, 0),
(8, 62, 1155, 0, 0),
(8, 62, 1156, 0, 0),
(8, 62, 1157, 0, 0),
(8, 62, 1158, 0, 0),
(8, 62, 1159, 0, 0),
(8, 62, 1160, 0, 0),
(8, 62, 1161, 0, 0),
(8, 62, 1162, 0, 0),
(8, 62, 1163, 0, 0),
(8, 62, 1164, 0, 0),
(8, 62, 1165, 0, 0),
(8, 62, 1166, 0, 0),
(8, 63, 1167, 0, 0),
(8, 63, 1168, 0, 0),
(8, 63, 1169, 0, 0),
(8, 63, 1170, 0, 0),
(8, 63, 1171, 0, 0),
(8, 63, 1172, 0, 0),
(8, 63, 1173, 0, 0),
(8, 63, 1174, 0, 0),
(8, 63, 1175, 0, 0),
(8, 63, 1176, 0, 0),
(8, 63, 1177, 0, 0),
(8, 63, 1178, 0, 0),
(8, 63, 1179, 0, 0),
(8, 21, 1189, 0, 0),
(8, 21, 1190, 0, 0),
(8, 21, 1191, 0, 0),
(8, 21, 1192, 0, 0),
(8, 21, 1193, 0, 0),
(8, 21, 1194, 0, 0),
(8, 21, 1195, 0, 0),
(8, 21, 1196, 0, 0),
(8, 21, 1197, 0, 0),
(8, 21, 1198, 0, 0),
(8, 21, 1199, 0, 0),
(8, 21, 1200, 0, 0),
(8, 21, 1201, 0, 0),
(8, 21, 1202, 0, 0),
(8, 21, 1203, 0, 0),
(8, 21, 1204, 0, 0),
(8, 21, 1205, 0, 0),
(8, 21, 1206, 0, 0),
(8, 21, 1207, 0, 0),
(8, 20, 1208, 0, 0),
(8, 20, 1209, 0, 0),
(8, 20, 1210, 0, 0),
(8, 20, 1211, 0, 0),
(8, 20, 1212, 0, 0),
(8, 4, 1213, 0, 0),
(8, 4, 1214, 0, 0),
(8, 4, 1215, 0, 0),
(8, 4, 1216, 0, 0),
(8, 4, 1217, 0, 0),
(8, 4, 1218, 0, 0),
(8, 4, 1219, 0, 0),
(8, 65, 1220, 0, 0),
(8, 65, 1221, 0, 0),
(8, 65, 1222, 0, 0),
(8, 65, 1223, 0, 0),
(8, 65, 1224, 0, 0),
(8, 65, 1225, 0, 0),
(8, 65, 1226, 0, 0),
(8, 65, 1227, 0, 0),
(8, 65, 1228, 0, 0),
(8, 65, 1229, 0, 0),
(8, 65, 1230, 0, 0),
(8, 65, 1231, 0, 0),
(8, 65, 1232, 0, 0),
(8, 65, 1233, 0, 0),
(8, 65, 1234, 0, 0),
(8, 2, 1235, 0, 0),
(8, 2, 1236, 0, 0),
(8, 2, 1237, 0, 0),
(8, 2, 1238, 0, 0),
(8, 2, 1239, 0, 0),
(8, 2, 1240, 0, 0),
(8, 2, 1241, 0, 0),
(8, 2, 1242, 0, 0),
(8, 2, 1243, 0, 0),
(32, 6, 1, 0, 0),
(32, 6, 2, 0, 0),
(32, 6, 3, 0, 0),
(32, 6, 4, 0, 0),
(32, 6, 5, 0, 0),
(32, 6, 6, 0, 0),
(32, 6, 7, 0, 0),
(32, 6, 8, 0, 0),
(32, 6, 9, 0, 0),
(32, 6, 10, 0, 0),
(32, 6, 11, 0, 0),
(32, 6, 12, 0, 0),
(32, 6, 13, 0, 0),
(32, 6, 14, 0, 0),
(32, 6, 15, 0, 0),
(32, 6, 16, 0, 0),
(32, 6, 17, 0, 0),
(32, 6, 18, 0, 0),
(32, 6, 19, 0, 0),
(32, 6, 20, 0, 0),
(32, 6, 21, 0, 1),
(32, 6, 22, 0, 1),
(32, 6, 23, 0, 0),
(32, 6, 24, 0, 0),
(32, 6, 25, 0, 0),
(32, 6, 26, 0, 0),
(32, 6, 27, 0, 0),
(32, 6, 28, 0, 0),
(32, 6, 29, 0, 0),
(32, 6, 30, 0, 0),
(32, 6, 31, 0, 0),
(32, 6, 32, 0, 0),
(32, 6, 33, 0, 0),
(32, 6, 34, 0, 0),
(32, 6, 35, 0, 0),
(32, 6, 36, 0, 0),
(32, 7, 37, 0, 0),
(32, 7, 38, 0, 0),
(32, 7, 39, 0, 0),
(32, 7, 40, 0, 0),
(32, 7, 41, 0, 0),
(32, 7, 42, 0, 0),
(32, 7, 43, 0, 0),
(32, 7, 44, 0, 0),
(32, 7, 45, 0, 0),
(32, 7, 46, 0, 0),
(32, 7, 47, 0, 0),
(32, 7, 48, 0, 0),
(32, 7, 49, 0, 0),
(32, 7, 50, 0, 0),
(32, 7, 51, 0, 0),
(32, 7, 52, 0, 0),
(32, 7, 53, 0, 0),
(32, 7, 54, 0, 0),
(32, 7, 55, 0, 0),
(32, 7, 56, 0, 1),
(32, 7, 57, 0, 1),
(32, 7, 58, 0, 0),
(32, 7, 59, 0, 0),
(32, 7, 60, 0, 0),
(32, 7, 61, 0, 0),
(32, 7, 62, 0, 0),
(32, 7, 63, 0, 0),
(32, 7, 64, 0, 0),
(32, 7, 65, 0, 0),
(32, 4, 66, 0, 0),
(32, 4, 67, 0, 0),
(32, 4, 68, 0, 0),
(32, 4, 69, 0, 0),
(32, 4, 70, 0, 0),
(32, 4, 71, 0, 0),
(32, 4, 72, 0, 0),
(32, 4, 73, 0, 0),
(32, 4, 74, 0, 0),
(32, 4, 75, 0, 0),
(32, 4, 76, 0, 0),
(32, 4, 77, 0, 0),
(32, 4, 78, 0, 0),
(32, 4, 79, 0, 0),
(32, 4, 80, 0, 0),
(32, 4, 81, 0, 0),
(32, 4, 82, 0, 0),
(32, 4, 83, 0, 0),
(32, 4, 84, 0, 0),
(32, 4, 85, 0, 0),
(32, 4, 86, 0, 0),
(32, 4, 87, 0, 0),
(32, 4, 88, 0, 0),
(32, 4, 89, 0, 0),
(32, 4, 90, 0, 1),
(32, 4, 91, 0, 1),
(32, 4, 92, 0, 0),
(32, 4, 96, 0, 0),
(32, 4, 97, 0, 0),
(32, 4, 98, 0, 0),
(32, 4, 99, 0, 0),
(32, 4, 100, 0, 0),
(32, 4, 101, 0, 0),
(32, 4, 102, 0, 0),
(32, 4, 103, 0, 0),
(32, 4, 104, 0, 0),
(32, 4, 105, 0, 0),
(32, 4, 106, 0, 0),
(32, 4, 107, 0, 0),
(32, 4, 108, 0, 0),
(32, 4, 109, 0, 0),
(32, 2, 110, 0, 0),
(32, 2, 111, 0, 0),
(32, 2, 112, 0, 0),
(32, 2, 113, 0, 0),
(32, 2, 114, 0, 0),
(32, 2, 115, 0, 0),
(32, 2, 116, 0, 0),
(32, 2, 117, 0, 0),
(32, 2, 118, 0, 0),
(32, 2, 119, 0, 0),
(32, 2, 120, 0, 0),
(32, 2, 121, 0, 0),
(32, 2, 122, 0, 1),
(32, 2, 123, 0, 1),
(32, 2, 124, 0, 0),
(32, 2, 125, 0, 0),
(32, 26, 126, 0, 0),
(32, 26, 127, 0, 0),
(32, 26, 128, 0, 0),
(32, 26, 129, 0, 0),
(32, 26, 130, 0, 0),
(32, 26, 131, 0, 0),
(32, 26, 132, 0, 0),
(32, 26, 133, 0, 0),
(32, 26, 134, 0, 0),
(32, 26, 135, 0, 0),
(32, 26, 136, 0, 0),
(32, 26, 137, 0, 1),
(32, 26, 138, 0, 1),
(32, 26, 139, 0, 0),
(32, 26, 140, 0, 0),
(32, 26, 141, 0, 0),
(32, 26, 142, 0, 0),
(32, 26, 143, 0, 0),
(32, 26, 144, 0, 0),
(32, 26, 145, 0, 0),
(32, 26, 146, 0, 0),
(32, 26, 147, 0, 0),
(32, 26, 148, 0, 0),
(32, 26, 149, 0, 0),
(32, 26, 150, 0, 0),
(32, 13, 155, 0, 0),
(32, 13, 156, 0, 0),
(32, 13, 157, 0, 0),
(32, 13, 158, 0, 0),
(32, 13, 159, 0, 0),
(32, 13, 160, 0, 0),
(32, 13, 161, 0, 0),
(32, 13, 162, 0, 0),
(32, 13, 164, 0, 0),
(32, 13, 165, 0, 0),
(32, 13, 166, 0, 1),
(32, 13, 167, 0, 1),
(32, 13, 168, 0, 0),
(32, 13, 169, 0, 0),
(32, 13, 170, 0, 0),
(32, 13, 171, 0, 0),
(32, 13, 172, 0, 0),
(32, 14, 174, 0, 0),
(32, 14, 175, 0, 0),
(32, 14, 176, 0, 0),
(32, 14, 177, 0, 0),
(32, 14, 178, 0, 0),
(32, 14, 179, 0, 0),
(32, 14, 180, 0, 0),
(32, 14, 181, 0, 0),
(32, 14, 182, 0, 0),
(32, 14, 183, 0, 0),
(32, 14, 184, 0, 0),
(32, 14, 185, 0, 0),
(32, 14, 186, 0, 0),
(32, 14, 187, 0, 0),
(32, 14, 188, 0, 0),
(32, 14, 189, 0, 0),
(32, 14, 190, 0, 0),
(32, 14, 191, 0, 1),
(32, 14, 192, 0, 1),
(32, 14, 193, 0, 0),
(32, 14, 194, 0, 0),
(32, 14, 195, 0, 0),
(32, 14, 197, 0, 0),
(32, 14, 198, 0, 0),
(32, 14, 199, 0, 0),
(32, 14, 200, 0, 0),
(32, 14, 201, 0, 0),
(32, 14, 202, 0, 0),
(32, 14, 203, 0, 0),
(32, 14, 204, 0, 0),
(32, 8, 205, 0, 0),
(32, 8, 206, 0, 1),
(32, 8, 207, 0, 1),
(32, 8, 208, 0, 0),
(32, 8, 209, 0, 0),
(32, 8, 210, 0, 0),
(32, 8, 211, 0, 1),
(32, 8, 212, 0, 1),
(32, 8, 213, 0, 0),
(32, 8, 214, 0, 0),
(32, 8, 215, 0, 0),
(32, 8, 216, 0, 1),
(32, 8, 217, 0, 0),
(32, 8, 218, 0, 0),
(32, 8, 219, 0, 0),
(32, 10, 220, 0, 0),
(32, 10, 221, 0, 0),
(32, 10, 222, 0, 0),
(32, 10, 223, 0, 0),
(32, 10, 224, 0, 0),
(32, 10, 225, 0, 0),
(32, 10, 226, 0, 0),
(32, 10, 227, 0, 0),
(32, 10, 228, 0, 0),
(32, 10, 229, 0, 1),
(32, 10, 230, 0, 0),
(32, 10, 231, 0, 0),
(32, 9, 232, 0, 0),
(32, 9, 233, 0, 0),
(32, 9, 234, 0, 0),
(32, 9, 235, 0, 0),
(32, 9, 236, 0, 0),
(32, 9, 237, 0, 0),
(32, 9, 238, 0, 0),
(32, 9, 239, 0, 0),
(32, 9, 240, 0, 0),
(32, 9, 241, 0, 0),
(32, 9, 242, 0, 0),
(32, 9, 243, 0, 0),
(32, 9, 244, 0, 1),
(32, 9, 245, 0, 1),
(32, 9, 246, 0, 0),
(32, 9, 247, 0, 0),
(32, 9, 248, 0, 0),
(32, 9, 249, 0, 0),
(32, 9, 250, 0, 0),
(32, 9, 251, 0, 0),
(32, 9, 252, 0, 0),
(32, 9, 253, 0, 0),
(32, 9, 254, 0, 0),
(32, 9, 255, 0, 0),
(32, 16, 256, 0, 0),
(32, 16, 257, 0, 0),
(32, 16, 258, 0, 0),
(32, 16, 259, 0, 0),
(32, 16, 260, 0, 0),
(32, 16, 261, 0, 0),
(32, 16, 262, 0, 0),
(32, 16, 263, 0, 0),
(32, 16, 264, 0, 0),
(32, 16, 265, 0, 0),
(32, 16, 266, 0, 0),
(32, 16, 267, 0, 0),
(32, 16, 268, 0, 0),
(32, 16, 269, 0, 0),
(32, 16, 270, 0, 1),
(32, 16, 271, 0, 1),
(32, 16, 272, 0, 0),
(32, 16, 273, 0, 0),
(32, 16, 274, 0, 0),
(32, 16, 275, 0, 0),
(32, 16, 276, 0, 0),
(32, 16, 277, 0, 0),
(32, 16, 278, 0, 0),
(32, 15, 279, 0, 0),
(32, 15, 280, 0, 0),
(32, 15, 281, 0, 0),
(32, 15, 282, 0, 0),
(32, 15, 283, 0, 0),
(32, 15, 284, 0, 0),
(32, 15, 286, 0, 1),
(32, 15, 287, 0, 1),
(32, 15, 288, 0, 0),
(32, 18, 289, 0, 0),
(32, 18, 290, 0, 0),
(32, 18, 291, 0, 0),
(32, 18, 292, 0, 0),
(32, 18, 293, 0, 0),
(32, 18, 294, 0, 0),
(32, 18, 295, 0, 0),
(32, 18, 296, 0, 1),
(32, 18, 297, 0, 1),
(32, 18, 298, 0, 0),
(32, 18, 299, 0, 0),
(32, 18, 300, 0, 0),
(32, 18, 301, 0, 0),
(32, 18, 302, 0, 0),
(32, 18, 303, 0, 0),
(32, 18, 304, 0, 0),
(32, 18, 305, 0, 0),
(32, 19, 306, 0, 0),
(32, 19, 307, 0, 0),
(32, 19, 308, 0, 0),
(32, 19, 309, 0, 1),
(32, 19, 310, 0, 1),
(32, 19, 311, 0, 0),
(32, 19, 312, 0, 0),
(32, 19, 313, 0, 0),
(32, 20, 314, 0, 0),
(32, 20, 315, 0, 0),
(32, 20, 316, 0, 0),
(32, 20, 317, 0, 0),
(32, 20, 318, 0, 0),
(32, 20, 319, 0, 0),
(32, 20, 320, 0, 0),
(32, 20, 321, 0, 0),
(32, 20, 322, 0, 0),
(32, 20, 323, 0, 0),
(32, 20, 324, 0, 0),
(32, 20, 325, 0, 0),
(32, 20, 326, 0, 0),
(32, 20, 327, 0, 0),
(32, 20, 328, 0, 0),
(32, 20, 329, 0, 0),
(32, 20, 330, 0, 0),
(32, 20, 331, 0, 0),
(32, 20, 332, 0, 1),
(32, 20, 333, 0, 1),
(32, 20, 334, 0, 0),
(32, 20, 335, 0, 0),
(32, 20, 336, 0, 0),
(32, 20, 337, 0, 0),
(32, 20, 338, 0, 0),
(32, 20, 339, 0, 0),
(32, 20, 340, 0, 0),
(32, 20, 341, 0, 0),
(32, 20, 342, 0, 0),
(32, 20, 343, 0, 0),
(32, 20, 344, 0, 0),
(32, 20, 345, 0, 0),
(32, 20, 346, 0, 0),
(32, 20, 347, 0, 0),
(32, 20, 348, 0, 0),
(32, 20, 349, 0, 0),
(32, 20, 350, 0, 0),
(32, 21, 351, 0, 0),
(32, 21, 352, 0, 0),
(32, 21, 353, 0, 0),
(32, 21, 354, 0, 0),
(32, 21, 355, 0, 0),
(32, 21, 356, 0, 0),
(32, 21, 357, 0, 0),
(32, 21, 358, 0, 0),
(32, 21, 359, 0, 0),
(32, 21, 360, 0, 0),
(32, 21, 361, 0, 0),
(32, 21, 362, 0, 0),
(32, 21, 363, 0, 0),
(32, 21, 364, 0, 0),
(32, 21, 365, 0, 0),
(32, 21, 366, 0, 0),
(32, 21, 367, 0, 0),
(32, 21, 368, 0, 0),
(32, 21, 369, 0, 0),
(32, 21, 370, 0, 1),
(32, 21, 371, 0, 1),
(32, 21, 372, 0, 0),
(32, 21, 373, 0, 0),
(32, 21, 374, 0, 0),
(32, 21, 375, 0, 0),
(32, 21, 376, 0, 0),
(32, 21, 377, 0, 0),
(32, 21, 378, 0, 0),
(32, 21, 379, 0, 0),
(32, 21, 380, 0, 0),
(32, 21, 381, 0, 0),
(32, 21, 382, 0, 0),
(32, 21, 383, 0, 0),
(32, 21, 384, 0, 0),
(32, 21, 385, 0, 0),
(32, 21, 386, 0, 0),
(32, 21, 387, 0, 0),
(32, 21, 388, 0, 0),
(32, 22, 389, 0, 0),
(32, 22, 390, 0, 0),
(32, 22, 391, 0, 0),
(32, 22, 392, 0, 0),
(32, 22, 393, 0, 0),
(32, 22, 394, 0, 0),
(32, 22, 395, 0, 0),
(32, 22, 396, 0, 0),
(32, 22, 397, 0, 0),
(32, 22, 398, 0, 0),
(32, 22, 399, 0, 0),
(32, 22, 400, 0, 0),
(32, 22, 401, 0, 0),
(32, 22, 402, 0, 0),
(32, 22, 403, 0, 0),
(32, 22, 404, 0, 0),
(32, 22, 405, 0, 0),
(32, 22, 406, 0, 0),
(32, 22, 407, 0, 0),
(32, 22, 408, 0, 0),
(32, 22, 409, 0, 0),
(32, 22, 410, 0, 0),
(32, 22, 411, 0, 1),
(32, 22, 412, 0, 1),
(32, 22, 413, 0, 0),
(32, 22, 414, 0, 0),
(32, 22, 415, 0, 0),
(32, 22, 416, 0, 0),
(32, 22, 417, 0, 0),
(32, 22, 418, 0, 0),
(32, 22, 419, 0, 0),
(32, 22, 420, 0, 0),
(32, 22, 421, 0, 0),
(32, 22, 422, 0, 0),
(32, 22, 423, 0, 0),
(32, 22, 424, 0, 0),
(32, 22, 425, 0, 0),
(32, 22, 426, 0, 0),
(32, 22, 427, 0, 0),
(32, 22, 428, 0, 0),
(32, 22, 429, 0, 0),
(32, 22, 430, 0, 0),
(32, 22, 431, 0, 0),
(32, 22, 432, 0, 0),
(32, 22, 433, 0, 0),
(32, 22, 434, 0, 0),
(32, 22, 435, 0, 0),
(32, 23, 436, 0, 0),
(32, 23, 437, 0, 0),
(32, 23, 438, 0, 0),
(32, 23, 439, 0, 0),
(32, 23, 440, 0, 0),
(32, 23, 441, 0, 0),
(32, 23, 442, 0, 0),
(32, 23, 443, 0, 0),
(32, 23, 444, 0, 0),
(32, 23, 445, 0, 0),
(32, 23, 446, 0, 0),
(32, 23, 447, 0, 0),
(32, 23, 448, 0, 0),
(32, 23, 449, 0, 0),
(32, 23, 450, 0, 0),
(32, 23, 451, 0, 0),
(32, 23, 452, 0, 0),
(32, 23, 453, 0, 0),
(32, 23, 454, 0, 0),
(32, 23, 455, 0, 1),
(32, 23, 456, 0, 1),
(32, 23, 457, 0, 0),
(32, 23, 458, 0, 0),
(32, 23, 459, 0, 0),
(32, 23, 460, 0, 0),
(32, 23, 461, 0, 0),
(32, 23, 462, 0, 0),
(32, 23, 463, 0, 0),
(32, 23, 464, 0, 0),
(32, 23, 465, 0, 0),
(32, 23, 466, 0, 0),
(32, 23, 467, 0, 0),
(32, 23, 468, 0, 0),
(32, 23, 469, 0, 0),
(32, 23, 470, 0, 0),
(32, 23, 471, 0, 0),
(32, 23, 472, 0, 0),
(32, 23, 473, 0, 0),
(32, 23, 474, 0, 0),
(32, 10, 520, 0, 0),
(32, 10, 521, 0, 0),
(32, 10, 522, 0, 0),
(32, 10, 523, 0, 0),
(32, 10, 524, 0, 0),
(32, 10, 525, 0, 0),
(32, 34, 526, 0, 0),
(32, 34, 527, 0, 0),
(32, 34, 528, 0, 0),
(32, 34, 529, 0, 0),
(32, 34, 530, 0, 0),
(32, 34, 531, 0, 0),
(32, 34, 532, 0, 0),
(32, 34, 533, 0, 0),
(32, 34, 534, 0, 0),
(32, 34, 535, 0, 0),
(32, 34, 536, 0, 0),
(32, 34, 537, 0, 0),
(32, 34, 538, 0, 0),
(32, 34, 539, 0, 0),
(32, 34, 540, 0, 1),
(32, 34, 541, 0, 1),
(32, 34, 542, 0, 1),
(32, 35, 544, 0, 0),
(32, 35, 545, 0, 1),
(32, 35, 546, 0, 1),
(32, 35, 547, 0, 0),
(32, 35, 548, 0, 1),
(32, 35, 549, 0, 0),
(32, 35, 550, 0, 0),
(32, 35, 551, 0, 0),
(32, 35, 552, 0, 0),
(32, 35, 553, 0, 0),
(32, 35, 554, 0, 0),
(32, 35, 555, 0, 1),
(32, 35, 556, 0, 1),
(32, 35, 557, 0, 0),
(32, 35, 558, 0, 0),
(32, 35, 559, 0, 0),
(32, 35, 560, 0, 1),
(32, 35, 561, 0, 0),
(32, 35, 562, 0, 0),
(32, 35, 563, 0, 1),
(32, 35, 564, 0, 1),
(32, 35, 565, 0, 1),
(32, 36, 566, 0, 0),
(32, 36, 567, 0, 0),
(32, 36, 568, 0, 0),
(32, 36, 569, 0, 0),
(32, 36, 570, 0, 0),
(32, 36, 571, 0, 0),
(32, 36, 572, 0, 0),
(32, 36, 573, 0, 0),
(32, 36, 574, 0, 1),
(32, 36, 575, 0, 1),
(32, 36, 576, 0, 0),
(32, 36, 577, 0, 0),
(32, 36, 578, 0, 0),
(32, 36, 579, 0, 0),
(32, 36, 580, 0, 0),
(32, 36, 581, 0, 0),
(32, 36, 583, 0, 0),
(32, 36, 584, 0, 0),
(32, 36, 585, 0, 1),
(32, 36, 586, 0, 1),
(32, 36, 587, 0, 1),
(32, 38, 588, 0, 0),
(32, 38, 589, 0, 0),
(32, 38, 590, 0, 0),
(32, 38, 591, 0, 0),
(32, 38, 592, 0, 0),
(32, 38, 593, 0, 0),
(32, 38, 594, 0, 0),
(32, 38, 595, 0, 0),
(32, 38, 596, 0, 0),
(32, 38, 597, 0, 0),
(32, 38, 598, 0, 0),
(32, 38, 599, 0, 0),
(32, 38, 600, 0, 0),
(32, 38, 601, 0, 0),
(32, 38, 602, 0, 1),
(32, 38, 603, 0, 1),
(32, 38, 604, 0, 0),
(32, 38, 605, 0, 0),
(32, 38, 606, 0, 1),
(32, 38, 607, 0, 1),
(32, 38, 608, 0, 1),
(32, 42, 609, 0, 0),
(32, 42, 610, 0, 0),
(32, 42, 611, 0, 1),
(32, 42, 612, 0, 1),
(32, 42, 613, 0, 0),
(32, 42, 614, 0, 1),
(32, 42, 615, 0, 0),
(32, 42, 616, 0, 1),
(32, 43, 617, 0, 0),
(32, 43, 618, 0, 0),
(32, 43, 619, 0, 0),
(32, 43, 620, 0, 0),
(32, 43, 621, 0, 0),
(32, 43, 622, 0, 0),
(32, 43, 623, 0, 1),
(32, 43, 624, 0, 1),
(32, 43, 625, 0, 0),
(32, 43, 626, 0, 0),
(32, 43, 627, 0, 1),
(32, 43, 628, 0, 1),
(32, 43, 629, 0, 1),
(32, 44, 630, 0, 0),
(32, 44, 631, 0, 0),
(32, 44, 632, 0, 0),
(32, 44, 633, 0, 0),
(32, 44, 634, 0, 0),
(32, 44, 635, 0, 0),
(32, 44, 636, 0, 0),
(32, 44, 637, 0, 0),
(32, 44, 638, 0, 0),
(32, 44, 639, 0, 0),
(32, 44, 640, 0, 0),
(32, 44, 641, 0, 1),
(32, 44, 642, 0, 1),
(32, 44, 643, 0, 0),
(32, 44, 644, 0, 0),
(32, 44, 645, 0, 1),
(32, 44, 646, 0, 1),
(32, 44, 647, 0, 1),
(32, 45, 648, 0, 0),
(32, 45, 649, 0, 0),
(32, 45, 650, 0, 0),
(32, 45, 651, 0, 0),
(32, 45, 652, 0, 0),
(32, 45, 653, 0, 0),
(32, 45, 654, 0, 0),
(32, 45, 655, 0, 0),
(32, 45, 656, 0, 0),
(32, 45, 657, 0, 0),
(32, 45, 658, 0, 0),
(32, 45, 659, 0, 0),
(32, 45, 660, 0, 0),
(32, 45, 661, 0, 1),
(32, 45, 662, 0, 1),
(32, 45, 663, 0, 0),
(32, 45, 664, 0, 0),
(32, 45, 665, 0, 1),
(32, 45, 666, 0, 1),
(32, 45, 667, 0, 1),
(32, 47, 668, 0, 0),
(32, 47, 669, 0, 1),
(32, 47, 670, 0, 1),
(32, 47, 671, 0, 0),
(32, 47, 672, 0, 0),
(32, 47, 673, 0, 1),
(32, 2, 674, 0, 0),
(32, 23, 676, 0, 0),
(32, 23, 677, 0, 0),
(32, 23, 678, 0, 0),
(32, 23, 679, 0, 0),
(32, 23, 680, 0, 0),
(32, 23, 681, 0, 0),
(32, 22, 685, 0, 0),
(32, 22, 686, 0, 0),
(32, 22, 687, 0, 0),
(32, 22, 688, 0, 0),
(32, 22, 689, 0, 0),
(32, 22, 690, 0, 0),
(32, 21, 694, 0, 0),
(32, 21, 695, 0, 0),
(32, 21, 696, 0, 0),
(32, 21, 697, 0, 0),
(32, 21, 698, 0, 0),
(32, 21, 699, 0, 0),
(32, 20, 703, 0, 0),
(32, 20, 704, 0, 0),
(32, 20, 705, 0, 0),
(32, 20, 706, 0, 0),
(32, 20, 707, 0, 0),
(32, 20, 708, 0, 0),
(32, 44, 713, 0, 0),
(32, 42, 714, 0, 0),
(32, 23, 718, 0, 0),
(32, 22, 719, 0, 0),
(32, 21, 720, 0, 0),
(32, 20, 721, 0, 0),
(32, 6, 723, 0, 1),
(32, 4, 724, 0, 1),
(32, 2, 725, 0, 1),
(32, 23, 727, 0, 0),
(32, 23, 728, 0, 0),
(32, 21, 729, 0, 0),
(32, 21, 730, 0, 0),
(32, 18, 731, 0, 0),
(32, 7, 732, 0, 0),
(32, 42, 733, 0, 0),
(32, 42, 734, 0, 0),
(32, 23, 735, 0, 0),
(32, 20, 736, 0, 0),
(32, 21, 737, 0, 0),
(32, 22, 738, 0, 0),
(32, 2, 740, 0, 0),
(32, 13, 741, 0, 0),
(32, 14, 772, 0, 0),
(32, 36, 773, 0, 0),
(32, 23, 774, 0, 0),
(32, 42, 786, 0, 0),
(32, 42, 787, 0, 0),
(32, 42, 788, 0, 0),
(32, 2, 789, 0, 1),
(32, 4, 790, 0, 1),
(32, 6, 791, 0, 1),
(32, 7, 792, 0, 1),
(32, 8, 793, 0, 1),
(32, 9, 794, 0, 1),
(32, 10, 795, 0, 1),
(32, 13, 796, 0, 1),
(32, 14, 797, 0, 1),
(32, 15, 798, 0, 1),
(32, 16, 799, 0, 1),
(32, 18, 800, 0, 1),
(32, 19, 801, 0, 1),
(32, 20, 802, 0, 1),
(32, 21, 803, 0, 1),
(32, 22, 804, 0, 1),
(32, 23, 805, 0, 1),
(32, 26, 806, 0, 1),
(32, 10, 807, 0, 0),
(32, 2, 808, 0, 1),
(32, 4, 809, 0, 1),
(32, 6, 810, 0, 1),
(32, 7, 811, 0, 1),
(32, 8, 812, 0, 1),
(32, 9, 813, 0, 1),
(32, 10, 814, 0, 1),
(32, 13, 815, 0, 1),
(32, 14, 816, 0, 1),
(32, 15, 817, 0, 1),
(32, 16, 818, 0, 1),
(32, 18, 819, 0, 1),
(32, 19, 820, 0, 1),
(32, 20, 821, 0, 1),
(32, 21, 822, 0, 1),
(32, 22, 823, 0, 1),
(32, 23, 824, 0, 1),
(32, 26, 825, 0, 1),
(32, 2, 826, 0, 1),
(32, 4, 827, 0, 1),
(32, 6, 828, 0, 1),
(32, 7, 829, 0, 1),
(32, 8, 830, 0, 1),
(32, 9, 831, 0, 1),
(32, 10, 832, 0, 1),
(32, 13, 833, 0, 1),
(32, 14, 834, 0, 1),
(32, 15, 835, 0, 1),
(32, 16, 836, 0, 1),
(32, 18, 837, 0, 1),
(32, 19, 838, 0, 1),
(32, 20, 839, 0, 1),
(32, 21, 840, 0, 1),
(32, 22, 841, 0, 1),
(32, 23, 842, 0, 1),
(32, 26, 843, 0, 1),
(32, 20, 844, 0, 0),
(32, 21, 845, 0, 0),
(32, 22, 846, 0, 0),
(32, 23, 847, 0, 0),
(32, 45, 848, 0, 1),
(32, 45, 849, 0, 0),
(32, 22, 851, 0, 1),
(32, 16, 853, 0, 0),
(32, 16, 854, 0, 0),
(32, 16, 855, 0, 0),
(32, 16, 856, 0, 0),
(32, 9, 857, 0, 0),
(32, 9, 858, 0, 0),
(32, 16, 859, 0, 0),
(32, 20, 860, 0, 0),
(32, 20, 861, 0, 0),
(32, 20, 862, 0, 0),
(32, 20, 863, 0, 0),
(32, 20, 864, 0, 0),
(32, 20, 865, 0, 0),
(32, 20, 866, 0, 0),
(32, 20, 867, 0, 0),
(32, 20, 868, 0, 0),
(32, 20, 869, 0, 0),
(32, 20, 870, 0, 0),
(32, 20, 871, 0, 0),
(32, 20, 872, 0, 0),
(32, 20, 873, 0, 0),
(32, 20, 874, 0, 0),
(32, 20, 875, 0, 0),
(32, 20, 876, 0, 0),
(32, 20, 877, 0, 0),
(32, 2, 878, 0, 0),
(32, 23, 879, 0, 0),
(32, 23, 880, 0, 0),
(32, 23, 881, 0, 0),
(32, 23, 882, 0, 0),
(32, 23, 883, 0, 0),
(32, 23, 884, 0, 0),
(32, 23, 885, 0, 0),
(32, 23, 886, 0, 0),
(32, 23, 887, 0, 0),
(32, 23, 888, 0, 0),
(32, 23, 889, 0, 0),
(32, 23, 890, 0, 0),
(32, 23, 891, 0, 0),
(32, 6, 892, 0, 0),
(32, 6, 893, 0, 0),
(32, 6, 894, 0, 0),
(32, 6, 895, 0, 0),
(32, 6, 896, 0, 0),
(32, 6, 897, 0, 0),
(32, 6, 898, 0, 0),
(32, 6, 899, 0, 0),
(32, 6, 900, 0, 0),
(32, 6, 901, 0, 0),
(32, 6, 902, 0, 0),
(32, 6, 903, 0, 0),
(32, 6, 904, 0, 0),
(32, 6, 905, 0, 0),
(32, 6, 906, 0, 0),
(32, 6, 907, 0, 0),
(32, 6, 908, 0, 0),
(32, 6, 909, 0, 0),
(32, 6, 910, 0, 0),
(32, 6, 911, 0, 0),
(32, 6, 912, 0, 0),
(32, 6, 913, 0, 0),
(32, 6, 914, 0, 0),
(32, 6, 915, 0, 0),
(32, 6, 916, 0, 0),
(32, 6, 917, 0, 0),
(32, 6, 918, 0, 0),
(32, 6, 919, 0, 0),
(32, 6, 920, 0, 0),
(32, 6, 921, 0, 0),
(32, 6, 922, 0, 0),
(32, 6, 923, 0, 0),
(32, 6, 924, 0, 0),
(32, 6, 925, 0, 0),
(32, 6, 926, 0, 0),
(32, 23, 927, 0, 0),
(32, 52, 928, 0, 0),
(32, 52, 929, 0, 0),
(32, 52, 930, 0, 0),
(32, 52, 931, 0, 0),
(32, 52, 932, 0, 0),
(32, 52, 933, 0, 0),
(32, 52, 934, 0, 0),
(32, 52, 935, 0, 0),
(32, 52, 936, 0, 0),
(32, 52, 937, 0, 0),
(32, 52, 938, 0, 0),
(32, 52, 939, 0, 0),
(32, 52, 940, 0, 0),
(32, 52, 941, 0, 0),
(32, 52, 942, 0, 0),
(32, 52, 943, 0, 0),
(32, 52, 944, 0, 0),
(32, 52, 945, 0, 0),
(32, 52, 946, 0, 0),
(32, 52, 947, 0, 1),
(32, 52, 948, 0, 1),
(32, 52, 949, 0, 0),
(32, 52, 950, 0, 1),
(32, 52, 951, 0, 1),
(32, 52, 952, 0, 0),
(32, 21, 953, 0, 0),
(32, 53, 954, 0, 0),
(32, 53, 955, 0, 0),
(32, 53, 956, 0, 0),
(32, 53, 957, 0, 0),
(32, 53, 958, 0, 0),
(32, 53, 959, 0, 0),
(32, 53, 960, 0, 0),
(32, 53, 961, 0, 0),
(32, 53, 962, 0, 0),
(32, 53, 963, 0, 0),
(32, 53, 964, 0, 0),
(32, 53, 965, 0, 0),
(32, 53, 966, 0, 0),
(32, 53, 967, 0, 1),
(32, 53, 968, 0, 1),
(32, 53, 969, 0, 0),
(32, 54, 970, 0, 0),
(32, 54, 971, 0, 0),
(32, 54, 972, 0, 0),
(32, 54, 973, 0, 0),
(32, 54, 974, 0, 0),
(32, 54, 975, 0, 0),
(32, 54, 976, 0, 0),
(32, 54, 977, 0, 0),
(32, 54, 978, 0, 0),
(32, 54, 979, 0, 0),
(32, 54, 980, 0, 0),
(32, 54, 981, 0, 0),
(32, 54, 982, 0, 0),
(32, 54, 983, 0, 1),
(32, 54, 984, 0, 1),
(32, 54, 985, 0, 0),
(32, 55, 986, 0, 0),
(32, 55, 987, 0, 0),
(32, 55, 988, 0, 0),
(32, 55, 989, 0, 0),
(32, 55, 990, 0, 0),
(32, 55, 991, 0, 0),
(32, 55, 992, 0, 0),
(32, 55, 993, 0, 0),
(32, 55, 994, 0, 0),
(32, 55, 995, 0, 0),
(32, 55, 996, 0, 0),
(32, 55, 997, 0, 0),
(32, 55, 998, 0, 0),
(32, 55, 999, 0, 0),
(32, 55, 1000, 0, 0),
(32, 55, 1001, 0, 0),
(32, 55, 1002, 0, 0),
(32, 55, 1003, 0, 0),
(32, 55, 1004, 0, 0),
(32, 55, 1005, 0, 1),
(32, 55, 1006, 0, 1),
(32, 55, 1007, 0, 0),
(32, 7, 1008, 0, 0),
(32, 7, 1009, 0, 0),
(32, 7, 1010, 0, 0),
(32, 7, 1011, 0, 0),
(32, 7, 1012, 0, 0),
(32, 7, 1013, 0, 0),
(32, 7, 1014, 0, 0),
(32, 7, 1015, 0, 0),
(32, 7, 1016, 0, 0),
(32, 7, 1017, 0, 0),
(32, 7, 1018, 0, 0),
(32, 7, 1019, 0, 0),
(32, 7, 1020, 0, 0),
(32, 7, 1021, 0, 0),
(32, 7, 1022, 0, 0),
(32, 7, 1023, 0, 0),
(32, 7, 1024, 0, 0),
(32, 7, 1025, 0, 0),
(32, 7, 1026, 0, 0),
(32, 7, 1027, 0, 0),
(32, 7, 1028, 0, 0),
(32, 7, 1029, 0, 0),
(32, 7, 1030, 0, 0),
(32, 7, 1031, 0, 0),
(32, 7, 1032, 0, 0),
(32, 7, 1033, 0, 0),
(32, 56, 1034, 0, 0),
(32, 56, 1035, 0, 0),
(32, 56, 1036, 0, 0),
(32, 56, 1037, 0, 0),
(32, 56, 1038, 0, 0),
(32, 56, 1039, 0, 0),
(32, 56, 1040, 0, 0),
(32, 56, 1041, 0, 0),
(32, 56, 1042, 0, 0),
(32, 56, 1043, 0, 0),
(32, 56, 1044, 0, 1),
(32, 56, 1045, 0, 1),
(32, 56, 1046, 0, 0),
(32, 57, 1047, 0, 0),
(32, 57, 1048, 0, 0),
(32, 57, 1049, 0, 0),
(32, 57, 1050, 0, 0),
(32, 57, 1051, 0, 0),
(32, 57, 1052, 0, 0),
(32, 57, 1053, 0, 0),
(32, 57, 1054, 0, 0),
(32, 57, 1055, 0, 0),
(32, 57, 1056, 0, 0),
(32, 57, 1057, 0, 0),
(32, 57, 1058, 0, 0),
(32, 57, 1059, 0, 0),
(32, 57, 1060, 0, 0),
(32, 57, 1061, 0, 1),
(32, 57, 1062, 0, 1),
(32, 57, 1063, 0, 0),
(32, 58, 1064, 0, 0),
(32, 58, 1065, 0, 0),
(32, 58, 1066, 0, 0),
(32, 58, 1067, 0, 0),
(32, 58, 1068, 0, 0),
(32, 58, 1069, 0, 0),
(32, 58, 1070, 0, 0),
(32, 58, 1071, 0, 0),
(32, 58, 1072, 0, 0),
(32, 58, 1073, 0, 0),
(32, 58, 1074, 0, 0),
(32, 58, 1075, 0, 0),
(32, 58, 1076, 0, 0),
(32, 58, 1077, 0, 0),
(32, 58, 1078, 0, 0),
(32, 58, 1079, 0, 0),
(32, 58, 1080, 0, 0),
(32, 58, 1081, 0, 0),
(32, 58, 1082, 0, 0),
(32, 58, 1083, 0, 1),
(32, 58, 1084, 0, 1),
(32, 58, 1085, 0, 0),
(32, 59, 1086, 0, 0),
(32, 59, 1087, 0, 0),
(32, 59, 1088, 0, 0),
(32, 59, 1089, 0, 0),
(32, 59, 1090, 0, 0),
(32, 59, 1091, 0, 0),
(32, 59, 1092, 0, 0),
(32, 59, 1093, 0, 0),
(32, 59, 1094, 0, 0),
(32, 59, 1095, 0, 0),
(32, 59, 1096, 0, 0),
(32, 59, 1097, 0, 0),
(32, 59, 1098, 0, 0),
(32, 59, 1099, 0, 0),
(32, 59, 1100, 0, 0),
(32, 59, 1101, 0, 0),
(32, 59, 1102, 0, 0),
(32, 59, 1103, 0, 0),
(32, 59, 1104, 0, 0),
(32, 59, 1105, 0, 0),
(32, 59, 1106, 0, 0),
(32, 59, 1107, 0, 1),
(32, 59, 1108, 0, 1),
(32, 59, 1109, 0, 0),
(32, 60, 1110, 0, 0),
(32, 60, 1111, 0, 0),
(32, 60, 1112, 0, 0),
(32, 60, 1113, 0, 0),
(32, 60, 1114, 0, 0),
(32, 60, 1115, 0, 0),
(32, 60, 1116, 0, 0),
(32, 60, 1117, 0, 0),
(32, 60, 1118, 0, 0),
(32, 60, 1119, 0, 0),
(32, 60, 1120, 0, 0),
(32, 60, 1121, 0, 0),
(32, 60, 1122, 0, 0),
(32, 60, 1123, 0, 0),
(32, 60, 1124, 0, 0),
(32, 60, 1125, 0, 1),
(32, 60, 1126, 0, 1),
(32, 60, 1127, 0, 0),
(32, 61, 1128, 0, 0),
(32, 61, 1129, 0, 0),
(32, 61, 1130, 0, 0),
(32, 61, 1131, 0, 0),
(32, 61, 1132, 0, 0),
(32, 61, 1133, 0, 0),
(32, 61, 1134, 0, 0),
(32, 61, 1135, 0, 0),
(32, 61, 1136, 0, 0),
(32, 61, 1137, 0, 0),
(32, 61, 1138, 0, 0),
(32, 61, 1139, 0, 0),
(32, 61, 1140, 0, 0),
(32, 61, 1141, 0, 0),
(32, 61, 1142, 0, 0),
(32, 61, 1143, 0, 0),
(32, 61, 1144, 0, 1),
(32, 61, 1145, 0, 1),
(32, 61, 1146, 0, 0),
(32, 62, 1147, 0, 0),
(32, 62, 1148, 0, 0),
(32, 62, 1149, 0, 0),
(32, 62, 1150, 0, 0),
(32, 62, 1151, 0, 0),
(32, 62, 1152, 0, 0),
(32, 62, 1153, 0, 0),
(32, 62, 1154, 0, 0),
(32, 62, 1155, 0, 0),
(32, 62, 1156, 0, 0),
(32, 62, 1157, 0, 0),
(32, 62, 1158, 0, 0),
(32, 62, 1159, 0, 0),
(32, 62, 1160, 0, 0),
(32, 62, 1161, 0, 0),
(32, 62, 1162, 0, 0),
(32, 62, 1163, 0, 0),
(32, 62, 1164, 0, 1),
(32, 62, 1165, 0, 1),
(32, 62, 1166, 0, 0),
(32, 63, 1167, 0, 0),
(32, 63, 1168, 0, 0),
(32, 63, 1169, 0, 0),
(32, 63, 1170, 0, 0),
(32, 63, 1171, 0, 0),
(32, 63, 1172, 0, 0),
(32, 63, 1173, 0, 0),
(32, 63, 1174, 0, 0),
(32, 63, 1175, 0, 0),
(32, 63, 1176, 0, 0),
(32, 63, 1177, 0, 1),
(32, 63, 1178, 0, 1),
(32, 63, 1179, 0, 0),
(32, 4, 1180, 0, 0),
(32, 4, 1181, 0, 0),
(32, 4, 1182, 0, 0),
(32, 4, 1183, 0, 0),
(32, 4, 1184, 0, 0),
(32, 4, 1185, 0, 0),
(32, 4, 1186, 0, 0),
(32, 4, 1187, 0, 0),
(32, 4, 1188, 0, 0),
(32, 21, 1189, 0, 0),
(32, 21, 1190, 0, 0),
(32, 21, 1191, 0, 0),
(32, 21, 1192, 0, 0),
(32, 21, 1193, 0, 0),
(32, 21, 1194, 0, 0),
(32, 21, 1195, 0, 0),
(32, 21, 1196, 0, 0),
(32, 21, 1197, 0, 0),
(32, 21, 1198, 0, 0),
(32, 21, 1199, 0, 0),
(32, 21, 1200, 0, 0),
(32, 21, 1201, 0, 0),
(32, 21, 1202, 0, 0),
(32, 21, 1203, 0, 0),
(32, 21, 1204, 0, 0),
(32, 21, 1205, 0, 0),
(32, 21, 1206, 0, 0),
(32, 21, 1207, 0, 0),
(32, 20, 1208, 0, 0),
(32, 20, 1209, 0, 0),
(32, 20, 1210, 0, 0),
(32, 20, 1211, 0, 0),
(32, 20, 1212, 0, 0),
(32, 4, 1213, 0, 0),
(32, 4, 1214, 0, 0),
(32, 4, 1215, 0, 0),
(32, 4, 1216, 0, 0),
(32, 4, 1217, 0, 0),
(32, 4, 1218, 0, 0),
(32, 4, 1219, 0, 0),
(32, 65, 1220, 0, 0),
(32, 65, 1221, 0, 0),
(32, 65, 1222, 0, 0),
(32, 65, 1223, 0, 0),
(32, 65, 1224, 0, 0),
(32, 65, 1225, 0, 0),
(32, 65, 1226, 0, 0),
(32, 65, 1227, 0, 0),
(32, 65, 1228, 0, 0),
(32, 65, 1229, 0, 0),
(32, 65, 1230, 0, 0),
(32, 65, 1231, 0, 0),
(32, 65, 1232, 0, 0),
(32, 65, 1233, 0, 0),
(32, 65, 1234, 0, 0),
(32, 2, 1235, 0, 0),
(32, 2, 1236, 0, 0),
(32, 2, 1237, 0, 0),
(32, 2, 1238, 0, 0),
(32, 2, 1239, 0, 0),
(32, 2, 1240, 0, 0),
(32, 2, 1241, 0, 0),
(32, 2, 1242, 0, 0),
(32, 2, 1243, 0, 0),
(33, 6, 1, 0, 0),
(33, 6, 2, 0, 0),
(33, 6, 3, 0, 0),
(33, 6, 4, 0, 0),
(33, 6, 5, 0, 0),
(33, 6, 6, 0, 0),
(33, 6, 7, 0, 0),
(33, 6, 8, 0, 0),
(33, 6, 9, 0, 0),
(33, 6, 10, 0, 0),
(33, 6, 11, 0, 0),
(33, 6, 12, 0, 0),
(33, 6, 13, 0, 0),
(33, 6, 14, 0, 0),
(33, 6, 15, 0, 0),
(33, 6, 16, 0, 0),
(33, 6, 17, 0, 0),
(33, 6, 18, 0, 0),
(33, 6, 19, 0, 0),
(33, 6, 20, 0, 0),
(33, 6, 21, 0, 1),
(33, 6, 22, 0, 1),
(33, 6, 23, 0, 0),
(33, 6, 24, 0, 0),
(33, 6, 25, 0, 0),
(33, 6, 26, 0, 0),
(33, 6, 27, 0, 0),
(33, 6, 28, 0, 0),
(33, 6, 29, 0, 0),
(33, 6, 30, 0, 0),
(33, 6, 31, 0, 0),
(33, 6, 32, 0, 0),
(33, 6, 33, 0, 0),
(33, 6, 34, 0, 0),
(33, 6, 35, 0, 0),
(33, 6, 36, 0, 0),
(33, 7, 37, 0, 0),
(33, 7, 38, 0, 0),
(33, 7, 39, 0, 0),
(33, 7, 40, 0, 0),
(33, 7, 41, 0, 0),
(33, 7, 42, 0, 0),
(33, 7, 43, 0, 0),
(33, 7, 44, 0, 0),
(33, 7, 45, 0, 0),
(33, 7, 46, 0, 0),
(33, 7, 47, 0, 0),
(33, 7, 48, 0, 0),
(33, 7, 49, 0, 0),
(33, 7, 50, 0, 0),
(33, 7, 51, 0, 0),
(33, 7, 52, 0, 0),
(33, 7, 53, 0, 0),
(33, 7, 54, 0, 0),
(33, 7, 55, 0, 0),
(33, 7, 56, 0, 1),
(33, 7, 57, 0, 1),
(33, 7, 58, 0, 0),
(33, 7, 59, 0, 0),
(33, 7, 60, 0, 0),
(33, 7, 61, 0, 0),
(33, 7, 62, 0, 0),
(33, 7, 63, 0, 0),
(33, 7, 64, 0, 0),
(33, 7, 65, 0, 0),
(33, 4, 66, 0, 0),
(33, 4, 67, 0, 0),
(33, 4, 68, 0, 0),
(33, 4, 69, 0, 0),
(33, 4, 70, 0, 0),
(33, 4, 71, 0, 0),
(33, 4, 72, 0, 0),
(33, 4, 73, 0, 0),
(33, 4, 74, 0, 0),
(33, 4, 75, 0, 0),
(33, 4, 76, 0, 0),
(33, 4, 77, 0, 0),
(33, 4, 78, 0, 0),
(33, 4, 79, 0, 0),
(33, 4, 80, 0, 0),
(33, 4, 81, 0, 0),
(33, 4, 82, 0, 0),
(33, 4, 83, 0, 0),
(33, 4, 84, 0, 0),
(33, 4, 85, 0, 0),
(33, 4, 86, 0, 0),
(33, 4, 87, 0, 0),
(33, 4, 88, 0, 0),
(33, 4, 89, 0, 0),
(33, 4, 90, 0, 1),
(33, 4, 91, 0, 1),
(33, 4, 92, 0, 0),
(33, 4, 96, 0, 0),
(33, 4, 97, 0, 0),
(33, 4, 98, 0, 0),
(33, 4, 99, 0, 0),
(33, 4, 100, 0, 0),
(33, 4, 101, 0, 0),
(33, 4, 102, 0, 0),
(33, 4, 103, 0, 0),
(33, 4, 104, 0, 0),
(33, 4, 105, 0, 0),
(33, 4, 106, 0, 0),
(33, 4, 107, 0, 0),
(33, 4, 108, 0, 0),
(33, 4, 109, 0, 0),
(33, 2, 110, 0, 0),
(33, 2, 111, 0, 0),
(33, 2, 112, 0, 0),
(33, 2, 113, 0, 0),
(33, 2, 114, 0, 0),
(33, 2, 115, 0, 0),
(33, 2, 116, 0, 0),
(33, 2, 117, 0, 0),
(33, 2, 118, 0, 0),
(33, 2, 119, 0, 0),
(33, 2, 120, 0, 0),
(33, 2, 121, 0, 0),
(33, 2, 122, 0, 1),
(33, 2, 123, 0, 1),
(33, 2, 124, 0, 0),
(33, 2, 125, 0, 0),
(33, 26, 126, 0, 0),
(33, 26, 127, 0, 0),
(33, 26, 128, 0, 0),
(33, 26, 129, 0, 0),
(33, 26, 130, 0, 0),
(33, 26, 131, 0, 0),
(33, 26, 132, 0, 0),
(33, 26, 133, 0, 0),
(33, 26, 134, 0, 0),
(33, 26, 135, 0, 0),
(33, 26, 136, 0, 0),
(33, 26, 137, 0, 1),
(33, 26, 138, 0, 1),
(33, 26, 139, 0, 0),
(33, 26, 140, 0, 0),
(33, 26, 141, 0, 0),
(33, 26, 142, 0, 0),
(33, 26, 143, 0, 0),
(33, 26, 144, 0, 0),
(33, 26, 145, 0, 0),
(33, 26, 146, 0, 0),
(33, 26, 147, 0, 0),
(33, 26, 148, 0, 0),
(33, 26, 149, 0, 0),
(33, 26, 150, 0, 0),
(33, 13, 155, 0, 0),
(33, 13, 156, 0, 0),
(33, 13, 157, 0, 0),
(33, 13, 158, 0, 0),
(33, 13, 159, 0, 0),
(33, 13, 160, 0, 0),
(33, 13, 161, 0, 0),
(33, 13, 162, 0, 0),
(33, 13, 164, 0, 0),
(33, 13, 165, 0, 0),
(33, 13, 166, 0, 1),
(33, 13, 167, 0, 1),
(33, 13, 168, 0, 0),
(33, 13, 169, 0, 0),
(33, 13, 170, 0, 0),
(33, 13, 171, 0, 0),
(33, 13, 172, 0, 0),
(33, 14, 174, 0, 0),
(33, 14, 175, 0, 0),
(33, 14, 176, 0, 0),
(33, 14, 177, 0, 0),
(33, 14, 178, 0, 0),
(33, 14, 179, 0, 0),
(33, 14, 180, 0, 0),
(33, 14, 181, 0, 0),
(33, 14, 182, 0, 0),
(33, 14, 183, 0, 0),
(33, 14, 184, 0, 0),
(33, 14, 185, 0, 0),
(33, 14, 186, 0, 0),
(33, 14, 187, 0, 0),
(33, 14, 188, 0, 0),
(33, 14, 189, 0, 0),
(33, 14, 190, 0, 0),
(33, 14, 191, 0, 1),
(33, 14, 192, 0, 1),
(33, 14, 193, 0, 0),
(33, 14, 194, 0, 0),
(33, 14, 195, 0, 0),
(33, 14, 197, 0, 0),
(33, 14, 198, 0, 0),
(33, 14, 199, 0, 0),
(33, 14, 200, 0, 0),
(33, 14, 201, 0, 0),
(33, 14, 202, 0, 0),
(33, 14, 203, 0, 0),
(33, 14, 204, 0, 0),
(33, 8, 205, 0, 0),
(33, 8, 206, 0, 1),
(33, 8, 207, 0, 1),
(33, 8, 208, 0, 0),
(33, 8, 209, 0, 0),
(33, 8, 210, 0, 0),
(33, 8, 211, 0, 1),
(33, 8, 212, 0, 1),
(33, 8, 213, 0, 0),
(33, 8, 214, 0, 0),
(33, 8, 215, 0, 0),
(33, 8, 216, 0, 1),
(33, 8, 217, 0, 0),
(33, 8, 218, 0, 0),
(33, 8, 219, 0, 0),
(33, 10, 220, 0, 0),
(33, 10, 221, 0, 0),
(33, 10, 222, 0, 0),
(33, 10, 223, 0, 0),
(33, 10, 224, 0, 0),
(33, 10, 225, 0, 0),
(33, 10, 226, 0, 0),
(33, 10, 227, 0, 0),
(33, 10, 228, 0, 0),
(33, 10, 229, 0, 1),
(33, 10, 230, 0, 0),
(33, 10, 231, 0, 0),
(33, 9, 232, 0, 0),
(33, 9, 233, 0, 0),
(33, 9, 234, 0, 0),
(33, 9, 235, 0, 0),
(33, 9, 236, 0, 0),
(33, 9, 237, 0, 0),
(33, 9, 238, 0, 0),
(33, 9, 239, 0, 0),
(33, 9, 240, 0, 0),
(33, 9, 241, 0, 0),
(33, 9, 242, 0, 0),
(33, 9, 243, 0, 0),
(33, 9, 244, 0, 1),
(33, 9, 245, 0, 1),
(33, 9, 246, 0, 0),
(33, 9, 247, 0, 0),
(33, 9, 248, 0, 0),
(33, 9, 249, 0, 0),
(33, 9, 250, 0, 0),
(33, 9, 251, 0, 0),
(33, 9, 252, 0, 0),
(33, 9, 253, 0, 0),
(33, 9, 254, 0, 0),
(33, 9, 255, 0, 0),
(33, 16, 256, 0, 0),
(33, 16, 257, 0, 0),
(33, 16, 258, 0, 0),
(33, 16, 259, 0, 0),
(33, 16, 260, 0, 0),
(33, 16, 261, 0, 0),
(33, 16, 262, 0, 0),
(33, 16, 263, 0, 0),
(33, 16, 264, 0, 0),
(33, 16, 265, 0, 0),
(33, 16, 266, 0, 0),
(33, 16, 267, 0, 0),
(33, 16, 268, 0, 0),
(33, 16, 269, 0, 0),
(33, 16, 270, 0, 1),
(33, 16, 271, 0, 1),
(33, 16, 272, 0, 0),
(33, 16, 273, 0, 0),
(33, 16, 274, 0, 0),
(33, 16, 275, 0, 0),
(33, 16, 276, 0, 0),
(33, 16, 277, 0, 0),
(33, 16, 278, 0, 0),
(33, 15, 279, 0, 0),
(33, 15, 280, 0, 0),
(33, 15, 281, 0, 0),
(33, 15, 282, 0, 0),
(33, 15, 283, 0, 0),
(33, 15, 284, 0, 0),
(33, 15, 286, 0, 1),
(33, 15, 287, 0, 1),
(33, 15, 288, 0, 0),
(33, 18, 289, 0, 0),
(33, 18, 290, 0, 0),
(33, 18, 291, 0, 0),
(33, 18, 292, 0, 0),
(33, 18, 293, 0, 0),
(33, 18, 294, 0, 0),
(33, 18, 295, 0, 0),
(33, 18, 296, 0, 1),
(33, 18, 297, 0, 1),
(33, 18, 298, 0, 0),
(33, 18, 299, 0, 0),
(33, 18, 300, 0, 0),
(33, 18, 301, 0, 0),
(33, 18, 302, 0, 0),
(33, 18, 303, 0, 0),
(33, 18, 304, 0, 0),
(33, 18, 305, 0, 0),
(33, 19, 306, 0, 0),
(33, 19, 307, 0, 0),
(33, 19, 308, 0, 0),
(33, 19, 309, 0, 1),
(33, 19, 310, 0, 1),
(33, 19, 311, 0, 0),
(33, 19, 312, 0, 0),
(33, 19, 313, 0, 0),
(33, 20, 314, 0, 0),
(33, 20, 315, 0, 0),
(33, 20, 316, 0, 0),
(33, 20, 317, 0, 0),
(33, 20, 318, 0, 0),
(33, 20, 319, 0, 0),
(33, 20, 320, 0, 0),
(33, 20, 321, 0, 0),
(33, 20, 322, 0, 0),
(33, 20, 323, 0, 0),
(33, 20, 324, 0, 0),
(33, 20, 325, 0, 0),
(33, 20, 326, 0, 0),
(33, 20, 327, 0, 0),
(33, 20, 328, 0, 0),
(33, 20, 329, 0, 0),
(33, 20, 330, 0, 0),
(33, 20, 331, 0, 0),
(33, 20, 332, 0, 1),
(33, 20, 333, 0, 1),
(33, 20, 334, 0, 0),
(33, 20, 335, 0, 0),
(33, 20, 336, 0, 0),
(33, 20, 337, 0, 0),
(33, 20, 338, 0, 0),
(33, 20, 339, 0, 0),
(33, 20, 340, 0, 0),
(33, 20, 341, 0, 0),
(33, 20, 342, 0, 0),
(33, 20, 343, 0, 0),
(33, 20, 344, 0, 0),
(33, 20, 345, 0, 0),
(33, 20, 346, 0, 0),
(33, 20, 347, 0, 0),
(33, 20, 348, 0, 0),
(33, 20, 349, 0, 0),
(33, 20, 350, 0, 0),
(33, 21, 351, 0, 0),
(33, 21, 352, 0, 0),
(33, 21, 353, 0, 0),
(33, 21, 354, 0, 0),
(33, 21, 355, 0, 0),
(33, 21, 356, 0, 0),
(33, 21, 357, 0, 0),
(33, 21, 358, 0, 0),
(33, 21, 359, 0, 0),
(33, 21, 360, 0, 0),
(33, 21, 361, 0, 0),
(33, 21, 362, 0, 0),
(33, 21, 363, 0, 0),
(33, 21, 364, 0, 0),
(33, 21, 365, 0, 0),
(33, 21, 366, 0, 0),
(33, 21, 367, 0, 0),
(33, 21, 368, 0, 0),
(33, 21, 369, 0, 0),
(33, 21, 370, 0, 1),
(33, 21, 371, 0, 1),
(33, 21, 372, 0, 0),
(33, 21, 373, 0, 0),
(33, 21, 374, 0, 0),
(33, 21, 375, 0, 0),
(33, 21, 376, 0, 0),
(33, 21, 377, 0, 0),
(33, 21, 378, 0, 0),
(33, 21, 379, 0, 0),
(33, 21, 380, 0, 0),
(33, 21, 381, 0, 0),
(33, 21, 382, 0, 0),
(33, 21, 383, 0, 0),
(33, 21, 384, 0, 0),
(33, 21, 385, 0, 0),
(33, 21, 386, 0, 0),
(33, 21, 387, 0, 0),
(33, 21, 388, 0, 0),
(33, 22, 389, 0, 0),
(33, 22, 390, 0, 0),
(33, 22, 391, 0, 0),
(33, 22, 392, 0, 0),
(33, 22, 393, 0, 0),
(33, 22, 394, 0, 0),
(33, 22, 395, 0, 0),
(33, 22, 396, 0, 0),
(33, 22, 397, 0, 0),
(33, 22, 398, 0, 0),
(33, 22, 399, 0, 0),
(33, 22, 400, 0, 0),
(33, 22, 401, 0, 0),
(33, 22, 402, 0, 0),
(33, 22, 403, 0, 0),
(33, 22, 404, 0, 0),
(33, 22, 405, 0, 0),
(33, 22, 406, 0, 0),
(33, 22, 407, 0, 0),
(33, 22, 408, 0, 0),
(33, 22, 409, 0, 0),
(33, 22, 410, 0, 0),
(33, 22, 411, 0, 1),
(33, 22, 412, 0, 1),
(33, 22, 413, 0, 0),
(33, 22, 414, 0, 0),
(33, 22, 415, 0, 0),
(33, 22, 416, 0, 0),
(33, 22, 417, 0, 0),
(33, 22, 418, 0, 0),
(33, 22, 419, 0, 0),
(33, 22, 420, 0, 0),
(33, 22, 421, 0, 0),
(33, 22, 422, 0, 0),
(33, 22, 423, 0, 0),
(33, 22, 424, 0, 0),
(33, 22, 425, 0, 0),
(33, 22, 426, 0, 0),
(33, 22, 427, 0, 0),
(33, 22, 428, 0, 0),
(33, 22, 429, 0, 0),
(33, 22, 430, 0, 0),
(33, 22, 431, 0, 0),
(33, 22, 432, 0, 0),
(33, 22, 433, 0, 0),
(33, 22, 434, 0, 0),
(33, 22, 435, 0, 0),
(33, 23, 436, 0, 0),
(33, 23, 437, 0, 0),
(33, 23, 438, 0, 0),
(33, 23, 439, 0, 0),
(33, 23, 440, 0, 0),
(33, 23, 441, 0, 0),
(33, 23, 442, 0, 0),
(33, 23, 443, 0, 0),
(33, 23, 444, 0, 0),
(33, 23, 445, 0, 0),
(33, 23, 446, 0, 0),
(33, 23, 447, 0, 0),
(33, 23, 448, 0, 0),
(33, 23, 449, 0, 0),
(33, 23, 450, 0, 0),
(33, 23, 451, 0, 0),
(33, 23, 452, 0, 0),
(33, 23, 453, 0, 0),
(33, 23, 454, 0, 0),
(33, 23, 455, 0, 1),
(33, 23, 456, 0, 1),
(33, 23, 457, 0, 0),
(33, 23, 458, 0, 0),
(33, 23, 459, 0, 0),
(33, 23, 460, 0, 0),
(33, 23, 461, 0, 0),
(33, 23, 462, 0, 0),
(33, 23, 463, 0, 0),
(33, 23, 464, 0, 0),
(33, 23, 465, 0, 0),
(33, 23, 466, 0, 0),
(33, 23, 467, 0, 0),
(33, 23, 468, 0, 0),
(33, 23, 469, 0, 0),
(33, 23, 470, 0, 0),
(33, 23, 471, 0, 0),
(33, 23, 472, 0, 0),
(33, 23, 473, 0, 0),
(33, 23, 474, 0, 0),
(33, 10, 520, 0, 0),
(33, 10, 521, 0, 0),
(33, 10, 522, 0, 0),
(33, 10, 523, 0, 0),
(33, 10, 524, 0, 0),
(33, 10, 525, 0, 0),
(33, 34, 526, 0, 0),
(33, 34, 527, 0, 0),
(33, 34, 528, 0, 0),
(33, 34, 529, 0, 0),
(33, 34, 530, 0, 0),
(33, 34, 531, 0, 0),
(33, 34, 532, 0, 0),
(33, 34, 533, 0, 0),
(33, 34, 534, 0, 0),
(33, 34, 535, 0, 0),
(33, 34, 536, 0, 0),
(33, 34, 537, 0, 0),
(33, 34, 538, 0, 0),
(33, 34, 539, 0, 0),
(33, 34, 540, 0, 1),
(33, 34, 541, 0, 1),
(33, 34, 542, 0, 1),
(33, 35, 544, 0, 0),
(33, 35, 545, 0, 1),
(33, 35, 546, 0, 1),
(33, 35, 547, 0, 0),
(33, 35, 548, 0, 1),
(33, 35, 549, 0, 0),
(33, 35, 550, 0, 0),
(33, 35, 551, 0, 0),
(33, 35, 552, 0, 0),
(33, 35, 553, 0, 0),
(33, 35, 554, 0, 0),
(33, 35, 555, 0, 1),
(33, 35, 556, 0, 1),
(33, 35, 557, 0, 0),
(33, 35, 558, 0, 0),
(33, 35, 559, 0, 0),
(33, 35, 560, 0, 1),
(33, 35, 561, 0, 0),
(33, 35, 562, 0, 0),
(33, 35, 563, 0, 1),
(33, 35, 564, 0, 1),
(33, 35, 565, 0, 1),
(33, 36, 566, 0, 0),
(33, 36, 567, 0, 0),
(33, 36, 568, 0, 0),
(33, 36, 569, 0, 0),
(33, 36, 570, 0, 0),
(33, 36, 571, 0, 0),
(33, 36, 572, 0, 0),
(33, 36, 573, 0, 0),
(33, 36, 574, 0, 1),
(33, 36, 575, 0, 1),
(33, 36, 576, 0, 0),
(33, 36, 577, 0, 0),
(33, 36, 578, 0, 0),
(33, 36, 579, 0, 0),
(33, 36, 580, 0, 0),
(33, 36, 581, 0, 0),
(33, 36, 583, 0, 0),
(33, 36, 584, 0, 0),
(33, 36, 585, 0, 1),
(33, 36, 586, 0, 1),
(33, 36, 587, 0, 1),
(33, 38, 588, 0, 0),
(33, 38, 589, 0, 0),
(33, 38, 590, 0, 0),
(33, 38, 591, 0, 0),
(33, 38, 592, 0, 0),
(33, 38, 593, 0, 0),
(33, 38, 594, 0, 0),
(33, 38, 595, 0, 0),
(33, 38, 596, 0, 0),
(33, 38, 597, 0, 0),
(33, 38, 598, 0, 0),
(33, 38, 599, 0, 0),
(33, 38, 600, 0, 0),
(33, 38, 601, 0, 0),
(33, 38, 602, 0, 1),
(33, 38, 603, 0, 1),
(33, 38, 604, 0, 0),
(33, 38, 605, 0, 0),
(33, 38, 606, 0, 1),
(33, 38, 607, 0, 1),
(33, 38, 608, 0, 1),
(33, 42, 609, 0, 0),
(33, 42, 610, 0, 0),
(33, 42, 611, 0, 1),
(33, 42, 612, 0, 1),
(33, 42, 613, 0, 0),
(33, 42, 614, 0, 1),
(33, 42, 615, 0, 0),
(33, 42, 616, 0, 1),
(33, 43, 617, 0, 0),
(33, 43, 618, 0, 0),
(33, 43, 619, 0, 0),
(33, 43, 620, 0, 0),
(33, 43, 621, 0, 0),
(33, 43, 622, 0, 0),
(33, 43, 623, 0, 1),
(33, 43, 624, 0, 1),
(33, 43, 625, 0, 0),
(33, 43, 626, 0, 0),
(33, 43, 627, 0, 1),
(33, 43, 628, 0, 1),
(33, 43, 629, 0, 1),
(33, 44, 630, 0, 0),
(33, 44, 631, 0, 0),
(33, 44, 632, 0, 0),
(33, 44, 633, 0, 0),
(33, 44, 634, 0, 0),
(33, 44, 635, 0, 0),
(33, 44, 636, 0, 0),
(33, 44, 637, 0, 0),
(33, 44, 638, 0, 0),
(33, 44, 639, 0, 0),
(33, 44, 640, 0, 0),
(33, 44, 641, 0, 1),
(33, 44, 642, 0, 1),
(33, 44, 643, 0, 0),
(33, 44, 644, 0, 0),
(33, 44, 645, 0, 1),
(33, 44, 646, 0, 1),
(33, 44, 647, 0, 1),
(33, 45, 648, 0, 0),
(33, 45, 649, 0, 0),
(33, 45, 650, 0, 0),
(33, 45, 651, 0, 0),
(33, 45, 652, 0, 0),
(33, 45, 653, 0, 0),
(33, 45, 654, 0, 0),
(33, 45, 655, 0, 0),
(33, 45, 656, 0, 0),
(33, 45, 657, 0, 0),
(33, 45, 658, 0, 0),
(33, 45, 659, 0, 0),
(33, 45, 660, 0, 0),
(33, 45, 661, 0, 1),
(33, 45, 662, 0, 1),
(33, 45, 663, 0, 0),
(33, 45, 664, 0, 0),
(33, 45, 665, 0, 1),
(33, 45, 666, 0, 1),
(33, 45, 667, 0, 1),
(33, 47, 668, 0, 0),
(33, 47, 669, 0, 1),
(33, 47, 670, 0, 1),
(33, 47, 671, 0, 0),
(33, 47, 672, 0, 0),
(33, 47, 673, 0, 1),
(33, 2, 674, 0, 0),
(33, 23, 676, 0, 0),
(33, 23, 677, 0, 0),
(33, 23, 678, 0, 0),
(33, 23, 679, 0, 0),
(33, 23, 680, 0, 0),
(33, 23, 681, 0, 0),
(33, 22, 685, 0, 0),
(33, 22, 686, 0, 0),
(33, 22, 687, 0, 0),
(33, 22, 688, 0, 0),
(33, 22, 689, 0, 0),
(33, 22, 690, 0, 0),
(33, 21, 694, 0, 0),
(33, 21, 695, 0, 0),
(33, 21, 696, 0, 0),
(33, 21, 697, 0, 0),
(33, 21, 698, 0, 0),
(33, 21, 699, 0, 0),
(33, 20, 703, 0, 0),
(33, 20, 704, 0, 0),
(33, 20, 705, 0, 0),
(33, 20, 706, 0, 0),
(33, 20, 707, 0, 0),
(33, 20, 708, 0, 0),
(33, 44, 713, 0, 0),
(33, 42, 714, 0, 0),
(33, 23, 718, 0, 0),
(33, 22, 719, 0, 0),
(33, 21, 720, 0, 0),
(33, 20, 721, 0, 0),
(33, 6, 723, 0, 1),
(33, 4, 724, 0, 1),
(33, 2, 725, 0, 1),
(33, 23, 727, 0, 0),
(33, 23, 728, 0, 0),
(33, 21, 729, 0, 0),
(33, 21, 730, 0, 0),
(33, 18, 731, 0, 0),
(33, 7, 732, 0, 0),
(33, 42, 733, 0, 0),
(33, 42, 734, 0, 0),
(33, 23, 735, 0, 0),
(33, 20, 736, 0, 0),
(33, 21, 737, 0, 0),
(33, 22, 738, 0, 0),
(33, 2, 740, 0, 0),
(33, 13, 741, 0, 0),
(33, 14, 772, 0, 0),
(33, 36, 773, 0, 0),
(33, 23, 774, 0, 0),
(33, 42, 786, 0, 0),
(33, 42, 787, 0, 0),
(33, 42, 788, 0, 0),
(33, 2, 789, 0, 1),
(33, 4, 790, 0, 1),
(33, 6, 791, 0, 1),
(33, 7, 792, 0, 1),
(33, 8, 793, 0, 1),
(33, 9, 794, 0, 1),
(33, 10, 795, 0, 1),
(33, 13, 796, 0, 1),
(33, 14, 797, 0, 1),
(33, 15, 798, 0, 1),
(33, 16, 799, 0, 1),
(33, 18, 800, 0, 1),
(33, 19, 801, 0, 1),
(33, 20, 802, 0, 1),
(33, 21, 803, 0, 1),
(33, 22, 804, 0, 1),
(33, 23, 805, 0, 1),
(33, 26, 806, 0, 1),
(33, 10, 807, 0, 0),
(33, 2, 808, 0, 1),
(33, 4, 809, 0, 1),
(33, 6, 810, 0, 1),
(33, 7, 811, 0, 1),
(33, 8, 812, 0, 1),
(33, 9, 813, 0, 1),
(33, 10, 814, 0, 1),
(33, 13, 815, 0, 1),
(33, 14, 816, 0, 1),
(33, 15, 817, 0, 1),
(33, 16, 818, 0, 1),
(33, 18, 819, 0, 1),
(33, 19, 820, 0, 1),
(33, 20, 821, 0, 1),
(33, 21, 822, 0, 1),
(33, 22, 823, 0, 1),
(33, 23, 824, 0, 1),
(33, 26, 825, 0, 1),
(33, 2, 826, 0, 1),
(33, 4, 827, 0, 1),
(33, 6, 828, 0, 1),
(33, 7, 829, 0, 1),
(33, 8, 830, 0, 1),
(33, 9, 831, 0, 1),
(33, 10, 832, 0, 1),
(33, 13, 833, 0, 1),
(33, 14, 834, 0, 1),
(33, 15, 835, 0, 1),
(33, 16, 836, 0, 1),
(33, 18, 837, 0, 1),
(33, 19, 838, 0, 1),
(33, 20, 839, 0, 1),
(33, 21, 840, 0, 1),
(33, 22, 841, 0, 1),
(33, 23, 842, 0, 1),
(33, 26, 843, 0, 1),
(33, 20, 844, 0, 0),
(33, 21, 845, 0, 0),
(33, 22, 846, 0, 0),
(33, 23, 847, 0, 0),
(33, 45, 848, 0, 1),
(33, 45, 849, 0, 0),
(33, 22, 851, 0, 1),
(33, 16, 853, 0, 0),
(33, 16, 854, 0, 0),
(33, 16, 855, 0, 0),
(33, 16, 856, 0, 0),
(33, 9, 857, 0, 0),
(33, 9, 858, 0, 0),
(33, 16, 859, 0, 0),
(33, 20, 860, 0, 0),
(33, 20, 861, 0, 0),
(33, 20, 862, 0, 0),
(33, 20, 863, 0, 0),
(33, 20, 864, 0, 0),
(33, 20, 865, 0, 0),
(33, 20, 866, 0, 0),
(33, 20, 867, 0, 0),
(33, 20, 868, 0, 0),
(33, 20, 869, 0, 0),
(33, 20, 870, 0, 0),
(33, 20, 871, 0, 0),
(33, 20, 872, 0, 0),
(33, 20, 873, 0, 0),
(33, 20, 874, 0, 0),
(33, 20, 875, 0, 0),
(33, 20, 876, 0, 0),
(33, 20, 877, 0, 0),
(33, 2, 878, 0, 0),
(33, 23, 879, 0, 0),
(33, 23, 880, 0, 0),
(33, 23, 881, 0, 0),
(33, 23, 882, 0, 0),
(33, 23, 883, 0, 0),
(33, 23, 884, 0, 0),
(33, 23, 885, 0, 0),
(33, 23, 886, 0, 0),
(33, 23, 887, 0, 0),
(33, 23, 888, 0, 0),
(33, 23, 889, 0, 0),
(33, 23, 890, 0, 0),
(33, 23, 891, 0, 0),
(33, 6, 892, 0, 0),
(33, 6, 893, 0, 0),
(33, 6, 894, 0, 0),
(33, 6, 895, 0, 0),
(33, 6, 896, 0, 0),
(33, 6, 897, 0, 0),
(33, 6, 898, 0, 0),
(33, 6, 899, 0, 0),
(33, 6, 900, 0, 0),
(33, 6, 901, 0, 0),
(33, 6, 902, 0, 0),
(33, 6, 903, 0, 0),
(33, 6, 904, 0, 0),
(33, 6, 905, 0, 0),
(33, 6, 906, 0, 0),
(33, 6, 907, 0, 0),
(33, 6, 908, 0, 0),
(33, 6, 909, 0, 0),
(33, 6, 910, 0, 0),
(33, 6, 911, 0, 0),
(33, 6, 912, 0, 0),
(33, 6, 913, 0, 0),
(33, 6, 914, 0, 0),
(33, 6, 915, 0, 0),
(33, 6, 916, 0, 0),
(33, 6, 917, 0, 0),
(33, 6, 918, 0, 0),
(33, 6, 919, 0, 0),
(33, 6, 920, 0, 0),
(33, 6, 921, 0, 0),
(33, 6, 922, 0, 0),
(33, 6, 923, 0, 0),
(33, 6, 924, 0, 0),
(33, 6, 925, 0, 0),
(33, 6, 926, 0, 0),
(33, 23, 927, 0, 0),
(33, 52, 928, 0, 0),
(33, 52, 929, 0, 0),
(33, 52, 930, 0, 0),
(33, 52, 931, 0, 0),
(33, 52, 932, 0, 0),
(33, 52, 933, 0, 0),
(33, 52, 934, 0, 0),
(33, 52, 935, 0, 0),
(33, 52, 936, 0, 0),
(33, 52, 937, 0, 0),
(33, 52, 938, 0, 0),
(33, 52, 939, 0, 0),
(33, 52, 940, 0, 0),
(33, 52, 941, 0, 0),
(33, 52, 942, 0, 0),
(33, 52, 943, 0, 0),
(33, 52, 944, 0, 0),
(33, 52, 945, 0, 0),
(33, 52, 946, 0, 0),
(33, 52, 947, 0, 1),
(33, 52, 948, 0, 1),
(33, 52, 949, 0, 0),
(33, 52, 950, 0, 1),
(33, 52, 951, 0, 1),
(33, 52, 952, 0, 0),
(33, 21, 953, 0, 0),
(33, 53, 954, 0, 0),
(33, 53, 955, 0, 0),
(33, 53, 956, 0, 0),
(33, 53, 957, 0, 0),
(33, 53, 958, 0, 0),
(33, 53, 959, 0, 0),
(33, 53, 960, 0, 0),
(33, 53, 961, 0, 0),
(33, 53, 962, 0, 0),
(33, 53, 963, 0, 0),
(33, 53, 964, 0, 0),
(33, 53, 965, 0, 0),
(33, 53, 966, 0, 0),
(33, 53, 967, 0, 1),
(33, 53, 968, 0, 1);
INSERT IGNORE INTO `vtiger_profile2field` (`profileid`, `tabid`, `fieldid`, `visible`, `readonly`) VALUES
(33, 53, 969, 0, 0),
(33, 54, 970, 0, 0),
(33, 54, 971, 0, 0),
(33, 54, 972, 0, 0),
(33, 54, 973, 0, 0),
(33, 54, 974, 0, 0),
(33, 54, 975, 0, 0),
(33, 54, 976, 0, 0),
(33, 54, 977, 0, 0),
(33, 54, 978, 0, 0),
(33, 54, 979, 0, 0),
(33, 54, 980, 0, 0),
(33, 54, 981, 0, 0),
(33, 54, 982, 0, 0),
(33, 54, 983, 0, 1),
(33, 54, 984, 0, 1),
(33, 54, 985, 0, 0),
(33, 55, 986, 0, 0),
(33, 55, 987, 0, 0),
(33, 55, 988, 0, 0),
(33, 55, 989, 0, 0),
(33, 55, 990, 0, 0),
(33, 55, 991, 0, 0),
(33, 55, 992, 0, 0),
(33, 55, 993, 0, 0),
(33, 55, 994, 0, 0),
(33, 55, 995, 0, 0),
(33, 55, 996, 0, 0),
(33, 55, 997, 0, 0),
(33, 55, 998, 0, 0),
(33, 55, 999, 0, 0),
(33, 55, 1000, 0, 0),
(33, 55, 1001, 0, 0),
(33, 55, 1002, 0, 0),
(33, 55, 1003, 0, 0),
(33, 55, 1004, 0, 0),
(33, 55, 1005, 0, 1),
(33, 55, 1006, 0, 1),
(33, 55, 1007, 0, 0),
(33, 7, 1008, 0, 0),
(33, 7, 1009, 0, 0),
(33, 7, 1010, 0, 0),
(33, 7, 1011, 0, 0),
(33, 7, 1012, 0, 0),
(33, 7, 1013, 0, 0),
(33, 7, 1014, 0, 0),
(33, 7, 1015, 0, 0),
(33, 7, 1016, 0, 0),
(33, 7, 1017, 0, 0),
(33, 7, 1018, 0, 0),
(33, 7, 1019, 0, 0),
(33, 7, 1020, 0, 0),
(33, 7, 1021, 0, 0),
(33, 7, 1022, 0, 0),
(33, 7, 1023, 0, 0),
(33, 7, 1024, 0, 0),
(33, 7, 1025, 0, 0),
(33, 7, 1026, 0, 0),
(33, 7, 1027, 0, 0),
(33, 7, 1028, 0, 0),
(33, 7, 1029, 0, 0),
(33, 7, 1030, 0, 0),
(33, 7, 1031, 0, 0),
(33, 7, 1032, 0, 0),
(33, 7, 1033, 0, 0),
(33, 56, 1034, 0, 0),
(33, 56, 1035, 0, 0),
(33, 56, 1036, 0, 0),
(33, 56, 1037, 0, 0),
(33, 56, 1038, 0, 0),
(33, 56, 1039, 0, 0),
(33, 56, 1040, 0, 0),
(33, 56, 1041, 0, 0),
(33, 56, 1042, 0, 0),
(33, 56, 1043, 0, 0),
(33, 56, 1044, 0, 1),
(33, 56, 1045, 0, 1),
(33, 56, 1046, 0, 0),
(33, 57, 1047, 0, 0),
(33, 57, 1048, 0, 0),
(33, 57, 1049, 0, 0),
(33, 57, 1050, 0, 0),
(33, 57, 1051, 0, 0),
(33, 57, 1052, 0, 0),
(33, 57, 1053, 0, 0),
(33, 57, 1054, 0, 0),
(33, 57, 1055, 0, 0),
(33, 57, 1056, 0, 0),
(33, 57, 1057, 0, 0),
(33, 57, 1058, 0, 0),
(33, 57, 1059, 0, 0),
(33, 57, 1060, 0, 0),
(33, 57, 1061, 0, 1),
(33, 57, 1062, 0, 1),
(33, 57, 1063, 0, 0),
(33, 58, 1064, 0, 0),
(33, 58, 1065, 0, 0),
(33, 58, 1066, 0, 0),
(33, 58, 1067, 0, 0),
(33, 58, 1068, 0, 0),
(33, 58, 1069, 0, 0),
(33, 58, 1070, 0, 0),
(33, 58, 1071, 0, 0),
(33, 58, 1072, 0, 0),
(33, 58, 1073, 0, 0),
(33, 58, 1074, 0, 0),
(33, 58, 1075, 0, 0),
(33, 58, 1076, 0, 0),
(33, 58, 1077, 0, 0),
(33, 58, 1078, 0, 0),
(33, 58, 1079, 0, 0),
(33, 58, 1080, 0, 0),
(33, 58, 1081, 0, 0),
(33, 58, 1082, 0, 0),
(33, 58, 1083, 0, 1),
(33, 58, 1084, 0, 1),
(33, 58, 1085, 0, 0),
(33, 59, 1086, 0, 0),
(33, 59, 1087, 0, 0),
(33, 59, 1088, 0, 0),
(33, 59, 1089, 0, 0),
(33, 59, 1090, 0, 0),
(33, 59, 1091, 0, 0),
(33, 59, 1092, 0, 0),
(33, 59, 1093, 0, 0),
(33, 59, 1094, 0, 0),
(33, 59, 1095, 0, 0),
(33, 59, 1096, 0, 0),
(33, 59, 1097, 0, 0),
(33, 59, 1098, 0, 0),
(33, 59, 1099, 0, 0),
(33, 59, 1100, 0, 0),
(33, 59, 1101, 0, 0),
(33, 59, 1102, 0, 0),
(33, 59, 1103, 0, 0),
(33, 59, 1104, 0, 0),
(33, 59, 1105, 0, 0),
(33, 59, 1106, 0, 0),
(33, 59, 1107, 0, 1),
(33, 59, 1108, 0, 1),
(33, 59, 1109, 0, 0),
(33, 60, 1110, 0, 0),
(33, 60, 1111, 0, 0),
(33, 60, 1112, 0, 0),
(33, 60, 1113, 0, 0),
(33, 60, 1114, 0, 0),
(33, 60, 1115, 0, 0),
(33, 60, 1116, 0, 0),
(33, 60, 1117, 0, 0),
(33, 60, 1118, 0, 0),
(33, 60, 1119, 0, 0),
(33, 60, 1120, 0, 0),
(33, 60, 1121, 0, 0),
(33, 60, 1122, 0, 0),
(33, 60, 1123, 0, 0),
(33, 60, 1124, 0, 0),
(33, 60, 1125, 0, 1),
(33, 60, 1126, 0, 1),
(33, 60, 1127, 0, 0),
(33, 61, 1128, 0, 0),
(33, 61, 1129, 0, 0),
(33, 61, 1130, 0, 0),
(33, 61, 1131, 0, 0),
(33, 61, 1132, 0, 0),
(33, 61, 1133, 0, 0),
(33, 61, 1134, 0, 0),
(33, 61, 1135, 0, 0),
(33, 61, 1136, 0, 0),
(33, 61, 1137, 0, 0),
(33, 61, 1138, 0, 0),
(33, 61, 1139, 0, 0),
(33, 61, 1140, 0, 0),
(33, 61, 1141, 0, 0),
(33, 61, 1142, 0, 0),
(33, 61, 1143, 0, 0),
(33, 61, 1144, 0, 1),
(33, 61, 1145, 0, 1),
(33, 61, 1146, 0, 0),
(33, 62, 1147, 0, 0),
(33, 62, 1148, 0, 0),
(33, 62, 1149, 0, 0),
(33, 62, 1150, 0, 0),
(33, 62, 1151, 0, 0),
(33, 62, 1152, 0, 0),
(33, 62, 1153, 0, 0),
(33, 62, 1154, 0, 0),
(33, 62, 1155, 0, 0),
(33, 62, 1156, 0, 0),
(33, 62, 1157, 0, 0),
(33, 62, 1158, 0, 0),
(33, 62, 1159, 0, 0),
(33, 62, 1160, 0, 0),
(33, 62, 1161, 0, 0),
(33, 62, 1162, 0, 0),
(33, 62, 1163, 0, 0),
(33, 62, 1164, 0, 1),
(33, 62, 1165, 0, 1),
(33, 62, 1166, 0, 0),
(33, 63, 1167, 0, 0),
(33, 63, 1168, 0, 0),
(33, 63, 1169, 0, 0),
(33, 63, 1170, 0, 0),
(33, 63, 1171, 0, 0),
(33, 63, 1172, 0, 0),
(33, 63, 1173, 0, 0),
(33, 63, 1174, 0, 0),
(33, 63, 1175, 0, 0),
(33, 63, 1176, 0, 0),
(33, 63, 1177, 0, 1),
(33, 63, 1178, 0, 1),
(33, 63, 1179, 0, 0),
(33, 4, 1180, 0, 0),
(33, 4, 1181, 0, 0),
(33, 4, 1182, 0, 0),
(33, 4, 1183, 0, 0),
(33, 4, 1184, 0, 0),
(33, 4, 1185, 0, 0),
(33, 4, 1186, 0, 0),
(33, 4, 1187, 0, 0),
(33, 4, 1188, 0, 0),
(33, 21, 1189, 0, 0),
(33, 21, 1190, 0, 0),
(33, 21, 1191, 0, 0),
(33, 21, 1192, 0, 0),
(33, 21, 1193, 0, 0),
(33, 21, 1194, 0, 0),
(33, 21, 1195, 0, 0),
(33, 21, 1196, 0, 0),
(33, 21, 1197, 0, 0),
(33, 21, 1198, 0, 0),
(33, 21, 1199, 0, 0),
(33, 21, 1200, 0, 0),
(33, 21, 1201, 0, 0),
(33, 21, 1202, 0, 0),
(33, 21, 1203, 0, 0),
(33, 21, 1204, 0, 0),
(33, 21, 1205, 0, 0),
(33, 21, 1206, 0, 0),
(33, 21, 1207, 0, 0),
(33, 20, 1208, 0, 0),
(33, 20, 1209, 0, 0),
(33, 20, 1210, 0, 0),
(33, 20, 1211, 0, 0),
(33, 20, 1212, 0, 0),
(33, 4, 1213, 0, 0),
(33, 4, 1214, 0, 0),
(33, 4, 1215, 0, 0),
(33, 4, 1216, 0, 0),
(33, 4, 1217, 0, 0),
(33, 4, 1218, 0, 0),
(33, 4, 1219, 0, 0),
(33, 65, 1220, 0, 0),
(33, 65, 1221, 0, 0),
(33, 65, 1222, 0, 0),
(33, 65, 1223, 0, 0),
(33, 65, 1224, 0, 0),
(33, 65, 1225, 0, 0),
(33, 65, 1226, 0, 0),
(33, 65, 1227, 0, 0),
(33, 65, 1228, 0, 0),
(33, 65, 1229, 0, 0),
(33, 65, 1230, 0, 0),
(33, 65, 1231, 0, 0),
(33, 65, 1232, 0, 0),
(33, 65, 1233, 0, 0),
(33, 65, 1234, 0, 0),
(33, 2, 1235, 0, 0),
(33, 2, 1236, 0, 0),
(33, 2, 1237, 0, 0),
(33, 2, 1238, 0, 0),
(33, 2, 1239, 0, 0),
(33, 2, 1240, 0, 0),
(33, 2, 1241, 0, 0),
(33, 2, 1242, 0, 0),
(33, 2, 1243, 0, 0),
(34, 6, 1, 0, 0),
(34, 6, 2, 0, 0),
(34, 6, 3, 0, 0),
(34, 6, 4, 0, 0),
(34, 6, 5, 0, 0),
(34, 6, 6, 0, 0),
(34, 6, 7, 0, 0),
(34, 6, 8, 0, 0),
(34, 6, 9, 0, 0),
(34, 6, 10, 0, 0),
(34, 6, 11, 0, 0),
(34, 6, 12, 0, 0),
(34, 6, 13, 0, 0),
(34, 6, 14, 0, 0),
(34, 6, 15, 0, 0),
(34, 6, 16, 0, 0),
(34, 6, 17, 0, 0),
(34, 6, 18, 0, 0),
(34, 6, 19, 0, 0),
(34, 6, 20, 0, 0),
(34, 6, 21, 0, 1),
(34, 6, 22, 0, 1),
(34, 6, 23, 0, 0),
(34, 6, 24, 0, 0),
(34, 6, 25, 0, 0),
(34, 6, 26, 0, 0),
(34, 6, 27, 0, 0),
(34, 6, 28, 0, 0),
(34, 6, 29, 0, 0),
(34, 6, 30, 0, 0),
(34, 6, 31, 0, 0),
(34, 6, 32, 0, 0),
(34, 6, 33, 0, 0),
(34, 6, 34, 0, 0),
(34, 6, 35, 0, 0),
(34, 6, 36, 0, 0),
(34, 7, 37, 0, 0),
(34, 7, 38, 0, 0),
(34, 7, 39, 0, 0),
(34, 7, 40, 0, 0),
(34, 7, 41, 0, 0),
(34, 7, 42, 0, 0),
(34, 7, 43, 0, 0),
(34, 7, 44, 0, 0),
(34, 7, 45, 0, 0),
(34, 7, 46, 0, 0),
(34, 7, 47, 0, 0),
(34, 7, 48, 0, 0),
(34, 7, 49, 0, 0),
(34, 7, 50, 0, 0),
(34, 7, 51, 0, 0),
(34, 7, 52, 0, 0),
(34, 7, 53, 0, 0),
(34, 7, 54, 0, 0),
(34, 7, 55, 0, 0),
(34, 7, 56, 0, 1),
(34, 7, 57, 0, 1),
(34, 7, 58, 0, 0),
(34, 7, 59, 0, 0),
(34, 7, 60, 0, 0),
(34, 7, 61, 0, 0),
(34, 7, 62, 0, 0),
(34, 7, 63, 0, 0),
(34, 7, 64, 0, 0),
(34, 7, 65, 0, 0),
(34, 4, 66, 0, 0),
(34, 4, 67, 0, 0),
(34, 4, 68, 0, 0),
(34, 4, 69, 0, 0),
(34, 4, 70, 0, 0),
(34, 4, 71, 0, 0),
(34, 4, 72, 0, 0),
(34, 4, 73, 0, 0),
(34, 4, 74, 0, 0),
(34, 4, 75, 0, 0),
(34, 4, 76, 0, 0),
(34, 4, 77, 0, 0),
(34, 4, 78, 0, 0),
(34, 4, 79, 0, 0),
(34, 4, 80, 0, 0),
(34, 4, 81, 0, 0),
(34, 4, 82, 0, 0),
(34, 4, 83, 0, 0),
(34, 4, 84, 0, 0),
(34, 4, 85, 0, 0),
(34, 4, 86, 0, 0),
(34, 4, 87, 0, 0),
(34, 4, 88, 0, 0),
(34, 4, 89, 0, 0),
(34, 4, 90, 0, 1),
(34, 4, 91, 0, 1),
(34, 4, 92, 0, 0),
(34, 4, 96, 0, 0),
(34, 4, 97, 0, 0),
(34, 4, 98, 0, 0),
(34, 4, 99, 0, 0),
(34, 4, 100, 0, 0),
(34, 4, 101, 0, 0),
(34, 4, 102, 0, 0),
(34, 4, 103, 0, 0),
(34, 4, 104, 0, 0),
(34, 4, 105, 0, 0),
(34, 4, 106, 0, 0),
(34, 4, 107, 0, 0),
(34, 4, 108, 0, 0),
(34, 4, 109, 0, 0),
(34, 2, 110, 0, 0),
(34, 2, 111, 0, 0),
(34, 2, 112, 0, 0),
(34, 2, 113, 0, 0),
(34, 2, 114, 0, 0),
(34, 2, 115, 0, 0),
(34, 2, 116, 0, 0),
(34, 2, 117, 0, 0),
(34, 2, 118, 0, 0),
(34, 2, 119, 0, 0),
(34, 2, 120, 0, 0),
(34, 2, 121, 0, 0),
(34, 2, 122, 0, 1),
(34, 2, 123, 0, 1),
(34, 2, 124, 0, 0),
(34, 2, 125, 0, 0),
(34, 26, 126, 0, 0),
(34, 26, 127, 0, 0),
(34, 26, 128, 0, 0),
(34, 26, 129, 0, 0),
(34, 26, 130, 0, 0),
(34, 26, 131, 0, 0),
(34, 26, 132, 0, 0),
(34, 26, 133, 0, 0),
(34, 26, 134, 0, 0),
(34, 26, 135, 0, 0),
(34, 26, 136, 0, 0),
(34, 26, 137, 0, 1),
(34, 26, 138, 0, 1),
(34, 26, 139, 0, 0),
(34, 26, 140, 0, 0),
(34, 26, 141, 0, 0),
(34, 26, 142, 0, 0),
(34, 26, 143, 0, 0),
(34, 26, 144, 0, 0),
(34, 26, 145, 0, 0),
(34, 26, 146, 0, 0),
(34, 26, 147, 0, 0),
(34, 26, 148, 0, 0),
(34, 26, 149, 0, 0),
(34, 26, 150, 0, 0),
(34, 13, 155, 0, 0),
(34, 13, 156, 0, 0),
(34, 13, 157, 0, 0),
(34, 13, 158, 0, 0),
(34, 13, 159, 0, 0),
(34, 13, 160, 0, 0),
(34, 13, 161, 0, 0),
(34, 13, 162, 0, 0),
(34, 13, 164, 0, 0),
(34, 13, 165, 0, 0),
(34, 13, 166, 0, 1),
(34, 13, 167, 0, 1),
(34, 13, 168, 0, 0),
(34, 13, 169, 0, 0),
(34, 13, 170, 0, 0),
(34, 13, 171, 0, 0),
(34, 13, 172, 0, 0),
(34, 14, 174, 0, 0),
(34, 14, 175, 0, 0),
(34, 14, 176, 0, 0),
(34, 14, 177, 0, 0),
(34, 14, 178, 0, 0),
(34, 14, 179, 0, 0),
(34, 14, 180, 0, 0),
(34, 14, 181, 0, 0),
(34, 14, 182, 0, 0),
(34, 14, 183, 0, 0),
(34, 14, 184, 0, 0),
(34, 14, 185, 0, 0),
(34, 14, 186, 0, 0),
(34, 14, 187, 0, 0),
(34, 14, 188, 0, 0),
(34, 14, 189, 0, 0),
(34, 14, 190, 0, 0),
(34, 14, 191, 0, 1),
(34, 14, 192, 0, 1),
(34, 14, 193, 0, 0),
(34, 14, 194, 0, 0),
(34, 14, 195, 0, 0),
(34, 14, 197, 0, 0),
(34, 14, 198, 0, 0),
(34, 14, 199, 0, 0),
(34, 14, 200, 0, 0),
(34, 14, 201, 0, 0),
(34, 14, 202, 0, 0),
(34, 14, 203, 0, 0),
(34, 14, 204, 0, 0),
(34, 8, 205, 0, 0),
(34, 8, 206, 0, 1),
(34, 8, 207, 0, 1),
(34, 8, 208, 0, 0),
(34, 8, 209, 0, 0),
(34, 8, 210, 0, 0),
(34, 8, 211, 0, 1),
(34, 8, 212, 0, 1),
(34, 8, 213, 0, 0),
(34, 8, 214, 0, 0),
(34, 8, 215, 0, 0),
(34, 8, 216, 0, 1),
(34, 8, 217, 0, 0),
(34, 8, 218, 0, 0),
(34, 8, 219, 0, 0),
(34, 10, 220, 0, 0),
(34, 10, 221, 0, 0),
(34, 10, 222, 0, 0),
(34, 10, 223, 0, 0),
(34, 10, 224, 0, 0),
(34, 10, 225, 0, 0),
(34, 10, 226, 0, 0),
(34, 10, 227, 0, 0),
(34, 10, 228, 0, 0),
(34, 10, 229, 0, 1),
(34, 10, 230, 0, 0),
(34, 10, 231, 0, 0),
(34, 9, 232, 0, 0),
(34, 9, 233, 0, 0),
(34, 9, 234, 0, 0),
(34, 9, 235, 0, 0),
(34, 9, 236, 0, 0),
(34, 9, 237, 0, 0),
(34, 9, 238, 0, 0),
(34, 9, 239, 0, 0),
(34, 9, 240, 0, 0),
(34, 9, 241, 0, 0),
(34, 9, 242, 0, 0),
(34, 9, 243, 0, 0),
(34, 9, 244, 0, 1),
(34, 9, 245, 0, 1),
(34, 9, 246, 0, 0),
(34, 9, 247, 0, 0),
(34, 9, 248, 0, 0),
(34, 9, 249, 0, 0),
(34, 9, 250, 0, 0),
(34, 9, 251, 0, 0),
(34, 9, 252, 0, 0),
(34, 9, 253, 0, 0),
(34, 9, 254, 0, 0),
(34, 9, 255, 0, 0),
(34, 16, 256, 0, 0),
(34, 16, 257, 0, 0),
(34, 16, 258, 0, 0),
(34, 16, 259, 0, 0),
(34, 16, 260, 0, 0),
(34, 16, 261, 0, 0),
(34, 16, 262, 0, 0),
(34, 16, 263, 0, 0),
(34, 16, 264, 0, 0),
(34, 16, 265, 0, 0),
(34, 16, 266, 0, 0),
(34, 16, 267, 0, 0),
(34, 16, 268, 0, 0),
(34, 16, 269, 0, 0),
(34, 16, 270, 0, 1),
(34, 16, 271, 0, 1),
(34, 16, 272, 0, 0),
(34, 16, 273, 0, 0),
(34, 16, 274, 0, 0),
(34, 16, 275, 0, 0),
(34, 16, 276, 0, 0),
(34, 16, 277, 0, 0),
(34, 16, 278, 0, 0),
(34, 15, 279, 0, 0),
(34, 15, 280, 0, 0),
(34, 15, 281, 0, 0),
(34, 15, 282, 0, 0),
(34, 15, 283, 0, 0),
(34, 15, 284, 0, 0),
(34, 15, 286, 0, 1),
(34, 15, 287, 0, 1),
(34, 15, 288, 0, 0),
(34, 18, 289, 0, 0),
(34, 18, 290, 0, 0),
(34, 18, 291, 0, 0),
(34, 18, 292, 0, 0),
(34, 18, 293, 0, 0),
(34, 18, 294, 0, 0),
(34, 18, 295, 0, 0),
(34, 18, 296, 0, 1),
(34, 18, 297, 0, 1),
(34, 18, 298, 0, 0),
(34, 18, 299, 0, 0),
(34, 18, 300, 0, 0),
(34, 18, 301, 0, 0),
(34, 18, 302, 0, 0),
(34, 18, 303, 0, 0),
(34, 18, 304, 0, 0),
(34, 18, 305, 0, 0),
(34, 19, 306, 0, 0),
(34, 19, 307, 0, 0),
(34, 19, 308, 0, 0),
(34, 19, 309, 0, 1),
(34, 19, 310, 0, 1),
(34, 19, 311, 0, 0),
(34, 19, 312, 0, 0),
(34, 19, 313, 0, 0),
(34, 20, 314, 0, 0),
(34, 20, 315, 0, 0),
(34, 20, 316, 0, 0),
(34, 20, 317, 0, 0),
(34, 20, 318, 0, 0),
(34, 20, 319, 0, 0),
(34, 20, 320, 0, 0),
(34, 20, 321, 0, 0),
(34, 20, 322, 0, 0),
(34, 20, 323, 0, 0),
(34, 20, 324, 0, 0),
(34, 20, 325, 0, 0),
(34, 20, 326, 0, 0),
(34, 20, 327, 0, 0),
(34, 20, 328, 0, 0),
(34, 20, 329, 0, 0),
(34, 20, 330, 0, 0),
(34, 20, 331, 0, 0),
(34, 20, 332, 0, 1),
(34, 20, 333, 0, 1),
(34, 20, 334, 0, 0),
(34, 20, 335, 0, 0),
(34, 20, 336, 0, 0),
(34, 20, 337, 0, 0),
(34, 20, 338, 0, 0),
(34, 20, 339, 0, 0),
(34, 20, 340, 0, 0),
(34, 20, 341, 0, 0),
(34, 20, 342, 0, 0),
(34, 20, 343, 0, 0),
(34, 20, 344, 0, 0),
(34, 20, 345, 0, 0),
(34, 20, 346, 0, 0),
(34, 20, 347, 0, 0),
(34, 20, 348, 0, 0),
(34, 20, 349, 0, 0),
(34, 20, 350, 0, 0),
(34, 21, 351, 0, 0),
(34, 21, 352, 0, 0),
(34, 21, 353, 0, 0),
(34, 21, 354, 0, 0),
(34, 21, 355, 0, 0),
(34, 21, 356, 0, 0),
(34, 21, 357, 0, 0),
(34, 21, 358, 0, 0),
(34, 21, 359, 0, 0),
(34, 21, 360, 0, 0),
(34, 21, 361, 0, 0),
(34, 21, 362, 0, 0),
(34, 21, 363, 0, 0),
(34, 21, 364, 0, 0),
(34, 21, 365, 0, 0),
(34, 21, 366, 0, 0),
(34, 21, 367, 0, 0),
(34, 21, 368, 0, 0),
(34, 21, 369, 0, 0),
(34, 21, 370, 0, 1),
(34, 21, 371, 0, 1),
(34, 21, 372, 0, 0),
(34, 21, 373, 0, 0),
(34, 21, 374, 0, 0),
(34, 21, 375, 0, 0),
(34, 21, 376, 0, 0),
(34, 21, 377, 0, 0),
(34, 21, 378, 0, 0),
(34, 21, 379, 0, 0),
(34, 21, 380, 0, 0),
(34, 21, 381, 0, 0),
(34, 21, 382, 0, 0),
(34, 21, 383, 0, 0),
(34, 21, 384, 0, 0),
(34, 21, 385, 0, 0),
(34, 21, 386, 0, 0),
(34, 21, 387, 0, 0),
(34, 21, 388, 0, 0),
(34, 22, 389, 0, 0),
(34, 22, 390, 0, 0),
(34, 22, 391, 0, 0),
(34, 22, 392, 0, 0),
(34, 22, 393, 0, 0),
(34, 22, 394, 0, 0),
(34, 22, 395, 0, 0),
(34, 22, 396, 0, 0),
(34, 22, 397, 0, 0),
(34, 22, 398, 0, 0),
(34, 22, 399, 0, 0),
(34, 22, 400, 0, 0),
(34, 22, 401, 0, 0),
(34, 22, 402, 0, 0),
(34, 22, 403, 0, 0),
(34, 22, 404, 0, 0),
(34, 22, 405, 0, 0),
(34, 22, 406, 0, 0),
(34, 22, 407, 0, 0),
(34, 22, 408, 0, 0),
(34, 22, 409, 0, 0),
(34, 22, 410, 0, 0),
(34, 22, 411, 0, 1),
(34, 22, 412, 0, 1),
(34, 22, 413, 0, 0),
(34, 22, 414, 0, 0),
(34, 22, 415, 0, 0),
(34, 22, 416, 0, 0),
(34, 22, 417, 0, 0),
(34, 22, 418, 0, 0),
(34, 22, 419, 0, 0),
(34, 22, 420, 0, 0),
(34, 22, 421, 0, 0),
(34, 22, 422, 0, 0),
(34, 22, 423, 0, 0),
(34, 22, 424, 0, 0),
(34, 22, 425, 0, 0),
(34, 22, 426, 0, 0),
(34, 22, 427, 0, 0),
(34, 22, 428, 0, 0),
(34, 22, 429, 0, 0),
(34, 22, 430, 0, 0),
(34, 22, 431, 0, 0),
(34, 22, 432, 0, 0),
(34, 22, 433, 0, 0),
(34, 22, 434, 0, 0),
(34, 22, 435, 0, 0),
(34, 23, 436, 0, 0),
(34, 23, 437, 0, 0),
(34, 23, 438, 0, 0),
(34, 23, 439, 0, 0),
(34, 23, 440, 0, 0),
(34, 23, 441, 0, 0),
(34, 23, 442, 0, 0),
(34, 23, 443, 0, 0),
(34, 23, 444, 0, 0),
(34, 23, 445, 0, 0),
(34, 23, 446, 0, 0),
(34, 23, 447, 0, 0),
(34, 23, 448, 0, 0),
(34, 23, 449, 0, 0),
(34, 23, 450, 0, 0),
(34, 23, 451, 0, 0),
(34, 23, 452, 0, 0),
(34, 23, 453, 0, 0),
(34, 23, 454, 0, 0),
(34, 23, 455, 0, 1),
(34, 23, 456, 0, 1),
(34, 23, 457, 0, 0),
(34, 23, 458, 0, 0),
(34, 23, 459, 0, 0),
(34, 23, 460, 0, 0),
(34, 23, 461, 0, 0),
(34, 23, 462, 0, 0),
(34, 23, 463, 0, 0),
(34, 23, 464, 0, 0),
(34, 23, 465, 0, 0),
(34, 23, 466, 0, 0),
(34, 23, 467, 0, 0),
(34, 23, 468, 0, 0),
(34, 23, 469, 0, 0),
(34, 23, 470, 0, 0),
(34, 23, 471, 0, 0),
(34, 23, 472, 0, 0),
(34, 23, 473, 0, 0),
(34, 23, 474, 0, 0),
(34, 10, 520, 0, 0),
(34, 10, 521, 0, 0),
(34, 10, 522, 0, 0),
(34, 10, 523, 0, 0),
(34, 10, 524, 0, 0),
(34, 10, 525, 0, 0),
(34, 34, 526, 0, 0),
(34, 34, 527, 0, 0),
(34, 34, 528, 0, 0),
(34, 34, 529, 0, 0),
(34, 34, 530, 0, 0),
(34, 34, 531, 0, 0),
(34, 34, 532, 0, 0),
(34, 34, 533, 0, 0),
(34, 34, 534, 0, 0),
(34, 34, 535, 0, 0),
(34, 34, 536, 0, 0),
(34, 34, 537, 0, 0),
(34, 34, 538, 0, 0),
(34, 34, 539, 0, 0),
(34, 34, 540, 0, 1),
(34, 34, 541, 0, 1),
(34, 34, 542, 0, 1),
(34, 35, 544, 0, 0),
(34, 35, 545, 0, 1),
(34, 35, 546, 0, 1),
(34, 35, 547, 0, 0),
(34, 35, 548, 0, 1),
(34, 35, 549, 0, 0),
(34, 35, 550, 0, 0),
(34, 35, 551, 0, 0),
(34, 35, 552, 0, 0),
(34, 35, 553, 0, 0),
(34, 35, 554, 0, 0),
(34, 35, 555, 0, 1),
(34, 35, 556, 0, 1),
(34, 35, 557, 0, 0),
(34, 35, 558, 0, 0),
(34, 35, 559, 0, 0),
(34, 35, 560, 0, 1),
(34, 35, 561, 0, 0),
(34, 35, 562, 0, 0),
(34, 35, 563, 0, 1),
(34, 35, 564, 0, 0),
(34, 35, 565, 0, 0),
(34, 36, 566, 0, 0),
(34, 36, 567, 0, 0),
(34, 36, 568, 0, 0),
(34, 36, 569, 0, 0),
(34, 36, 570, 0, 0),
(34, 36, 571, 0, 0),
(34, 36, 572, 0, 0),
(34, 36, 573, 0, 0),
(34, 36, 574, 0, 1),
(34, 36, 575, 0, 1),
(34, 36, 576, 0, 0),
(34, 36, 577, 0, 0),
(34, 36, 578, 0, 0),
(34, 36, 579, 0, 0),
(34, 36, 580, 0, 0),
(34, 36, 581, 0, 0),
(34, 36, 583, 0, 0),
(34, 36, 584, 0, 0),
(34, 36, 585, 0, 1),
(34, 36, 586, 0, 1),
(34, 36, 587, 0, 1),
(34, 38, 588, 0, 0),
(34, 38, 589, 0, 0),
(34, 38, 590, 0, 0),
(34, 38, 591, 0, 0),
(34, 38, 592, 0, 0),
(34, 38, 593, 0, 0),
(34, 38, 594, 0, 0),
(34, 38, 595, 0, 0),
(34, 38, 596, 0, 0),
(34, 38, 597, 0, 0),
(34, 38, 598, 0, 0),
(34, 38, 599, 0, 0),
(34, 38, 600, 0, 0),
(34, 38, 601, 0, 0),
(34, 38, 602, 0, 1),
(34, 38, 603, 0, 1),
(34, 38, 604, 0, 0),
(34, 38, 605, 0, 0),
(34, 38, 606, 0, 1),
(34, 38, 607, 0, 1),
(34, 38, 608, 0, 1),
(34, 42, 609, 0, 0),
(34, 42, 610, 0, 0),
(34, 42, 611, 0, 1),
(34, 42, 612, 0, 1),
(34, 42, 613, 0, 0),
(34, 42, 614, 0, 1),
(34, 42, 615, 0, 0),
(34, 42, 616, 0, 1),
(34, 43, 617, 0, 0),
(34, 43, 618, 0, 0),
(34, 43, 619, 0, 0),
(34, 43, 620, 0, 0),
(34, 43, 621, 0, 0),
(34, 43, 622, 0, 0),
(34, 43, 623, 0, 1),
(34, 43, 624, 0, 1),
(34, 43, 625, 0, 0),
(34, 43, 626, 0, 0),
(34, 43, 627, 0, 1),
(34, 43, 628, 0, 1),
(34, 43, 629, 0, 1),
(34, 44, 630, 0, 0),
(34, 44, 631, 0, 0),
(34, 44, 632, 0, 0),
(34, 44, 633, 0, 0),
(34, 44, 634, 0, 0),
(34, 44, 635, 0, 0),
(34, 44, 636, 0, 0),
(34, 44, 637, 0, 0),
(34, 44, 638, 0, 0),
(34, 44, 639, 0, 0),
(34, 44, 640, 0, 0),
(34, 44, 641, 0, 1),
(34, 44, 642, 0, 1),
(34, 44, 643, 0, 0),
(34, 44, 644, 0, 0),
(34, 44, 645, 0, 1),
(34, 44, 646, 0, 1),
(34, 44, 647, 0, 1),
(34, 45, 648, 0, 0),
(34, 45, 649, 0, 0),
(34, 45, 650, 0, 0),
(34, 45, 651, 0, 0),
(34, 45, 652, 0, 0),
(34, 45, 653, 0, 0),
(34, 45, 654, 0, 0),
(34, 45, 655, 0, 0),
(34, 45, 656, 0, 0),
(34, 45, 657, 0, 0),
(34, 45, 658, 0, 0),
(34, 45, 659, 0, 0),
(34, 45, 660, 0, 0),
(34, 45, 661, 0, 1),
(34, 45, 662, 0, 1),
(34, 45, 663, 0, 0),
(34, 45, 664, 0, 0),
(34, 45, 665, 0, 1),
(34, 45, 666, 0, 1),
(34, 45, 667, 0, 1),
(34, 47, 668, 0, 0),
(34, 47, 669, 0, 1),
(34, 47, 670, 0, 1),
(34, 47, 671, 0, 0),
(34, 47, 672, 0, 0),
(34, 47, 673, 0, 1),
(34, 2, 674, 0, 0),
(34, 23, 676, 0, 0),
(34, 23, 677, 0, 0),
(34, 23, 678, 0, 0),
(34, 23, 679, 0, 0),
(34, 23, 680, 0, 0),
(34, 23, 681, 0, 0),
(34, 22, 685, 0, 0),
(34, 22, 686, 0, 0),
(34, 22, 687, 0, 0),
(34, 22, 688, 0, 0),
(34, 22, 689, 0, 0),
(34, 22, 690, 0, 0),
(34, 21, 694, 0, 0),
(34, 21, 695, 0, 0),
(34, 21, 696, 0, 0),
(34, 21, 697, 0, 0),
(34, 21, 698, 0, 0),
(34, 21, 699, 0, 0),
(34, 20, 703, 0, 0),
(34, 20, 704, 0, 0),
(34, 20, 705, 0, 0),
(34, 20, 706, 0, 0),
(34, 20, 707, 0, 0),
(34, 20, 708, 0, 0),
(34, 44, 713, 0, 0),
(34, 42, 714, 0, 0),
(34, 23, 718, 0, 0),
(34, 22, 719, 0, 0),
(34, 21, 720, 0, 0),
(34, 20, 721, 0, 0),
(34, 6, 723, 0, 1),
(34, 4, 724, 0, 1),
(34, 2, 725, 0, 1),
(34, 23, 727, 0, 0),
(34, 23, 728, 0, 0),
(34, 21, 729, 0, 0),
(34, 21, 730, 0, 0),
(34, 18, 731, 0, 0),
(34, 7, 732, 0, 0),
(34, 42, 733, 0, 0),
(34, 42, 734, 0, 0),
(34, 23, 735, 0, 0),
(34, 20, 736, 0, 0),
(34, 21, 737, 0, 0),
(34, 22, 738, 0, 0),
(34, 2, 740, 0, 0),
(34, 13, 741, 0, 0),
(34, 14, 772, 0, 0),
(34, 36, 773, 0, 0),
(34, 23, 774, 0, 0),
(34, 42, 786, 0, 0),
(34, 42, 787, 0, 0),
(34, 42, 788, 0, 0),
(34, 2, 789, 0, 1),
(34, 4, 790, 0, 1),
(34, 6, 791, 0, 1),
(34, 7, 792, 0, 1),
(34, 8, 793, 0, 1),
(34, 9, 794, 0, 1),
(34, 10, 795, 0, 1),
(34, 13, 796, 0, 1),
(34, 14, 797, 0, 1),
(34, 15, 798, 0, 1),
(34, 16, 799, 0, 1),
(34, 18, 800, 0, 1),
(34, 19, 801, 0, 1),
(34, 20, 802, 0, 1),
(34, 21, 803, 0, 1),
(34, 22, 804, 0, 1),
(34, 23, 805, 0, 1),
(34, 26, 806, 0, 1),
(34, 10, 807, 0, 0),
(34, 2, 808, 0, 0),
(34, 4, 809, 0, 0),
(34, 6, 810, 0, 0),
(34, 7, 811, 0, 0),
(34, 8, 812, 0, 0),
(34, 9, 813, 0, 0),
(34, 10, 814, 0, 0),
(34, 13, 815, 0, 0),
(34, 14, 816, 0, 0),
(34, 15, 817, 0, 0),
(34, 16, 818, 0, 1),
(34, 18, 819, 0, 0),
(34, 19, 820, 0, 0),
(34, 20, 821, 0, 0),
(34, 21, 822, 0, 0),
(34, 22, 823, 0, 0),
(34, 23, 824, 0, 0),
(34, 26, 825, 0, 0),
(34, 2, 826, 0, 0),
(34, 4, 827, 0, 0),
(34, 6, 828, 0, 0),
(34, 7, 829, 0, 0),
(34, 8, 830, 0, 0),
(34, 9, 831, 0, 0),
(34, 10, 832, 0, 0),
(34, 13, 833, 0, 0),
(34, 14, 834, 0, 0),
(34, 15, 835, 0, 0),
(34, 16, 836, 0, 1),
(34, 18, 837, 0, 0),
(34, 19, 838, 0, 0),
(34, 20, 839, 0, 0),
(34, 21, 840, 0, 0),
(34, 22, 841, 0, 0),
(34, 23, 842, 0, 0),
(34, 26, 843, 0, 0),
(34, 20, 844, 0, 0),
(34, 21, 845, 0, 0),
(34, 22, 846, 0, 0),
(34, 23, 847, 0, 0),
(34, 45, 848, 0, 1),
(34, 45, 849, 0, 0),
(34, 22, 851, 0, 1),
(34, 16, 853, 0, 0),
(34, 16, 854, 0, 0),
(34, 16, 855, 0, 0),
(34, 16, 856, 0, 0),
(34, 9, 857, 0, 0),
(34, 9, 858, 0, 0),
(34, 16, 859, 0, 0),
(34, 20, 860, 0, 0),
(34, 20, 861, 0, 0),
(34, 20, 862, 0, 0),
(34, 20, 863, 0, 0),
(34, 20, 864, 0, 0),
(34, 20, 865, 0, 0),
(34, 20, 866, 0, 0),
(34, 20, 867, 0, 0),
(34, 20, 868, 0, 0),
(34, 20, 869, 0, 0),
(34, 20, 870, 0, 0),
(34, 20, 871, 0, 0),
(34, 20, 872, 0, 0),
(34, 20, 873, 0, 0),
(34, 20, 874, 0, 0),
(34, 20, 875, 0, 0),
(34, 20, 876, 0, 0),
(34, 20, 877, 0, 0),
(34, 2, 878, 0, 0),
(34, 23, 879, 0, 0),
(34, 23, 880, 0, 0),
(34, 23, 881, 0, 0),
(34, 23, 882, 0, 0),
(34, 23, 883, 0, 0),
(34, 23, 884, 0, 0),
(34, 23, 885, 0, 0),
(34, 23, 886, 0, 0),
(34, 23, 887, 0, 0),
(34, 23, 888, 0, 0),
(34, 23, 889, 0, 0),
(34, 23, 890, 0, 0),
(34, 23, 891, 0, 0),
(34, 6, 892, 0, 0),
(34, 6, 893, 0, 0),
(34, 6, 894, 0, 0),
(34, 6, 895, 0, 0),
(34, 6, 896, 0, 0),
(34, 6, 897, 0, 0),
(34, 6, 898, 0, 0),
(34, 6, 899, 0, 0),
(34, 6, 900, 0, 0),
(34, 6, 901, 0, 0),
(34, 6, 902, 0, 0),
(34, 6, 903, 0, 0),
(34, 6, 904, 0, 0),
(34, 6, 905, 0, 0),
(34, 6, 906, 0, 0),
(34, 6, 907, 0, 0),
(34, 6, 908, 0, 0),
(34, 6, 909, 0, 0),
(34, 6, 910, 0, 0),
(34, 6, 911, 0, 0),
(34, 6, 912, 0, 0),
(34, 6, 913, 0, 0),
(34, 6, 914, 0, 0),
(34, 6, 915, 0, 0),
(34, 6, 916, 0, 0),
(34, 6, 917, 0, 0),
(34, 6, 918, 0, 0),
(34, 6, 919, 0, 0),
(34, 6, 920, 0, 0),
(34, 6, 921, 0, 0),
(34, 6, 922, 0, 0),
(34, 6, 923, 0, 0),
(34, 6, 924, 0, 0),
(34, 6, 925, 0, 0),
(34, 6, 926, 0, 0),
(34, 23, 927, 0, 0),
(34, 52, 928, 0, 0),
(34, 52, 929, 0, 0),
(34, 52, 930, 0, 0),
(34, 52, 931, 0, 0),
(34, 52, 932, 0, 0),
(34, 52, 933, 0, 0),
(34, 52, 934, 0, 0),
(34, 52, 935, 0, 0),
(34, 52, 936, 0, 0),
(34, 52, 937, 0, 0),
(34, 52, 938, 0, 0),
(34, 52, 939, 0, 0),
(34, 52, 940, 0, 0),
(34, 52, 941, 0, 0),
(34, 52, 942, 0, 0),
(34, 52, 943, 0, 0),
(34, 52, 944, 0, 0),
(34, 52, 945, 0, 0),
(34, 52, 946, 0, 0),
(34, 52, 947, 0, 1),
(34, 52, 948, 0, 1),
(34, 52, 949, 0, 0),
(34, 52, 950, 0, 1),
(34, 52, 951, 0, 1),
(34, 52, 952, 0, 0),
(34, 21, 953, 0, 0),
(34, 53, 954, 0, 0),
(34, 53, 955, 0, 0),
(34, 53, 956, 0, 0),
(34, 53, 957, 0, 0),
(34, 53, 958, 0, 0),
(34, 53, 959, 0, 0),
(34, 53, 960, 0, 0),
(34, 53, 961, 0, 0),
(34, 53, 962, 0, 0),
(34, 53, 963, 0, 0),
(34, 53, 964, 0, 0),
(34, 53, 965, 0, 0),
(34, 53, 966, 0, 0),
(34, 53, 967, 0, 1),
(34, 53, 968, 0, 1),
(34, 53, 969, 0, 0),
(34, 54, 970, 0, 0),
(34, 54, 971, 0, 0),
(34, 54, 972, 0, 0),
(34, 54, 973, 0, 0),
(34, 54, 974, 0, 0),
(34, 54, 975, 0, 0),
(34, 54, 976, 0, 0),
(34, 54, 977, 0, 0),
(34, 54, 978, 0, 0),
(34, 54, 979, 0, 0),
(34, 54, 980, 0, 0),
(34, 54, 981, 0, 0),
(34, 54, 982, 0, 0),
(34, 54, 983, 0, 1),
(34, 54, 984, 0, 1),
(34, 54, 985, 0, 0),
(34, 55, 986, 0, 0),
(34, 55, 987, 0, 0),
(34, 55, 988, 0, 0),
(34, 55, 989, 0, 0),
(34, 55, 990, 0, 0),
(34, 55, 991, 0, 0),
(34, 55, 992, 0, 0),
(34, 55, 993, 0, 0),
(34, 55, 994, 0, 0),
(34, 55, 995, 0, 0),
(34, 55, 996, 0, 0),
(34, 55, 997, 0, 0),
(34, 55, 998, 0, 0),
(34, 55, 999, 0, 0),
(34, 55, 1000, 0, 0),
(34, 55, 1001, 0, 0),
(34, 55, 1002, 0, 0),
(34, 55, 1003, 0, 0),
(34, 55, 1004, 0, 0),
(34, 55, 1005, 0, 1),
(34, 55, 1006, 0, 1),
(34, 55, 1007, 0, 0),
(34, 7, 1008, 0, 0),
(34, 7, 1009, 0, 0),
(34, 7, 1010, 0, 0),
(34, 7, 1011, 0, 0),
(34, 7, 1012, 0, 0),
(34, 7, 1013, 0, 0),
(34, 7, 1014, 0, 0),
(34, 7, 1015, 0, 0),
(34, 7, 1016, 0, 0),
(34, 7, 1017, 0, 0),
(34, 7, 1018, 0, 0),
(34, 7, 1019, 0, 0),
(34, 7, 1020, 0, 0),
(34, 7, 1021, 0, 0),
(34, 7, 1022, 0, 0),
(34, 7, 1023, 0, 0),
(34, 7, 1024, 0, 0),
(34, 7, 1025, 0, 0),
(34, 7, 1026, 0, 0),
(34, 7, 1027, 0, 0),
(34, 7, 1028, 0, 0),
(34, 7, 1029, 0, 0),
(34, 7, 1030, 0, 0),
(34, 7, 1031, 0, 0),
(34, 7, 1032, 0, 0),
(34, 7, 1033, 0, 0),
(34, 56, 1034, 0, 0),
(34, 56, 1035, 0, 0),
(34, 56, 1036, 0, 0),
(34, 56, 1037, 0, 0),
(34, 56, 1038, 0, 0),
(34, 56, 1039, 0, 0),
(34, 56, 1040, 0, 0),
(34, 56, 1041, 0, 0),
(34, 56, 1042, 0, 0),
(34, 56, 1043, 0, 0),
(34, 56, 1044, 0, 1),
(34, 56, 1045, 0, 1),
(34, 56, 1046, 0, 0),
(34, 57, 1047, 0, 0),
(34, 57, 1048, 0, 0),
(34, 57, 1049, 0, 0),
(34, 57, 1050, 0, 0),
(34, 57, 1051, 0, 0),
(34, 57, 1052, 0, 0),
(34, 57, 1053, 0, 0),
(34, 57, 1054, 0, 0),
(34, 57, 1055, 0, 0),
(34, 57, 1056, 0, 0),
(34, 57, 1057, 0, 0),
(34, 57, 1058, 0, 0),
(34, 57, 1059, 0, 0),
(34, 57, 1060, 0, 0),
(34, 57, 1061, 0, 1),
(34, 57, 1062, 0, 1),
(34, 57, 1063, 0, 0),
(34, 58, 1064, 0, 0),
(34, 58, 1065, 0, 0),
(34, 58, 1066, 0, 0),
(34, 58, 1067, 0, 0),
(34, 58, 1068, 0, 0),
(34, 58, 1069, 0, 0),
(34, 58, 1070, 0, 0),
(34, 58, 1071, 0, 0),
(34, 58, 1072, 0, 0),
(34, 58, 1073, 0, 0),
(34, 58, 1074, 0, 0),
(34, 58, 1075, 0, 0),
(34, 58, 1076, 0, 0),
(34, 58, 1077, 0, 0),
(34, 58, 1078, 0, 0),
(34, 58, 1079, 0, 0),
(34, 58, 1080, 0, 0),
(34, 58, 1081, 0, 0),
(34, 58, 1082, 0, 0),
(34, 58, 1083, 0, 1),
(34, 58, 1084, 0, 1),
(34, 58, 1085, 0, 0),
(34, 59, 1086, 0, 0),
(34, 59, 1087, 0, 0),
(34, 59, 1088, 0, 0),
(34, 59, 1089, 0, 0),
(34, 59, 1090, 0, 0),
(34, 59, 1091, 0, 0),
(34, 59, 1092, 0, 0),
(34, 59, 1093, 0, 0),
(34, 59, 1094, 0, 0),
(34, 59, 1095, 0, 0),
(34, 59, 1096, 0, 0),
(34, 59, 1097, 0, 0),
(34, 59, 1098, 0, 0),
(34, 59, 1099, 0, 0),
(34, 59, 1100, 0, 0),
(34, 59, 1101, 0, 0),
(34, 59, 1102, 0, 0),
(34, 59, 1103, 0, 0),
(34, 59, 1104, 0, 0),
(34, 59, 1105, 0, 0),
(34, 59, 1106, 0, 0),
(34, 59, 1107, 0, 1),
(34, 59, 1108, 0, 1),
(34, 59, 1109, 0, 0),
(34, 60, 1110, 0, 0),
(34, 60, 1111, 0, 0),
(34, 60, 1112, 0, 0),
(34, 60, 1113, 0, 0),
(34, 60, 1114, 0, 0),
(34, 60, 1115, 0, 0),
(34, 60, 1116, 0, 0),
(34, 60, 1117, 0, 0),
(34, 60, 1118, 0, 0),
(34, 60, 1119, 0, 0),
(34, 60, 1120, 0, 0),
(34, 60, 1121, 0, 0),
(34, 60, 1122, 0, 0),
(34, 60, 1123, 0, 0),
(34, 60, 1124, 0, 0),
(34, 60, 1125, 0, 1),
(34, 60, 1126, 0, 1),
(34, 60, 1127, 0, 0),
(34, 61, 1128, 0, 0),
(34, 61, 1129, 0, 0),
(34, 61, 1130, 0, 0),
(34, 61, 1131, 0, 0),
(34, 61, 1132, 0, 0),
(34, 61, 1133, 0, 0),
(34, 61, 1134, 0, 0),
(34, 61, 1135, 0, 0),
(34, 61, 1136, 0, 0),
(34, 61, 1137, 0, 0),
(34, 61, 1138, 0, 0),
(34, 61, 1139, 0, 0),
(34, 61, 1140, 0, 0),
(34, 61, 1141, 0, 0),
(34, 61, 1142, 0, 0),
(34, 61, 1143, 0, 0),
(34, 61, 1144, 0, 1),
(34, 61, 1145, 0, 1),
(34, 61, 1146, 0, 0),
(34, 62, 1147, 0, 0),
(34, 62, 1148, 0, 0),
(34, 62, 1149, 0, 0),
(34, 62, 1150, 0, 0),
(34, 62, 1151, 0, 0),
(34, 62, 1152, 0, 0),
(34, 62, 1153, 0, 0),
(34, 62, 1154, 0, 0),
(34, 62, 1155, 0, 0),
(34, 62, 1156, 0, 0),
(34, 62, 1157, 0, 0),
(34, 62, 1158, 0, 0),
(34, 62, 1159, 0, 0),
(34, 62, 1160, 0, 0),
(34, 62, 1161, 0, 0),
(34, 62, 1162, 0, 0),
(34, 62, 1163, 0, 0),
(34, 62, 1164, 0, 1),
(34, 62, 1165, 0, 1),
(34, 62, 1166, 0, 0),
(34, 63, 1167, 0, 0),
(34, 63, 1168, 0, 0),
(34, 63, 1169, 0, 0),
(34, 63, 1170, 0, 0),
(34, 63, 1171, 0, 0),
(34, 63, 1172, 0, 0),
(34, 63, 1173, 0, 0),
(34, 63, 1174, 0, 0),
(34, 63, 1175, 0, 0),
(34, 63, 1176, 0, 0),
(34, 63, 1177, 0, 1),
(34, 63, 1178, 0, 1),
(34, 63, 1179, 0, 0),
(34, 4, 1180, 0, 0),
(34, 4, 1181, 0, 0),
(34, 4, 1182, 0, 0),
(34, 4, 1183, 0, 0),
(34, 4, 1184, 0, 0),
(34, 4, 1185, 0, 0),
(34, 4, 1186, 0, 0),
(34, 4, 1187, 0, 0),
(34, 4, 1188, 0, 0),
(34, 21, 1189, 0, 0),
(34, 21, 1190, 0, 0),
(34, 21, 1191, 0, 0),
(34, 21, 1192, 0, 0),
(34, 21, 1193, 0, 0),
(34, 21, 1194, 0, 0),
(34, 21, 1195, 0, 0),
(34, 21, 1196, 0, 0),
(34, 21, 1197, 0, 0),
(34, 21, 1198, 0, 0),
(34, 21, 1199, 0, 0),
(34, 21, 1200, 0, 0),
(34, 21, 1201, 0, 0),
(34, 21, 1202, 0, 0),
(34, 21, 1203, 0, 0),
(34, 21, 1204, 0, 0),
(34, 21, 1205, 0, 0),
(34, 21, 1206, 0, 0),
(34, 21, 1207, 0, 0),
(34, 20, 1208, 0, 0),
(34, 20, 1209, 0, 0),
(34, 20, 1210, 0, 0),
(34, 20, 1211, 0, 0),
(34, 20, 1212, 0, 0),
(34, 4, 1213, 0, 0),
(34, 4, 1214, 0, 0),
(34, 4, 1215, 0, 0),
(34, 4, 1216, 0, 0),
(34, 4, 1217, 0, 0),
(34, 4, 1218, 0, 0),
(34, 4, 1219, 0, 0),
(34, 65, 1220, 0, 0),
(34, 65, 1221, 0, 0),
(34, 65, 1222, 0, 0),
(34, 65, 1223, 0, 0),
(34, 65, 1224, 0, 0),
(34, 65, 1225, 0, 0),
(34, 65, 1226, 0, 0),
(34, 65, 1227, 0, 0),
(34, 65, 1228, 0, 0),
(34, 65, 1229, 0, 0),
(34, 65, 1230, 0, 0),
(34, 65, 1231, 0, 0),
(34, 65, 1232, 0, 0),
(34, 65, 1233, 0, 0),
(34, 65, 1234, 0, 0),
(34, 2, 1235, 0, 0),
(34, 2, 1236, 0, 0),
(34, 2, 1237, 0, 0),
(34, 2, 1238, 0, 0),
(34, 2, 1239, 0, 0),
(34, 2, 1240, 0, 0),
(34, 2, 1241, 0, 0),
(34, 2, 1242, 0, 0),
(34, 2, 1243, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile2globalpermissions`
--

DROP TABLE IF EXISTS `vtiger_profile2globalpermissions`;
CREATE TABLE `vtiger_profile2globalpermissions` (
  `profileid` int(19) NOT NULL,
  `globalactionid` int(19) NOT NULL,
  `globalactionpermission` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile2globalpermissions`
--

INSERT IGNORE INTO `vtiger_profile2globalpermissions` (`profileid`, `globalactionid`, `globalactionpermission`) VALUES
(1, 1, 0),
(1, 2, 0),
(2, 1, 1),
(2, 2, 1),
(3, 1, 1),
(3, 2, 1),
(4, 1, 1),
(4, 2, 1),
(5, 1, 0),
(5, 2, 0),
(6, 1, 1),
(6, 2, 1),
(7, 1, 1),
(7, 2, 1),
(8, 1, 1),
(8, 2, 1),
(32, 1, 0),
(32, 2, 0),
(33, 1, 0),
(33, 2, 0),
(34, 1, 1),
(34, 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile2standardpermissions`
--

DROP TABLE IF EXISTS `vtiger_profile2standardpermissions`;
CREATE TABLE `vtiger_profile2standardpermissions` (
  `profileid` int(11) NOT NULL,
  `tabid` int(10) NOT NULL,
  `operation` int(10) NOT NULL,
  `permissions` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile2standardpermissions`
--

INSERT IGNORE INTO `vtiger_profile2standardpermissions` (`profileid`, `tabid`, `operation`, `permissions`) VALUES
(1, 2, 0, 0),
(1, 2, 1, 0),
(1, 2, 2, 0),
(1, 2, 3, 0),
(1, 2, 4, 0),
(1, 2, 7, 0),
(1, 4, 0, 0),
(1, 4, 1, 0),
(1, 4, 2, 0),
(1, 4, 3, 0),
(1, 4, 4, 0),
(1, 4, 7, 0),
(1, 6, 0, 0),
(1, 6, 1, 0),
(1, 6, 2, 0),
(1, 6, 3, 0),
(1, 6, 4, 0),
(1, 6, 7, 0),
(1, 7, 0, 0),
(1, 7, 1, 0),
(1, 7, 2, 0),
(1, 7, 3, 0),
(1, 7, 4, 0),
(1, 7, 7, 0),
(1, 8, 0, 0),
(1, 8, 1, 0),
(1, 8, 2, 0),
(1, 8, 3, 0),
(1, 8, 4, 0),
(1, 8, 7, 0),
(1, 9, 0, 0),
(1, 9, 1, 0),
(1, 9, 2, 0),
(1, 9, 3, 0),
(1, 9, 4, 0),
(1, 9, 7, 0),
(1, 10, 0, 0),
(1, 10, 1, 0),
(1, 10, 2, 0),
(1, 10, 3, 0),
(1, 10, 4, 0),
(1, 13, 0, 0),
(1, 13, 1, 0),
(1, 13, 2, 0),
(1, 13, 3, 0),
(1, 13, 4, 0),
(1, 13, 7, 0),
(1, 14, 0, 0),
(1, 14, 1, 0),
(1, 14, 2, 0),
(1, 14, 3, 0),
(1, 14, 4, 0),
(1, 14, 7, 0),
(1, 15, 0, 0),
(1, 15, 1, 0),
(1, 15, 2, 0),
(1, 15, 3, 0),
(1, 15, 4, 0),
(1, 15, 7, 0),
(1, 16, 0, 0),
(1, 16, 1, 0),
(1, 16, 2, 0),
(1, 16, 3, 0),
(1, 16, 4, 0),
(1, 16, 7, 0),
(1, 18, 0, 0),
(1, 18, 1, 0),
(1, 18, 2, 0),
(1, 18, 3, 0),
(1, 18, 4, 0),
(1, 18, 7, 0),
(1, 19, 0, 0),
(1, 19, 1, 0),
(1, 19, 2, 0),
(1, 19, 3, 0),
(1, 19, 4, 0),
(1, 19, 7, 0),
(1, 20, 0, 0),
(1, 20, 1, 0),
(1, 20, 2, 0),
(1, 20, 3, 0),
(1, 20, 4, 0),
(1, 20, 7, 0),
(1, 21, 0, 0),
(1, 21, 1, 0),
(1, 21, 2, 0),
(1, 21, 3, 0),
(1, 21, 4, 0),
(1, 21, 7, 0),
(1, 22, 0, 0),
(1, 22, 1, 0),
(1, 22, 2, 0),
(1, 22, 3, 0),
(1, 22, 4, 0),
(1, 22, 7, 0),
(1, 23, 0, 0),
(1, 23, 1, 0),
(1, 23, 2, 0),
(1, 23, 3, 0),
(1, 23, 4, 0),
(1, 23, 7, 0),
(1, 25, 0, 1),
(1, 25, 1, 1),
(1, 25, 2, 1),
(1, 25, 3, 0),
(1, 25, 4, 0),
(1, 25, 7, 1),
(1, 26, 0, 0),
(1, 26, 1, 0),
(1, 26, 2, 0),
(1, 26, 3, 0),
(1, 26, 4, 0),
(1, 26, 7, 0),
(1, 34, 0, 0),
(1, 34, 1, 0),
(1, 34, 2, 0),
(1, 34, 3, 0),
(1, 34, 4, 0),
(1, 34, 7, 0),
(1, 35, 0, 0),
(1, 35, 1, 0),
(1, 35, 2, 0),
(1, 35, 3, 0),
(1, 35, 4, 0),
(1, 35, 7, 0),
(1, 36, 0, 0),
(1, 36, 1, 0),
(1, 36, 2, 0),
(1, 36, 3, 0),
(1, 36, 4, 0),
(1, 36, 7, 0),
(1, 38, 0, 0),
(1, 38, 1, 0),
(1, 38, 2, 0),
(1, 38, 3, 0),
(1, 38, 4, 0),
(1, 38, 7, 0),
(1, 42, 0, 0),
(1, 42, 1, 0),
(1, 42, 2, 0),
(1, 42, 3, 0),
(1, 42, 4, 0),
(1, 42, 7, 0),
(1, 43, 0, 0),
(1, 43, 1, 0),
(1, 43, 2, 0),
(1, 43, 3, 0),
(1, 43, 4, 0),
(1, 43, 7, 0),
(1, 44, 0, 0),
(1, 44, 1, 0),
(1, 44, 2, 0),
(1, 44, 3, 0),
(1, 44, 4, 0),
(1, 44, 7, 0),
(1, 45, 0, 0),
(1, 45, 1, 0),
(1, 45, 2, 0),
(1, 45, 3, 0),
(1, 45, 4, 0),
(1, 45, 7, 0),
(1, 47, 0, 0),
(1, 47, 1, 0),
(1, 47, 2, 0),
(1, 47, 3, 0),
(1, 47, 4, 0),
(1, 47, 7, 0),
(1, 52, 0, 0),
(1, 52, 1, 0),
(1, 52, 2, 0),
(1, 52, 3, 0),
(1, 52, 4, 0),
(1, 52, 7, 0),
(1, 53, 0, 0),
(1, 53, 1, 0),
(1, 53, 2, 0),
(1, 53, 3, 0),
(1, 53, 4, 0),
(1, 53, 7, 0),
(1, 54, 0, 0),
(1, 54, 1, 0),
(1, 54, 2, 0),
(1, 54, 3, 0),
(1, 54, 4, 0),
(1, 54, 7, 0),
(1, 55, 0, 0),
(1, 55, 1, 0),
(1, 55, 2, 0),
(1, 55, 3, 0),
(1, 55, 4, 0),
(1, 55, 7, 0),
(1, 56, 0, 0),
(1, 56, 1, 0),
(1, 56, 2, 0),
(1, 56, 3, 0),
(1, 56, 4, 0),
(1, 56, 7, 0),
(1, 57, 0, 0),
(1, 57, 1, 0),
(1, 57, 2, 0),
(1, 57, 3, 0),
(1, 57, 4, 0),
(1, 57, 7, 0),
(1, 58, 0, 0),
(1, 58, 1, 0),
(1, 58, 2, 0),
(1, 58, 3, 0),
(1, 58, 4, 0),
(1, 58, 7, 0),
(1, 59, 0, 0),
(1, 59, 1, 0),
(1, 59, 2, 0),
(1, 59, 3, 0),
(1, 59, 4, 0),
(1, 59, 7, 0),
(1, 60, 0, 0),
(1, 60, 1, 0),
(1, 60, 2, 0),
(1, 60, 3, 0),
(1, 60, 4, 0),
(1, 60, 7, 0),
(1, 61, 0, 0),
(1, 61, 1, 0),
(1, 61, 2, 0),
(1, 61, 3, 0),
(1, 61, 4, 0),
(1, 61, 7, 0),
(1, 62, 0, 0),
(1, 62, 1, 0),
(1, 62, 2, 0),
(1, 62, 3, 0),
(1, 62, 4, 0),
(1, 62, 7, 0),
(1, 63, 0, 0),
(1, 63, 1, 0),
(1, 63, 2, 0),
(1, 63, 3, 0),
(1, 63, 4, 0),
(1, 63, 7, 0),
(1, 65, 0, 0),
(1, 65, 1, 0),
(1, 65, 2, 0),
(1, 65, 3, 0),
(1, 65, 4, 0),
(1, 65, 7, 0),
(2, 2, 0, 0),
(2, 2, 1, 0),
(2, 2, 2, 0),
(2, 2, 3, 0),
(2, 2, 4, 0),
(2, 2, 7, 0),
(2, 4, 0, 0),
(2, 4, 1, 0),
(2, 4, 2, 0),
(2, 4, 3, 0),
(2, 4, 4, 0),
(2, 4, 7, 0),
(2, 6, 0, 0),
(2, 6, 1, 0),
(2, 6, 2, 0),
(2, 6, 3, 0),
(2, 6, 4, 0),
(2, 6, 7, 0),
(2, 7, 0, 0),
(2, 7, 1, 0),
(2, 7, 2, 0),
(2, 7, 3, 0),
(2, 7, 4, 0),
(2, 7, 7, 0),
(2, 8, 0, 0),
(2, 8, 1, 0),
(2, 8, 2, 0),
(2, 8, 3, 0),
(2, 8, 4, 0),
(2, 8, 7, 0),
(2, 9, 0, 0),
(2, 9, 1, 0),
(2, 9, 2, 0),
(2, 9, 3, 0),
(2, 9, 4, 0),
(2, 9, 7, 0),
(2, 10, 0, 0),
(2, 10, 1, 0),
(2, 10, 2, 0),
(2, 10, 3, 0),
(2, 10, 4, 0),
(2, 13, 0, 1),
(2, 13, 1, 1),
(2, 13, 2, 1),
(2, 13, 3, 0),
(2, 13, 4, 0),
(2, 13, 7, 1),
(2, 14, 0, 0),
(2, 14, 1, 0),
(2, 14, 2, 0),
(2, 14, 3, 0),
(2, 14, 4, 0),
(2, 14, 7, 0),
(2, 15, 0, 0),
(2, 15, 1, 0),
(2, 15, 2, 0),
(2, 15, 3, 0),
(2, 15, 4, 0),
(2, 15, 7, 0),
(2, 16, 0, 0),
(2, 16, 1, 0),
(2, 16, 2, 0),
(2, 16, 3, 0),
(2, 16, 4, 0),
(2, 16, 7, 0),
(2, 18, 0, 0),
(2, 18, 1, 0),
(2, 18, 2, 0),
(2, 18, 3, 0),
(2, 18, 4, 0),
(2, 18, 7, 0),
(2, 19, 0, 0),
(2, 19, 1, 0),
(2, 19, 2, 0),
(2, 19, 3, 0),
(2, 19, 4, 0),
(2, 19, 7, 0),
(2, 20, 0, 0),
(2, 20, 1, 0),
(2, 20, 2, 0),
(2, 20, 3, 0),
(2, 20, 4, 0),
(2, 20, 7, 0),
(2, 21, 0, 0),
(2, 21, 1, 0),
(2, 21, 2, 0),
(2, 21, 3, 0),
(2, 21, 4, 0),
(2, 21, 7, 0),
(2, 22, 0, 0),
(2, 22, 1, 0),
(2, 22, 2, 0),
(2, 22, 3, 0),
(2, 22, 4, 0),
(2, 22, 7, 0),
(2, 23, 0, 0),
(2, 23, 1, 0),
(2, 23, 2, 0),
(2, 23, 3, 0),
(2, 23, 4, 0),
(2, 23, 7, 0),
(2, 25, 0, 1),
(2, 25, 1, 1),
(2, 25, 2, 1),
(2, 25, 3, 0),
(2, 25, 4, 0),
(2, 25, 7, 1),
(2, 26, 0, 0),
(2, 26, 1, 0),
(2, 26, 2, 0),
(2, 26, 3, 0),
(2, 26, 4, 0),
(2, 26, 7, 0),
(2, 34, 0, 0),
(2, 34, 1, 0),
(2, 34, 2, 0),
(2, 34, 3, 0),
(2, 34, 4, 0),
(2, 34, 7, 0),
(2, 35, 0, 0),
(2, 35, 1, 0),
(2, 35, 2, 0),
(2, 35, 3, 0),
(2, 35, 4, 0),
(2, 35, 7, 0),
(2, 36, 0, 0),
(2, 36, 1, 0),
(2, 36, 2, 0),
(2, 36, 3, 0),
(2, 36, 4, 0),
(2, 36, 7, 0),
(2, 38, 0, 0),
(2, 38, 1, 0),
(2, 38, 2, 0),
(2, 38, 3, 0),
(2, 38, 4, 0),
(2, 38, 7, 0),
(2, 42, 0, 0),
(2, 42, 1, 0),
(2, 42, 2, 0),
(2, 42, 3, 0),
(2, 42, 4, 0),
(2, 42, 7, 0),
(2, 43, 0, 0),
(2, 43, 1, 0),
(2, 43, 2, 0),
(2, 43, 3, 0),
(2, 43, 4, 0),
(2, 43, 7, 0),
(2, 44, 0, 0),
(2, 44, 1, 0),
(2, 44, 2, 0),
(2, 44, 3, 0),
(2, 44, 4, 0),
(2, 44, 7, 0),
(2, 45, 0, 0),
(2, 45, 1, 0),
(2, 45, 2, 0),
(2, 45, 3, 0),
(2, 45, 4, 0),
(2, 45, 7, 0),
(2, 47, 0, 0),
(2, 47, 1, 0),
(2, 47, 2, 0),
(2, 47, 3, 0),
(2, 47, 4, 0),
(2, 47, 7, 0),
(2, 52, 0, 0),
(2, 52, 1, 0),
(2, 52, 2, 0),
(2, 52, 3, 0),
(2, 52, 4, 0),
(2, 52, 7, 0),
(2, 53, 0, 0),
(2, 53, 1, 0),
(2, 53, 2, 0),
(2, 53, 3, 0),
(2, 53, 4, 0),
(2, 53, 7, 0),
(2, 54, 0, 0),
(2, 54, 1, 0),
(2, 54, 2, 0),
(2, 54, 3, 0),
(2, 54, 4, 0),
(2, 54, 7, 0),
(2, 55, 0, 0),
(2, 55, 1, 0),
(2, 55, 2, 0),
(2, 55, 3, 0),
(2, 55, 4, 0),
(2, 55, 7, 0),
(2, 56, 0, 0),
(2, 56, 1, 0),
(2, 56, 2, 0),
(2, 56, 3, 0),
(2, 56, 4, 0),
(2, 56, 7, 0),
(2, 57, 0, 0),
(2, 57, 1, 0),
(2, 57, 2, 0),
(2, 57, 3, 0),
(2, 57, 4, 0),
(2, 57, 7, 0),
(2, 58, 0, 0),
(2, 58, 1, 0),
(2, 58, 2, 0),
(2, 58, 3, 0),
(2, 58, 4, 0),
(2, 58, 7, 0),
(2, 59, 0, 0),
(2, 59, 1, 0),
(2, 59, 2, 0),
(2, 59, 3, 0),
(2, 59, 4, 0),
(2, 59, 7, 0),
(2, 60, 0, 0),
(2, 60, 1, 0),
(2, 60, 2, 0),
(2, 60, 3, 0),
(2, 60, 4, 0),
(2, 60, 7, 0),
(2, 61, 0, 0),
(2, 61, 1, 0),
(2, 61, 2, 0),
(2, 61, 3, 0),
(2, 61, 4, 0),
(2, 61, 7, 0),
(2, 62, 0, 0),
(2, 62, 1, 0),
(2, 62, 2, 0),
(2, 62, 3, 0),
(2, 62, 4, 0),
(2, 62, 7, 0),
(2, 63, 0, 0),
(2, 63, 1, 0),
(2, 63, 2, 0),
(2, 63, 3, 0),
(2, 63, 4, 0),
(2, 63, 7, 0),
(2, 65, 0, 0),
(2, 65, 1, 0),
(2, 65, 2, 0),
(2, 65, 3, 0),
(2, 65, 4, 0),
(2, 65, 7, 0),
(3, 2, 0, 1),
(3, 2, 1, 1),
(3, 2, 2, 1),
(3, 2, 3, 0),
(3, 2, 4, 0),
(3, 2, 7, 1),
(3, 4, 0, 0),
(3, 4, 1, 0),
(3, 4, 2, 0),
(3, 4, 3, 0),
(3, 4, 4, 0),
(3, 4, 7, 0),
(3, 6, 0, 0),
(3, 6, 1, 0),
(3, 6, 2, 0),
(3, 6, 3, 0),
(3, 6, 4, 0),
(3, 6, 7, 0),
(3, 7, 0, 0),
(3, 7, 1, 0),
(3, 7, 2, 0),
(3, 7, 3, 0),
(3, 7, 4, 0),
(3, 7, 7, 0),
(3, 8, 0, 0),
(3, 8, 1, 0),
(3, 8, 2, 0),
(3, 8, 3, 0),
(3, 8, 4, 0),
(3, 8, 7, 0),
(3, 9, 0, 0),
(3, 9, 1, 0),
(3, 9, 2, 0),
(3, 9, 3, 0),
(3, 9, 4, 0),
(3, 9, 7, 0),
(3, 10, 0, 0),
(3, 10, 1, 0),
(3, 10, 2, 0),
(3, 10, 3, 0),
(3, 10, 4, 0),
(3, 13, 0, 0),
(3, 13, 1, 0),
(3, 13, 2, 0),
(3, 13, 3, 0),
(3, 13, 4, 0),
(3, 13, 7, 0),
(3, 14, 0, 0),
(3, 14, 1, 0),
(3, 14, 2, 0),
(3, 14, 3, 0),
(3, 14, 4, 0),
(3, 14, 7, 0),
(3, 15, 0, 0),
(3, 15, 1, 0),
(3, 15, 2, 0),
(3, 15, 3, 0),
(3, 15, 4, 0),
(3, 15, 7, 0),
(3, 16, 0, 0),
(3, 16, 1, 0),
(3, 16, 2, 0),
(3, 16, 3, 0),
(3, 16, 4, 0),
(3, 16, 7, 0),
(3, 18, 0, 0),
(3, 18, 1, 0),
(3, 18, 2, 0),
(3, 18, 3, 0),
(3, 18, 4, 0),
(3, 18, 7, 0),
(3, 19, 0, 0),
(3, 19, 1, 0),
(3, 19, 2, 0),
(3, 19, 3, 0),
(3, 19, 4, 0),
(3, 19, 7, 0),
(3, 20, 0, 0),
(3, 20, 1, 0),
(3, 20, 2, 0),
(3, 20, 3, 0),
(3, 20, 4, 0),
(3, 20, 7, 0),
(3, 21, 0, 0),
(3, 21, 1, 0),
(3, 21, 2, 0),
(3, 21, 3, 0),
(3, 21, 4, 0),
(3, 21, 7, 0),
(3, 22, 0, 0),
(3, 22, 1, 0),
(3, 22, 2, 0),
(3, 22, 3, 0),
(3, 22, 4, 0),
(3, 22, 7, 0),
(3, 23, 0, 0),
(3, 23, 1, 0),
(3, 23, 2, 0),
(3, 23, 3, 0),
(3, 23, 4, 0),
(3, 23, 7, 0),
(3, 25, 0, 1),
(3, 25, 1, 1),
(3, 25, 2, 1),
(3, 25, 3, 0),
(3, 25, 4, 0),
(3, 25, 7, 1),
(3, 26, 0, 0),
(3, 26, 1, 0),
(3, 26, 2, 0),
(3, 26, 3, 0),
(3, 26, 4, 0),
(3, 26, 7, 0),
(3, 34, 0, 0),
(3, 34, 1, 0),
(3, 34, 2, 0),
(3, 34, 3, 0),
(3, 34, 4, 0),
(3, 34, 7, 0),
(3, 35, 0, 0),
(3, 35, 1, 0),
(3, 35, 2, 0),
(3, 35, 3, 0),
(3, 35, 4, 0),
(3, 35, 7, 0),
(3, 36, 0, 0),
(3, 36, 1, 0),
(3, 36, 2, 0),
(3, 36, 3, 0),
(3, 36, 4, 0),
(3, 36, 7, 0),
(3, 38, 0, 0),
(3, 38, 1, 0),
(3, 38, 2, 0),
(3, 38, 3, 0),
(3, 38, 4, 0),
(3, 38, 7, 0),
(3, 42, 0, 0),
(3, 42, 1, 0),
(3, 42, 2, 0),
(3, 42, 3, 0),
(3, 42, 4, 0),
(3, 42, 7, 0),
(3, 43, 0, 0),
(3, 43, 1, 0),
(3, 43, 2, 0),
(3, 43, 3, 0),
(3, 43, 4, 0),
(3, 43, 7, 0),
(3, 44, 0, 0),
(3, 44, 1, 0),
(3, 44, 2, 0),
(3, 44, 3, 0),
(3, 44, 4, 0),
(3, 44, 7, 0),
(3, 45, 0, 0),
(3, 45, 1, 0),
(3, 45, 2, 0),
(3, 45, 3, 0),
(3, 45, 4, 0),
(3, 45, 7, 0),
(3, 47, 0, 0),
(3, 47, 1, 0),
(3, 47, 2, 0),
(3, 47, 3, 0),
(3, 47, 4, 0),
(3, 47, 7, 0),
(3, 52, 0, 0),
(3, 52, 1, 0),
(3, 52, 2, 0),
(3, 52, 3, 0),
(3, 52, 4, 0),
(3, 52, 7, 0),
(3, 53, 0, 0),
(3, 53, 1, 0),
(3, 53, 2, 0),
(3, 53, 3, 0),
(3, 53, 4, 0),
(3, 53, 7, 0),
(3, 54, 0, 0),
(3, 54, 1, 0),
(3, 54, 2, 0),
(3, 54, 3, 0),
(3, 54, 4, 0),
(3, 54, 7, 0),
(3, 55, 0, 0),
(3, 55, 1, 0),
(3, 55, 2, 0),
(3, 55, 3, 0),
(3, 55, 4, 0),
(3, 55, 7, 0),
(3, 56, 0, 0),
(3, 56, 1, 0),
(3, 56, 2, 0),
(3, 56, 3, 0),
(3, 56, 4, 0),
(3, 56, 7, 0),
(3, 57, 0, 0),
(3, 57, 1, 0),
(3, 57, 2, 0),
(3, 57, 3, 0),
(3, 57, 4, 0),
(3, 57, 7, 0),
(3, 58, 0, 0),
(3, 58, 1, 0),
(3, 58, 2, 0),
(3, 58, 3, 0),
(3, 58, 4, 0),
(3, 58, 7, 0),
(3, 59, 0, 0),
(3, 59, 1, 0),
(3, 59, 2, 0),
(3, 59, 3, 0),
(3, 59, 4, 0),
(3, 59, 7, 0),
(3, 60, 0, 0),
(3, 60, 1, 0),
(3, 60, 2, 0),
(3, 60, 3, 0),
(3, 60, 4, 0),
(3, 60, 7, 0),
(3, 61, 0, 0),
(3, 61, 1, 0),
(3, 61, 2, 0),
(3, 61, 3, 0),
(3, 61, 4, 0),
(3, 61, 7, 0),
(3, 62, 0, 0),
(3, 62, 1, 0),
(3, 62, 2, 0),
(3, 62, 3, 0),
(3, 62, 4, 0),
(3, 62, 7, 0),
(3, 63, 0, 0),
(3, 63, 1, 0),
(3, 63, 2, 0),
(3, 63, 3, 0),
(3, 63, 4, 0),
(3, 63, 7, 0),
(3, 65, 0, 0),
(3, 65, 1, 0),
(3, 65, 2, 0),
(3, 65, 3, 0),
(3, 65, 4, 0),
(3, 65, 7, 0),
(4, 2, 0, 1),
(4, 2, 1, 1),
(4, 2, 2, 1),
(4, 2, 3, 0),
(4, 2, 4, 0),
(4, 2, 7, 1),
(4, 4, 0, 1),
(4, 4, 1, 1),
(4, 4, 2, 1),
(4, 4, 3, 0),
(4, 4, 4, 0),
(4, 4, 7, 1),
(4, 6, 0, 1),
(4, 6, 1, 1),
(4, 6, 2, 1),
(4, 6, 3, 0),
(4, 6, 4, 0),
(4, 6, 7, 1),
(4, 7, 0, 1),
(4, 7, 1, 1),
(4, 7, 2, 1),
(4, 7, 3, 0),
(4, 7, 4, 0),
(4, 7, 7, 1),
(4, 8, 0, 1),
(4, 8, 1, 1),
(4, 8, 2, 1),
(4, 8, 3, 0),
(4, 8, 4, 0),
(4, 8, 7, 1),
(4, 9, 0, 1),
(4, 9, 1, 1),
(4, 9, 2, 1),
(4, 9, 3, 0),
(4, 9, 4, 0),
(4, 9, 7, 1),
(4, 10, 0, 0),
(4, 10, 1, 0),
(4, 10, 2, 0),
(4, 10, 3, 0),
(4, 10, 4, 0),
(4, 13, 0, 1),
(4, 13, 1, 1),
(4, 13, 2, 1),
(4, 13, 3, 0),
(4, 13, 4, 0),
(4, 13, 7, 1),
(4, 14, 0, 1),
(4, 14, 1, 1),
(4, 14, 2, 1),
(4, 14, 3, 0),
(4, 14, 4, 0),
(4, 14, 7, 1),
(4, 15, 0, 1),
(4, 15, 1, 1),
(4, 15, 2, 1),
(4, 15, 3, 0),
(4, 15, 4, 0),
(4, 15, 7, 1),
(4, 16, 0, 1),
(4, 16, 1, 1),
(4, 16, 2, 1),
(4, 16, 3, 0),
(4, 16, 4, 0),
(4, 16, 7, 1),
(4, 18, 0, 1),
(4, 18, 1, 1),
(4, 18, 2, 1),
(4, 18, 3, 0),
(4, 18, 4, 0),
(4, 18, 7, 1),
(4, 19, 0, 1),
(4, 19, 1, 1),
(4, 19, 2, 1),
(4, 19, 3, 0),
(4, 19, 4, 0),
(4, 19, 7, 1),
(4, 20, 0, 1),
(4, 20, 1, 1),
(4, 20, 2, 1),
(4, 20, 3, 0),
(4, 20, 4, 0),
(4, 20, 7, 1),
(4, 21, 0, 1),
(4, 21, 1, 1),
(4, 21, 2, 1),
(4, 21, 3, 0),
(4, 21, 4, 0),
(4, 21, 7, 1),
(4, 22, 0, 1),
(4, 22, 1, 1),
(4, 22, 2, 1),
(4, 22, 3, 0),
(4, 22, 4, 0),
(4, 22, 7, 1),
(4, 23, 0, 1),
(4, 23, 1, 1),
(4, 23, 2, 1),
(4, 23, 3, 0),
(4, 23, 4, 0),
(4, 23, 7, 1),
(4, 25, 0, 1),
(4, 25, 1, 1),
(4, 25, 2, 1),
(4, 25, 3, 0),
(4, 25, 4, 0),
(4, 25, 7, 1),
(4, 26, 0, 1),
(4, 26, 1, 1),
(4, 26, 2, 1),
(4, 26, 3, 0),
(4, 26, 4, 0),
(4, 26, 7, 1),
(4, 34, 0, 0),
(4, 34, 1, 0),
(4, 34, 2, 0),
(4, 34, 3, 0),
(4, 34, 4, 0),
(4, 34, 7, 0),
(4, 35, 0, 0),
(4, 35, 1, 0),
(4, 35, 2, 0),
(4, 35, 3, 0),
(4, 35, 4, 0),
(4, 35, 7, 0),
(4, 36, 0, 0),
(4, 36, 1, 0),
(4, 36, 2, 0),
(4, 36, 3, 0),
(4, 36, 4, 0),
(4, 36, 7, 0),
(4, 38, 0, 0),
(4, 38, 1, 0),
(4, 38, 2, 0),
(4, 38, 3, 0),
(4, 38, 4, 0),
(4, 38, 7, 0),
(4, 42, 0, 0),
(4, 42, 1, 0),
(4, 42, 2, 0),
(4, 42, 3, 0),
(4, 42, 4, 0),
(4, 42, 7, 0),
(4, 43, 0, 0),
(4, 43, 1, 0),
(4, 43, 2, 0),
(4, 43, 3, 0),
(4, 43, 4, 0),
(4, 43, 7, 0),
(4, 44, 0, 0),
(4, 44, 1, 0),
(4, 44, 2, 0),
(4, 44, 3, 0),
(4, 44, 4, 0),
(4, 44, 7, 0),
(4, 45, 0, 0),
(4, 45, 1, 0),
(4, 45, 2, 0),
(4, 45, 3, 0),
(4, 45, 4, 0),
(4, 45, 7, 0),
(4, 47, 0, 0),
(4, 47, 1, 0),
(4, 47, 2, 0),
(4, 47, 3, 0),
(4, 47, 4, 0),
(4, 47, 7, 0),
(4, 52, 0, 0),
(4, 52, 1, 0),
(4, 52, 2, 0),
(4, 52, 3, 0),
(4, 52, 4, 0),
(4, 52, 7, 0),
(4, 53, 0, 0),
(4, 53, 1, 0),
(4, 53, 2, 0),
(4, 53, 3, 0),
(4, 53, 4, 0),
(4, 53, 7, 0),
(4, 54, 0, 0),
(4, 54, 1, 0),
(4, 54, 2, 0),
(4, 54, 3, 0),
(4, 54, 4, 0),
(4, 54, 7, 0),
(4, 55, 0, 0),
(4, 55, 1, 0),
(4, 55, 2, 0),
(4, 55, 3, 0),
(4, 55, 4, 0),
(4, 55, 7, 0),
(4, 56, 0, 0),
(4, 56, 1, 0),
(4, 56, 2, 0),
(4, 56, 3, 0),
(4, 56, 4, 0),
(4, 56, 7, 0),
(4, 57, 0, 0),
(4, 57, 1, 0),
(4, 57, 2, 0),
(4, 57, 3, 0),
(4, 57, 4, 0),
(4, 57, 7, 0),
(4, 58, 0, 0),
(4, 58, 1, 0),
(4, 58, 2, 0),
(4, 58, 3, 0),
(4, 58, 4, 0),
(4, 58, 7, 0),
(4, 59, 0, 0),
(4, 59, 1, 0),
(4, 59, 2, 0),
(4, 59, 3, 0),
(4, 59, 4, 0),
(4, 59, 7, 0),
(4, 60, 0, 0),
(4, 60, 1, 0),
(4, 60, 2, 0),
(4, 60, 3, 0),
(4, 60, 4, 0),
(4, 60, 7, 0),
(4, 61, 0, 0),
(4, 61, 1, 0),
(4, 61, 2, 0),
(4, 61, 3, 0),
(4, 61, 4, 0),
(4, 61, 7, 0),
(4, 62, 0, 0),
(4, 62, 1, 0),
(4, 62, 2, 0),
(4, 62, 3, 0),
(4, 62, 4, 0),
(4, 62, 7, 0),
(4, 63, 0, 0),
(4, 63, 1, 0),
(4, 63, 2, 0),
(4, 63, 3, 0),
(4, 63, 4, 0),
(4, 63, 7, 0),
(4, 65, 0, 0),
(4, 65, 1, 0),
(4, 65, 2, 0),
(4, 65, 3, 0),
(4, 65, 4, 0),
(4, 65, 7, 0),
(5, 2, 0, 0),
(5, 2, 1, 0),
(5, 2, 2, 0),
(5, 2, 3, 0),
(5, 2, 4, 0),
(5, 2, 7, 0),
(5, 4, 0, 0),
(5, 4, 1, 0),
(5, 4, 2, 0),
(5, 4, 3, 0),
(5, 4, 4, 0),
(5, 4, 7, 0),
(5, 6, 0, 0),
(5, 6, 1, 0),
(5, 6, 2, 0),
(5, 6, 3, 0),
(5, 6, 4, 0),
(5, 6, 7, 0),
(5, 7, 0, 0),
(5, 7, 1, 0),
(5, 7, 2, 0),
(5, 7, 3, 0),
(5, 7, 4, 0),
(5, 7, 7, 0),
(5, 8, 0, 0),
(5, 8, 1, 0),
(5, 8, 2, 0),
(5, 8, 3, 0),
(5, 8, 4, 0),
(5, 8, 7, 0),
(5, 9, 0, 0),
(5, 9, 1, 0),
(5, 9, 2, 0),
(5, 9, 3, 0),
(5, 9, 4, 0),
(5, 9, 7, 0),
(5, 10, 0, 0),
(5, 10, 1, 0),
(5, 10, 2, 0),
(5, 10, 3, 0),
(5, 10, 4, 0),
(5, 13, 0, 0),
(5, 13, 1, 0),
(5, 13, 2, 0),
(5, 13, 3, 0),
(5, 13, 4, 0),
(5, 13, 7, 0),
(5, 14, 0, 0),
(5, 14, 1, 0),
(5, 14, 2, 0),
(5, 14, 3, 0),
(5, 14, 4, 0),
(5, 14, 7, 0),
(5, 15, 0, 0),
(5, 15, 1, 0),
(5, 15, 2, 0),
(5, 15, 3, 0),
(5, 15, 4, 0),
(5, 15, 7, 0),
(5, 16, 0, 0),
(5, 16, 1, 0),
(5, 16, 2, 0),
(5, 16, 3, 0),
(5, 16, 4, 0),
(5, 16, 7, 0),
(5, 18, 0, 0),
(5, 18, 1, 0),
(5, 18, 2, 0),
(5, 18, 3, 0),
(5, 18, 4, 0),
(5, 18, 7, 0),
(5, 19, 0, 0),
(5, 19, 1, 0),
(5, 19, 2, 0),
(5, 19, 3, 0),
(5, 19, 4, 0),
(5, 19, 7, 0),
(5, 20, 0, 0),
(5, 20, 1, 0),
(5, 20, 2, 0),
(5, 20, 3, 0),
(5, 20, 4, 0),
(5, 20, 7, 0),
(5, 21, 0, 0),
(5, 21, 1, 0),
(5, 21, 2, 0),
(5, 21, 3, 0),
(5, 21, 4, 0),
(5, 21, 7, 0),
(5, 22, 0, 0),
(5, 22, 1, 0),
(5, 22, 2, 0),
(5, 22, 3, 0),
(5, 22, 4, 0),
(5, 22, 7, 0),
(5, 23, 0, 0),
(5, 23, 1, 0),
(5, 23, 2, 0),
(5, 23, 3, 0),
(5, 23, 4, 0),
(5, 23, 7, 0),
(5, 25, 0, 1),
(5, 25, 1, 1),
(5, 25, 2, 1),
(5, 25, 3, 0),
(5, 25, 4, 0),
(5, 25, 7, 1),
(5, 26, 0, 0),
(5, 26, 1, 0),
(5, 26, 2, 0),
(5, 26, 3, 0),
(5, 26, 4, 0),
(5, 26, 7, 0),
(5, 34, 0, 0),
(5, 34, 1, 0),
(5, 34, 2, 0),
(5, 34, 3, 0),
(5, 34, 4, 0),
(5, 34, 7, 0),
(5, 35, 0, 0),
(5, 35, 1, 0),
(5, 35, 2, 0),
(5, 35, 3, 0),
(5, 35, 4, 0),
(5, 35, 7, 0),
(5, 36, 0, 0),
(5, 36, 1, 0),
(5, 36, 2, 0),
(5, 36, 3, 0),
(5, 36, 4, 0),
(5, 36, 7, 0),
(5, 38, 0, 0),
(5, 38, 1, 0),
(5, 38, 2, 0),
(5, 38, 3, 0),
(5, 38, 4, 0),
(5, 38, 7, 0),
(5, 42, 0, 0),
(5, 42, 1, 0),
(5, 42, 2, 0),
(5, 42, 3, 0),
(5, 42, 4, 0),
(5, 42, 7, 0),
(5, 43, 0, 0),
(5, 43, 1, 0),
(5, 43, 2, 0),
(5, 43, 3, 0),
(5, 43, 4, 0),
(5, 43, 7, 0),
(5, 44, 0, 0),
(5, 44, 1, 0),
(5, 44, 2, 0),
(5, 44, 3, 0),
(5, 44, 4, 0),
(5, 44, 7, 0),
(5, 45, 0, 0),
(5, 45, 1, 0),
(5, 45, 2, 0),
(5, 45, 3, 0),
(5, 45, 4, 0),
(5, 45, 7, 0),
(5, 47, 0, 0),
(5, 47, 1, 0),
(5, 47, 2, 0),
(5, 47, 3, 0),
(5, 47, 4, 0),
(5, 47, 7, 0),
(5, 52, 0, 0),
(5, 52, 1, 0),
(5, 52, 2, 0),
(5, 52, 3, 0),
(5, 52, 4, 0),
(5, 52, 7, 0),
(5, 53, 0, 0),
(5, 53, 1, 0),
(5, 53, 2, 0),
(5, 53, 3, 0),
(5, 53, 4, 0),
(5, 53, 7, 0),
(5, 54, 0, 0),
(5, 54, 1, 0),
(5, 54, 2, 0),
(5, 54, 3, 0),
(5, 54, 4, 0),
(5, 54, 7, 0),
(5, 55, 0, 0),
(5, 55, 1, 0),
(5, 55, 2, 0),
(5, 55, 3, 0),
(5, 55, 4, 0),
(5, 55, 7, 0),
(5, 56, 0, 0),
(5, 56, 1, 0),
(5, 56, 2, 0),
(5, 56, 3, 0),
(5, 56, 4, 0),
(5, 56, 7, 0),
(5, 57, 0, 0),
(5, 57, 1, 0),
(5, 57, 2, 0),
(5, 57, 3, 0),
(5, 57, 4, 0),
(5, 57, 7, 0),
(5, 58, 0, 0),
(5, 58, 1, 0),
(5, 58, 2, 0),
(5, 58, 3, 0),
(5, 58, 4, 0),
(5, 58, 7, 0),
(5, 59, 0, 0),
(5, 59, 1, 0),
(5, 59, 2, 0),
(5, 59, 3, 0),
(5, 59, 4, 0),
(5, 59, 7, 0),
(5, 60, 0, 0),
(5, 60, 1, 0),
(5, 60, 2, 0),
(5, 60, 3, 0),
(5, 60, 4, 0),
(5, 60, 7, 0),
(5, 61, 0, 0),
(5, 61, 1, 0),
(5, 61, 2, 0),
(5, 61, 3, 0),
(5, 61, 4, 0),
(5, 61, 7, 0),
(5, 62, 0, 0),
(5, 62, 1, 0),
(5, 62, 2, 0),
(5, 62, 3, 0),
(5, 62, 4, 0),
(5, 62, 7, 0),
(5, 63, 0, 0),
(5, 63, 1, 0),
(5, 63, 2, 0),
(5, 63, 3, 0),
(5, 63, 4, 0),
(5, 63, 7, 0),
(5, 65, 0, 0),
(5, 65, 1, 0),
(5, 65, 2, 0),
(5, 65, 3, 0),
(5, 65, 4, 0),
(5, 65, 7, 0),
(6, 2, 0, 0),
(6, 2, 1, 0),
(6, 2, 2, 0),
(6, 2, 3, 0),
(6, 2, 4, 0),
(6, 2, 7, 0),
(6, 4, 0, 0),
(6, 4, 1, 0),
(6, 4, 2, 0),
(6, 4, 3, 0),
(6, 4, 4, 0),
(6, 4, 7, 0),
(6, 6, 0, 0),
(6, 6, 1, 0),
(6, 6, 2, 0),
(6, 6, 3, 0),
(6, 6, 4, 0),
(6, 6, 7, 0),
(6, 7, 0, 0),
(6, 7, 1, 0),
(6, 7, 2, 0),
(6, 7, 3, 0),
(6, 7, 4, 0),
(6, 7, 7, 0),
(6, 8, 0, 0),
(6, 8, 1, 0),
(6, 8, 2, 0),
(6, 8, 3, 0),
(6, 8, 4, 0),
(6, 8, 7, 0),
(6, 9, 0, 0),
(6, 9, 1, 0),
(6, 9, 2, 0),
(6, 9, 3, 0),
(6, 9, 4, 0),
(6, 9, 7, 0),
(6, 10, 0, 0),
(6, 10, 1, 0),
(6, 10, 2, 0),
(6, 10, 3, 0),
(6, 10, 4, 0),
(6, 13, 0, 1),
(6, 13, 1, 1),
(6, 13, 2, 1),
(6, 13, 3, 0),
(6, 13, 4, 0),
(6, 13, 7, 1),
(6, 14, 0, 0),
(6, 14, 1, 0),
(6, 14, 2, 0),
(6, 14, 3, 0),
(6, 14, 4, 0),
(6, 14, 7, 0),
(6, 15, 0, 0),
(6, 15, 1, 0),
(6, 15, 2, 0),
(6, 15, 3, 0),
(6, 15, 4, 0),
(6, 15, 7, 0),
(6, 16, 0, 0),
(6, 16, 1, 0),
(6, 16, 2, 0),
(6, 16, 3, 0),
(6, 16, 4, 0),
(6, 16, 7, 0),
(6, 18, 0, 0),
(6, 18, 1, 0),
(6, 18, 2, 0),
(6, 18, 3, 0),
(6, 18, 4, 0),
(6, 18, 7, 0),
(6, 19, 0, 0),
(6, 19, 1, 0),
(6, 19, 2, 0),
(6, 19, 3, 0),
(6, 19, 4, 0),
(6, 19, 7, 0),
(6, 20, 0, 0),
(6, 20, 1, 0),
(6, 20, 2, 0),
(6, 20, 3, 0),
(6, 20, 4, 0),
(6, 20, 7, 0),
(6, 21, 0, 0),
(6, 21, 1, 0),
(6, 21, 2, 0),
(6, 21, 3, 0),
(6, 21, 4, 0),
(6, 21, 7, 0),
(6, 22, 0, 0),
(6, 22, 1, 0),
(6, 22, 2, 0),
(6, 22, 3, 0),
(6, 22, 4, 0),
(6, 22, 7, 0),
(6, 23, 0, 0),
(6, 23, 1, 0),
(6, 23, 2, 0),
(6, 23, 3, 0),
(6, 23, 4, 0),
(6, 23, 7, 0),
(6, 25, 0, 1),
(6, 25, 1, 1),
(6, 25, 2, 1),
(6, 25, 3, 0),
(6, 25, 4, 0),
(6, 25, 7, 1),
(6, 26, 0, 0),
(6, 26, 1, 0),
(6, 26, 2, 0),
(6, 26, 3, 0),
(6, 26, 4, 0),
(6, 26, 7, 0),
(6, 34, 0, 0),
(6, 34, 1, 0),
(6, 34, 2, 0),
(6, 34, 3, 0),
(6, 34, 4, 0),
(6, 34, 7, 0),
(6, 35, 0, 0),
(6, 35, 1, 0),
(6, 35, 2, 0),
(6, 35, 3, 0),
(6, 35, 4, 0),
(6, 35, 7, 0),
(6, 36, 0, 0),
(6, 36, 1, 0),
(6, 36, 2, 0),
(6, 36, 3, 0),
(6, 36, 4, 0),
(6, 36, 7, 0),
(6, 38, 0, 0),
(6, 38, 1, 0),
(6, 38, 2, 0),
(6, 38, 3, 0),
(6, 38, 4, 0),
(6, 38, 7, 0),
(6, 42, 0, 0),
(6, 42, 1, 0),
(6, 42, 2, 0),
(6, 42, 3, 0),
(6, 42, 4, 0),
(6, 42, 7, 0),
(6, 43, 0, 0),
(6, 43, 1, 0),
(6, 43, 2, 0),
(6, 43, 3, 0),
(6, 43, 4, 0),
(6, 43, 7, 0),
(6, 44, 0, 0),
(6, 44, 1, 0),
(6, 44, 2, 0),
(6, 44, 3, 0),
(6, 44, 4, 0),
(6, 44, 7, 0),
(6, 45, 0, 0),
(6, 45, 1, 0),
(6, 45, 2, 0),
(6, 45, 3, 0),
(6, 45, 4, 0),
(6, 45, 7, 0),
(6, 47, 0, 0),
(6, 47, 1, 0),
(6, 47, 2, 0),
(6, 47, 3, 0),
(6, 47, 4, 0),
(6, 47, 7, 0),
(6, 52, 0, 0),
(6, 52, 1, 0),
(6, 52, 2, 0),
(6, 52, 3, 0),
(6, 52, 4, 0),
(6, 52, 7, 0),
(6, 53, 0, 0),
(6, 53, 1, 0),
(6, 53, 2, 0),
(6, 53, 3, 0),
(6, 53, 4, 0),
(6, 53, 7, 0),
(6, 54, 0, 0),
(6, 54, 1, 0),
(6, 54, 2, 0),
(6, 54, 3, 0),
(6, 54, 4, 0),
(6, 54, 7, 0),
(6, 55, 0, 0),
(6, 55, 1, 0),
(6, 55, 2, 0),
(6, 55, 3, 0),
(6, 55, 4, 0),
(6, 55, 7, 0),
(6, 56, 0, 0),
(6, 56, 1, 0),
(6, 56, 2, 0),
(6, 56, 3, 0),
(6, 56, 4, 0),
(6, 56, 7, 0),
(6, 57, 0, 0),
(6, 57, 1, 0),
(6, 57, 2, 0),
(6, 57, 3, 0),
(6, 57, 4, 0),
(6, 57, 7, 0),
(6, 58, 0, 0),
(6, 58, 1, 0),
(6, 58, 2, 0),
(6, 58, 3, 0),
(6, 58, 4, 0),
(6, 58, 7, 0),
(6, 59, 0, 0),
(6, 59, 1, 0),
(6, 59, 2, 0),
(6, 59, 3, 0),
(6, 59, 4, 0),
(6, 59, 7, 0),
(6, 60, 0, 0),
(6, 60, 1, 0),
(6, 60, 2, 0),
(6, 60, 3, 0),
(6, 60, 4, 0),
(6, 60, 7, 0),
(6, 61, 0, 0),
(6, 61, 1, 0),
(6, 61, 2, 0),
(6, 61, 3, 0),
(6, 61, 4, 0),
(6, 61, 7, 0),
(6, 62, 0, 0),
(6, 62, 1, 0),
(6, 62, 2, 0),
(6, 62, 3, 0),
(6, 62, 4, 0),
(6, 62, 7, 0),
(6, 63, 0, 0),
(6, 63, 1, 0),
(6, 63, 2, 0),
(6, 63, 3, 0),
(6, 63, 4, 0),
(6, 63, 7, 0),
(6, 65, 0, 0),
(6, 65, 1, 0),
(6, 65, 2, 0),
(6, 65, 3, 0),
(6, 65, 4, 0),
(6, 65, 7, 0),
(7, 2, 0, 0),
(7, 2, 1, 0),
(7, 2, 2, 0),
(7, 2, 3, 0),
(7, 2, 4, 0),
(7, 2, 7, 0),
(7, 4, 0, 0),
(7, 4, 1, 0),
(7, 4, 2, 0),
(7, 4, 3, 0),
(7, 4, 4, 0),
(7, 4, 7, 0),
(7, 6, 0, 0),
(7, 6, 1, 0),
(7, 6, 2, 0),
(7, 6, 3, 0),
(7, 6, 4, 0),
(7, 6, 7, 0),
(7, 7, 0, 0),
(7, 7, 1, 0),
(7, 7, 2, 0),
(7, 7, 3, 0),
(7, 7, 4, 0),
(7, 7, 7, 0),
(7, 8, 0, 0),
(7, 8, 1, 0),
(7, 8, 2, 0),
(7, 8, 3, 0),
(7, 8, 4, 0),
(7, 8, 7, 0),
(7, 9, 0, 0),
(7, 9, 1, 0),
(7, 9, 2, 0),
(7, 9, 3, 0),
(7, 9, 4, 0),
(7, 9, 7, 0),
(7, 10, 0, 0),
(7, 10, 1, 0),
(7, 10, 2, 0),
(7, 10, 3, 0),
(7, 10, 4, 0),
(7, 13, 0, 1),
(7, 13, 1, 1),
(7, 13, 2, 1),
(7, 13, 3, 0),
(7, 13, 4, 0),
(7, 13, 7, 1),
(7, 14, 0, 0),
(7, 14, 1, 0),
(7, 14, 2, 0),
(7, 14, 3, 0),
(7, 14, 4, 0),
(7, 14, 7, 0),
(7, 15, 0, 0),
(7, 15, 1, 0),
(7, 15, 2, 0),
(7, 15, 3, 0),
(7, 15, 4, 0),
(7, 15, 7, 0),
(7, 16, 0, 0),
(7, 16, 1, 0),
(7, 16, 2, 0),
(7, 16, 3, 0),
(7, 16, 4, 0),
(7, 16, 7, 0),
(7, 18, 0, 0),
(7, 18, 1, 0),
(7, 18, 2, 0),
(7, 18, 3, 0),
(7, 18, 4, 0),
(7, 18, 7, 0),
(7, 19, 0, 0),
(7, 19, 1, 0),
(7, 19, 2, 0),
(7, 19, 3, 0),
(7, 19, 4, 0),
(7, 19, 7, 0),
(7, 20, 0, 0),
(7, 20, 1, 0),
(7, 20, 2, 0),
(7, 20, 3, 0),
(7, 20, 4, 0),
(7, 20, 7, 0),
(7, 21, 0, 0),
(7, 21, 1, 0),
(7, 21, 2, 0),
(7, 21, 3, 0),
(7, 21, 4, 0),
(7, 21, 7, 0),
(7, 22, 0, 0),
(7, 22, 1, 0),
(7, 22, 2, 0),
(7, 22, 3, 0),
(7, 22, 4, 0),
(7, 22, 7, 0),
(7, 23, 0, 0),
(7, 23, 1, 0),
(7, 23, 2, 0),
(7, 23, 3, 0),
(7, 23, 4, 0),
(7, 23, 7, 0),
(7, 25, 0, 1),
(7, 25, 1, 1),
(7, 25, 2, 1),
(7, 25, 3, 0),
(7, 25, 4, 0),
(7, 25, 7, 1),
(7, 26, 0, 0),
(7, 26, 1, 0),
(7, 26, 2, 0),
(7, 26, 3, 0),
(7, 26, 4, 0),
(7, 26, 7, 0),
(7, 34, 0, 0),
(7, 34, 1, 0),
(7, 34, 2, 0),
(7, 34, 3, 0),
(7, 34, 4, 0),
(7, 34, 7, 0),
(7, 35, 0, 0),
(7, 35, 1, 0),
(7, 35, 2, 0),
(7, 35, 3, 0),
(7, 35, 4, 0),
(7, 35, 7, 0),
(7, 36, 0, 0),
(7, 36, 1, 0),
(7, 36, 2, 0),
(7, 36, 3, 0),
(7, 36, 4, 0),
(7, 36, 7, 0),
(7, 38, 0, 0),
(7, 38, 1, 0),
(7, 38, 2, 0),
(7, 38, 3, 0),
(7, 38, 4, 0),
(7, 38, 7, 0),
(7, 42, 0, 0),
(7, 42, 1, 0),
(7, 42, 2, 0),
(7, 42, 3, 0),
(7, 42, 4, 0),
(7, 42, 7, 0),
(7, 43, 0, 0),
(7, 43, 1, 0),
(7, 43, 2, 0),
(7, 43, 3, 0),
(7, 43, 4, 0),
(7, 43, 7, 0),
(7, 44, 0, 0),
(7, 44, 1, 0),
(7, 44, 2, 0),
(7, 44, 3, 0),
(7, 44, 4, 0),
(7, 44, 7, 0),
(7, 45, 0, 0),
(7, 45, 1, 0),
(7, 45, 2, 0),
(7, 45, 3, 0),
(7, 45, 4, 0),
(7, 45, 7, 0),
(7, 47, 0, 0),
(7, 47, 1, 0),
(7, 47, 2, 0),
(7, 47, 3, 0),
(7, 47, 4, 0),
(7, 47, 7, 0),
(7, 52, 0, 0),
(7, 52, 1, 0),
(7, 52, 2, 0),
(7, 52, 3, 0),
(7, 52, 4, 0),
(7, 52, 7, 0),
(7, 53, 0, 0),
(7, 53, 1, 0),
(7, 53, 2, 0),
(7, 53, 3, 0),
(7, 53, 4, 0),
(7, 53, 7, 0),
(7, 54, 0, 0),
(7, 54, 1, 0),
(7, 54, 2, 0),
(7, 54, 3, 0),
(7, 54, 4, 0),
(7, 54, 7, 0),
(7, 55, 0, 0),
(7, 55, 1, 0),
(7, 55, 2, 0),
(7, 55, 3, 0),
(7, 55, 4, 0),
(7, 55, 7, 0),
(7, 56, 0, 0),
(7, 56, 1, 0),
(7, 56, 2, 0),
(7, 56, 3, 0),
(7, 56, 4, 0),
(7, 56, 7, 0),
(7, 57, 0, 0),
(7, 57, 1, 0),
(7, 57, 2, 0),
(7, 57, 3, 0),
(7, 57, 4, 0),
(7, 57, 7, 0),
(7, 58, 0, 0),
(7, 58, 1, 0),
(7, 58, 2, 0),
(7, 58, 3, 0),
(7, 58, 4, 0),
(7, 58, 7, 0),
(7, 59, 0, 0),
(7, 59, 1, 0),
(7, 59, 2, 0),
(7, 59, 3, 0),
(7, 59, 4, 0),
(7, 59, 7, 0),
(7, 60, 0, 0),
(7, 60, 1, 0),
(7, 60, 2, 0),
(7, 60, 3, 0),
(7, 60, 4, 0),
(7, 60, 7, 0),
(7, 61, 0, 0),
(7, 61, 1, 0),
(7, 61, 2, 0),
(7, 61, 3, 0),
(7, 61, 4, 0),
(7, 61, 7, 0),
(7, 62, 0, 0),
(7, 62, 1, 0),
(7, 62, 2, 0),
(7, 62, 3, 0),
(7, 62, 4, 0),
(7, 62, 7, 0),
(7, 63, 0, 0),
(7, 63, 1, 0),
(7, 63, 2, 0),
(7, 63, 3, 0),
(7, 63, 4, 0),
(7, 63, 7, 0),
(7, 65, 0, 0),
(7, 65, 1, 0),
(7, 65, 2, 0),
(7, 65, 3, 0),
(7, 65, 4, 0),
(7, 65, 7, 0),
(8, 2, 0, 0),
(8, 2, 1, 0),
(8, 2, 2, 0),
(8, 2, 3, 0),
(8, 2, 4, 0),
(8, 2, 7, 0),
(8, 4, 0, 0),
(8, 4, 1, 0),
(8, 4, 2, 0),
(8, 4, 3, 0),
(8, 4, 4, 0),
(8, 4, 7, 0),
(8, 6, 0, 0),
(8, 6, 1, 0),
(8, 6, 2, 0),
(8, 6, 3, 0),
(8, 6, 4, 0),
(8, 6, 7, 0),
(8, 7, 0, 0),
(8, 7, 1, 0),
(8, 7, 2, 0),
(8, 7, 3, 0),
(8, 7, 4, 0),
(8, 7, 7, 0),
(8, 8, 0, 0),
(8, 8, 1, 0),
(8, 8, 2, 0),
(8, 8, 3, 0),
(8, 8, 4, 0),
(8, 8, 7, 0),
(8, 9, 0, 0),
(8, 9, 1, 0),
(8, 9, 2, 0),
(8, 9, 3, 0),
(8, 9, 4, 0),
(8, 9, 7, 0),
(8, 10, 0, 0),
(8, 10, 1, 0),
(8, 10, 2, 0),
(8, 10, 3, 0),
(8, 10, 4, 0),
(8, 13, 0, 1),
(8, 13, 1, 1),
(8, 13, 2, 1),
(8, 13, 3, 0),
(8, 13, 4, 0),
(8, 13, 7, 1),
(8, 14, 0, 0),
(8, 14, 1, 0),
(8, 14, 2, 0),
(8, 14, 3, 0),
(8, 14, 4, 0),
(8, 14, 7, 0),
(8, 15, 0, 0),
(8, 15, 1, 0),
(8, 15, 2, 0),
(8, 15, 3, 0),
(8, 15, 4, 0),
(8, 15, 7, 0),
(8, 16, 0, 0),
(8, 16, 1, 0),
(8, 16, 2, 0),
(8, 16, 3, 0),
(8, 16, 4, 0),
(8, 16, 7, 0),
(8, 18, 0, 0),
(8, 18, 1, 0),
(8, 18, 2, 0),
(8, 18, 3, 0),
(8, 18, 4, 0),
(8, 18, 7, 0),
(8, 19, 0, 0),
(8, 19, 1, 0),
(8, 19, 2, 0),
(8, 19, 3, 0),
(8, 19, 4, 0),
(8, 19, 7, 0),
(8, 20, 0, 0),
(8, 20, 1, 0),
(8, 20, 2, 0),
(8, 20, 3, 0),
(8, 20, 4, 0),
(8, 20, 7, 0),
(8, 21, 0, 0),
(8, 21, 1, 0),
(8, 21, 2, 0),
(8, 21, 3, 0),
(8, 21, 4, 0),
(8, 21, 7, 0),
(8, 22, 0, 0),
(8, 22, 1, 0),
(8, 22, 2, 0),
(8, 22, 3, 0),
(8, 22, 4, 0),
(8, 22, 7, 0),
(8, 23, 0, 0),
(8, 23, 1, 0),
(8, 23, 2, 0),
(8, 23, 3, 0),
(8, 23, 4, 0),
(8, 23, 7, 0),
(8, 25, 0, 1),
(8, 25, 1, 1),
(8, 25, 2, 1),
(8, 25, 3, 0),
(8, 25, 4, 0),
(8, 25, 7, 1),
(8, 26, 0, 0),
(8, 26, 1, 0),
(8, 26, 2, 0),
(8, 26, 3, 0),
(8, 26, 4, 0),
(8, 26, 7, 0),
(8, 34, 0, 0),
(8, 34, 1, 0),
(8, 34, 2, 0),
(8, 34, 3, 0),
(8, 34, 4, 0),
(8, 34, 7, 0),
(8, 35, 0, 0),
(8, 35, 1, 0),
(8, 35, 2, 0),
(8, 35, 3, 0),
(8, 35, 4, 0),
(8, 35, 7, 0),
(8, 36, 0, 0),
(8, 36, 1, 0),
(8, 36, 2, 0),
(8, 36, 3, 0),
(8, 36, 4, 0),
(8, 36, 7, 0),
(8, 38, 0, 0),
(8, 38, 1, 0),
(8, 38, 2, 0),
(8, 38, 3, 0),
(8, 38, 4, 0),
(8, 38, 7, 0),
(8, 42, 0, 0),
(8, 42, 1, 0),
(8, 42, 2, 0),
(8, 42, 3, 0),
(8, 42, 4, 0),
(8, 42, 7, 0),
(8, 43, 0, 0),
(8, 43, 1, 0),
(8, 43, 2, 0),
(8, 43, 3, 0),
(8, 43, 4, 0),
(8, 43, 7, 0),
(8, 44, 0, 0),
(8, 44, 1, 0),
(8, 44, 2, 0),
(8, 44, 3, 0),
(8, 44, 4, 0),
(8, 44, 7, 0),
(8, 45, 0, 0),
(8, 45, 1, 0),
(8, 45, 2, 0),
(8, 45, 3, 0),
(8, 45, 4, 0),
(8, 45, 7, 0),
(8, 47, 0, 0),
(8, 47, 1, 0),
(8, 47, 2, 0),
(8, 47, 3, 0),
(8, 47, 4, 0),
(8, 47, 7, 0),
(8, 52, 0, 0),
(8, 52, 1, 0),
(8, 52, 2, 0),
(8, 52, 3, 0),
(8, 52, 4, 0),
(8, 52, 7, 0),
(8, 53, 0, 0),
(8, 53, 1, 0),
(8, 53, 2, 0),
(8, 53, 3, 0),
(8, 53, 4, 0),
(8, 53, 7, 0),
(8, 54, 0, 0),
(8, 54, 1, 0),
(8, 54, 2, 0),
(8, 54, 3, 0),
(8, 54, 4, 0),
(8, 54, 7, 0),
(8, 55, 0, 0),
(8, 55, 1, 0),
(8, 55, 2, 0),
(8, 55, 3, 0),
(8, 55, 4, 0),
(8, 55, 7, 0),
(8, 56, 0, 0),
(8, 56, 1, 0),
(8, 56, 2, 0),
(8, 56, 3, 0),
(8, 56, 4, 0),
(8, 56, 7, 0),
(8, 57, 0, 0),
(8, 57, 1, 0),
(8, 57, 2, 0),
(8, 57, 3, 0),
(8, 57, 4, 0),
(8, 57, 7, 0),
(8, 58, 0, 0),
(8, 58, 1, 0),
(8, 58, 2, 0),
(8, 58, 3, 0),
(8, 58, 4, 0),
(8, 58, 7, 0),
(8, 59, 0, 0),
(8, 59, 1, 0),
(8, 59, 2, 0),
(8, 59, 3, 0),
(8, 59, 4, 0),
(8, 59, 7, 0),
(8, 60, 0, 0),
(8, 60, 1, 0),
(8, 60, 2, 0),
(8, 60, 3, 0),
(8, 60, 4, 0),
(8, 60, 7, 0),
(8, 61, 0, 0),
(8, 61, 1, 0),
(8, 61, 2, 0),
(8, 61, 3, 0),
(8, 61, 4, 0),
(8, 61, 7, 0),
(8, 62, 0, 0),
(8, 62, 1, 0),
(8, 62, 2, 0),
(8, 62, 3, 0),
(8, 62, 4, 0),
(8, 62, 7, 0),
(8, 63, 0, 0),
(8, 63, 1, 0),
(8, 63, 2, 0),
(8, 63, 3, 0),
(8, 63, 4, 0),
(8, 63, 7, 0),
(8, 65, 0, 0),
(8, 65, 1, 0),
(8, 65, 2, 0),
(8, 65, 3, 0),
(8, 65, 4, 0),
(8, 65, 7, 0),
(32, 2, 0, 0),
(32, 2, 1, 1),
(32, 2, 2, 0),
(32, 2, 3, 0),
(32, 2, 4, 0),
(32, 2, 7, 0),
(32, 4, 0, 0),
(32, 4, 1, 1),
(32, 4, 2, 0),
(32, 4, 3, 0),
(32, 4, 4, 0),
(32, 4, 7, 0),
(32, 6, 0, 0),
(32, 6, 1, 1),
(32, 6, 2, 0),
(32, 6, 3, 0),
(32, 6, 4, 0),
(32, 6, 7, 0),
(32, 7, 0, 0),
(32, 7, 1, 1),
(32, 7, 2, 0),
(32, 7, 3, 0),
(32, 7, 4, 0),
(32, 7, 7, 0),
(32, 8, 0, 0),
(32, 8, 1, 1),
(32, 8, 2, 0),
(32, 8, 3, 0),
(32, 8, 4, 0),
(32, 8, 7, 0),
(32, 9, 0, 0),
(32, 9, 1, 1),
(32, 9, 2, 0),
(32, 9, 3, 0),
(32, 9, 4, 0),
(32, 9, 7, 0),
(32, 10, 0, 0),
(32, 10, 1, 1),
(32, 10, 2, 0),
(32, 10, 3, 0),
(32, 10, 4, 0),
(32, 10, 7, 0),
(32, 13, 0, 0),
(32, 13, 1, 1),
(32, 13, 2, 0),
(32, 13, 3, 0),
(32, 13, 4, 0),
(32, 13, 7, 0),
(32, 14, 0, 0),
(32, 14, 1, 1),
(32, 14, 2, 0),
(32, 14, 3, 0),
(32, 14, 4, 0),
(32, 14, 7, 0),
(32, 15, 0, 0),
(32, 15, 1, 1),
(32, 15, 2, 0),
(32, 15, 3, 0),
(32, 15, 4, 0),
(32, 15, 7, 0),
(32, 16, 0, 0),
(32, 16, 1, 1),
(32, 16, 2, 0),
(32, 16, 3, 0),
(32, 16, 4, 0),
(32, 16, 7, 0),
(32, 18, 0, 0),
(32, 18, 1, 1),
(32, 18, 2, 0),
(32, 18, 3, 0),
(32, 18, 4, 0),
(32, 18, 7, 0),
(32, 19, 0, 0),
(32, 19, 1, 1),
(32, 19, 2, 0),
(32, 19, 3, 0),
(32, 19, 4, 0),
(32, 19, 7, 0),
(32, 20, 0, 0),
(32, 20, 1, 1),
(32, 20, 2, 0),
(32, 20, 3, 0),
(32, 20, 4, 0),
(32, 20, 7, 0),
(32, 21, 0, 0),
(32, 21, 1, 1),
(32, 21, 2, 0),
(32, 21, 3, 0),
(32, 21, 4, 0),
(32, 21, 7, 0),
(32, 22, 0, 0),
(32, 22, 1, 1),
(32, 22, 2, 0),
(32, 22, 3, 0),
(32, 22, 4, 0),
(32, 22, 7, 0),
(32, 23, 0, 0),
(32, 23, 1, 1),
(32, 23, 2, 0),
(32, 23, 3, 0),
(32, 23, 4, 0),
(32, 23, 7, 0),
(32, 25, 0, 1),
(32, 25, 1, 0),
(32, 25, 2, 0),
(32, 25, 3, 0),
(32, 25, 4, 0),
(32, 25, 7, 0),
(32, 26, 0, 0),
(32, 26, 1, 1),
(32, 26, 2, 0),
(32, 26, 3, 0),
(32, 26, 4, 0),
(32, 26, 7, 0),
(32, 34, 0, 0),
(32, 34, 1, 1),
(32, 34, 2, 0),
(32, 34, 3, 0),
(32, 34, 4, 0),
(32, 34, 7, 0),
(32, 35, 0, 0),
(32, 35, 1, 1),
(32, 35, 2, 0),
(32, 35, 3, 0),
(32, 35, 4, 0),
(32, 35, 7, 0),
(32, 36, 0, 0),
(32, 36, 1, 1),
(32, 36, 2, 0),
(32, 36, 3, 0),
(32, 36, 4, 0),
(32, 36, 7, 0),
(32, 38, 0, 0),
(32, 38, 1, 1),
(32, 38, 2, 0),
(32, 38, 3, 0),
(32, 38, 4, 0),
(32, 38, 7, 0),
(32, 42, 0, 0),
(32, 42, 1, 1),
(32, 42, 2, 0),
(32, 42, 3, 0),
(32, 42, 4, 0),
(32, 42, 7, 0),
(32, 43, 0, 0),
(32, 43, 1, 1),
(32, 43, 2, 0),
(32, 43, 3, 0),
(32, 43, 4, 0),
(32, 43, 7, 0),
(32, 44, 0, 0),
(32, 44, 1, 1),
(32, 44, 2, 0),
(32, 44, 3, 0),
(32, 44, 4, 0),
(32, 44, 7, 0),
(32, 45, 0, 0),
(32, 45, 1, 1),
(32, 45, 2, 0),
(32, 45, 3, 0),
(32, 45, 4, 0),
(32, 45, 7, 0),
(32, 47, 0, 0),
(32, 47, 1, 1),
(32, 47, 2, 0),
(32, 47, 3, 0),
(32, 47, 4, 0),
(32, 47, 7, 0),
(32, 52, 0, 0),
(32, 52, 1, 1),
(32, 52, 2, 0),
(32, 52, 3, 0),
(32, 52, 4, 0),
(32, 52, 7, 0),
(32, 53, 0, 0),
(32, 53, 1, 1),
(32, 53, 2, 0),
(32, 53, 3, 0),
(32, 53, 4, 0),
(32, 53, 7, 0),
(32, 54, 0, 0),
(32, 54, 1, 1),
(32, 54, 2, 0),
(32, 54, 3, 0),
(32, 54, 4, 0),
(32, 54, 7, 0),
(32, 55, 0, 0),
(32, 55, 1, 1),
(32, 55, 2, 0),
(32, 55, 3, 0),
(32, 55, 4, 0),
(32, 55, 7, 0),
(32, 56, 0, 0),
(32, 56, 1, 1),
(32, 56, 2, 0),
(32, 56, 3, 0),
(32, 56, 4, 0),
(32, 56, 7, 0),
(32, 57, 0, 0),
(32, 57, 1, 1),
(32, 57, 2, 0),
(32, 57, 3, 0),
(32, 57, 4, 0),
(32, 57, 7, 0),
(32, 58, 0, 0),
(32, 58, 1, 1),
(32, 58, 2, 0),
(32, 58, 3, 0),
(32, 58, 4, 0),
(32, 58, 7, 0),
(32, 59, 0, 0),
(32, 59, 1, 1),
(32, 59, 2, 0),
(32, 59, 3, 0),
(32, 59, 4, 0),
(32, 59, 7, 0),
(32, 60, 0, 0),
(32, 60, 1, 1),
(32, 60, 2, 0),
(32, 60, 3, 0),
(32, 60, 4, 0),
(32, 60, 7, 0),
(32, 61, 0, 0),
(32, 61, 1, 1),
(32, 61, 2, 0),
(32, 61, 3, 0),
(32, 61, 4, 0),
(32, 61, 7, 0),
(32, 62, 0, 0),
(32, 62, 1, 1),
(32, 62, 2, 0),
(32, 62, 3, 0),
(32, 62, 4, 0),
(32, 62, 7, 0),
(32, 63, 0, 0),
(32, 63, 1, 1),
(32, 63, 2, 0),
(32, 63, 3, 0),
(32, 63, 4, 0),
(32, 63, 7, 0),
(32, 65, 0, 0),
(32, 65, 1, 0),
(32, 65, 2, 0),
(32, 65, 3, 0),
(32, 65, 4, 0),
(32, 65, 7, 0),
(33, 2, 0, 0),
(33, 2, 1, 1),
(33, 2, 2, 0),
(33, 2, 3, 0),
(33, 2, 4, 0),
(33, 2, 7, 0),
(33, 4, 0, 0),
(33, 4, 1, 1),
(33, 4, 2, 0),
(33, 4, 3, 0),
(33, 4, 4, 0),
(33, 4, 7, 0),
(33, 6, 0, 0),
(33, 6, 1, 1),
(33, 6, 2, 0),
(33, 6, 3, 0),
(33, 6, 4, 0),
(33, 6, 7, 0),
(33, 7, 0, 0),
(33, 7, 1, 1),
(33, 7, 2, 0),
(33, 7, 3, 0),
(33, 7, 4, 0),
(33, 7, 7, 0),
(33, 8, 0, 0),
(33, 8, 1, 1),
(33, 8, 2, 0),
(33, 8, 3, 0),
(33, 8, 4, 0),
(33, 8, 7, 0),
(33, 9, 0, 0),
(33, 9, 1, 1),
(33, 9, 2, 0),
(33, 9, 3, 0),
(33, 9, 4, 0),
(33, 9, 7, 0),
(33, 10, 0, 0),
(33, 10, 1, 1),
(33, 10, 2, 0),
(33, 10, 3, 0),
(33, 10, 4, 0),
(33, 10, 7, 0),
(33, 13, 0, 0),
(33, 13, 1, 1),
(33, 13, 2, 0),
(33, 13, 3, 0),
(33, 13, 4, 0),
(33, 13, 7, 0),
(33, 14, 0, 0),
(33, 14, 1, 1),
(33, 14, 2, 0),
(33, 14, 3, 0),
(33, 14, 4, 0),
(33, 14, 7, 0),
(33, 15, 0, 0),
(33, 15, 1, 1),
(33, 15, 2, 0),
(33, 15, 3, 0),
(33, 15, 4, 0),
(33, 15, 7, 0),
(33, 16, 0, 0),
(33, 16, 1, 1),
(33, 16, 2, 0),
(33, 16, 3, 0),
(33, 16, 4, 0),
(33, 16, 7, 0),
(33, 18, 0, 0),
(33, 18, 1, 1),
(33, 18, 2, 0),
(33, 18, 3, 0),
(33, 18, 4, 0),
(33, 18, 7, 0),
(33, 19, 0, 0),
(33, 19, 1, 1),
(33, 19, 2, 0),
(33, 19, 3, 0),
(33, 19, 4, 0),
(33, 19, 7, 0),
(33, 20, 0, 0),
(33, 20, 1, 1),
(33, 20, 2, 0),
(33, 20, 3, 0),
(33, 20, 4, 0),
(33, 20, 7, 0),
(33, 21, 0, 0),
(33, 21, 1, 1),
(33, 21, 2, 0),
(33, 21, 3, 0),
(33, 21, 4, 0),
(33, 21, 7, 0),
(33, 22, 0, 0),
(33, 22, 1, 1),
(33, 22, 2, 0),
(33, 22, 3, 0),
(33, 22, 4, 0),
(33, 22, 7, 0),
(33, 23, 0, 0),
(33, 23, 1, 1),
(33, 23, 2, 0),
(33, 23, 3, 0),
(33, 23, 4, 0),
(33, 23, 7, 0),
(33, 25, 0, 1),
(33, 25, 1, 0),
(33, 25, 2, 0),
(33, 25, 3, 0),
(33, 25, 4, 0),
(33, 25, 7, 0),
(33, 26, 0, 0),
(33, 26, 1, 1),
(33, 26, 2, 0),
(33, 26, 3, 0),
(33, 26, 4, 0),
(33, 26, 7, 0),
(33, 34, 0, 0),
(33, 34, 1, 1),
(33, 34, 2, 0),
(33, 34, 3, 0),
(33, 34, 4, 0),
(33, 34, 7, 0),
(33, 35, 0, 0),
(33, 35, 1, 1),
(33, 35, 2, 0),
(33, 35, 3, 0),
(33, 35, 4, 0),
(33, 35, 7, 0),
(33, 36, 0, 0),
(33, 36, 1, 1),
(33, 36, 2, 0),
(33, 36, 3, 0),
(33, 36, 4, 0),
(33, 36, 7, 0),
(33, 38, 0, 0),
(33, 38, 1, 1),
(33, 38, 2, 0),
(33, 38, 3, 0),
(33, 38, 4, 0),
(33, 38, 7, 0),
(33, 42, 0, 0),
(33, 42, 1, 1),
(33, 42, 2, 0),
(33, 42, 3, 0),
(33, 42, 4, 0),
(33, 42, 7, 0),
(33, 43, 0, 0),
(33, 43, 1, 1),
(33, 43, 2, 0),
(33, 43, 3, 0),
(33, 43, 4, 0),
(33, 43, 7, 0),
(33, 44, 0, 0),
(33, 44, 1, 1),
(33, 44, 2, 0),
(33, 44, 3, 0),
(33, 44, 4, 0),
(33, 44, 7, 0),
(33, 45, 0, 0),
(33, 45, 1, 1),
(33, 45, 2, 0),
(33, 45, 3, 0),
(33, 45, 4, 0),
(33, 45, 7, 0),
(33, 47, 0, 0),
(33, 47, 1, 1),
(33, 47, 2, 0),
(33, 47, 3, 0),
(33, 47, 4, 0),
(33, 47, 7, 0),
(33, 52, 0, 0),
(33, 52, 1, 1),
(33, 52, 2, 0),
(33, 52, 3, 0),
(33, 52, 4, 0),
(33, 52, 7, 0),
(33, 53, 0, 0),
(33, 53, 1, 1),
(33, 53, 2, 0),
(33, 53, 3, 0),
(33, 53, 4, 0),
(33, 53, 7, 0),
(33, 54, 0, 0),
(33, 54, 1, 1),
(33, 54, 2, 0),
(33, 54, 3, 0),
(33, 54, 4, 0),
(33, 54, 7, 0),
(33, 55, 0, 0),
(33, 55, 1, 1),
(33, 55, 2, 0),
(33, 55, 3, 0),
(33, 55, 4, 0),
(33, 55, 7, 0),
(33, 56, 0, 0),
(33, 56, 1, 1),
(33, 56, 2, 0),
(33, 56, 3, 0),
(33, 56, 4, 0),
(33, 56, 7, 0),
(33, 57, 0, 0),
(33, 57, 1, 1),
(33, 57, 2, 0),
(33, 57, 3, 0),
(33, 57, 4, 0),
(33, 57, 7, 0),
(33, 58, 0, 0),
(33, 58, 1, 1),
(33, 58, 2, 0),
(33, 58, 3, 0),
(33, 58, 4, 0),
(33, 58, 7, 0),
(33, 59, 0, 0),
(33, 59, 1, 1),
(33, 59, 2, 0),
(33, 59, 3, 0),
(33, 59, 4, 0),
(33, 59, 7, 0),
(33, 60, 0, 0),
(33, 60, 1, 1),
(33, 60, 2, 0),
(33, 60, 3, 0),
(33, 60, 4, 0),
(33, 60, 7, 0),
(33, 61, 0, 0),
(33, 61, 1, 1),
(33, 61, 2, 0),
(33, 61, 3, 0),
(33, 61, 4, 0),
(33, 61, 7, 0),
(33, 62, 0, 0),
(33, 62, 1, 1),
(33, 62, 2, 0),
(33, 62, 3, 0),
(33, 62, 4, 0),
(33, 62, 7, 0),
(33, 63, 0, 0),
(33, 63, 1, 1),
(33, 63, 2, 0),
(33, 63, 3, 0),
(33, 63, 4, 0),
(33, 63, 7, 0),
(33, 65, 0, 0),
(33, 65, 1, 0),
(33, 65, 2, 0),
(33, 65, 3, 0),
(33, 65, 4, 0),
(33, 65, 7, 0),
(34, 2, 0, 0),
(34, 2, 1, 0),
(34, 2, 2, 0),
(34, 2, 3, 1),
(34, 2, 4, 0),
(34, 2, 7, 0),
(34, 4, 0, 0),
(34, 4, 1, 0),
(34, 4, 2, 0),
(34, 4, 3, 1),
(34, 4, 4, 0),
(34, 4, 7, 0),
(34, 6, 0, 0),
(34, 6, 1, 1),
(34, 6, 2, 1),
(34, 6, 3, 1),
(34, 6, 4, 1),
(34, 6, 7, 1),
(34, 7, 0, 0),
(34, 7, 1, 1),
(34, 7, 2, 1),
(34, 7, 3, 1),
(34, 7, 4, 1),
(34, 7, 7, 1),
(34, 8, 0, 0),
(34, 8, 1, 0),
(34, 8, 2, 0),
(34, 8, 3, 1),
(34, 8, 4, 0),
(34, 8, 7, 0),
(34, 9, 0, 0),
(34, 9, 1, 0),
(34, 9, 2, 0),
(34, 9, 3, 1),
(34, 9, 4, 0),
(34, 9, 7, 0),
(34, 10, 0, 0),
(34, 10, 1, 0),
(34, 10, 2, 0),
(34, 10, 3, 1),
(34, 10, 4, 0),
(34, 10, 7, 0),
(34, 13, 0, 0),
(34, 13, 1, 0),
(34, 13, 2, 0),
(34, 13, 3, 1),
(34, 13, 4, 0),
(34, 13, 7, 0),
(34, 14, 0, 0),
(34, 14, 1, 0),
(34, 14, 2, 0),
(34, 14, 3, 1),
(34, 14, 4, 0),
(34, 14, 7, 0),
(34, 15, 0, 0),
(34, 15, 1, 0),
(34, 15, 2, 0),
(34, 15, 3, 1),
(34, 15, 4, 0),
(34, 15, 7, 0),
(34, 16, 0, 0),
(34, 16, 1, 0),
(34, 16, 2, 0),
(34, 16, 3, 1),
(34, 16, 4, 0),
(34, 16, 7, 0),
(34, 18, 0, 0),
(34, 18, 1, 0),
(34, 18, 2, 0),
(34, 18, 3, 1),
(34, 18, 4, 0),
(34, 18, 7, 0),
(34, 19, 0, 0),
(34, 19, 1, 0),
(34, 19, 2, 0),
(34, 19, 3, 1),
(34, 19, 4, 0),
(34, 19, 7, 0),
(34, 20, 0, 0),
(34, 20, 1, 0),
(34, 20, 2, 0),
(34, 20, 3, 1),
(34, 20, 4, 0),
(34, 20, 7, 0),
(34, 21, 0, 0),
(34, 21, 1, 0),
(34, 21, 2, 0),
(34, 21, 3, 1),
(34, 21, 4, 0),
(34, 21, 7, 0),
(34, 22, 0, 0),
(34, 22, 1, 0),
(34, 22, 2, 0),
(34, 22, 3, 1),
(34, 22, 4, 0),
(34, 22, 7, 0),
(34, 23, 0, 0),
(34, 23, 1, 0),
(34, 23, 2, 0),
(34, 23, 3, 1),
(34, 23, 4, 0),
(34, 23, 7, 0),
(34, 25, 0, 1),
(34, 25, 1, 0),
(34, 25, 2, 0),
(34, 25, 3, 0),
(34, 25, 4, 0),
(34, 25, 7, 0),
(34, 26, 0, 0),
(34, 26, 1, 0),
(34, 26, 2, 0),
(34, 26, 3, 1),
(34, 26, 4, 0),
(34, 26, 7, 0),
(34, 34, 0, 0),
(34, 34, 1, 0),
(34, 34, 2, 0),
(34, 34, 3, 1),
(34, 34, 4, 0),
(34, 34, 7, 0),
(34, 35, 0, 0),
(34, 35, 1, 0),
(34, 35, 2, 0),
(34, 35, 3, 1),
(34, 35, 4, 0),
(34, 35, 7, 0),
(34, 36, 0, 0),
(34, 36, 1, 0),
(34, 36, 2, 0),
(34, 36, 3, 1),
(34, 36, 4, 1),
(34, 36, 7, 0),
(34, 38, 0, 0),
(34, 38, 1, 1),
(34, 38, 2, 0),
(34, 38, 3, 0),
(34, 38, 4, 0),
(34, 38, 7, 0),
(34, 42, 0, 0),
(34, 42, 1, 1),
(34, 42, 2, 0),
(34, 42, 3, 0),
(34, 42, 4, 0),
(34, 42, 7, 0),
(34, 43, 0, 0),
(34, 43, 1, 1),
(34, 43, 2, 0),
(34, 43, 3, 0),
(34, 43, 4, 0),
(34, 43, 7, 0),
(34, 44, 0, 0),
(34, 44, 1, 1),
(34, 44, 2, 0),
(34, 44, 3, 0),
(34, 44, 4, 0),
(34, 44, 7, 0),
(34, 45, 0, 0),
(34, 45, 1, 1),
(34, 45, 2, 0),
(34, 45, 3, 0),
(34, 45, 4, 0),
(34, 45, 7, 0),
(34, 47, 0, 0),
(34, 47, 1, 1),
(34, 47, 2, 0),
(34, 47, 3, 0),
(34, 47, 4, 0),
(34, 47, 7, 0),
(34, 52, 0, 0),
(34, 52, 1, 1),
(34, 52, 2, 0),
(34, 52, 3, 0),
(34, 52, 4, 0),
(34, 52, 7, 0),
(34, 53, 0, 0),
(34, 53, 1, 1),
(34, 53, 2, 0),
(34, 53, 3, 0),
(34, 53, 4, 0),
(34, 53, 7, 0),
(34, 54, 0, 0),
(34, 54, 1, 1),
(34, 54, 2, 0),
(34, 54, 3, 0),
(34, 54, 4, 0),
(34, 54, 7, 0),
(34, 55, 0, 0),
(34, 55, 1, 1),
(34, 55, 2, 0),
(34, 55, 3, 0),
(34, 55, 4, 0),
(34, 55, 7, 0),
(34, 56, 0, 0),
(34, 56, 1, 1),
(34, 56, 2, 0),
(34, 56, 3, 0),
(34, 56, 4, 0),
(34, 56, 7, 0),
(34, 57, 0, 0),
(34, 57, 1, 1),
(34, 57, 2, 0),
(34, 57, 3, 0),
(34, 57, 4, 0),
(34, 57, 7, 0),
(34, 58, 0, 0),
(34, 58, 1, 1),
(34, 58, 2, 0),
(34, 58, 3, 0),
(34, 58, 4, 0),
(34, 58, 7, 0),
(34, 59, 0, 0),
(34, 59, 1, 1),
(34, 59, 2, 0),
(34, 59, 3, 0),
(34, 59, 4, 0),
(34, 59, 7, 0),
(34, 60, 0, 0),
(34, 60, 1, 1),
(34, 60, 2, 0),
(34, 60, 3, 0),
(34, 60, 4, 0),
(34, 60, 7, 0),
(34, 61, 0, 0),
(34, 61, 1, 1),
(34, 61, 2, 0),
(34, 61, 3, 0),
(34, 61, 4, 0),
(34, 61, 7, 0),
(34, 62, 0, 0),
(34, 62, 1, 1),
(34, 62, 2, 0),
(34, 62, 3, 0),
(34, 62, 4, 0),
(34, 62, 7, 0),
(34, 63, 0, 0),
(34, 63, 1, 1),
(34, 63, 2, 0),
(34, 63, 3, 0),
(34, 63, 4, 0),
(34, 63, 7, 0),
(34, 65, 0, 0),
(34, 65, 1, 0),
(34, 65, 2, 0),
(34, 65, 3, 0),
(34, 65, 4, 0),
(34, 65, 7, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile2tab`
--

DROP TABLE IF EXISTS `vtiger_profile2tab`;
CREATE TABLE `vtiger_profile2tab` (
  `profileid` int(11) DEFAULT NULL,
  `tabid` int(10) DEFAULT NULL,
  `permissions` int(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile2tab`
--

INSERT IGNORE INTO `vtiger_profile2tab` (`profileid`, `tabid`, `permissions`) VALUES
(1, 1, 0),
(1, 2, 0),
(1, 3, 0),
(1, 4, 0),
(1, 6, 0),
(1, 7, 0),
(1, 8, 0),
(1, 9, 0),
(1, 10, 0),
(1, 13, 0),
(1, 14, 0),
(1, 15, 0),
(1, 16, 0),
(1, 18, 0),
(1, 19, 0),
(1, 20, 0),
(1, 21, 0),
(1, 22, 0),
(1, 23, 0),
(1, 24, 0),
(1, 25, 0),
(1, 26, 0),
(1, 27, 0),
(2, 1, 0),
(2, 2, 0),
(2, 3, 0),
(2, 4, 0),
(2, 6, 0),
(2, 7, 0),
(2, 8, 0),
(2, 9, 0),
(2, 10, 0),
(2, 13, 0),
(2, 14, 0),
(2, 15, 0),
(2, 16, 0),
(2, 18, 0),
(2, 19, 0),
(2, 20, 0),
(2, 21, 0),
(2, 22, 0),
(2, 23, 0),
(2, 24, 0),
(2, 25, 0),
(2, 26, 0),
(2, 27, 0),
(3, 1, 0),
(3, 2, 0),
(3, 3, 0),
(3, 4, 0),
(3, 6, 0),
(3, 7, 0),
(3, 8, 0),
(3, 9, 0),
(3, 10, 0),
(3, 13, 0),
(3, 14, 0),
(3, 15, 0),
(3, 16, 0),
(3, 18, 0),
(3, 19, 0),
(3, 20, 0),
(3, 21, 0),
(3, 22, 0),
(3, 23, 0),
(3, 24, 0),
(3, 25, 0),
(3, 26, 0),
(3, 27, 0),
(4, 1, 0),
(4, 2, 0),
(4, 3, 0),
(4, 4, 0),
(4, 6, 0),
(4, 7, 0),
(4, 8, 0),
(4, 9, 0),
(4, 10, 0),
(4, 13, 0),
(4, 14, 0),
(4, 15, 0),
(4, 16, 0),
(4, 18, 0),
(4, 19, 0),
(4, 20, 0),
(4, 21, 0),
(4, 22, 0),
(4, 23, 0),
(4, 24, 0),
(4, 25, 0),
(4, 26, 0),
(4, 27, 0),
(1, 30, 0),
(2, 30, 0),
(3, 30, 0),
(4, 30, 0),
(1, 31, 0),
(2, 31, 0),
(3, 31, 0),
(4, 31, 0),
(1, 32, 0),
(2, 32, 0),
(3, 32, 0),
(4, 32, 0),
(1, 33, 0),
(2, 33, 0),
(3, 33, 0),
(4, 33, 0),
(1, 34, 0),
(2, 34, 0),
(3, 34, 0),
(4, 34, 0),
(1, 35, 0),
(2, 35, 0),
(3, 35, 0),
(4, 35, 0),
(1, 36, 0),
(2, 36, 0),
(3, 36, 0),
(4, 36, 0),
(1, 37, 0),
(2, 37, 0),
(3, 37, 0),
(4, 37, 0),
(1, 38, 0),
(2, 38, 0),
(3, 38, 0),
(4, 38, 0),
(1, 39, 0),
(2, 39, 0),
(3, 39, 0),
(4, 39, 0),
(1, 40, 0),
(2, 40, 0),
(3, 40, 0),
(4, 40, 0),
(1, 41, 0),
(2, 41, 0),
(3, 41, 0),
(4, 41, 0),
(1, 42, 0),
(2, 42, 0),
(3, 42, 0),
(4, 42, 0),
(1, 43, 0),
(2, 43, 0),
(3, 43, 0),
(4, 43, 0),
(1, 44, 0),
(2, 44, 0),
(3, 44, 0),
(4, 44, 0),
(1, 45, 0),
(2, 45, 0),
(3, 45, 0),
(4, 45, 0),
(1, 46, 0),
(2, 46, 0),
(3, 46, 0),
(4, 46, 0),
(1, 47, 0),
(2, 47, 0),
(3, 47, 0),
(4, 47, 0),
(1, 48, 0),
(2, 48, 0),
(3, 48, 0),
(4, 48, 0),
(1, 49, 0),
(2, 49, 0),
(3, 49, 0),
(4, 49, 0),
(1, 50, 0),
(2, 50, 0),
(3, 50, 0),
(4, 50, 0),
(1, 51, 0),
(2, 51, 0),
(3, 51, 0),
(4, 51, 0),
(1, 52, 0),
(2, 52, 0),
(3, 52, 0),
(4, 52, 0),
(1, 53, 0),
(2, 53, 0),
(3, 53, 0),
(4, 53, 0),
(1, 54, 0),
(2, 54, 0),
(3, 54, 0),
(4, 54, 0),
(1, 55, 0),
(2, 55, 0),
(3, 55, 0),
(4, 55, 0),
(1, 56, 0),
(2, 56, 0),
(3, 56, 0),
(4, 56, 0),
(1, 57, 0),
(2, 57, 0),
(3, 57, 0),
(4, 57, 0),
(1, 58, 0),
(2, 58, 0),
(3, 58, 0),
(4, 58, 0),
(1, 59, 0),
(2, 59, 0),
(3, 59, 0),
(4, 59, 0),
(1, 60, 0),
(2, 60, 0),
(3, 60, 0),
(4, 60, 0),
(1, 61, 0),
(2, 61, 0),
(3, 61, 0),
(4, 61, 0),
(1, 62, 0),
(2, 62, 0),
(3, 62, 0),
(4, 62, 0),
(1, 63, 0),
(2, 63, 0),
(3, 63, 0),
(4, 63, 0),
(1, 64, 0),
(2, 64, 0),
(3, 64, 0),
(4, 64, 0),
(5, 1, 0),
(5, 2, 0),
(5, 3, 0),
(5, 4, 0),
(5, 6, 0),
(5, 7, 0),
(5, 8, 0),
(5, 9, 0),
(5, 10, 0),
(5, 13, 0),
(5, 14, 0),
(5, 15, 0),
(5, 16, 0),
(5, 18, 0),
(5, 19, 0),
(5, 20, 0),
(5, 21, 0),
(5, 22, 0),
(5, 23, 0),
(5, 24, 0),
(5, 25, 0),
(5, 26, 0),
(5, 27, 0),
(5, 30, 0),
(5, 31, 0),
(5, 32, 0),
(5, 33, 0),
(5, 34, 0),
(5, 35, 0),
(5, 36, 0),
(5, 37, 0),
(5, 38, 0),
(5, 39, 0),
(5, 40, 0),
(5, 41, 0),
(5, 42, 0),
(5, 43, 0),
(5, 44, 0),
(5, 45, 0),
(5, 46, 0),
(5, 47, 0),
(5, 48, 0),
(5, 49, 0),
(5, 50, 0),
(5, 51, 0),
(5, 52, 0),
(5, 53, 0),
(5, 54, 0),
(5, 55, 0),
(5, 56, 0),
(5, 57, 0),
(5, 58, 0),
(5, 59, 0),
(5, 60, 0),
(5, 61, 0),
(5, 62, 0),
(5, 63, 0),
(5, 64, 0),
(6, 1, 0),
(6, 2, 0),
(6, 3, 0),
(6, 4, 0),
(6, 6, 0),
(6, 7, 0),
(6, 8, 0),
(6, 9, 0),
(6, 10, 0),
(6, 13, 0),
(6, 14, 0),
(6, 15, 0),
(6, 16, 0),
(6, 18, 0),
(6, 19, 0),
(6, 20, 0),
(6, 21, 0),
(6, 22, 0),
(6, 23, 0),
(6, 24, 0),
(6, 25, 0),
(6, 26, 0),
(6, 27, 0),
(6, 30, 0),
(6, 31, 0),
(6, 32, 0),
(6, 33, 0),
(6, 34, 0),
(6, 35, 0),
(6, 36, 0),
(6, 37, 0),
(6, 38, 0),
(6, 39, 0),
(6, 40, 0),
(6, 41, 0),
(6, 42, 0),
(6, 43, 0),
(6, 44, 0),
(6, 45, 0),
(6, 46, 0),
(6, 47, 0),
(6, 48, 0),
(6, 49, 0),
(6, 50, 0),
(6, 51, 0),
(6, 52, 0),
(6, 53, 0),
(6, 54, 0),
(6, 55, 0),
(6, 56, 0),
(6, 57, 0),
(6, 58, 0),
(6, 59, 0),
(6, 60, 0),
(6, 61, 0),
(6, 62, 0),
(6, 63, 0),
(6, 64, 0),
(7, 1, 0),
(7, 2, 0),
(7, 3, 0),
(7, 4, 0),
(7, 6, 0),
(7, 7, 0),
(7, 8, 0),
(7, 9, 0),
(7, 10, 0),
(7, 13, 0),
(7, 14, 0),
(7, 15, 0),
(7, 16, 0),
(7, 18, 0),
(7, 19, 0),
(7, 20, 0),
(7, 21, 0),
(7, 22, 0),
(7, 23, 0),
(7, 24, 0),
(7, 25, 0),
(7, 26, 0),
(7, 27, 0),
(7, 30, 0),
(7, 31, 0),
(7, 32, 0),
(7, 33, 0),
(7, 34, 0),
(7, 35, 0),
(7, 36, 0),
(7, 37, 0),
(7, 38, 0),
(7, 39, 0),
(7, 40, 0),
(7, 41, 0),
(7, 42, 0),
(7, 43, 0),
(7, 44, 0),
(7, 45, 0),
(7, 46, 0),
(7, 47, 0),
(7, 48, 0),
(7, 49, 0),
(7, 50, 0),
(7, 51, 0),
(7, 52, 0),
(7, 53, 0),
(7, 54, 0),
(7, 55, 0),
(7, 56, 0),
(7, 57, 0),
(7, 58, 0),
(7, 59, 0),
(7, 60, 0),
(7, 61, 0),
(7, 62, 0),
(7, 63, 0),
(7, 64, 0),
(8, 1, 0),
(8, 2, 0),
(8, 3, 0),
(8, 4, 0),
(8, 6, 0),
(8, 7, 0),
(8, 8, 0),
(8, 9, 0),
(8, 10, 0),
(8, 13, 0),
(8, 14, 0),
(8, 15, 0),
(8, 16, 0),
(8, 18, 0),
(8, 19, 0),
(8, 20, 0),
(8, 21, 0),
(8, 22, 0),
(8, 23, 0),
(8, 24, 0),
(8, 25, 0),
(8, 26, 0),
(8, 27, 0),
(8, 30, 0),
(8, 31, 0),
(8, 32, 0),
(8, 33, 0),
(8, 34, 0),
(8, 35, 0),
(8, 36, 0),
(8, 37, 0),
(8, 38, 0),
(8, 39, 0),
(8, 40, 0),
(8, 41, 0),
(8, 42, 0),
(8, 43, 0),
(8, 44, 0),
(8, 45, 0),
(8, 46, 0),
(8, 47, 0),
(8, 48, 0),
(8, 49, 0),
(8, 50, 0),
(8, 51, 0),
(8, 52, 0),
(8, 53, 0),
(8, 54, 0),
(8, 55, 0),
(8, 56, 0),
(8, 57, 0),
(8, 58, 0),
(8, 59, 0),
(8, 60, 0),
(8, 61, 0),
(8, 62, 0),
(8, 63, 0),
(8, 64, 0),
(32, 1, 0),
(32, 2, 0),
(32, 4, 0),
(32, 6, 0),
(32, 7, 0),
(32, 8, 0),
(32, 9, 0),
(32, 10, 0),
(32, 13, 0),
(32, 14, 0),
(32, 15, 0),
(32, 18, 0),
(32, 19, 0),
(32, 20, 0),
(32, 21, 0),
(32, 22, 0),
(32, 23, 0),
(32, 24, 0),
(32, 25, 0),
(32, 26, 0),
(32, 27, 0),
(32, 31, 0),
(32, 34, 0),
(32, 35, 0),
(32, 36, 0),
(32, 38, 0),
(32, 40, 0),
(32, 41, 0),
(32, 42, 0),
(32, 43, 0),
(32, 44, 0),
(32, 45, 0),
(32, 46, 0),
(32, 47, 0),
(32, 48, 0),
(32, 50, 0),
(32, 51, 0),
(32, 52, 0),
(32, 53, 0),
(32, 54, 0),
(32, 55, 0),
(32, 56, 0),
(32, 57, 0),
(32, 58, 0),
(32, 59, 0),
(32, 60, 0),
(32, 61, 0),
(32, 62, 0),
(32, 63, 0),
(32, 64, 0),
(32, 16, 0),
(33, 1, 0),
(33, 2, 0),
(33, 4, 0),
(33, 6, 0),
(33, 7, 0),
(33, 8, 0),
(33, 9, 0),
(33, 10, 0),
(33, 13, 0),
(33, 14, 0),
(33, 15, 0),
(33, 18, 0),
(33, 19, 0),
(33, 20, 0),
(33, 21, 0),
(33, 22, 0),
(33, 23, 0),
(33, 24, 0),
(33, 25, 0),
(33, 26, 0),
(33, 27, 0),
(33, 31, 0),
(33, 34, 0),
(33, 35, 0),
(33, 36, 0),
(33, 38, 0),
(33, 40, 0),
(33, 41, 0),
(33, 42, 0),
(33, 43, 0),
(33, 44, 0),
(33, 45, 0),
(33, 46, 0),
(33, 47, 0),
(33, 48, 0),
(33, 50, 0),
(33, 51, 0),
(33, 52, 0),
(33, 53, 0),
(33, 54, 0),
(33, 55, 0),
(33, 56, 0),
(33, 57, 0),
(33, 58, 0),
(33, 59, 0),
(33, 60, 0),
(33, 61, 0),
(33, 62, 0),
(33, 63, 0),
(33, 64, 0),
(33, 16, 0),
(34, 1, 0),
(34, 2, 0),
(34, 4, 0),
(34, 6, 1),
(34, 7, 1),
(34, 8, 0),
(34, 9, 0),
(34, 10, 0),
(34, 13, 0),
(34, 14, 0),
(34, 15, 0),
(34, 18, 0),
(34, 19, 0),
(34, 20, 0),
(34, 21, 0),
(34, 22, 0),
(34, 23, 0),
(34, 24, 0),
(34, 25, 0),
(34, 26, 0),
(34, 27, 0),
(34, 31, 0),
(34, 34, 0),
(34, 35, 0),
(34, 36, 0),
(34, 38, 1),
(34, 40, 1),
(34, 41, 1),
(34, 42, 1),
(34, 43, 1),
(34, 44, 1),
(34, 45, 1),
(34, 46, 1),
(34, 47, 1),
(34, 48, 1),
(34, 50, 1),
(34, 51, 1),
(34, 52, 1),
(34, 53, 1),
(34, 54, 1),
(34, 55, 1),
(34, 56, 1),
(34, 57, 1),
(34, 58, 1),
(34, 59, 1),
(34, 60, 1),
(34, 61, 1),
(34, 62, 1),
(34, 63, 1),
(34, 64, 1),
(34, 16, 0),
(1, 65, 0),
(2, 65, 0),
(3, 65, 0),
(4, 65, 0),
(5, 65, 0),
(6, 65, 0),
(7, 65, 0),
(8, 65, 0),
(32, 65, 0),
(33, 65, 0),
(34, 65, 0),
(1, 66, 0),
(2, 66, 0),
(3, 66, 0),
(4, 66, 0),
(5, 66, 0),
(6, 66, 0),
(7, 66, 0),
(8, 66, 0),
(32, 66, 0),
(33, 66, 0),
(34, 66, 0),
(1, 67, 0),
(2, 67, 0),
(3, 67, 0),
(4, 67, 0),
(5, 67, 0),
(6, 67, 0),
(7, 67, 0),
(8, 67, 0),
(32, 67, 0),
(33, 67, 0),
(34, 67, 0),
(1, 68, 0),
(2, 68, 0),
(3, 68, 0),
(4, 68, 0),
(5, 68, 0),
(6, 68, 0),
(7, 68, 0),
(8, 68, 0),
(32, 68, 0),
(33, 68, 0),
(34, 68, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile2utility`
--

DROP TABLE IF EXISTS `vtiger_profile2utility`;
CREATE TABLE `vtiger_profile2utility` (
  `profileid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `activityid` int(11) NOT NULL,
  `permission` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_profile2utility`
--

INSERT IGNORE INTO `vtiger_profile2utility` (`profileid`, `tabid`, `activityid`, `permission`) VALUES
(1, 2, 5, 0),
(1, 2, 6, 0),
(1, 2, 10, 0),
(1, 4, 5, 0),
(1, 4, 6, 0),
(1, 4, 8, 0),
(1, 4, 10, 0),
(1, 6, 5, 0),
(1, 6, 6, 0),
(1, 6, 8, 0),
(1, 6, 10, 0),
(1, 7, 5, 0),
(1, 7, 6, 0),
(1, 7, 8, 0),
(1, 7, 9, 0),
(1, 7, 10, 0),
(1, 8, 6, 0),
(1, 9, 5, 0),
(1, 9, 6, 0),
(1, 13, 5, 0),
(1, 13, 6, 0),
(1, 13, 8, 0),
(1, 13, 10, 0),
(1, 14, 5, 0),
(1, 14, 6, 0),
(1, 14, 10, 0),
(1, 18, 5, 0),
(1, 18, 6, 0),
(1, 18, 10, 0),
(1, 19, 5, 1),
(1, 19, 6, 1),
(1, 19, 10, 1),
(1, 20, 5, 0),
(1, 20, 6, 0),
(1, 21, 5, 0),
(1, 21, 6, 0),
(1, 22, 5, 0),
(1, 22, 6, 0),
(1, 23, 5, 0),
(1, 23, 6, 0),
(1, 25, 6, 0),
(1, 25, 13, 0),
(1, 34, 11, 0),
(1, 34, 12, 0),
(1, 35, 5, 0),
(1, 35, 6, 0),
(1, 35, 10, 0),
(1, 36, 5, 0),
(1, 36, 6, 0),
(1, 36, 10, 0),
(1, 43, 5, 1),
(1, 43, 6, 1),
(1, 43, 10, 1),
(1, 44, 5, 0),
(1, 44, 6, 0),
(1, 44, 10, 0),
(1, 45, 5, 0),
(1, 45, 6, 0),
(1, 45, 10, 0),
(1, 52, 5, 0),
(1, 52, 6, 0),
(1, 53, 5, 0),
(1, 53, 6, 0),
(1, 54, 5, 0),
(1, 54, 6, 0),
(1, 55, 5, 0),
(1, 55, 6, 0),
(1, 56, 5, 0),
(1, 56, 6, 0),
(1, 57, 5, 0),
(1, 57, 6, 0),
(1, 58, 5, 0),
(1, 58, 6, 0),
(1, 59, 5, 0),
(1, 59, 6, 0),
(1, 60, 5, 0),
(1, 60, 6, 0),
(1, 61, 5, 0),
(1, 61, 6, 0),
(1, 62, 5, 0),
(1, 62, 6, 0),
(1, 63, 5, 0),
(1, 63, 6, 0),
(1, 65, 6, 0),
(2, 2, 5, 1),
(2, 2, 6, 1),
(2, 2, 10, 0),
(2, 4, 5, 1),
(2, 4, 6, 1),
(2, 4, 8, 0),
(2, 4, 10, 0),
(2, 6, 5, 1),
(2, 6, 6, 1),
(2, 6, 8, 0),
(2, 6, 10, 0),
(2, 7, 5, 1),
(2, 7, 6, 1),
(2, 7, 8, 0),
(2, 7, 9, 0),
(2, 7, 10, 0),
(2, 8, 6, 1),
(2, 9, 5, 0),
(2, 9, 6, 0),
(2, 13, 5, 1),
(2, 13, 6, 1),
(2, 13, 8, 0),
(2, 13, 10, 0),
(2, 14, 5, 1),
(2, 14, 6, 1),
(2, 14, 10, 0),
(2, 18, 5, 1),
(2, 18, 6, 1),
(2, 18, 10, 0),
(2, 19, 5, 1),
(2, 19, 6, 1),
(2, 19, 10, 1),
(2, 20, 5, 0),
(2, 20, 6, 0),
(2, 21, 5, 0),
(2, 21, 6, 0),
(2, 22, 5, 0),
(2, 22, 6, 0),
(2, 23, 5, 0),
(2, 23, 6, 0),
(2, 25, 6, 0),
(2, 25, 13, 0),
(2, 34, 11, 0),
(2, 34, 12, 0),
(2, 35, 5, 0),
(2, 35, 6, 0),
(2, 35, 10, 0),
(2, 36, 5, 0),
(2, 36, 6, 0),
(2, 36, 10, 0),
(2, 43, 5, 1),
(2, 43, 6, 1),
(2, 43, 10, 1),
(2, 44, 5, 0),
(2, 44, 6, 0),
(2, 44, 10, 0),
(2, 45, 5, 0),
(2, 45, 6, 0),
(2, 45, 10, 0),
(2, 52, 5, 0),
(2, 52, 6, 0),
(2, 53, 5, 0),
(2, 53, 6, 0),
(2, 54, 5, 0),
(2, 54, 6, 0),
(2, 55, 5, 0),
(2, 55, 6, 0),
(2, 56, 5, 0),
(2, 56, 6, 0),
(2, 57, 5, 0),
(2, 57, 6, 0),
(2, 58, 5, 0),
(2, 58, 6, 0),
(2, 59, 5, 0),
(2, 59, 6, 0),
(2, 60, 5, 0),
(2, 60, 6, 0),
(2, 61, 5, 0),
(2, 61, 6, 0),
(2, 62, 5, 0),
(2, 62, 6, 0),
(2, 63, 5, 0),
(2, 63, 6, 0),
(2, 65, 6, 0),
(3, 2, 5, 1),
(3, 2, 6, 1),
(3, 2, 10, 0),
(3, 4, 5, 1),
(3, 4, 6, 1),
(3, 4, 8, 0),
(3, 4, 10, 0),
(3, 6, 5, 1),
(3, 6, 6, 1),
(3, 6, 8, 0),
(3, 6, 10, 0),
(3, 7, 5, 1),
(3, 7, 6, 1),
(3, 7, 8, 0),
(3, 7, 9, 0),
(3, 7, 10, 0),
(3, 8, 6, 1),
(3, 9, 5, 0),
(3, 9, 6, 0),
(3, 13, 5, 1),
(3, 13, 6, 1),
(3, 13, 8, 0),
(3, 13, 10, 0),
(3, 14, 5, 1),
(3, 14, 6, 1),
(3, 14, 10, 0),
(3, 18, 5, 1),
(3, 18, 6, 1),
(3, 18, 10, 0),
(3, 19, 5, 1),
(3, 19, 6, 1),
(3, 19, 10, 1),
(3, 20, 5, 0),
(3, 20, 6, 0),
(3, 21, 5, 0),
(3, 21, 6, 0),
(3, 22, 5, 0),
(3, 22, 6, 0),
(3, 23, 5, 0),
(3, 23, 6, 0),
(3, 25, 6, 0),
(3, 25, 13, 0),
(3, 34, 11, 0),
(3, 34, 12, 0),
(3, 35, 5, 0),
(3, 35, 6, 0),
(3, 35, 10, 0),
(3, 36, 5, 0),
(3, 36, 6, 0),
(3, 36, 10, 0),
(3, 43, 5, 1),
(3, 43, 6, 1),
(3, 43, 10, 1),
(3, 44, 5, 0),
(3, 44, 6, 0),
(3, 44, 10, 0),
(3, 45, 5, 0),
(3, 45, 6, 0),
(3, 45, 10, 0),
(3, 52, 5, 0),
(3, 52, 6, 0),
(3, 53, 5, 0),
(3, 53, 6, 0),
(3, 54, 5, 0),
(3, 54, 6, 0),
(3, 55, 5, 0),
(3, 55, 6, 0),
(3, 56, 5, 0),
(3, 56, 6, 0),
(3, 57, 5, 0),
(3, 57, 6, 0),
(3, 58, 5, 0),
(3, 58, 6, 0),
(3, 59, 5, 0),
(3, 59, 6, 0),
(3, 60, 5, 0),
(3, 60, 6, 0),
(3, 61, 5, 0),
(3, 61, 6, 0),
(3, 62, 5, 0),
(3, 62, 6, 0),
(3, 63, 5, 0),
(3, 63, 6, 0),
(3, 65, 6, 0),
(4, 2, 5, 1),
(4, 2, 6, 1),
(4, 2, 10, 0),
(4, 4, 5, 1),
(4, 4, 6, 1),
(4, 4, 8, 1),
(4, 4, 10, 0),
(4, 6, 5, 1),
(4, 6, 6, 1),
(4, 6, 8, 1),
(4, 6, 10, 0),
(4, 7, 5, 1),
(4, 7, 6, 1),
(4, 7, 8, 1),
(4, 7, 9, 0),
(4, 7, 10, 0),
(4, 8, 6, 1),
(4, 9, 5, 0),
(4, 9, 6, 0),
(4, 13, 5, 1),
(4, 13, 6, 1),
(4, 13, 8, 1),
(4, 13, 10, 0),
(4, 14, 5, 1),
(4, 14, 6, 1),
(4, 14, 10, 0),
(4, 18, 5, 1),
(4, 18, 6, 1),
(4, 18, 10, 0),
(4, 19, 5, 1),
(4, 19, 6, 1),
(4, 19, 10, 1),
(4, 20, 5, 0),
(4, 20, 6, 0),
(4, 21, 5, 0),
(4, 21, 6, 0),
(4, 22, 5, 0),
(4, 22, 6, 0),
(4, 23, 5, 0),
(4, 23, 6, 0),
(4, 25, 6, 0),
(4, 25, 13, 0),
(4, 34, 11, 0),
(4, 34, 12, 0),
(4, 35, 5, 0),
(4, 35, 6, 0),
(4, 35, 10, 0),
(4, 36, 5, 0),
(4, 36, 6, 0),
(4, 36, 10, 0),
(4, 43, 5, 1),
(4, 43, 6, 1),
(4, 43, 10, 1),
(4, 44, 5, 0),
(4, 44, 6, 0),
(4, 44, 10, 0),
(4, 45, 5, 0),
(4, 45, 6, 0),
(4, 45, 10, 0),
(4, 52, 5, 0),
(4, 52, 6, 0),
(4, 53, 5, 0),
(4, 53, 6, 0),
(4, 54, 5, 0),
(4, 54, 6, 0),
(4, 55, 5, 0),
(4, 55, 6, 0),
(4, 56, 5, 0),
(4, 56, 6, 0),
(4, 57, 5, 0),
(4, 57, 6, 0),
(4, 58, 5, 0),
(4, 58, 6, 0),
(4, 59, 5, 0),
(4, 59, 6, 0),
(4, 60, 5, 0),
(4, 60, 6, 0),
(4, 61, 5, 0),
(4, 61, 6, 0),
(4, 62, 5, 0),
(4, 62, 6, 0),
(4, 63, 5, 0),
(4, 63, 6, 0),
(4, 65, 6, 0),
(5, 2, 5, 0),
(5, 2, 6, 0),
(5, 2, 10, 0),
(5, 4, 5, 0),
(5, 4, 6, 0),
(5, 4, 8, 0),
(5, 4, 10, 0),
(5, 6, 5, 0),
(5, 6, 6, 0),
(5, 6, 8, 0),
(5, 6, 10, 0),
(5, 7, 5, 0),
(5, 7, 6, 0),
(5, 7, 8, 0),
(5, 7, 9, 0),
(5, 7, 10, 0),
(5, 8, 6, 0),
(5, 9, 5, 0),
(5, 9, 6, 0),
(5, 13, 5, 0),
(5, 13, 6, 0),
(5, 13, 8, 0),
(5, 13, 10, 0),
(5, 14, 5, 0),
(5, 14, 6, 0),
(5, 14, 10, 0),
(5, 18, 5, 0),
(5, 18, 6, 0),
(5, 18, 10, 0),
(5, 19, 5, 1),
(5, 19, 6, 1),
(5, 19, 10, 1),
(5, 20, 5, 0),
(5, 20, 6, 0),
(5, 21, 5, 0),
(5, 21, 6, 0),
(5, 22, 5, 0),
(5, 22, 6, 0),
(5, 23, 5, 0),
(5, 23, 6, 0),
(5, 25, 6, 0),
(5, 25, 13, 0),
(5, 34, 11, 0),
(5, 34, 12, 0),
(5, 35, 5, 0),
(5, 35, 6, 0),
(5, 35, 10, 0),
(5, 36, 5, 0),
(5, 36, 6, 0),
(5, 36, 10, 0),
(5, 43, 5, 1),
(5, 43, 6, 1),
(5, 43, 10, 1),
(5, 44, 5, 0),
(5, 44, 6, 0),
(5, 44, 10, 0),
(5, 45, 5, 0),
(5, 45, 6, 0),
(5, 45, 10, 0),
(5, 52, 5, 0),
(5, 52, 6, 0),
(5, 53, 5, 0),
(5, 53, 6, 0),
(5, 54, 5, 0),
(5, 54, 6, 0),
(5, 55, 5, 0),
(5, 55, 6, 0),
(5, 56, 5, 0),
(5, 56, 6, 0),
(5, 57, 5, 0),
(5, 57, 6, 0),
(5, 58, 5, 0),
(5, 58, 6, 0),
(5, 59, 5, 0),
(5, 59, 6, 0),
(5, 60, 5, 0),
(5, 60, 6, 0),
(5, 61, 5, 0),
(5, 61, 6, 0),
(5, 62, 5, 0),
(5, 62, 6, 0),
(5, 63, 5, 0),
(5, 63, 6, 0),
(5, 65, 6, 0),
(6, 2, 5, 1),
(6, 2, 6, 1),
(6, 2, 10, 0),
(6, 4, 5, 1),
(6, 4, 6, 1),
(6, 4, 8, 0),
(6, 4, 10, 0),
(6, 6, 5, 1),
(6, 6, 6, 1),
(6, 6, 8, 0),
(6, 6, 10, 0),
(6, 7, 5, 1),
(6, 7, 6, 1),
(6, 7, 8, 0),
(6, 7, 9, 0),
(6, 7, 10, 0),
(6, 8, 6, 1),
(6, 9, 5, 0),
(6, 9, 6, 0),
(6, 13, 5, 1),
(6, 13, 6, 1),
(6, 13, 8, 0),
(6, 13, 10, 0),
(6, 14, 5, 1),
(6, 14, 6, 1),
(6, 14, 10, 0),
(6, 18, 5, 1),
(6, 18, 6, 1),
(6, 18, 10, 0),
(6, 19, 5, 1),
(6, 19, 6, 1),
(6, 19, 10, 1),
(6, 20, 5, 0),
(6, 20, 6, 0),
(6, 21, 5, 0),
(6, 21, 6, 0),
(6, 22, 5, 0),
(6, 22, 6, 0),
(6, 23, 5, 0),
(6, 23, 6, 0),
(6, 25, 6, 0),
(6, 25, 13, 0),
(6, 34, 11, 0),
(6, 34, 12, 0),
(6, 35, 5, 0),
(6, 35, 6, 0),
(6, 35, 10, 0),
(6, 36, 5, 0),
(6, 36, 6, 0),
(6, 36, 10, 0),
(6, 43, 5, 1),
(6, 43, 6, 1),
(6, 43, 10, 1),
(6, 44, 5, 0),
(6, 44, 6, 0),
(6, 44, 10, 0),
(6, 45, 5, 0),
(6, 45, 6, 0),
(6, 45, 10, 0),
(6, 52, 5, 0),
(6, 52, 6, 0),
(6, 53, 5, 0),
(6, 53, 6, 0),
(6, 54, 5, 0),
(6, 54, 6, 0),
(6, 55, 5, 0),
(6, 55, 6, 0),
(6, 56, 5, 0),
(6, 56, 6, 0),
(6, 57, 5, 0),
(6, 57, 6, 0),
(6, 58, 5, 0),
(6, 58, 6, 0),
(6, 59, 5, 0),
(6, 59, 6, 0),
(6, 60, 5, 0),
(6, 60, 6, 0),
(6, 61, 5, 0),
(6, 61, 6, 0),
(6, 62, 5, 0),
(6, 62, 6, 0),
(6, 63, 5, 0),
(6, 63, 6, 0),
(6, 65, 6, 0),
(7, 2, 5, 1),
(7, 2, 6, 1),
(7, 2, 10, 0),
(7, 4, 5, 1),
(7, 4, 6, 1),
(7, 4, 8, 0),
(7, 4, 10, 0),
(7, 6, 5, 1),
(7, 6, 6, 1),
(7, 6, 8, 0),
(7, 6, 10, 0),
(7, 7, 5, 1),
(7, 7, 6, 1),
(7, 7, 8, 0),
(7, 7, 9, 0),
(7, 7, 10, 0),
(7, 8, 6, 1),
(7, 9, 5, 0),
(7, 9, 6, 0),
(7, 13, 5, 1),
(7, 13, 6, 1),
(7, 13, 8, 0),
(7, 13, 10, 0),
(7, 14, 5, 1),
(7, 14, 6, 1),
(7, 14, 10, 0),
(7, 18, 5, 1),
(7, 18, 6, 1),
(7, 18, 10, 0),
(7, 19, 5, 1),
(7, 19, 6, 1),
(7, 19, 10, 1),
(7, 20, 5, 0),
(7, 20, 6, 0),
(7, 21, 5, 0),
(7, 21, 6, 0),
(7, 22, 5, 0),
(7, 22, 6, 0),
(7, 23, 5, 0),
(7, 23, 6, 0),
(7, 25, 6, 0),
(7, 25, 13, 0),
(7, 34, 11, 0),
(7, 34, 12, 0),
(7, 35, 5, 0),
(7, 35, 6, 0),
(7, 35, 10, 0),
(7, 36, 5, 0),
(7, 36, 6, 0),
(7, 36, 10, 0),
(7, 43, 5, 1),
(7, 43, 6, 1),
(7, 43, 10, 1),
(7, 44, 5, 0),
(7, 44, 6, 0),
(7, 44, 10, 0),
(7, 45, 5, 0),
(7, 45, 6, 0),
(7, 45, 10, 0),
(7, 52, 5, 0),
(7, 52, 6, 0),
(7, 53, 5, 0),
(7, 53, 6, 0),
(7, 54, 5, 0),
(7, 54, 6, 0),
(7, 55, 5, 0),
(7, 55, 6, 0),
(7, 56, 5, 0),
(7, 56, 6, 0),
(7, 57, 5, 0),
(7, 57, 6, 0),
(7, 58, 5, 0),
(7, 58, 6, 0),
(7, 59, 5, 0),
(7, 59, 6, 0),
(7, 60, 5, 0),
(7, 60, 6, 0),
(7, 61, 5, 0),
(7, 61, 6, 0),
(7, 62, 5, 0),
(7, 62, 6, 0),
(7, 63, 5, 0),
(7, 63, 6, 0),
(7, 65, 6, 0),
(8, 2, 5, 1),
(8, 2, 6, 1),
(8, 2, 10, 0),
(8, 4, 5, 1),
(8, 4, 6, 1),
(8, 4, 8, 0),
(8, 4, 10, 0),
(8, 6, 5, 1),
(8, 6, 6, 1),
(8, 6, 8, 0),
(8, 6, 10, 0),
(8, 7, 5, 1),
(8, 7, 6, 1),
(8, 7, 8, 0),
(8, 7, 9, 0),
(8, 7, 10, 0),
(8, 8, 6, 1),
(8, 9, 5, 0),
(8, 9, 6, 0),
(8, 13, 5, 1),
(8, 13, 6, 1),
(8, 13, 8, 0),
(8, 13, 10, 0),
(8, 14, 5, 1),
(8, 14, 6, 1),
(8, 14, 10, 0),
(8, 18, 5, 1),
(8, 18, 6, 1),
(8, 18, 10, 0),
(8, 19, 5, 1),
(8, 19, 6, 1),
(8, 19, 10, 1),
(8, 20, 5, 0),
(8, 20, 6, 0),
(8, 21, 5, 0),
(8, 21, 6, 0),
(8, 22, 5, 0),
(8, 22, 6, 0),
(8, 23, 5, 0),
(8, 23, 6, 0),
(8, 25, 6, 0),
(8, 25, 13, 0),
(8, 34, 11, 0),
(8, 34, 12, 0),
(8, 35, 5, 0),
(8, 35, 6, 0),
(8, 35, 10, 0),
(8, 36, 5, 0),
(8, 36, 6, 0),
(8, 36, 10, 0),
(8, 43, 5, 1),
(8, 43, 6, 1),
(8, 43, 10, 1),
(8, 44, 5, 0),
(8, 44, 6, 0),
(8, 44, 10, 0),
(8, 45, 5, 0),
(8, 45, 6, 0),
(8, 45, 10, 0),
(8, 52, 5, 0),
(8, 52, 6, 0),
(8, 53, 5, 0),
(8, 53, 6, 0),
(8, 54, 5, 0),
(8, 54, 6, 0),
(8, 55, 5, 0),
(8, 55, 6, 0),
(8, 56, 5, 0),
(8, 56, 6, 0),
(8, 57, 5, 0),
(8, 57, 6, 0),
(8, 58, 5, 0),
(8, 58, 6, 0),
(8, 59, 5, 0),
(8, 59, 6, 0),
(8, 60, 5, 0),
(8, 60, 6, 0),
(8, 61, 5, 0),
(8, 61, 6, 0),
(8, 62, 5, 0),
(8, 62, 6, 0),
(8, 63, 5, 0),
(8, 63, 6, 0),
(8, 65, 6, 0),
(32, 2, 5, 0),
(32, 2, 6, 0),
(32, 2, 10, 1),
(32, 4, 5, 0),
(32, 4, 6, 0),
(32, 4, 8, 1),
(32, 4, 10, 1),
(32, 6, 5, 0),
(32, 6, 6, 0),
(32, 6, 8, 1),
(32, 6, 10, 1),
(32, 7, 5, 0),
(32, 7, 6, 0),
(32, 7, 8, 1),
(32, 7, 9, 1),
(32, 7, 10, 1),
(32, 8, 6, 0),
(32, 9, 5, 0),
(32, 9, 6, 0),
(32, 13, 5, 0),
(32, 13, 6, 0),
(32, 13, 8, 1),
(32, 13, 10, 1),
(32, 14, 5, 0),
(32, 14, 6, 0),
(32, 14, 10, 1),
(32, 16, 5, 0),
(32, 16, 6, 0),
(32, 18, 5, 0),
(32, 18, 6, 0),
(32, 18, 10, 1),
(32, 19, 5, 0),
(32, 19, 6, 0),
(32, 20, 5, 0),
(32, 20, 6, 0),
(32, 21, 5, 0),
(32, 21, 6, 0),
(32, 22, 5, 0),
(32, 22, 6, 0),
(32, 23, 5, 0),
(32, 23, 6, 0),
(32, 25, 6, 0),
(32, 34, 5, 1),
(32, 34, 6, 1),
(32, 34, 8, 1),
(32, 35, 5, 0),
(32, 35, 6, 0),
(32, 35, 10, 1),
(32, 36, 5, 0),
(32, 36, 6, 0),
(32, 36, 10, 1),
(32, 38, 5, 1),
(32, 38, 6, 1),
(32, 38, 10, 1),
(32, 43, 5, 0),
(32, 43, 6, 0),
(32, 43, 10, 1),
(32, 44, 5, 0),
(32, 44, 6, 0),
(32, 44, 10, 1),
(32, 45, 5, 0),
(32, 45, 6, 0),
(32, 45, 10, 1),
(32, 52, 5, 0),
(32, 52, 6, 0),
(32, 52, 8, 1),
(32, 52, 10, 1),
(32, 53, 5, 0),
(32, 53, 6, 0),
(32, 53, 8, 1),
(32, 53, 10, 1),
(32, 54, 5, 0),
(32, 54, 6, 0),
(32, 54, 8, 1),
(32, 54, 10, 1),
(32, 55, 5, 0),
(32, 55, 6, 0),
(32, 55, 8, 1),
(32, 55, 10, 1),
(32, 56, 5, 0),
(32, 56, 6, 0),
(32, 56, 8, 1),
(32, 56, 10, 1),
(32, 57, 5, 0),
(32, 57, 6, 0),
(32, 57, 8, 1),
(32, 57, 10, 1),
(32, 58, 5, 0),
(32, 58, 6, 0),
(32, 58, 8, 1),
(32, 58, 10, 1),
(32, 59, 5, 0),
(32, 59, 6, 0),
(32, 59, 8, 1),
(32, 59, 10, 1),
(32, 60, 5, 0),
(32, 60, 6, 0),
(32, 60, 8, 1),
(32, 60, 10, 1),
(32, 61, 5, 0),
(32, 61, 6, 0),
(32, 61, 8, 1),
(32, 61, 10, 1),
(32, 62, 5, 0),
(32, 62, 6, 0),
(32, 62, 8, 1),
(32, 62, 10, 1),
(32, 63, 5, 0),
(32, 63, 6, 0),
(32, 63, 8, 1),
(32, 63, 10, 1),
(32, 65, 6, 0),
(33, 2, 5, 0),
(33, 2, 6, 0),
(33, 2, 10, 1),
(33, 4, 5, 0),
(33, 4, 6, 0),
(33, 4, 8, 1),
(33, 4, 10, 1),
(33, 6, 5, 0),
(33, 6, 6, 0),
(33, 6, 8, 1),
(33, 6, 10, 1),
(33, 7, 5, 0),
(33, 7, 6, 0),
(33, 7, 8, 1),
(33, 7, 9, 1),
(33, 7, 10, 1),
(33, 8, 6, 0),
(33, 9, 5, 0),
(33, 9, 6, 0),
(33, 13, 5, 0),
(33, 13, 6, 0),
(33, 13, 8, 1),
(33, 13, 10, 1),
(33, 14, 5, 0),
(33, 14, 6, 0),
(33, 14, 10, 1),
(33, 16, 5, 0),
(33, 16, 6, 0),
(33, 18, 5, 0),
(33, 18, 6, 0),
(33, 18, 10, 1),
(33, 19, 5, 0),
(33, 19, 6, 0),
(33, 20, 5, 0),
(33, 20, 6, 0),
(33, 21, 5, 0),
(33, 21, 6, 0),
(33, 22, 5, 0),
(33, 22, 6, 0),
(33, 23, 5, 0),
(33, 23, 6, 0),
(33, 25, 6, 0),
(33, 34, 5, 1),
(33, 34, 6, 1),
(33, 34, 8, 1),
(33, 35, 5, 0),
(33, 35, 6, 0),
(33, 35, 10, 1),
(33, 36, 5, 0),
(33, 36, 6, 0),
(33, 36, 10, 1),
(33, 38, 5, 1),
(33, 38, 6, 1),
(33, 38, 10, 1),
(33, 43, 5, 0),
(33, 43, 6, 0),
(33, 43, 10, 1),
(33, 44, 5, 0),
(33, 44, 6, 0),
(33, 44, 10, 1),
(33, 45, 5, 0),
(33, 45, 6, 0),
(33, 45, 10, 1),
(33, 52, 5, 0),
(33, 52, 6, 0),
(33, 52, 8, 1),
(33, 52, 10, 1),
(33, 53, 5, 0),
(33, 53, 6, 0),
(33, 53, 8, 1),
(33, 53, 10, 1),
(33, 54, 5, 0),
(33, 54, 6, 0),
(33, 54, 8, 1),
(33, 54, 10, 1),
(33, 55, 5, 0),
(33, 55, 6, 0),
(33, 55, 8, 1),
(33, 55, 10, 1),
(33, 56, 5, 0),
(33, 56, 6, 0),
(33, 56, 8, 1),
(33, 56, 10, 1),
(33, 57, 5, 0),
(33, 57, 6, 0),
(33, 57, 8, 1),
(33, 57, 10, 1),
(33, 58, 5, 0),
(33, 58, 6, 0),
(33, 58, 8, 1),
(33, 58, 10, 1),
(33, 59, 5, 0),
(33, 59, 6, 0),
(33, 59, 8, 1),
(33, 59, 10, 1),
(33, 60, 5, 0),
(33, 60, 6, 0),
(33, 60, 8, 1),
(33, 60, 10, 1),
(33, 61, 5, 0),
(33, 61, 6, 0),
(33, 61, 8, 1),
(33, 61, 10, 1),
(33, 62, 5, 0),
(33, 62, 6, 0),
(33, 62, 8, 1),
(33, 62, 10, 1),
(33, 63, 5, 0),
(33, 63, 6, 0),
(33, 63, 8, 1),
(33, 63, 10, 1),
(33, 65, 6, 0),
(34, 2, 5, 0),
(34, 2, 6, 0),
(34, 2, 10, 1),
(34, 4, 5, 0),
(34, 4, 6, 0),
(34, 4, 8, 1),
(34, 4, 10, 1),
(34, 6, 5, 1),
(34, 6, 6, 1),
(34, 6, 8, 1),
(34, 6, 10, 1),
(34, 7, 5, 1),
(34, 7, 6, 1),
(34, 7, 8, 1),
(34, 7, 9, 1),
(34, 7, 10, 1),
(34, 8, 6, 0),
(34, 9, 5, 0),
(34, 9, 6, 0),
(34, 13, 5, 0),
(34, 13, 6, 0),
(34, 13, 8, 1),
(34, 13, 10, 1),
(34, 14, 5, 0),
(34, 14, 6, 0),
(34, 14, 10, 1),
(34, 16, 5, 0),
(34, 16, 6, 0),
(34, 18, 5, 0),
(34, 18, 6, 0),
(34, 18, 10, 1),
(34, 19, 5, 0),
(34, 19, 6, 0),
(34, 20, 5, 0),
(34, 20, 6, 0),
(34, 21, 5, 0),
(34, 21, 6, 0),
(34, 22, 5, 0),
(34, 22, 6, 0),
(34, 23, 5, 0),
(34, 23, 6, 0),
(34, 25, 6, 0),
(34, 34, 5, 0),
(34, 34, 6, 0),
(34, 34, 8, 1),
(34, 35, 5, 0),
(34, 35, 6, 0),
(34, 35, 10, 1),
(34, 36, 5, 1),
(34, 36, 6, 1),
(34, 36, 10, 1),
(34, 38, 5, 1),
(34, 38, 6, 1),
(34, 38, 10, 1),
(34, 43, 5, 0),
(34, 43, 6, 0),
(34, 43, 10, 1),
(34, 44, 5, 0),
(34, 44, 6, 0),
(34, 44, 10, 1),
(34, 45, 5, 0),
(34, 45, 6, 0),
(34, 45, 10, 1),
(34, 52, 5, 0),
(34, 52, 6, 0),
(34, 52, 8, 1),
(34, 52, 10, 1),
(34, 53, 5, 0),
(34, 53, 6, 0),
(34, 53, 8, 1),
(34, 53, 10, 1),
(34, 54, 5, 0),
(34, 54, 6, 0),
(34, 54, 8, 1),
(34, 54, 10, 1),
(34, 55, 5, 0),
(34, 55, 6, 0),
(34, 55, 8, 1),
(34, 55, 10, 1),
(34, 56, 5, 0),
(34, 56, 6, 0),
(34, 56, 8, 1),
(34, 56, 10, 1),
(34, 57, 5, 0),
(34, 57, 6, 0),
(34, 57, 8, 1),
(34, 57, 10, 1),
(34, 58, 5, 0),
(34, 58, 6, 0),
(34, 58, 8, 1),
(34, 58, 10, 1),
(34, 59, 5, 0),
(34, 59, 6, 0),
(34, 59, 8, 1),
(34, 59, 10, 1),
(34, 60, 5, 0),
(34, 60, 6, 0),
(34, 60, 8, 1),
(34, 60, 10, 1),
(34, 61, 5, 0),
(34, 61, 6, 0),
(34, 61, 8, 1),
(34, 61, 10, 1),
(34, 62, 5, 0),
(34, 62, 6, 0),
(34, 62, 8, 1),
(34, 62, 10, 1),
(34, 63, 5, 0),
(34, 63, 6, 0),
(34, 63, 8, 1),
(34, 63, 10, 1),
(34, 65, 6, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_profile_seq`
--

DROP TABLE IF EXISTS `vtiger_profile_seq`;
CREATE TABLE `vtiger_profile_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_profile_seq`
--

INSERT IGNORE INTO `vtiger_profile_seq` (`id`) VALUES
(41);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_progress`
--

DROP TABLE IF EXISTS `vtiger_progress`;
CREATE TABLE `vtiger_progress` (
  `progressid` int(11) NOT NULL,
  `progress` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_progress`
--

INSERT IGNORE INTO `vtiger_progress` (`progressid`, `progress`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, '10%', 1, 278, 2, NULL),
(3, '20%', 1, 279, 3, NULL),
(4, '30%', 1, 280, 4, NULL),
(5, '40%', 1, 281, 5, NULL),
(6, '50%', 1, 282, 6, NULL),
(7, '60%', 1, 283, 7, NULL),
(8, '70%', 1, 284, 8, NULL),
(9, '80%', 1, 285, 9, NULL),
(10, '90%', 1, 286, 10, NULL),
(11, '100%', 1, 287, 11, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_progress_seq`
--

DROP TABLE IF EXISTS `vtiger_progress_seq`;
CREATE TABLE `vtiger_progress_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_progress_seq`
--

INSERT IGNORE INTO `vtiger_progress_seq` (`id`) VALUES
(11);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_project`
--

DROP TABLE IF EXISTS `vtiger_project`;
CREATE TABLE `vtiger_project` (
  `projectid` int(19) NOT NULL,
  `projectname` varchar(255) DEFAULT NULL,
  `project_no` varchar(100) DEFAULT NULL,
  `startdate` date DEFAULT NULL,
  `targetenddate` date DEFAULT NULL,
  `actualenddate` date DEFAULT NULL,
  `targetbudget` varchar(255) DEFAULT NULL,
  `projecturl` varchar(255) DEFAULT NULL,
  `projectstatus` varchar(100) DEFAULT NULL,
  `projectpriority` varchar(100) DEFAULT NULL,
  `projecttype` varchar(100) DEFAULT NULL,
  `progress` varchar(100) DEFAULT NULL,
  `linktoaccountscontacts` varchar(100) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `isconvertedfrompotential` int(1) NOT NULL DEFAULT 0,
  `potentialid` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_project`
--

INSERT IGNORE INTO `vtiger_project` (`projectid`, `projectname`, `project_no`, `startdate`, `targetenddate`, `actualenddate`, `targetbudget`, `projecturl`, `projectstatus`, `projectpriority`, `projecttype`, `progress`, `linktoaccountscontacts`, `tags`, `isconvertedfrompotential`, `potentialid`) VALUES
(2130, 'استقرار CRM الکترونیک گستر (مثال)', 'PROJ1', '2026-06-22', '2026-08-21', NULL, '', '', 'in progress', 'high', NULL, NULL, '20', '', 0, '0'),
(2131, 'راه‌اندازی پرتال مشتریان کیان (مثال)', 'PROJ2', '2026-07-07', '2026-09-10', NULL, '', '', 'prospecting', 'normal', NULL, NULL, '21', '', 0, '0');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectcf`
--

DROP TABLE IF EXISTS `vtiger_projectcf`;
CREATE TABLE `vtiger_projectcf` (
  `projectid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projectcf`
--

INSERT IGNORE INTO `vtiger_projectcf` (`projectid`) VALUES
(2130),
(2131);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectmilestone`
--

DROP TABLE IF EXISTS `vtiger_projectmilestone`;
CREATE TABLE `vtiger_projectmilestone` (
  `projectmilestoneid` int(11) NOT NULL,
  `projectmilestonename` varchar(255) DEFAULT NULL,
  `projectmilestone_no` varchar(100) DEFAULT NULL,
  `projectmilestonedate` varchar(255) DEFAULT NULL,
  `projectid` varchar(100) DEFAULT NULL,
  `projectmilestonetype` varchar(100) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectmilestonecf`
--

DROP TABLE IF EXISTS `vtiger_projectmilestonecf`;
CREATE TABLE `vtiger_projectmilestonecf` (
  `projectmilestoneid` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectmilestonetype`
--

DROP TABLE IF EXISTS `vtiger_projectmilestonetype`;
CREATE TABLE `vtiger_projectmilestonetype` (
  `projectmilestonetypeid` int(11) NOT NULL,
  `projectmilestonetype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projectmilestonetype`
--

INSERT IGNORE INTO `vtiger_projectmilestonetype` (`projectmilestonetypeid`, `projectmilestonetype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'administrative', 1, 238, 2, NULL),
(3, 'operative', 1, 239, 3, NULL),
(4, 'other', 1, 240, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectmilestonetype_seq`
--

DROP TABLE IF EXISTS `vtiger_projectmilestonetype_seq`;
CREATE TABLE `vtiger_projectmilestonetype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projectmilestonetype_seq`
--

INSERT IGNORE INTO `vtiger_projectmilestonetype_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectpriority`
--

DROP TABLE IF EXISTS `vtiger_projectpriority`;
CREATE TABLE `vtiger_projectpriority` (
  `projectpriorityid` int(11) NOT NULL,
  `projectpriority` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projectpriority`
--

INSERT IGNORE INTO `vtiger_projectpriority` (`projectpriorityid`, `projectpriority`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'low', 1, 274, 2, NULL),
(3, 'normal', 1, 275, 3, NULL),
(4, 'high', 1, 276, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectpriority_seq`
--

DROP TABLE IF EXISTS `vtiger_projectpriority_seq`;
CREATE TABLE `vtiger_projectpriority_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projectpriority_seq`
--

INSERT IGNORE INTO `vtiger_projectpriority_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectstatus`
--

DROP TABLE IF EXISTS `vtiger_projectstatus`;
CREATE TABLE `vtiger_projectstatus` (
  `projectstatusid` int(11) NOT NULL,
  `projectstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projectstatus`
--

INSERT IGNORE INTO `vtiger_projectstatus` (`projectstatusid`, `projectstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'prospecting', 1, 261, 2, NULL),
(3, 'initiated', 1, 262, 3, NULL),
(4, 'in progress', 1, 263, 4, NULL),
(5, 'waiting for feedback', 1, 264, 5, NULL),
(6, 'on hold', 1, 265, 6, NULL),
(7, 'completed', 1, 266, 7, NULL),
(8, 'delivered', 1, 267, 8, NULL),
(9, 'archived', 1, 268, 9, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projectstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_projectstatus_seq`;
CREATE TABLE `vtiger_projectstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projectstatus_seq`
--

INSERT IGNORE INTO `vtiger_projectstatus_seq` (`id`) VALUES
(9);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttask`
--

DROP TABLE IF EXISTS `vtiger_projecttask`;
CREATE TABLE `vtiger_projecttask` (
  `projecttaskid` int(11) NOT NULL,
  `projecttaskname` varchar(255) DEFAULT NULL,
  `projecttask_no` varchar(100) DEFAULT NULL,
  `projecttasktype` varchar(100) DEFAULT NULL,
  `projecttaskpriority` varchar(100) DEFAULT NULL,
  `projecttaskprogress` varchar(100) DEFAULT NULL,
  `projecttaskhours` varchar(255) DEFAULT NULL,
  `startdate` date DEFAULT NULL,
  `enddate` date DEFAULT NULL,
  `projectid` varchar(100) DEFAULT NULL,
  `projecttasknumber` int(11) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `projecttaskstatus` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskcf`
--

DROP TABLE IF EXISTS `vtiger_projecttaskcf`;
CREATE TABLE `vtiger_projecttaskcf` (
  `projecttaskid` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskpriority`
--

DROP TABLE IF EXISTS `vtiger_projecttaskpriority`;
CREATE TABLE `vtiger_projecttaskpriority` (
  `projecttaskpriorityid` int(11) NOT NULL,
  `projecttaskpriority` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttaskpriority`
--

INSERT IGNORE INTO `vtiger_projecttaskpriority` (`projecttaskpriorityid`, `projecttaskpriority`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'low', 1, 246, 2, NULL),
(3, 'normal', 1, 247, 3, NULL),
(4, 'high', 1, 248, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskpriority_seq`
--

DROP TABLE IF EXISTS `vtiger_projecttaskpriority_seq`;
CREATE TABLE `vtiger_projecttaskpriority_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projecttaskpriority_seq`
--

INSERT IGNORE INTO `vtiger_projecttaskpriority_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskprogress`
--

DROP TABLE IF EXISTS `vtiger_projecttaskprogress`;
CREATE TABLE `vtiger_projecttaskprogress` (
  `projecttaskprogressid` int(11) NOT NULL,
  `projecttaskprogress` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttaskprogress`
--

INSERT IGNORE INTO `vtiger_projecttaskprogress` (`projecttaskprogressid`, `projecttaskprogress`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, '10%', 1, 250, 2, NULL),
(3, '20%', 1, 251, 3, NULL),
(4, '30%', 1, 252, 4, NULL),
(5, '40%', 1, 253, 5, NULL),
(6, '50%', 1, 254, 6, NULL),
(7, '60%', 1, 255, 7, NULL),
(8, '70%', 1, 256, 8, NULL),
(9, '80%', 1, 257, 9, NULL),
(10, '90%', 1, 258, 10, NULL),
(11, '100%', 1, 259, 11, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskprogress_seq`
--

DROP TABLE IF EXISTS `vtiger_projecttaskprogress_seq`;
CREATE TABLE `vtiger_projecttaskprogress_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projecttaskprogress_seq`
--

INSERT IGNORE INTO `vtiger_projecttaskprogress_seq` (`id`) VALUES
(11);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskstatus`
--

DROP TABLE IF EXISTS `vtiger_projecttaskstatus`;
CREATE TABLE `vtiger_projecttaskstatus` (
  `projecttaskstatusid` int(11) NOT NULL,
  `projecttaskstatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttaskstatus`
--

INSERT IGNORE INTO `vtiger_projecttaskstatus` (`projecttaskstatusid`, `projecttaskstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Open', 0, 290, 2, NULL),
(3, 'In Progress', 0, 291, 3, NULL),
(4, 'Completed', 0, 292, 4, NULL),
(5, 'Deferred', 0, 293, 5, NULL),
(6, 'Canceled', 0, 294, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttaskstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_projecttaskstatus_seq`;
CREATE TABLE `vtiger_projecttaskstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projecttaskstatus_seq`
--

INSERT IGNORE INTO `vtiger_projecttaskstatus_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttasktype`
--

DROP TABLE IF EXISTS `vtiger_projecttasktype`;
CREATE TABLE `vtiger_projecttasktype` (
  `projecttasktypeid` int(11) NOT NULL,
  `projecttasktype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttasktype`
--

INSERT IGNORE INTO `vtiger_projecttasktype` (`projecttasktypeid`, `projecttasktype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'administrative', 1, 242, 2, NULL),
(3, 'operative', 1, 243, 3, NULL),
(4, 'other', 1, 244, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttasktype_seq`
--

DROP TABLE IF EXISTS `vtiger_projecttasktype_seq`;
CREATE TABLE `vtiger_projecttasktype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projecttasktype_seq`
--

INSERT IGNORE INTO `vtiger_projecttasktype_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttask_status_color`
--

DROP TABLE IF EXISTS `vtiger_projecttask_status_color`;
CREATE TABLE `vtiger_projecttask_status_color` (
  `status` varchar(255) DEFAULT NULL,
  `defaultcolor` varchar(50) DEFAULT NULL,
  `color` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttask_status_color`
--

INSERT IGNORE INTO `vtiger_projecttask_status_color` (`status`, `defaultcolor`, `color`) VALUES
('Open', '#0099ff', NULL),
('In Progress', '#fdff00', NULL),
('Completed', '#3BBF67', NULL),
('Deferred', '#fbb11e', NULL),
('Canceled', '#660066', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttype`
--

DROP TABLE IF EXISTS `vtiger_projecttype`;
CREATE TABLE `vtiger_projecttype` (
  `projecttypeid` int(11) NOT NULL,
  `projecttype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_projecttype`
--

INSERT IGNORE INTO `vtiger_projecttype` (`projecttypeid`, `projecttype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'administrative', 1, 270, 2, NULL),
(3, 'operative', 1, 271, 3, NULL),
(4, 'other', 1, 272, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_projecttype_seq`
--

DROP TABLE IF EXISTS `vtiger_projecttype_seq`;
CREATE TABLE `vtiger_projecttype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_projecttype_seq`
--

INSERT IGNORE INTO `vtiger_projecttype_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_purchaseorder`
--

DROP TABLE IF EXISTS `vtiger_purchaseorder`;
CREATE TABLE `vtiger_purchaseorder` (
  `purchaseorderid` int(19) NOT NULL DEFAULT 0,
  `subject` varchar(100) DEFAULT NULL,
  `quoteid` int(19) DEFAULT NULL,
  `vendorid` int(19) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `requisition_no` varchar(100) DEFAULT NULL,
  `purchaseorder_no` varchar(100) DEFAULT NULL,
  `tracking_no` varchar(100) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `duedate` date DEFAULT NULL,
  `carrier` varchar(200) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `adjustment` decimal(25,8) DEFAULT NULL,
  `salescommission` decimal(25,3) DEFAULT NULL,
  `exciseduty` decimal(25,3) DEFAULT NULL,
  `total` decimal(25,8) DEFAULT NULL,
  `subtotal` decimal(25,8) DEFAULT NULL,
  `taxtype` varchar(25) DEFAULT NULL,
  `discount_percent` decimal(25,3) DEFAULT NULL,
  `discount_amount` decimal(25,8) DEFAULT NULL,
  `s_h_amount` decimal(25,8) DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `postatus` varchar(200) DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `conversion_rate` decimal(10,3) NOT NULL DEFAULT 1.000,
  `compound_taxes_info` text DEFAULT NULL,
  `pre_tax_total` decimal(25,8) DEFAULT NULL,
  `paid` decimal(25,8) DEFAULT NULL,
  `balance` decimal(25,8) DEFAULT NULL,
  `s_h_percent` decimal(25,3) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `region_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_purchaseorder`
--

INSERT IGNORE INTO `vtiger_purchaseorder` (`purchaseorderid`, `subject`, `quoteid`, `vendorid`, `accountid`, `requisition_no`, `purchaseorder_no`, `tracking_no`, `contactid`, `duedate`, `carrier`, `type`, `adjustment`, `salescommission`, `exciseduty`, `total`, `subtotal`, `taxtype`, `discount_percent`, `discount_amount`, `s_h_amount`, `terms_conditions`, `postatus`, `currency_id`, `conversion_rate`, `compound_taxes_info`, `pre_tax_total`, `paid`, `balance`, `s_h_percent`, `tags`, `region_id`) VALUES
(2150, 'سفارش خرید پکیج پیشرفته حساب کامران دادجو (نمونه فاز ۲)', NULL, 2126, 2036, 'Gouya-PHASE02-PO-2036', 'PO1', '', 2107, '2026-07-30', NULL, NULL, 0.00000000, 0.000, 0.000, 15000000.00000000, 15000000.00000000, 'group', NULL, NULL, 0.00000000, '', 'Approved', 2, 1.000, '[]', 15000000.00000000, 0.00000000, 15000000.00000000, 0.000, '', 0),
(2268, 'سفارش خرید نمونه عملی کامل - ۱۴۰۵/۰۵/۰۷', NULL, 2126, 20, 'REQ-DEMO-1405-001', 'PO2', 'TRK-DEMO-1405-001', 2096, '2026-08-05', NULL, NULL, 0.00000000, 0.000, 0.000, 110000000.00000000, 100000000.00000000, 'group', NULL, NULL, 0.00000000, 'تحویل طبق زمان‌بندی و پس از کنترل کیفیت انجام شود.', 'Created', 2, 1.000, '[]', 100000000.00000000, 0.00000000, 110000000.00000000, 0.000, '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_purchaseordercf`
--

DROP TABLE IF EXISTS `vtiger_purchaseordercf`;
CREATE TABLE `vtiger_purchaseordercf` (
  `purchaseorderid` int(19) NOT NULL DEFAULT 0,
  `sarv_po_date` date DEFAULT NULL,
  `sarv_opportunity_id` int(19) DEFAULT NULL,
  `sarv_for_contact_id` int(19) DEFAULT NULL,
  `sarv_sms_reminder` varchar(255) DEFAULT NULL,
  `sarv_shipping_method` varchar(255) DEFAULT NULL,
  `sarv_delivery_format` varchar(255) DEFAULT NULL,
  `sarv_partial_delivery` varchar(3) DEFAULT NULL,
  `sarv_payment_method` varchar(255) DEFAULT NULL,
  `sarv_payment_status` varchar(255) DEFAULT NULL,
  `sarv_payment_notes` text DEFAULT NULL,
  `sarv_po_category` varchar(255) DEFAULT NULL,
  `sarv_print_template` varchar(255) DEFAULT NULL,
  `sarv_bill_geo_area` varchar(255) DEFAULT NULL,
  `sarv_ship_geo_area` varchar(255) DEFAULT NULL,
  `sarv_bill_latitude` varchar(50) DEFAULT NULL,
  `sarv_ship_latitude` varchar(50) DEFAULT NULL,
  `sarv_bill_longitude` varchar(50) DEFAULT NULL,
  `sarv_ship_longitude` varchar(50) DEFAULT NULL,
  `sarv_copy_address` varchar(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_purchaseordercf`
--

INSERT IGNORE INTO `vtiger_purchaseordercf` (`purchaseorderid`, `sarv_po_date`, `sarv_opportunity_id`, `sarv_for_contact_id`, `sarv_sms_reminder`, `sarv_shipping_method`, `sarv_delivery_format`, `sarv_partial_delivery`, `sarv_payment_method`, `sarv_payment_status`, `sarv_payment_notes`, `sarv_po_category`, `sarv_print_template`, `sarv_bill_geo_area`, `sarv_ship_geo_area`, `sarv_bill_latitude`, `sarv_ship_latitude`, `sarv_bill_longitude`, `sarv_ship_longitude`, `sarv_copy_address`) VALUES
(2150, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2268, '2026-07-29', 1024, 2096, 'یک روز قبل', 'زمینی', 'فوری', '1', 'انتقال بانکی', 'بخشی پرداخت شده', 'نمونه عملی جهت کنترل ثبت کامل فرم و محاسبات', 'تجهیزات', 'پیش‌فرض', 'تهران', 'تهران', '35.6892', '35.6892', '51.3890', '51.3890', '1');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotes`
--

DROP TABLE IF EXISTS `vtiger_quotes`;
CREATE TABLE `vtiger_quotes` (
  `quoteid` int(19) NOT NULL DEFAULT 0,
  `subject` varchar(100) DEFAULT NULL,
  `potentialid` int(19) DEFAULT NULL,
  `quotestage` varchar(200) DEFAULT NULL,
  `validtill` date DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `quote_no` varchar(100) DEFAULT NULL,
  `subtotal` decimal(25,8) DEFAULT NULL,
  `carrier` varchar(200) DEFAULT NULL,
  `shipping` varchar(100) DEFAULT NULL,
  `inventorymanager` int(19) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `adjustment` decimal(25,8) DEFAULT NULL,
  `total` decimal(25,8) DEFAULT NULL,
  `taxtype` varchar(25) DEFAULT NULL,
  `discount_percent` decimal(25,3) DEFAULT NULL,
  `discount_amount` decimal(25,8) DEFAULT NULL,
  `s_h_amount` decimal(25,8) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `conversion_rate` decimal(10,3) NOT NULL DEFAULT 1.000,
  `compound_taxes_info` text DEFAULT NULL,
  `pre_tax_total` decimal(25,8) DEFAULT NULL,
  `s_h_percent` decimal(25,3) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `region_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_quotes`
--

INSERT IGNORE INTO `vtiger_quotes` (`quoteid`, `subject`, `potentialid`, `quotestage`, `validtill`, `contactid`, `quote_no`, `subtotal`, `carrier`, `shipping`, `inventorymanager`, `type`, `adjustment`, `total`, `taxtype`, `discount_percent`, `discount_amount`, `s_h_amount`, `accountid`, `terms_conditions`, `currency_id`, `conversion_rate`, `compound_taxes_info`, `pre_tax_total`, `s_h_percent`, `tags`, `region_id`) VALUES
(2012, 'فرایند سازان ایران فردا - پیش فاکتور (مثال)', NULL, 'با موفقیت بسته شده', '2026-07-19', NULL, '1', 120000000.00000000, NULL, NULL, NULL, NULL, NULL, 120000000.00000000, NULL, NULL, NULL, NULL, 20, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2013, 'پیشگامان صنعت داده - پیش فاکتور (مثال)', NULL, 'با موفقیت بسته شده', '2026-07-08', NULL, '2', 100000000.00000000, NULL, NULL, NULL, NULL, NULL, 100000000.00000000, NULL, NULL, NULL, NULL, 21, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2014, 'پیشگامان صنعت داده - پیش فاکتور (مثال)', NULL, 'با موفقیت بسته شده', '2026-07-02', NULL, '3', 144000000.00000000, NULL, NULL, NULL, NULL, NULL, 144000000.00000000, NULL, NULL, NULL, NULL, 21, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2015, 'شرکت فرایند گستران شرق - پیش فاکتور (مثال)', NULL, 'با موفقیت بسته شده', '2026-07-14', NULL, '4', 75000000.00000000, NULL, NULL, NULL, NULL, NULL, 75000000.00000000, NULL, NULL, NULL, NULL, 22, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2016, 'شرکت فرایند گستران شرق - پیش فاکتور (مثال)', NULL, 'با موفقیت بسته شده', '2026-07-21', NULL, '5', 100000000.00000000, NULL, NULL, NULL, NULL, NULL, 100000000.00000000, NULL, NULL, NULL, NULL, 22, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2017, 'شرکت الکترونیک گستر - پیش فاکتور (مثال)', NULL, 'ارسال شده', '2026-07-24', NULL, '6', 84000000.00000000, NULL, NULL, NULL, NULL, NULL, 84000000.00000000, NULL, NULL, NULL, NULL, 23, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2018, 'اورنگ (مثال) - فرصت', NULL, 'ارسال شده', '2026-07-10', NULL, '7', 98100000.00000000, NULL, NULL, NULL, NULL, NULL, 98100000.00000000, NULL, NULL, NULL, NULL, 24, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2019, 'کیان (مثال) - فرصت', NULL, 'ارسال شده', '2026-07-27', NULL, '8', 20000000.00000000, NULL, NULL, NULL, NULL, NULL, 20000000.00000000, NULL, NULL, NULL, NULL, 25, NULL, 1, 1.000, NULL, NULL, NULL, NULL, NULL),
(2025, 'تست سیستم - ویرایش شده', NULL, 'به تعویق افتاده', '2026-09-22', 11, '9', 160000000.00000000, '', '', 0, NULL, 2000000.00000000, 153050000.00000000, 'group', NULL, 1000000.00000000, 0.00000000, 23, 'یادداشت تستی', 2, 1.000, '[]', 159000000.00000000, 0.000, '', NULL),
(2026, 'پیش فاکتور ورودی تست ۱', NULL, 'پیش نویس', NULL, NULL, '10', 55000000.00000000, NULL, NULL, NULL, NULL, NULL, 55000000.00000000, NULL, NULL, NULL, NULL, 25, NULL, 1, 1.000, NULL, 55000000.00000000, NULL, NULL, NULL),
(2027, 'پیش فاکتور ورودی تست ۲', NULL, 'مذاکره', NULL, NULL, '11', 32500000.00000000, NULL, NULL, NULL, NULL, NULL, 32500000.00000000, NULL, NULL, NULL, NULL, 24, NULL, 1, 1.000, NULL, 32500000.00000000, NULL, NULL, NULL),
(2277, 'پیش فاکتور نمونه طرح گویا ۱۴۰۵/۰۵/۰۸', NULL, 'Created', '2026-08-11', NULL, '11', 167200000.00000000, '', '', 0, NULL, 0.00000000, 167200000.00000000, 'individual', NULL, NULL, 0.00000000, 2037, 'اعتبار پیش فاکتور تا تاریخ درج شده و پرداخت طبق توافق طرفین است.', 2, 1.000, '[]', 152000000.00000000, 0.000, '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotesbillads`
--

DROP TABLE IF EXISTS `vtiger_quotesbillads`;
CREATE TABLE `vtiger_quotesbillads` (
  `quotebilladdressid` int(19) NOT NULL DEFAULT 0,
  `bill_city` varchar(30) DEFAULT NULL,
  `bill_code` varchar(30) DEFAULT NULL,
  `bill_country` varchar(30) DEFAULT NULL,
  `bill_state` varchar(30) DEFAULT NULL,
  `bill_street` varchar(250) DEFAULT NULL,
  `bill_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_quotesbillads`
--

INSERT IGNORE INTO `vtiger_quotesbillads` (`quotebilladdressid`, `bill_city`, `bill_code`, `bill_country`, `bill_state`, `bill_street`, `bill_pobox`) VALUES
(2025, 'تهران', '1234567890', 'ایران', 'تهران', 'خیابان ولیعصر، پلاک ۱۰', ''),
(2026, NULL, NULL, NULL, NULL, NULL, NULL),
(2027, NULL, NULL, NULL, NULL, NULL, NULL),
(2277, '', '', 'ایران', '', 'تهران، خیابان نمونه، پلاک ۱۴۰۵', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotescf`
--

DROP TABLE IF EXISTS `vtiger_quotescf`;
CREATE TABLE `vtiger_quotescf` (
  `quoteid` int(19) NOT NULL DEFAULT 0,
  `cf_quote_date` date DEFAULT NULL,
  `cf_invoice_status` varchar(100) DEFAULT NULL,
  `cf_project` varchar(255) DEFAULT NULL,
  `cf_sms_reminder` varchar(100) DEFAULT NULL,
  `cf_payment_terms` varchar(100) DEFAULT NULL,
  `cf_internal_approval` varchar(100) DEFAULT NULL,
  `cf_approval_issues` text DEFAULT NULL,
  `cf_print_template` varchar(100) DEFAULT NULL,
  `cf_shipping_type` varchar(100) DEFAULT NULL,
  `cf_sender_company` varchar(150) DEFAULT NULL,
  `cf_insurance_percent` decimal(7,3) DEFAULT NULL,
  `cf_insurance_amount` decimal(25,8) DEFAULT NULL,
  `cf_retention_percent` decimal(7,3) DEFAULT NULL,
  `cf_retention_amount` decimal(25,8) DEFAULT NULL,
  `cf_bill_lat` varchar(50) DEFAULT NULL,
  `cf_bill_lng` varchar(50) DEFAULT NULL,
  `cf_ship_lat` varchar(50) DEFAULT NULL,
  `cf_ship_lng` varchar(50) DEFAULT NULL,
  `cf_bill_geo_area` varchar(255) DEFAULT NULL,
  `cf_ship_geo_area` varchar(255) DEFAULT NULL,
  `cf_copy_address` varchar(3) DEFAULT NULL,
  `cf_credit_limit` decimal(25,8) DEFAULT NULL,
  `cf_receivable_total` decimal(25,8) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_quotescf`
--

INSERT IGNORE INTO `vtiger_quotescf` (`quoteid`, `cf_quote_date`, `cf_invoice_status`, `cf_project`, `cf_sms_reminder`, `cf_payment_terms`, `cf_internal_approval`, `cf_approval_issues`, `cf_print_template`, `cf_shipping_type`, `cf_sender_company`, `cf_insurance_percent`, `cf_insurance_amount`, `cf_retention_percent`, `cf_retention_amount`, `cf_bill_lat`, `cf_bill_lng`, `cf_ship_lat`, `cf_ship_lng`, `cf_bill_geo_area`, `cf_ship_geo_area`, `cf_copy_address`, `cf_credit_limit`, `cf_receivable_total`) VALUES
(2012, '2026-06-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2013, '2026-06-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2014, '2026-06-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2015, '2026-06-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2016, '2026-06-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2017, '2026-06-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2018, '2026-06-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2019, '2026-06-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2025, '2026-07-03', 'فاکتور شده', '', '', 'نقدی', '', '', '', '', '', 5.000, 7950000.00000000, 0.000, 0.00000000, '35.7219', '51.3347', '35.7219', '51.3347', NULL, NULL, NULL, NULL, NULL),
(2026, '2026-07-01', 'فاکتور نشده', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2027, '2026-07-02', 'فاکتور نشده', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2277, '2026-07-30', 'پیش نویس', '', 'یک روز قبل', 'نقدی', 'تایید شده', '', 'پیش فرض', 'زمینی', 'شرکت اصلی', 2.000, 3040000.00000000, 5.000, 7600000.00000000, '32.4279000', '53.6880000', '', '', 'ایران', '', '0', 0.00000000, 0.00000000);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotesshipads`
--

DROP TABLE IF EXISTS `vtiger_quotesshipads`;
CREATE TABLE `vtiger_quotesshipads` (
  `quoteshipaddressid` int(19) NOT NULL DEFAULT 0,
  `ship_city` varchar(30) DEFAULT NULL,
  `ship_code` varchar(30) DEFAULT NULL,
  `ship_country` varchar(30) DEFAULT NULL,
  `ship_state` varchar(30) DEFAULT NULL,
  `ship_street` varchar(250) DEFAULT NULL,
  `ship_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_quotesshipads`
--

INSERT IGNORE INTO `vtiger_quotesshipads` (`quoteshipaddressid`, `ship_city`, `ship_code`, `ship_country`, `ship_state`, `ship_street`, `ship_pobox`) VALUES
(2025, 'تهران', '1234567890', 'ایران', 'تهران', 'خیابان ولیعصر، پلاک ۱۰', ''),
(2026, NULL, NULL, NULL, NULL, NULL, NULL),
(2027, NULL, NULL, NULL, NULL, NULL, NULL),
(2277, '', '', '', '', 'تهران، خیابان نمونه، پلاک ۱۴۰۵', '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotestage`
--

DROP TABLE IF EXISTS `vtiger_quotestage`;
CREATE TABLE `vtiger_quotestage` (
  `quotestageid` int(19) NOT NULL,
  `quotestage` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_quotestage`
--

INSERT IGNORE INTO `vtiger_quotestage` (`quotestageid`, `quotestage`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Created', 1, 139, 0, NULL),
(2, 'Delivered', 1, 140, 1, NULL),
(3, 'Reviewed', 1, 141, 2, NULL),
(4, 'Accepted', 1, 142, 3, NULL),
(5, 'Rejected', 1, 143, 4, NULL),
(6, 'پیش نویس', 0, 305, 5, '#9e9e9e'),
(7, 'ارسال شده', 0, 306, 6, '#29a3dc'),
(8, 'مذاکره', 0, 307, 7, '#f7941e'),
(9, 'به تعویق افتاده', 0, 308, 8, '#e6c229'),
(10, 'تایید شده توسط مشتری', 0, 309, 9, '#8e44ad'),
(11, 'با موفقیت بسته شده', 0, 310, 10, '#27ae60'),
(12, 'بسته شده - ناموفق', 0, 311, 11, '#e8513a');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotestagehistory`
--

DROP TABLE IF EXISTS `vtiger_quotestagehistory`;
CREATE TABLE `vtiger_quotestagehistory` (
  `historyid` int(19) NOT NULL,
  `quoteid` int(19) NOT NULL,
  `accountname` varchar(100) DEFAULT NULL,
  `total` decimal(10,0) DEFAULT NULL,
  `quotestage` varchar(200) DEFAULT NULL,
  `lastmodified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_quotestage_seq`
--

DROP TABLE IF EXISTS `vtiger_quotestage_seq`;
CREATE TABLE `vtiger_quotestage_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_quotestage_seq`
--

INSERT IGNORE INTO `vtiger_quotestage_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rating`
--

DROP TABLE IF EXISTS `vtiger_rating`;
CREATE TABLE `vtiger_rating` (
  `rating_id` int(19) NOT NULL,
  `rating` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_rating`
--

INSERT IGNORE INTO `vtiger_rating` (`rating_id`, `rating`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Acquired', 0, 145, 1, NULL),
(3, 'Active', 0, 146, 2, NULL),
(4, 'Market Failed', 0, 147, 3, NULL),
(5, 'Project Cancelled', 0, 148, 4, NULL),
(6, 'Shutdown', 0, 149, 5, NULL),
(7, 'کم', 1, 333, 6, NULL),
(8, 'متوسط', 1, 334, 7, NULL),
(9, 'زیاد', 1, 335, 8, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rating_seq`
--

DROP TABLE IF EXISTS `vtiger_rating_seq`;
CREATE TABLE `vtiger_rating_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_rating_seq`
--

INSERT IGNORE INTO `vtiger_rating_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_recurringevents`
--

DROP TABLE IF EXISTS `vtiger_recurringevents`;
CREATE TABLE `vtiger_recurringevents` (
  `recurringid` int(19) NOT NULL,
  `activityid` int(19) NOT NULL,
  `recurringdate` date DEFAULT NULL,
  `recurringtype` varchar(30) DEFAULT NULL,
  `recurringfreq` int(19) DEFAULT NULL,
  `recurringinfo` varchar(50) DEFAULT NULL,
  `recurringenddate` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_recurringtype`
--

DROP TABLE IF EXISTS `vtiger_recurringtype`;
CREATE TABLE `vtiger_recurringtype` (
  `recurringeventid` int(19) NOT NULL,
  `recurringtype` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_recurringtype`
--

INSERT IGNORE INTO `vtiger_recurringtype` (`recurringeventid`, `recurringtype`, `sortorderid`, `presence`, `color`) VALUES
(2, 'Daily', 1, 1, NULL),
(3, 'Weekly', 2, 1, NULL),
(4, 'Monthly', 3, 1, NULL),
(5, 'Yearly', 4, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_recurringtype_seq`
--

DROP TABLE IF EXISTS `vtiger_recurringtype_seq`;
CREATE TABLE `vtiger_recurringtype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_recurringtype_seq`
--

INSERT IGNORE INTO `vtiger_recurringtype_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_recurring_frequency`
--

DROP TABLE IF EXISTS `vtiger_recurring_frequency`;
CREATE TABLE `vtiger_recurring_frequency` (
  `recurring_frequency_id` int(11) DEFAULT NULL,
  `recurring_frequency` varchar(200) DEFAULT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_recurring_frequency`
--

INSERT IGNORE INTO `vtiger_recurring_frequency` (`recurring_frequency_id`, `recurring_frequency`, `sortorderid`, `presence`, `color`) VALUES
(2, 'Daily', 1, 1, NULL),
(3, 'Weekly', 2, 1, NULL),
(4, 'Monthly', 3, 1, NULL),
(5, 'Quarterly', 4, 1, NULL),
(6, 'Yearly', 5, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_recurring_frequency_seq`
--

DROP TABLE IF EXISTS `vtiger_recurring_frequency_seq`;
CREATE TABLE `vtiger_recurring_frequency_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_recurring_frequency_seq`
--

INSERT IGNORE INTO `vtiger_recurring_frequency_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_relatedlists`
--

DROP TABLE IF EXISTS `vtiger_relatedlists`;
CREATE TABLE `vtiger_relatedlists` (
  `relation_id` int(19) NOT NULL,
  `tabid` int(10) DEFAULT NULL,
  `related_tabid` int(10) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `sequence` int(10) DEFAULT NULL,
  `label` varchar(100) DEFAULT NULL,
  `presence` int(10) NOT NULL DEFAULT 0,
  `actions` varchar(50) NOT NULL DEFAULT '',
  `relationfieldid` int(19) DEFAULT NULL,
  `source` varchar(25) DEFAULT NULL,
  `relationtype` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_relatedlists`
--

INSERT IGNORE INTO `vtiger_relatedlists` (`relation_id`, `tabid`, `related_tabid`, `name`, `sequence`, `label`, `presence`, `actions`, `relationfieldid`, `source`, `relationtype`) VALUES
(1, 6, 4, 'get_contacts', 2, 'Contacts', 0, 'add', 72, '', '1:N'),
(2, 6, 2, 'get_opportunities', 3, 'Potentials', 0, 'add', 113, '', '1:N'),
(3, 6, 20, 'get_quotes', 4, 'Quotes', 0, 'add', 330, '', '1:N'),
(4, 6, 22, 'get_salesorder', 5, 'Sales Order', 0, 'add', 409, '', '1:N'),
(5, 6, 23, 'get_invoices', 6, 'Invoice', 0, 'add', 452, '', '1:N'),
(6, 6, 9, 'get_activities', 7, 'Activities', 0, 'add', 238, '', '1:N'),
(7, 6, 10, 'get_emails', 8, 'Emails', 0, 'add', NULL, '', 'N:N'),
(8, 6, 9, 'get_history', 9, 'Activity History', 0, 'add', 238, '', '1:N'),
(9, 6, 8, 'get_attachments', 10, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(10, 6, 13, 'get_tickets', 11, 'HelpDesk', 0, 'ADD', 157, '', '1:N'),
(11, 6, 14, 'get_products', 12, 'Products', 0, 'select', NULL, '', 'N:N'),
(12, 7, 9, 'get_activities', 2, 'Activities', 0, 'add', 238, '', '1:N'),
(13, 7, 10, 'get_emails', 3, 'Emails', 0, 'add', NULL, '', 'N:N'),
(14, 7, 9, 'get_history', 4, 'Activity History', 0, 'add', 238, '', '1:N'),
(15, 7, 8, 'get_attachments', 5, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(16, 7, 14, 'get_products', 6, 'Products', 0, 'select', NULL, '', 'N:N'),
(17, 7, 26, 'get_campaigns', 7, 'Campaigns', 0, 'select', NULL, '', 'N:N'),
(18, 4, 2, 'get_opportunities', 2, 'Potentials', 0, 'add', 740, '', '1:N'),
(19, 4, 9, 'get_activities', 3, 'Activities', 0, 'add', 239, '', '1:N'),
(20, 4, 10, 'get_emails', 4, 'Emails', 0, 'add', NULL, '', 'N:N'),
(21, 4, 13, 'get_tickets', 5, 'HelpDesk', 0, 'add', 741, '', '1:N'),
(22, 4, 20, 'get_quotes', 6, 'Quotes', 0, 'add', 319, '', '1:N'),
(23, 4, 21, 'get_purchase_orders', 7, 'Purchase Order', 0, 'add', 356, '', '1:N'),
(24, 4, 22, 'get_salesorder', 8, 'Sales Order', 0, 'add', 395, '', '1:N'),
(25, 4, 14, 'get_products', 9, 'Products', 0, 'select', NULL, '', 'N:N'),
(26, 4, 9, 'get_history', 10, 'Activity History', 0, 'add', 239, '', '1:N'),
(27, 4, 8, 'get_attachments', 11, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(28, 4, 26, 'get_campaigns', 12, 'Campaigns', 0, 'select', NULL, '', 'N:N'),
(29, 4, 23, 'get_invoices', 13, 'Invoice', 0, 'add', 439, '', '1:N'),
(30, 2, 9, 'get_activities', 2, 'Activities', 0, 'add', 238, '', '1:N'),
(31, 2, 4, 'get_contacts', 3, 'Contacts', 0, 'select', NULL, '', 'N:N'),
(32, 2, 14, 'get_products', 4, 'Products', 0, 'select', NULL, '', 'N:N'),
(33, 2, 0, 'get_stage_history', 5, 'Sales Stage History', 0, '', NULL, '', 'N:N'),
(34, 2, 8, 'get_attachments', 6, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(35, 2, 20, 'get_Quotes', 7, 'Quotes', 0, 'add', 316, '', '1:N'),
(36, 2, 22, 'get_salesorder', 8, 'Sales Order', 0, 'add', 391, '', '1:N'),
(37, 2, 9, 'get_history', 9, 'Activity History', 0, '', 238, '', '1:N'),
(38, 14, 13, 'get_tickets', 1, 'HelpDesk', 0, 'add', 159, '', '1:N'),
(39, 14, 8, 'get_attachments', 3, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(40, 14, 20, 'get_quotes', 4, 'Quotes', 0, 'add', 703, '', '1:N'),
(41, 14, 21, 'get_purchase_orders', 5, 'Purchase Order', 0, 'add', 694, '', '1:N'),
(42, 14, 22, 'get_salesorder', 6, 'Sales Order', 0, 'add', 685, '', '1:N'),
(43, 14, 23, 'get_invoices', 7, 'Invoice', 0, 'add', 676, '', '1:N'),
(44, 14, 19, 'get_product_pricebooks', 8, 'PriceBooks', 0, 'ADD,SELECT', NULL, '', 'N:N'),
(45, 14, 7, 'get_leads', 9, 'Leads', 0, 'select', NULL, '', 'N:N'),
(46, 14, 6, 'get_accounts', 10, 'Accounts', 0, 'select', NULL, '', 'N:N'),
(47, 14, 4, 'get_contacts', 11, 'Contacts', 0, 'select', NULL, '', 'N:N'),
(48, 14, 2, 'get_opportunities', 12, 'Potentials', 0, 'select', NULL, '', 'N:N'),
(49, 14, 14, 'get_products', 13, 'Product Bundles', 0, 'add,select', NULL, '', 'N:N'),
(50, 14, 14, 'get_parent_products', 14, 'Parent Product', 0, '', NULL, '', 'N:N'),
(51, 10, 4, 'get_contacts', 1, 'Contacts', 0, 'select,bulkmail', NULL, '', 'N:N'),
(52, 10, 0, 'get_users', 2, 'Users', 0, '', NULL, '', 'N:N'),
(53, 10, 8, 'get_attachments', 3, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(54, 13, 9, 'get_activities', 2, 'Activities', 0, 'add', 238, '', '1:N'),
(55, 13, 8, 'get_attachments', 3, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(56, 13, 0, 'get_ticket_history', 4, 'Ticket History', 0, '', NULL, '', 'N:N'),
(57, 13, 9, 'get_history', 5, 'Activity History', 0, 'add', 238, '', '1:N'),
(58, 19, 14, 'get_pricebook_products', 2, 'Products', 0, 'select', NULL, '', 'N:N'),
(59, 18, 14, 'get_products', 1, 'Products', 0, 'add,select', 185, '', '1:N'),
(60, 18, 21, 'get_purchase_orders', 2, 'Purchase Order', 0, 'add', 353, '', '1:N'),
(61, 18, 4, 'get_contacts', 3, 'Contacts', 0, 'select', NULL, '', 'N:N'),
(62, 18, 10, 'get_emails', 4, 'Emails', 0, 'add', NULL, '', 'N:N'),
(63, 20, 22, 'get_salesorder', 1, 'Sales Order', 0, '', 393, '', '1:N'),
(64, 20, 9, 'get_activities', 2, 'Activities', 0, 'add', NULL, '', 'N:N'),
(65, 20, 8, 'get_attachments', 3, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(66, 20, 9, 'get_history', 4, 'Activity History', 0, '', NULL, '', 'N:N'),
(67, 20, 0, 'get_quotestagehistory', 5, 'Quote Stage History', 0, '', NULL, '', 'N:N'),
(68, 21, 9, 'get_activities', 1, 'Activities', 0, 'add', NULL, '', 'N:N'),
(69, 21, 8, 'get_attachments', 2, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(70, 21, 9, 'get_history', 3, 'Activity History', 0, '', NULL, '', 'N:N'),
(71, 21, 0, 'get_postatushistory', 4, 'PurchaseOrder Status History', 0, '', NULL, '', 'N:N'),
(72, 22, 9, 'get_activities', 1, 'Activities', 0, 'add', NULL, '', 'N:N'),
(73, 22, 8, 'get_attachments', 2, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(74, 22, 23, 'get_invoices', 3, 'Invoice', 0, '', 437, '', '1:N'),
(75, 22, 9, 'get_history', 4, 'Activity History', 0, '', NULL, '', 'N:N'),
(76, 22, 0, 'get_sostatushistory', 5, 'SalesOrder Status History', 0, '', NULL, '', 'N:N'),
(77, 23, 9, 'get_activities', 1, 'Activities', 0, 'add', NULL, '', 'N:N'),
(78, 23, 8, 'get_attachments', 2, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(79, 23, 9, 'get_history', 3, 'Activity History', 0, '', NULL, '', 'N:N'),
(80, 23, 0, 'get_invoicestatushistory', 4, 'Invoice Status History', 0, '', NULL, '', 'N:N'),
(81, 9, 0, 'get_users', 1, 'Users', 0, '', NULL, '', 'N:N'),
(82, 9, 4, 'get_contacts', 2, 'Contacts', 0, '', NULL, '', 'N:N'),
(83, 26, 4, 'get_contacts', 1, 'Contacts', 0, 'add,select', NULL, '', 'N:N'),
(84, 26, 7, 'get_leads', 2, 'Leads', 0, 'add,select', NULL, '', 'N:N'),
(85, 26, 2, 'get_opportunities', 3, 'Potentials', 0, 'add', 121, '', '1:N'),
(86, 26, 9, 'get_activities', 4, 'Activities', 0, 'add', 238, '', '1:N'),
(87, 6, 26, 'get_campaigns', 14, 'Campaigns', 0, 'select', NULL, '', 'N:N'),
(88, 26, 6, 'get_accounts', 5, 'Accounts', 0, 'add,select', NULL, '', 'N:N'),
(89, 15, 8, 'get_attachments', 2, 'Documents', 0, 'add,select', NULL, '', 'N:N'),
(90, 4, 34, 'get_dependents_list', 14, 'PBXManager', 0, '', 535, NULL, '1:N'),
(91, 7, 34, 'get_dependents_list', 8, 'PBXManager', 0, '', 535, NULL, '1:N'),
(92, 6, 34, 'get_dependents_list', 15, 'PBXManager', 0, '', 535, NULL, '1:N'),
(93, 35, 13, 'get_related_list', 1, 'Service Requests', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(94, 35, 8, 'get_attachments', 2, 'Documents', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(95, 6, 35, 'get_merged_list', 16, 'Service Contracts', 0, 'ADD', 549, NULL, '1:N'),
(96, 4, 35, 'get_dependents_list', 15, 'Service Contracts', 0, 'ADD', 549, NULL, '1:N'),
(97, 13, 35, 'get_related_list', 6, 'Service Contracts', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(98, 36, 13, 'get_related_list', 1, 'HelpDesk', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(99, 36, 20, 'get_quotes', 2, 'Quotes', 0, 'ADD', 703, NULL, '1:N'),
(100, 36, 21, 'get_purchase_orders', 3, 'Purchase Order', 0, 'ADD', 694, NULL, '1:N'),
(101, 36, 22, 'get_salesorder', 4, 'Sales Order', 0, 'ADD', 685, NULL, '1:N'),
(102, 36, 23, 'get_invoices', 5, 'Invoice', 0, 'ADD', 676, NULL, '1:N'),
(103, 36, 19, 'get_service_pricebooks', 6, 'PriceBooks', 0, 'ADD', NULL, NULL, 'N:N'),
(104, 36, 7, 'get_related_list', 7, 'Leads', 0, 'SELECT', NULL, NULL, 'N:N'),
(105, 36, 6, 'get_related_list', 8, 'Accounts', 0, 'SELECT', NULL, NULL, 'N:N'),
(106, 36, 4, 'get_related_list', 9, 'Contacts', 0, 'SELECT', NULL, NULL, 'N:N'),
(107, 36, 2, 'get_related_list', 10, 'Potentials', 0, 'SELECT', NULL, NULL, 'N:N'),
(108, 36, 8, 'get_attachments', 11, 'Documents', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(109, 13, 36, 'get_related_list', 7, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(110, 7, 36, 'get_related_list', 9, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(111, 6, 36, 'get_related_list', 17, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(112, 4, 36, 'get_related_list', 16, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(113, 2, 36, 'get_related_list', 10, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(114, 19, 36, 'get_pricebook_services', 3, 'Services', 0, 'SELECT', NULL, NULL, 'N:N'),
(115, 38, 13, 'get_related_list', 1, 'HelpDesk', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(116, 38, 8, 'get_attachments', 2, 'Documents', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(117, 6, 38, 'get_merged_list', 18, 'Assets', 0, 'ADD', 600, NULL, '1:N'),
(118, 14, 38, 'get_dependents_list', 15, 'Assets', 0, 'ADD', 589, NULL, '1:N'),
(119, 23, 38, 'get_dependents_list', 5, 'Assets', 0, 'ADD', 595, NULL, '1:N'),
(120, 7, 42, 'get_comments', 10, 'ModComments', 0, '', 613, NULL, '1:N'),
(121, 4, 42, 'get_comments', 17, 'ModComments', 0, '', 613, NULL, '1:N'),
(122, 6, 42, 'get_comments', 19, 'ModComments', 0, '', 613, NULL, '1:N'),
(123, 2, 42, 'get_comments', 11, 'ModComments', 0, '', 613, NULL, '1:N'),
(131, 6, 45, 'get_merged_list', 20, 'Projects', 0, 'add', 654, NULL, '1:N'),
(132, 4, 45, 'get_dependents_list', 18, 'Projects', 0, 'add', 654, NULL, '1:N'),
(133, 13, 45, 'get_related_list', 8, 'Projects', 0, 'SELECT', NULL, NULL, 'N:N'),
(135, 47, 6, 'get_related_list', 1, 'Accounts', 0, ' ', NULL, NULL, 'N:N'),
(136, 47, 4, 'get_related_list', 2, 'Contacts', 0, ' ', NULL, NULL, 'N:N'),
(137, 47, 7, 'get_related_list', 3, 'Leads', 0, ' ', NULL, NULL, 'N:N'),
(138, 44, 8, 'get_attachments', 2, 'Documents', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(139, 44, 42, 'get_comments', 3, 'ModComments', 0, '', 613, NULL, '1:N'),
(140, 45, 44, 'get_dependents_list', 2, 'Project Tasks', 0, 'ADD', 633, NULL, '1:N'),
(141, 45, 43, 'get_dependents_list', 3, 'Project Milestones', 0, 'ADD', 619, NULL, '1:N'),
(142, 45, 8, 'get_attachments', 4, 'Documents', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(143, 45, 13, 'get_related_list', 5, 'HelpDesk', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(144, 45, 0, 'get_gantt_chart', 6, 'Charts', 0, '', NULL, NULL, 'N:N'),
(145, 45, 42, 'get_comments', 7, 'ModComments', 0, '', 613, NULL, '1:N'),
(146, 13, 42, 'get_comments', 9, 'ModComments', 0, '', 613, NULL, '1:N'),
(147, 15, 42, 'get_comments', 3, 'ModComments', 0, '', 613, NULL, '1:N'),
(148, 4, 38, 'get_dependents_list', 19, 'Assets', 0, 'ADD', 601, NULL, '1:N'),
(149, 4, 18, 'get_vendors', 20, 'Vendors', 0, 'SELECT', NULL, '', 'N:N'),
(150, 2, 23, 'get_dependents_list', 12, 'Invoice', 0, 'ADD', 774, NULL, '1:N'),
(151, 8, 4, 'get_related_list', 1, 'Contacts', 0, '1', NULL, NULL, 'N:N'),
(152, 8, 6, 'get_related_list', 2, 'Accounts', 0, '1', NULL, NULL, 'N:N'),
(153, 8, 2, 'get_related_list', 3, 'Potentials', 0, '1', NULL, NULL, 'N:N'),
(154, 8, 7, 'get_related_list', 4, 'Leads', 0, '1', NULL, NULL, 'N:N'),
(155, 8, 14, 'get_related_list', 5, 'Products', 0, '1', NULL, NULL, 'N:N'),
(156, 8, 36, 'get_related_list', 6, 'Services', 0, '1', NULL, NULL, 'N:N'),
(157, 8, 45, 'get_related_list', 7, 'Project', 0, '1', NULL, NULL, 'N:N'),
(158, 8, 38, 'get_related_list', 8, 'Assets', 0, '1', NULL, NULL, 'N:N'),
(159, 8, 35, 'get_related_list', 9, 'ServiceContracts', 0, '1', NULL, NULL, 'N:N'),
(160, 8, 20, 'get_related_list', 10, 'Quotes', 0, '1', NULL, NULL, 'N:N'),
(161, 8, 23, 'get_related_list', 11, 'Invoice', 0, '1', NULL, NULL, 'N:N'),
(162, 8, 22, 'get_related_list', 12, 'SalesOrder', 0, '1', NULL, NULL, 'N:N'),
(163, 8, 21, 'get_related_list', 13, 'PurchaseOrder', 0, '1', NULL, NULL, 'N:N'),
(164, 8, 13, 'get_related_list', 14, 'HelpDesk', 0, '1', NULL, NULL, 'N:N'),
(165, 8, 15, 'get_related_list', 15, 'Faq', 0, '1', NULL, NULL, 'N:N'),
(166, 45, 10, 'get_emails', 8, 'Emails', 0, 'ADD', NULL, NULL, 'N:N'),
(167, 44, 10, 'get_emails', 4, 'Emails', 0, 'ADD', NULL, NULL, 'N:N'),
(168, 45, 9, 'get_related_list', 9, 'Activities', 0, 'ADD', NULL, NULL, 'N:N'),
(169, 45, 20, 'get_related_list', 10, 'Quotes', 0, 'SELECT', NULL, NULL, 'N:N'),
(170, 14, 21, 'get_purchase_orders', 16, 'PurchaseOrder', 0, 'ADD', NULL, NULL, 'N:N'),
(171, 2, 10, 'get_emails', 13, 'Emails', 0, 'ADD', NULL, NULL, 'N:N'),
(172, 13, 10, 'get_emails', 10, 'Emails', 0, 'ADD', NULL, NULL, 'N:N'),
(173, 23, 42, 'get_comments', 6, 'ModComments', 0, '', 613, NULL, '1:N'),
(174, 20, 42, 'get_comments', 6, 'ModComments', 0, '', 613, NULL, '1:N'),
(175, 21, 42, 'get_comments', 5, 'ModComments', 0, '', 613, NULL, '1:N'),
(176, 22, 42, 'get_comments', 6, 'ModComments', 0, '', 613, NULL, '1:N'),
(177, 6, 52, 'get_dependents_list', 21, 'Gouya Payments', 0, 'ADD', 930, NULL, '1:N'),
(178, 6, 21, 'get_purchaseorder', 22, 'Gouya Purchase Orders', 1, 'ADD', 953, NULL, '1:N'),
(179, 6, 53, 'get_dependents_list', 23, 'Gouya Participations', 0, 'ADD', 956, NULL, '1:N'),
(180, 6, 7, 'get_related_list', 24, 'Gouya Leads', 0, 'ADD,SELECT', NULL, NULL, 'N:N'),
(181, 6, 54, 'get_dependents_list', 25, 'Gouya Survey Responses', 0, 'ADD', 972, NULL, '1:N'),
(182, 6, 55, 'get_dependents_list', 26, 'Gouya Sales Contracts', 0, 'ADD', 988, NULL, '1:N'),
(183, 6, 56, 'get_dependents_list', 27, 'Gouya Target Lists', 0, 'ADD', 1036, NULL, '1:N'),
(184, 6, 57, 'get_dependents_list', 28, 'Gouya Bank Accounts', 0, 'ADD', 1049, NULL, '1:N'),
(185, 6, 58, 'get_dependents_list', 29, 'Gouya Deposits', 0, 'ADD', 1066, NULL, '1:N'),
(186, 6, 6, 'get_sarv_child_accounts', 30, 'Gouya Child Accounts', 0, 'ADD', 8, NULL, '1:N'),
(187, 6, 59, 'get_dependents_list', 31, 'Gouya Business Locations', 0, 'ADD', 1088, NULL, '1:N'),
(188, 6, 60, 'get_dependents_list', 32, 'Gouya Time Reservations', 0, 'ADD', 1112, NULL, '1:N'),
(189, 6, 61, 'get_dependents_list', 33, 'Gouya Gifts', 0, 'ADD', 1130, NULL, '1:N'),
(190, 6, 62, 'get_dependents_list', 34, 'Gouya Product Samples', 0, 'ADD', 1149, NULL, '1:N'),
(191, 6, 63, 'get_dependents_list', 35, 'Gouya Access Grants', 0, 'ADD', 1169, NULL, '1:N'),
(192, 6, 21, 'get_purchaseorder', 36, 'Sarv Purchase Orders', 0, 'ADD', 953, NULL, '1:N');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_relatedlists_rb`
--

DROP TABLE IF EXISTS `vtiger_relatedlists_rb`;
CREATE TABLE `vtiger_relatedlists_rb` (
  `entityid` int(19) DEFAULT NULL,
  `action` varchar(50) DEFAULT NULL,
  `rel_table` varchar(200) DEFAULT NULL,
  `rel_column` varchar(200) DEFAULT NULL,
  `ref_column` varchar(200) DEFAULT NULL,
  `related_crm_ids` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_relatedlists_rb`
--

INSERT IGNORE INTO `vtiger_relatedlists_rb` (`entityid`, `action`, `rel_table`, `rel_column`, `ref_column`, `related_crm_ids`) VALUES
(2066, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2067, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2068, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2069, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2070, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2071, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2072, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2073, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2074, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2075, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2076, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2077, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2078, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2079, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2080, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2081, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2082, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2083, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2084, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2085, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2086, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2087, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2088, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2089, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2090, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2167, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2166, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2166, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2166, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2167'),
(2199, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2198, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2198, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2198, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2199'),
(2207, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2206, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2206, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2206, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2207'),
(2215, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2214, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2214, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2214, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2215'),
(2276, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2275, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2275, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2275, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2276'),
(2279, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2280, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2281, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2282, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2283, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2284, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2285, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2287, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2313, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2312, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2312, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2312, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2313'),
(2321, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2320, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2320, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2320, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2321'),
(2329, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2328, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2328, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2328, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2329'),
(2337, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2336, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2336, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2336, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2337'),
(2345, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2344, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2344, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2344, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2345'),
(2353, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2352, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2352, 'update', 'vtiger_crmentity', 'deleted', 'crmid', ''),
(2352, 'update', 'vtiger_contactdetails', 'accountid', 'contactid', '2353');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_relatedlists_seq`
--

DROP TABLE IF EXISTS `vtiger_relatedlists_seq`;
CREATE TABLE `vtiger_relatedlists_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_relatedlists_seq`
--

INSERT IGNORE INTO `vtiger_relatedlists_seq` (`id`) VALUES
(192);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_relcriteria`
--

DROP TABLE IF EXISTS `vtiger_relcriteria`;
CREATE TABLE `vtiger_relcriteria` (
  `queryid` int(19) NOT NULL,
  `columnindex` int(11) NOT NULL,
  `columnname` varchar(250) DEFAULT '',
  `comparator` varchar(20) DEFAULT NULL,
  `value` varchar(512) DEFAULT NULL,
  `groupid` int(11) DEFAULT 1,
  `column_condition` varchar(256) DEFAULT 'and'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_relcriteria`
--

INSERT IGNORE INTO `vtiger_relcriteria` (`queryid`, `columnindex`, `columnname`, `comparator`, `value`, `groupid`, `column_condition`) VALUES
(1, 0, 'vtiger_contactdetails:accountid:Contacts_Account_Name:account_id:V', 'n', '', 1, 'and'),
(2, 0, 'vtiger_contactdetails:accountid:Contacts_Account_Name:account_id:V', 'e', '', 1, 'and'),
(3, 0, 'vtiger_potential:potentialname:Potentials_Potential_Name:potentialname:V', 'n', '', 1, 'and'),
(7, 0, 'vtiger_potential:sales_stage:Potentials_Sales_Stage:sales_stage:V', 'e', 'Closed Won', 1, 'and'),
(12, 0, 'vtiger_troubletickets:status:HelpDesk_Status:ticketstatus:V', 'n', 'Closed', 1, 'and'),
(15, 0, 'vtiger_quotes:quotestage:Quotes_Quote_Stage:quotestage:V', 'n', 'Accepted', 1, 'and'),
(15, 1, 'vtiger_quotes:quotestage:Quotes_Quote_Stage:quotestage:V', 'n', 'Rejected', 1, 'and'),
(22, 0, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I', 'ny', '', 1, 'and'),
(23, 0, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I', 'ny', '', 1, 'and'),
(24, 0, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I', 'ny', '', 1, 'and'),
(25, 0, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I', 'ny', '', 1, 'and');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_relcriteria_grouping`
--

DROP TABLE IF EXISTS `vtiger_relcriteria_grouping`;
CREATE TABLE `vtiger_relcriteria_grouping` (
  `groupid` int(11) NOT NULL,
  `queryid` int(19) NOT NULL,
  `group_condition` varchar(256) DEFAULT NULL,
  `condition_expression` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_relcriteria_grouping`
--

INSERT IGNORE INTO `vtiger_relcriteria_grouping` (`groupid`, `queryid`, `group_condition`, `condition_expression`) VALUES
(1, 1, '', '0'),
(1, 2, '', '0'),
(1, 3, '', '0'),
(1, 7, '', '0'),
(1, 12, '', '0'),
(1, 15, '', '0 and 1'),
(1, 22, '', '0'),
(1, 23, '', '0'),
(1, 24, '', '0'),
(1, 25, '', '0');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reminder_interval`
--

DROP TABLE IF EXISTS `vtiger_reminder_interval`;
CREATE TABLE `vtiger_reminder_interval` (
  `reminder_intervalid` int(19) NOT NULL,
  `reminder_interval` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL,
  `presence` int(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reminder_interval`
--

INSERT IGNORE INTO `vtiger_reminder_interval` (`reminder_intervalid`, `reminder_interval`, `sortorderid`, `presence`) VALUES
(2, '1 Minute', 1, 1),
(3, '5 Minutes', 2, 1),
(4, '15 Minutes', 3, 1),
(5, '30 Minutes', 4, 1),
(6, '45 Minutes', 5, 1),
(7, '1 Hour', 6, 1),
(8, '1 Day', 7, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reminder_interval_seq`
--

DROP TABLE IF EXISTS `vtiger_reminder_interval_seq`;
CREATE TABLE `vtiger_reminder_interval_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_reminder_interval_seq`
--

INSERT IGNORE INTO `vtiger_reminder_interval_seq` (`id`) VALUES
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_report`
--

DROP TABLE IF EXISTS `vtiger_report`;
CREATE TABLE `vtiger_report` (
  `reportid` int(19) NOT NULL,
  `folderid` int(19) NOT NULL,
  `reportname` varchar(100) DEFAULT '',
  `description` varchar(250) DEFAULT '',
  `reporttype` varchar(50) DEFAULT '',
  `queryid` int(19) NOT NULL DEFAULT 0,
  `state` varchar(50) DEFAULT 'SAVED',
  `customizable` int(1) DEFAULT 1,
  `category` int(11) DEFAULT 1,
  `owner` int(11) DEFAULT 1,
  `sharingtype` varchar(200) DEFAULT 'Private'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_report`
--

INSERT IGNORE INTO `vtiger_report` (`reportid`, `folderid`, `reportname`, `description`, `reporttype`, `queryid`, `state`, `customizable`, `category`, `owner`, `sharingtype`) VALUES
(1, 1, 'Contacts by Accounts', 'Contacts related to Accounts', 'tabular', 1, 'CUSTOM', 1, 1, 1, 'Public'),
(2, 1, 'Contacts without Accounts', 'Contacts not related to Accounts', 'tabular', 2, 'CUSTOM', 1, 1, 1, 'Public'),
(3, 1, 'Contacts by Potentials', 'Contacts related to Potentials', 'tabular', 3, 'CUSTOM', 1, 1, 1, 'Public'),
(4, 2, 'Lead by Source', 'Lead by Source', 'summary', 4, 'CUSTOM', 1, 1, 1, 'Public'),
(5, 2, 'Lead Status Report', 'Lead Status Report', 'summary', 5, 'CUSTOM', 1, 1, 1, 'Public'),
(6, 3, 'Potential Pipeline', 'Potential Pipeline', 'summary', 6, 'CUSTOM', 1, 1, 1, 'Public'),
(7, 3, 'Closed Potentials', 'Potential that have Won', 'tabular', 7, 'CUSTOM', 1, 1, 1, 'Public'),
(8, 4, 'Last Month Activities', 'Last Month Activities', 'tabular', 8, 'CUSTOM', 1, 1, 1, 'Public'),
(9, 4, 'This Month Activities', 'This Month Activities', 'tabular', 9, 'CUSTOM', 1, 1, 1, 'Public'),
(10, 5, 'Tickets by Products', 'Tickets related to Products', 'tabular', 10, 'CUSTOM', 1, 1, 1, 'Public'),
(11, 5, 'Tickets by Priority', 'Tickets by Priority', 'summary', 11, 'CUSTOM', 1, 1, 1, 'Public'),
(12, 5, 'Open Tickets', 'Tickets that are Open', 'tabular', 12, 'CUSTOM', 1, 1, 1, 'Public'),
(13, 6, 'Product Details', 'Product Detailed Report', 'tabular', 13, 'CUSTOM', 1, 1, 1, 'Public'),
(14, 6, 'Products by Contacts', 'Products related to Contacts', 'tabular', 14, 'CUSTOM', 1, 1, 1, 'Public'),
(15, 7, 'Open Quotes', 'Quotes that are Open', 'tabular', 15, 'CUSTOM', 1, 1, 1, 'Public'),
(16, 7, 'Quotes Detailed Report', 'Quotes Detailed Report', 'tabular', 16, 'CUSTOM', 1, 1, 1, 'Public'),
(17, 8, 'PurchaseOrder by Contacts', 'PurchaseOrder related to Contacts', 'tabular', 17, 'CUSTOM', 1, 1, 1, 'Public'),
(18, 8, 'PurchaseOrder Detailed Report', 'PurchaseOrder Detailed Report', 'tabular', 18, 'CUSTOM', 1, 1, 1, 'Public'),
(19, 9, 'Invoice Detailed Report', 'Invoice Detailed Report', 'tabular', 19, 'CUSTOM', 1, 1, 1, 'Public'),
(20, 10, 'SalesOrder Detailed Report', 'SalesOrder Detailed Report', 'tabular', 20, 'CUSTOM', 1, 1, 1, 'Public'),
(21, 11, 'Campaign Expectations and Actuals', 'Campaign Expectations and Actuals', 'tabular', 21, 'CUSTOM', 1, 1, 1, 'Public'),
(22, 12, 'Contacts Email Report', 'Emails sent to Contacts', 'tabular', 22, 'CUSTOM', 1, 1, 1, 'Public'),
(23, 12, 'Accounts Email Report', 'Emails sent to Organizations', 'tabular', 23, 'CUSTOM', 1, 1, 1, 'Public'),
(24, 12, 'Leads Email Report', 'Emails sent to Leads', 'tabular', 24, 'CUSTOM', 1, 1, 1, 'Public'),
(25, 12, 'Vendors Email Report', 'Emails sent to Vendors', 'tabular', 25, 'CUSTOM', 1, 1, 1, 'Public');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportdatefilter`
--

DROP TABLE IF EXISTS `vtiger_reportdatefilter`;
CREATE TABLE `vtiger_reportdatefilter` (
  `datefilterid` int(19) NOT NULL,
  `datecolumnname` varchar(250) DEFAULT '',
  `datefilter` varchar(250) DEFAULT '',
  `startdate` date DEFAULT NULL,
  `enddate` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reportdatefilter`
--

INSERT IGNORE INTO `vtiger_reportdatefilter` (`datefilterid`, `datecolumnname`, `datefilter`, `startdate`, `enddate`) VALUES
(8, 'vtiger_crmentity:modifiedtime:modifiedtime:Calendar_Modified_Time', 'lastmonth', '2005-05-01', '2005-05-31'),
(9, 'vtiger_crmentity:modifiedtime:modifiedtime:Calendar_Modified_Time', 'thismonth', '2005-06-01', '2005-06-30');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportfilters`
--

DROP TABLE IF EXISTS `vtiger_reportfilters`;
CREATE TABLE `vtiger_reportfilters` (
  `filterid` int(19) NOT NULL,
  `name` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reportfilters`
--

INSERT IGNORE INTO `vtiger_reportfilters` (`filterid`, `name`) VALUES
(1, 'Private'),
(2, 'Public'),
(3, 'Shared');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportfolder`
--

DROP TABLE IF EXISTS `vtiger_reportfolder`;
CREATE TABLE `vtiger_reportfolder` (
  `folderid` int(19) NOT NULL,
  `foldername` varchar(100) NOT NULL DEFAULT '',
  `description` varchar(250) DEFAULT '',
  `state` varchar(50) DEFAULT 'SAVED'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reportfolder`
--

INSERT IGNORE INTO `vtiger_reportfolder` (`folderid`, `foldername`, `description`, `state`) VALUES
(1, 'Organization and Contact Reports', 'Account and Contact Reports', 'SAVED'),
(2, 'Lead Reports', 'Lead Reports', 'SAVED'),
(3, 'Opportunity Reports', 'Potential Reports', 'SAVED'),
(4, 'Activity Reports', 'Activity Reports', 'SAVED'),
(5, 'Tickets Reports', 'HelpDesk Reports', 'SAVED'),
(6, 'Product Reports', 'Product Reports', 'SAVED'),
(7, 'Quote Reports', 'Quote Reports', 'SAVED'),
(8, 'Purchase Order Reports', 'PurchaseOrder Reports', 'SAVED'),
(9, 'Invoice Reports', 'Invoice Reports', 'SAVED'),
(10, 'Sales Order Reports', 'SalesOrder Reports', 'SAVED'),
(11, 'Campaign Reports', 'Campaign Reports', 'SAVED'),
(12, 'Email Reports', 'Email Reports', 'SAVED');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportgroupbycolumn`
--

DROP TABLE IF EXISTS `vtiger_reportgroupbycolumn`;
CREATE TABLE `vtiger_reportgroupbycolumn` (
  `reportid` int(19) DEFAULT NULL,
  `sortid` int(19) DEFAULT NULL,
  `sortcolname` varchar(250) DEFAULT NULL,
  `dategroupbycriteria` varchar(250) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportmodules`
--

DROP TABLE IF EXISTS `vtiger_reportmodules`;
CREATE TABLE `vtiger_reportmodules` (
  `reportmodulesid` int(19) NOT NULL,
  `primarymodule` varchar(100) DEFAULT NULL,
  `secondarymodules` varchar(250) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reportmodules`
--

INSERT IGNORE INTO `vtiger_reportmodules` (`reportmodulesid`, `primarymodule`, `secondarymodules`) VALUES
(1, 'Contacts', 'Accounts'),
(2, 'Contacts', 'Accounts'),
(3, 'Contacts', 'Potentials'),
(4, 'Leads', ''),
(5, 'Leads', ''),
(6, 'Potentials', ''),
(7, 'Potentials', ''),
(8, 'Calendar', ''),
(9, 'Calendar', ''),
(10, 'HelpDesk', 'Products'),
(11, 'HelpDesk', ''),
(12, 'HelpDesk', ''),
(13, 'Products', ''),
(14, 'Products', 'Contacts'),
(15, 'Quotes', ''),
(16, 'Quotes', ''),
(17, 'PurchaseOrder', 'Contacts'),
(18, 'PurchaseOrder', ''),
(19, 'Invoice', ''),
(20, 'SalesOrder', ''),
(21, 'Campaigns', ''),
(22, 'Contacts', 'Emails'),
(23, 'Accounts', 'Emails'),
(24, 'Leads', 'Emails'),
(25, 'Vendors', 'Emails');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportsharing`
--

DROP TABLE IF EXISTS `vtiger_reportsharing`;
CREATE TABLE `vtiger_reportsharing` (
  `reportid` int(19) NOT NULL,
  `shareid` int(19) NOT NULL,
  `setype` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportsortcol`
--

DROP TABLE IF EXISTS `vtiger_reportsortcol`;
CREATE TABLE `vtiger_reportsortcol` (
  `sortcolid` int(19) NOT NULL,
  `reportid` int(19) NOT NULL,
  `columnname` varchar(250) DEFAULT '',
  `sortorder` varchar(250) DEFAULT 'Asc'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reportsortcol`
--

INSERT IGNORE INTO `vtiger_reportsortcol` (`sortcolid`, `reportid`, `columnname`, `sortorder`) VALUES
(1, 4, 'vtiger_leaddetails:leadsource:Leads_Lead_Source:leadsource:V', 'Ascending'),
(1, 5, 'vtiger_leaddetails:leadstatus:Leads_Lead_Status:leadstatus:V', 'Ascending'),
(1, 6, 'vtiger_potential:sales_stage:Potentials_Sales_Stage:sales_stage:V', 'Ascending'),
(1, 11, 'vtiger_troubletickets:priority:HelpDesk_Priority:ticketpriorities:V', 'Ascending');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reportsummary`
--

DROP TABLE IF EXISTS `vtiger_reportsummary`;
CREATE TABLE `vtiger_reportsummary` (
  `reportsummaryid` int(19) NOT NULL,
  `summarytype` int(19) NOT NULL,
  `columnname` varchar(250) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reporttype`
--

DROP TABLE IF EXISTS `vtiger_reporttype`;
CREATE TABLE `vtiger_reporttype` (
  `reportid` int(10) NOT NULL,
  `data` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_report_sharegroups`
--

DROP TABLE IF EXISTS `vtiger_report_sharegroups`;
CREATE TABLE `vtiger_report_sharegroups` (
  `reportid` int(25) NOT NULL,
  `groupid` int(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_report_sharerole`
--

DROP TABLE IF EXISTS `vtiger_report_sharerole`;
CREATE TABLE `vtiger_report_sharerole` (
  `reportid` int(25) NOT NULL,
  `roleid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_report_sharers`
--

DROP TABLE IF EXISTS `vtiger_report_sharers`;
CREATE TABLE `vtiger_report_sharers` (
  `reportid` int(25) NOT NULL,
  `rsid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_report_shareusers`
--

DROP TABLE IF EXISTS `vtiger_report_shareusers`;
CREATE TABLE `vtiger_report_shareusers` (
  `reportid` int(25) NOT NULL,
  `userid` int(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reservation_status`
--

DROP TABLE IF EXISTS `vtiger_reservation_status`;
CREATE TABLE `vtiger_reservation_status` (
  `reservation_statusid` int(11) NOT NULL,
  `reservation_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_reservation_status`
--

INSERT IGNORE INTO `vtiger_reservation_status` (`reservation_statusid`, `reservation_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Requested', 1, 442, 1, NULL),
(2, 'Confirmed', 1, 443, 2, NULL),
(3, 'CheckedIn', 1, 444, 3, NULL),
(4, 'Completed', 1, 445, 4, NULL),
(5, 'Cancelled', 1, 446, 5, NULL),
(6, 'NoShow', 1, 447, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_reservation_status_seq`
--

DROP TABLE IF EXISTS `vtiger_reservation_status_seq`;
CREATE TABLE `vtiger_reservation_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_reservation_status_seq`
--

INSERT IGNORE INTO `vtiger_reservation_status_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_response_status`
--

DROP TABLE IF EXISTS `vtiger_response_status`;
CREATE TABLE `vtiger_response_status` (
  `response_statusid` int(11) NOT NULL,
  `response_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_response_status`
--

INSERT IGNORE INTO `vtiger_response_status` (`response_statusid`, `response_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Invited', 1, 389, 1, NULL),
(2, 'Started', 1, 390, 2, NULL),
(3, 'Submitted', 1, 391, 3, NULL),
(4, 'Expired', 1, 392, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_response_status_seq`
--

DROP TABLE IF EXISTS `vtiger_response_status_seq`;
CREATE TABLE `vtiger_response_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_response_status_seq`
--

INSERT IGNORE INTO `vtiger_response_status_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_role`
--

DROP TABLE IF EXISTS `vtiger_role`;
CREATE TABLE `vtiger_role` (
  `roleid` varchar(255) NOT NULL,
  `rolename` varchar(200) DEFAULT NULL,
  `parentrole` varchar(255) DEFAULT NULL,
  `depth` int(19) DEFAULT NULL,
  `allowassignedrecordsto` int(2) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_role`
--

INSERT IGNORE INTO `vtiger_role` (`roleid`, `rolename`, `parentrole`, `depth`, `allowassignedrecordsto`) VALUES
('H1', 'Organization', 'H1', 0, 1),
('H2', 'مدیرعامل', 'H1::H2', 1, 1),
('H29', 'آزمون گویا - مجاز - 20260801-073004', 'H1::H29', 1, 3),
('H3', 'مدیر پروژه', 'H1::H2::H3', 2, 1),
('H30', 'آزمون گویا - ارث‌بری - 20260801-073004', 'H1::H30', 1, 3),
('H31', 'آزمون گویا - محدود - 20260801-073004', 'H1::H31', 1, 3),
('H4', 'سرپرست و مدیر دفتر', 'H1::H2::H4', 2, 1),
('H5', 'کارشناس', 'H1::H2::H5', 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_role2picklist`
--

DROP TABLE IF EXISTS `vtiger_role2picklist`;
CREATE TABLE `vtiger_role2picklist` (
  `roleid` varchar(255) NOT NULL,
  `picklistvalueid` int(11) NOT NULL,
  `picklistid` int(11) NOT NULL,
  `sortid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_role2picklist`
--

INSERT IGNORE INTO `vtiger_role2picklist` (`roleid`, `picklistvalueid`, `picklistid`, `sortid`) VALUES
('H1', 1, 1, 0),
('H1', 2, 1, 1),
('H1', 3, 1, 2),
('H1', 4, 1, 3),
('H1', 5, 1, 4),
('H1', 6, 1, 5),
('H1', 7, 1, 6),
('H1', 8, 1, 7),
('H1', 9, 1, 8),
('H1', 10, 1, 9),
('H1', 11, 1, 10),
('H1', 12, 2, 0),
('H1', 13, 2, 1),
('H1', 14, 3, 0),
('H1', 15, 3, 1),
('H1', 16, 3, 2),
('H1', 17, 3, 3),
('H1', 18, 3, 4),
('H1', 19, 3, 5),
('H1', 20, 4, 0),
('H1', 21, 4, 1),
('H1', 22, 4, 2),
('H1', 23, 4, 3),
('H1', 24, 4, 4),
('H1', 25, 4, 5),
('H1', 26, 4, 6),
('H1', 27, 4, 7),
('H1', 28, 4, 8),
('H1', 29, 4, 9),
('H1', 30, 4, 10),
('H1', 31, 4, 11),
('H1', 32, 4, 12),
('H1', 33, 5, 0),
('H1', 34, 5, 1),
('H1', 35, 5, 2),
('H1', 36, 5, 3),
('H1', 37, 5, 4),
('H1', 38, 6, 0),
('H1', 39, 6, 1),
('H1', 40, 6, 2),
('H1', 41, 7, 0),
('H1', 42, 7, 1),
('H1', 43, 7, 2),
('H1', 44, 7, 3),
('H1', 45, 7, 4),
('H1', 46, 8, 0),
('H1', 47, 9, 0),
('H1', 48, 9, 1),
('H1', 49, 9, 2),
('H1', 50, 9, 3),
('H1', 51, 10, 0),
('H1', 52, 10, 1),
('H1', 53, 10, 2),
('H1', 54, 10, 3),
('H1', 55, 10, 4),
('H1', 56, 10, 5),
('H1', 57, 10, 6),
('H1', 58, 10, 7),
('H1', 59, 10, 8),
('H1', 60, 11, 0),
('H1', 61, 11, 1),
('H1', 62, 11, 2),
('H1', 63, 11, 3),
('H1', 64, 11, 4),
('H1', 65, 11, 5),
('H1', 66, 11, 6),
('H1', 67, 11, 7),
('H1', 68, 11, 8),
('H1', 69, 11, 9),
('H1', 70, 11, 10),
('H1', 71, 11, 11),
('H1', 72, 11, 12),
('H1', 73, 11, 13),
('H1', 74, 11, 14),
('H1', 75, 11, 15),
('H1', 76, 11, 16),
('H1', 77, 11, 17),
('H1', 78, 11, 18),
('H1', 79, 11, 19),
('H1', 80, 11, 20),
('H1', 81, 11, 21),
('H1', 82, 11, 22),
('H1', 83, 11, 23),
('H1', 84, 11, 24),
('H1', 85, 11, 25),
('H1', 86, 11, 26),
('H1', 87, 11, 27),
('H1', 88, 11, 28),
('H1', 89, 11, 29),
('H1', 90, 11, 30),
('H1', 91, 11, 31),
('H1', 92, 12, 0),
('H1', 93, 12, 1),
('H1', 94, 12, 2),
('H1', 95, 12, 3),
('H1', 96, 12, 4),
('H1', 97, 12, 5),
('H1', 98, 13, 0),
('H1', 99, 13, 1),
('H1', 100, 13, 2),
('H1', 101, 13, 3),
('H1', 102, 13, 4),
('H1', 103, 13, 5),
('H1', 104, 13, 6),
('H1', 105, 13, 7),
('H1', 106, 13, 8),
('H1', 107, 13, 9),
('H1', 108, 13, 10),
('H1', 109, 13, 11),
('H1', 110, 13, 12),
('H1', 111, 14, 0),
('H1', 112, 14, 1),
('H1', 113, 14, 2),
('H1', 114, 14, 3),
('H1', 115, 14, 4),
('H1', 116, 14, 5),
('H1', 117, 14, 6),
('H1', 118, 14, 7),
('H1', 119, 14, 8),
('H1', 120, 14, 9),
('H1', 121, 14, 10),
('H1', 122, 14, 11),
('H1', 123, 15, 0),
('H1', 124, 15, 1),
('H1', 125, 15, 2),
('H1', 126, 15, 3),
('H1', 127, 16, 0),
('H1', 128, 16, 1),
('H1', 129, 16, 2),
('H1', 130, 17, 0),
('H1', 131, 17, 1),
('H1', 132, 17, 2),
('H1', 133, 17, 3),
('H1', 134, 17, 4),
('H1', 135, 18, 0),
('H1', 136, 18, 1),
('H1', 137, 18, 2),
('H1', 138, 18, 3),
('H1', 139, 19, 0),
('H1', 140, 19, 1),
('H1', 141, 19, 2),
('H1', 142, 19, 3),
('H1', 143, 19, 4),
('H1', 144, 20, 0),
('H1', 145, 20, 1),
('H1', 146, 20, 2),
('H1', 147, 20, 3),
('H1', 148, 20, 4),
('H1', 149, 20, 5),
('H1', 150, 21, 0),
('H1', 151, 21, 1),
('H1', 152, 21, 2),
('H1', 153, 21, 3),
('H1', 154, 21, 4),
('H1', 155, 21, 5),
('H1', 156, 21, 6),
('H1', 157, 21, 7),
('H1', 158, 21, 8),
('H1', 159, 21, 9),
('H1', 160, 22, 0),
('H1', 161, 22, 1),
('H1', 162, 22, 2),
('H1', 163, 22, 3),
('H1', 164, 22, 4),
('H1', 165, 22, 5),
('H1', 166, 23, 0),
('H1', 167, 23, 1),
('H1', 168, 23, 2),
('H1', 169, 23, 3),
('H1', 170, 24, 0),
('H1', 171, 24, 1),
('H1', 172, 24, 2),
('H1', 173, 25, 0),
('H1', 174, 25, 1),
('H1', 175, 25, 2),
('H1', 176, 25, 3),
('H1', 177, 25, 4),
('H1', 178, 25, 5),
('H1', 179, 26, 0),
('H1', 180, 26, 1),
('H1', 181, 26, 2),
('H1', 182, 27, 0),
('H1', 183, 27, 1),
('H1', 184, 27, 2),
('H1', 185, 27, 3),
('H1', 186, 28, 0),
('H1', 187, 28, 1),
('H1', 188, 28, 2),
('H1', 189, 28, 3),
('H1', 190, 29, 0),
('H1', 191, 29, 1),
('H1', 192, 29, 2),
('H1', 193, 29, 3),
('H1', 194, 30, 0),
('H1', 195, 30, 1),
('H1', 196, 30, 2),
('H1', 197, 30, 3),
('H1', 198, 30, 4),
('H1', 199, 30, 5),
('H1', 200, 30, 6),
('H1', 201, 30, 7),
('H1', 202, 30, 8),
('H1', 203, 30, 9),
('H1', 204, 30, 10),
('H1', 205, 30, 11),
('H1', 206, 30, 12),
('H1', 207, 30, 13),
('H1', 208, 30, 14),
('H1', 209, 30, 15),
('H1', 210, 31, 1),
('H1', 211, 31, 2),
('H1', 212, 31, 3),
('H1', 213, 31, 4),
('H1', 214, 32, 1),
('H1', 215, 32, 2),
('H1', 216, 32, 3),
('H1', 217, 32, 4),
('H1', 218, 32, 5),
('H1', 219, 32, 6),
('H1', 220, 33, 1),
('H1', 221, 33, 2),
('H1', 222, 33, 3),
('H1', 223, 34, 1),
('H1', 224, 34, 2),
('H1', 225, 34, 3),
('H1', 226, 35, 1),
('H1', 227, 35, 2),
('H1', 228, 35, 3),
('H1', 229, 36, 1),
('H1', 230, 36, 2),
('H1', 231, 36, 3),
('H1', 232, 36, 4),
('H1', 233, 36, 5),
('H1', 234, 36, 6),
('H1', 235, 37, 1),
('H1', 236, 37, 2),
('H1', 237, 38, 1),
('H1', 238, 38, 2),
('H1', 239, 38, 3),
('H1', 240, 38, 4),
('H1', 241, 39, 1),
('H1', 242, 39, 2),
('H1', 243, 39, 3),
('H1', 244, 39, 4),
('H1', 245, 40, 1),
('H1', 246, 40, 2),
('H1', 247, 40, 3),
('H1', 248, 40, 4),
('H1', 249, 41, 1),
('H1', 250, 41, 2),
('H1', 251, 41, 3),
('H1', 252, 41, 4),
('H1', 253, 41, 5),
('H1', 254, 41, 6),
('H1', 255, 41, 7),
('H1', 256, 41, 8),
('H1', 257, 41, 9),
('H1', 258, 41, 10),
('H1', 259, 41, 11),
('H1', 260, 42, 1),
('H1', 261, 42, 2),
('H1', 262, 42, 3),
('H1', 263, 42, 4),
('H1', 264, 42, 5),
('H1', 265, 42, 6),
('H1', 266, 42, 7),
('H1', 267, 42, 8),
('H1', 268, 42, 9),
('H1', 269, 43, 1),
('H1', 270, 43, 2),
('H1', 271, 43, 3),
('H1', 272, 43, 4),
('H1', 273, 44, 1),
('H1', 274, 44, 2),
('H1', 275, 44, 3),
('H1', 276, 44, 4),
('H1', 277, 45, 1),
('H1', 278, 45, 2),
('H1', 279, 45, 3),
('H1', 280, 45, 4),
('H1', 281, 45, 5),
('H1', 282, 45, 6),
('H1', 283, 45, 7),
('H1', 284, 45, 8),
('H1', 285, 45, 9),
('H1', 286, 45, 10),
('H1', 287, 45, 11),
('H1', 288, 12, 1),
('H1', 289, 46, 1),
('H1', 290, 46, 2),
('H1', 291, 46, 3),
('H1', 292, 46, 4),
('H1', 293, 46, 5),
('H1', 294, 46, 6),
('H1', 295, 2, 1),
('H1', 296, 47, 1),
('H1', 297, 47, 2),
('H1', 298, 47, 3),
('H1', 299, 48, 1),
('H1', 300, 48, 2),
('H1', 303, 49, 1),
('H1', 304, 49, 2),
('H1', 305, 19, 5),
('H1', 306, 19, 6),
('H1', 307, 19, 7),
('H1', 308, 19, 8),
('H1', 309, 19, 9),
('H1', 310, 19, 10),
('H1', 311, 19, 11),
('H1', 312, 21, 10),
('H1', 313, 21, 11),
('H1', 314, 21, 12),
('H1', 315, 21, 13),
('H1', 316, 21, 14),
('H1', 317, 21, 15),
('H1', 327, 14, 12),
('H1', 328, 14, 13),
('H1', 329, 14, 14),
('H1', 330, 14, 15),
('H1', 331, 14, 16),
('H1', 332, 14, 17),
('H1', 333, 20, 6),
('H1', 334, 20, 7),
('H1', 335, 20, 8),
('H1', 336, 11, 32),
('H1', 337, 11, 33),
('H1', 338, 11, 34),
('H1', 339, 11, 35),
('H1', 340, 11, 36),
('H1', 341, 1, 11),
('H1', 342, 1, 12),
('H1', 343, 50, 1),
('H1', 344, 50, 2),
('H1', 345, 51, 1),
('H1', 346, 51, 2),
('H1', 347, 51, 3),
('H1', 348, 51, 4),
('H1', 349, 52, 1),
('H1', 350, 52, 2),
('H1', 351, 52, 3),
('H1', 352, 52, 4),
('H1', 353, 53, 1),
('H1', 354, 53, 2),
('H1', 355, 53, 3),
('H1', 356, 53, 4),
('H1', 357, 54, 1),
('H1', 358, 54, 2),
('H1', 359, 55, 1),
('H1', 360, 55, 2),
('H1', 361, 56, 1),
('H1', 362, 56, 2),
('H1', 363, 56, 3),
('H1', 364, 56, 4),
('H1', 365, 56, 5),
('H1', 366, 57, 1),
('H1', 367, 57, 2),
('H1', 368, 57, 3),
('H1', 369, 57, 4),
('H1', 370, 57, 5),
('H1', 371, 57, 6),
('H1', 372, 58, 1),
('H1', 373, 58, 2),
('H1', 374, 58, 3),
('H1', 375, 58, 4),
('H1', 376, 59, 1),
('H1', 377, 59, 2),
('H1', 378, 59, 3),
('H1', 379, 59, 4),
('H1', 380, 60, 1),
('H1', 381, 60, 2),
('H1', 382, 60, 3),
('H1', 383, 60, 4),
('H1', 384, 60, 5),
('H1', 385, 61, 1),
('H1', 386, 61, 2),
('H1', 387, 61, 3),
('H1', 388, 61, 4),
('H1', 389, 62, 1),
('H1', 390, 62, 2),
('H1', 391, 62, 3),
('H1', 392, 62, 4),
('H1', 393, 63, 1),
('H1', 394, 63, 2),
('H1', 395, 63, 3),
('H1', 396, 63, 4),
('H1', 397, 63, 5),
('H1', 398, 32, 1),
('H1', 399, 32, 2),
('H1', 400, 32, 3),
('H1', 401, 32, 4),
('H1', 402, 32, 5),
('H1', 403, 34, 1),
('H1', 404, 34, 2),
('H1', 405, 34, 3),
('H1', 406, 34, 4),
('H1', 407, 64, 1),
('H1', 408, 64, 2),
('H1', 409, 65, 1),
('H1', 410, 65, 2),
('H1', 411, 66, 1),
('H1', 412, 66, 2),
('H1', 413, 66, 3),
('H1', 414, 67, 1),
('H1', 415, 67, 2),
('H1', 416, 67, 3),
('H1', 417, 67, 4),
('H1', 418, 68, 1),
('H1', 419, 68, 2),
('H1', 420, 68, 3),
('H1', 421, 68, 4),
('H1', 422, 69, 1),
('H1', 423, 69, 2),
('H1', 424, 69, 3),
('H1', 425, 69, 4),
('H1', 426, 70, 1),
('H1', 427, 70, 2),
('H1', 428, 70, 3),
('H1', 429, 70, 4),
('H1', 430, 70, 5),
('H1', 431, 71, 1),
('H1', 432, 71, 2),
('H1', 433, 72, 1),
('H1', 434, 72, 2),
('H1', 435, 72, 3),
('H1', 436, 72, 4),
('H1', 437, 73, 1),
('H1', 438, 73, 2),
('H1', 439, 73, 3),
('H1', 440, 73, 4),
('H1', 441, 71, 1),
('H1', 442, 74, 1),
('H1', 443, 74, 2),
('H1', 444, 74, 3),
('H1', 445, 74, 4),
('H1', 446, 74, 5),
('H1', 447, 74, 6),
('H1', 448, 63, 1),
('H1', 449, 63, 2),
('H1', 450, 63, 3),
('H1', 451, 75, 1),
('H1', 452, 75, 2),
('H1', 453, 75, 3),
('H1', 454, 75, 4),
('H1', 455, 75, 5),
('H1', 456, 75, 6),
('H1', 457, 76, 1),
('H1', 458, 76, 2),
('H1', 459, 76, 3),
('H1', 460, 76, 4),
('H1', 461, 76, 5),
('H1', 462, 76, 6),
('H1', 463, 76, 7),
('H1', 464, 77, 1),
('H1', 465, 77, 2),
('H1', 466, 78, 1),
('H1', 467, 78, 2),
('H1', 468, 78, 3),
('H1', 469, 79, 1),
('H1', 470, 79, 2),
('H1', 471, 79, 3),
('H1', 472, 79, 4),
('H1', 473, 80, 1),
('H1', 474, 80, 2),
('H1', 475, 80, 3),
('H1', 476, 80, 4),
('H1', 477, 81, 1),
('H1', 478, 81, 2),
('H1', 479, 82, 1),
('H1', 480, 82, 2),
('H1', 481, 82, 3),
('H1', 482, 82, 4),
('H1', 483, 82, 5),
('H1', 484, 83, 1),
('H1', 485, 83, 2),
('H1', 486, 83, 3),
('H1', 487, 84, 1),
('H1', 488, 84, 2),
('H1', 489, 84, 3),
('H1', 490, 84, 4),
('H1', 491, 84, 5),
('H1', 492, 85, 1),
('H1', 493, 85, 1),
('H1', 494, 86, 1),
('H1', 495, 86, 2),
('H1', 496, 86, 3),
('H1', 497, 87, 1),
('H1', 498, 87, 2),
('H1', 499, 87, 3),
('H1', 500, 88, 1),
('H1', 501, 89, 1),
('H1', 502, 90, 1),
('H1', 503, 90, 2),
('H1', 504, 90, 3),
('H1', 505, 91, 1),
('H1', 506, 91, 2),
('H1', 507, 91, 3),
('H1', 508, 91, 4),
('H1', 509, 91, 5),
('H1', 510, 92, 1),
('H1', 511, 92, 2),
('H1', 512, 92, 3),
('H1', 513, 92, 4),
('H1', 514, 93, 1),
('H1', 515, 93, 2),
('H1', 516, 93, 3),
('H1', 517, 93, 4),
('H1', 518, 93, 5),
('H2', 1, 1, 0),
('H2', 2, 1, 1),
('H2', 3, 1, 2),
('H2', 4, 1, 3),
('H2', 5, 1, 4),
('H2', 6, 1, 5),
('H2', 7, 1, 6),
('H2', 8, 1, 7),
('H2', 9, 1, 8),
('H2', 10, 1, 9),
('H2', 11, 1, 10),
('H2', 12, 2, 0),
('H2', 13, 2, 1),
('H2', 14, 3, 0),
('H2', 15, 3, 1),
('H2', 16, 3, 2),
('H2', 17, 3, 3),
('H2', 18, 3, 4),
('H2', 19, 3, 5),
('H2', 20, 4, 0),
('H2', 21, 4, 1),
('H2', 22, 4, 2),
('H2', 23, 4, 3),
('H2', 24, 4, 4),
('H2', 25, 4, 5),
('H2', 26, 4, 6),
('H2', 27, 4, 7),
('H2', 28, 4, 8),
('H2', 29, 4, 9),
('H2', 30, 4, 10),
('H2', 31, 4, 11),
('H2', 32, 4, 12),
('H2', 33, 5, 0),
('H2', 34, 5, 1),
('H2', 35, 5, 2),
('H2', 36, 5, 3),
('H2', 37, 5, 4),
('H2', 38, 6, 0),
('H2', 39, 6, 1),
('H2', 40, 6, 2),
('H2', 41, 7, 0),
('H2', 42, 7, 1),
('H2', 43, 7, 2),
('H2', 44, 7, 3),
('H2', 45, 7, 4),
('H2', 46, 8, 0),
('H2', 47, 9, 0),
('H2', 48, 9, 1),
('H2', 49, 9, 2),
('H2', 50, 9, 3),
('H2', 51, 10, 0),
('H2', 52, 10, 1),
('H2', 53, 10, 2),
('H2', 54, 10, 3),
('H2', 55, 10, 4),
('H2', 56, 10, 5),
('H2', 57, 10, 6),
('H2', 58, 10, 7),
('H2', 59, 10, 8),
('H2', 60, 11, 0),
('H2', 61, 11, 1),
('H2', 62, 11, 2),
('H2', 63, 11, 3),
('H2', 64, 11, 4),
('H2', 65, 11, 5),
('H2', 66, 11, 6),
('H2', 67, 11, 7),
('H2', 68, 11, 8),
('H2', 69, 11, 9),
('H2', 70, 11, 10),
('H2', 71, 11, 11),
('H2', 72, 11, 12),
('H2', 73, 11, 13),
('H2', 74, 11, 14),
('H2', 75, 11, 15),
('H2', 76, 11, 16),
('H2', 77, 11, 17),
('H2', 78, 11, 18),
('H2', 79, 11, 19),
('H2', 80, 11, 20),
('H2', 81, 11, 21),
('H2', 82, 11, 22),
('H2', 83, 11, 23),
('H2', 84, 11, 24),
('H2', 85, 11, 25),
('H2', 86, 11, 26),
('H2', 87, 11, 27),
('H2', 88, 11, 28),
('H2', 89, 11, 29),
('H2', 90, 11, 30),
('H2', 91, 11, 31),
('H2', 92, 12, 0),
('H2', 93, 12, 1),
('H2', 94, 12, 2),
('H2', 95, 12, 3),
('H2', 96, 12, 4),
('H2', 97, 12, 5),
('H2', 98, 13, 0),
('H2', 99, 13, 1),
('H2', 100, 13, 2),
('H2', 101, 13, 3),
('H2', 102, 13, 4),
('H2', 103, 13, 5),
('H2', 104, 13, 6),
('H2', 105, 13, 7),
('H2', 106, 13, 8),
('H2', 107, 13, 9),
('H2', 108, 13, 10),
('H2', 109, 13, 11),
('H2', 110, 13, 12),
('H2', 111, 14, 0),
('H2', 112, 14, 1),
('H2', 113, 14, 2),
('H2', 114, 14, 3),
('H2', 115, 14, 4),
('H2', 116, 14, 5),
('H2', 117, 14, 6),
('H2', 118, 14, 7),
('H2', 119, 14, 8),
('H2', 120, 14, 9),
('H2', 121, 14, 10),
('H2', 122, 14, 11),
('H2', 123, 15, 0),
('H2', 124, 15, 1),
('H2', 125, 15, 2),
('H2', 126, 15, 3),
('H2', 127, 16, 0),
('H2', 128, 16, 1),
('H2', 129, 16, 2),
('H2', 130, 17, 0),
('H2', 131, 17, 1),
('H2', 132, 17, 2),
('H2', 133, 17, 3),
('H2', 134, 17, 4),
('H2', 135, 18, 0),
('H2', 136, 18, 1),
('H2', 137, 18, 2),
('H2', 138, 18, 3),
('H2', 139, 19, 0),
('H2', 140, 19, 1),
('H2', 141, 19, 2),
('H2', 142, 19, 3),
('H2', 143, 19, 4),
('H2', 144, 20, 0),
('H2', 145, 20, 1),
('H2', 146, 20, 2),
('H2', 147, 20, 3),
('H2', 148, 20, 4),
('H2', 149, 20, 5),
('H2', 150, 21, 0),
('H2', 151, 21, 1),
('H2', 152, 21, 2),
('H2', 153, 21, 3),
('H2', 154, 21, 4),
('H2', 155, 21, 5),
('H2', 156, 21, 6),
('H2', 157, 21, 7),
('H2', 158, 21, 8),
('H2', 159, 21, 9),
('H2', 160, 22, 0),
('H2', 161, 22, 1),
('H2', 162, 22, 2),
('H2', 163, 22, 3),
('H2', 164, 22, 4),
('H2', 165, 22, 5),
('H2', 166, 23, 0),
('H2', 167, 23, 1),
('H2', 168, 23, 2),
('H2', 169, 23, 3),
('H2', 170, 24, 0),
('H2', 171, 24, 1),
('H2', 172, 24, 2),
('H2', 173, 25, 0),
('H2', 174, 25, 1),
('H2', 175, 25, 2),
('H2', 176, 25, 3),
('H2', 177, 25, 4),
('H2', 178, 25, 5),
('H2', 179, 26, 0),
('H2', 180, 26, 1),
('H2', 181, 26, 2),
('H2', 182, 27, 0),
('H2', 183, 27, 1),
('H2', 184, 27, 2),
('H2', 185, 27, 3),
('H2', 186, 28, 0),
('H2', 187, 28, 1),
('H2', 188, 28, 2),
('H2', 189, 28, 3),
('H2', 190, 29, 0),
('H2', 191, 29, 1),
('H2', 192, 29, 2),
('H2', 193, 29, 3),
('H2', 194, 30, 0),
('H2', 195, 30, 1),
('H2', 196, 30, 2),
('H2', 197, 30, 3),
('H2', 198, 30, 4),
('H2', 199, 30, 5),
('H2', 200, 30, 6),
('H2', 201, 30, 7),
('H2', 202, 30, 8),
('H2', 203, 30, 9),
('H2', 204, 30, 10),
('H2', 205, 30, 11),
('H2', 206, 30, 12),
('H2', 207, 30, 13),
('H2', 208, 30, 14),
('H2', 209, 30, 15),
('H2', 210, 31, 1),
('H2', 211, 31, 2),
('H2', 212, 31, 3),
('H2', 213, 31, 4),
('H2', 214, 32, 1),
('H2', 215, 32, 2),
('H2', 216, 32, 3),
('H2', 217, 32, 4),
('H2', 218, 32, 5),
('H2', 219, 32, 6),
('H2', 220, 33, 1),
('H2', 221, 33, 2),
('H2', 222, 33, 3),
('H2', 223, 34, 1),
('H2', 224, 34, 2),
('H2', 225, 34, 3),
('H2', 226, 35, 1),
('H2', 227, 35, 2),
('H2', 228, 35, 3),
('H2', 229, 36, 1),
('H2', 230, 36, 2),
('H2', 231, 36, 3),
('H2', 232, 36, 4),
('H2', 233, 36, 5),
('H2', 234, 36, 6),
('H2', 235, 37, 1),
('H2', 236, 37, 2),
('H2', 237, 38, 1),
('H2', 238, 38, 2),
('H2', 239, 38, 3),
('H2', 240, 38, 4),
('H2', 241, 39, 1),
('H2', 242, 39, 2),
('H2', 243, 39, 3),
('H2', 244, 39, 4),
('H2', 245, 40, 1),
('H2', 246, 40, 2),
('H2', 247, 40, 3),
('H2', 248, 40, 4),
('H2', 249, 41, 1),
('H2', 250, 41, 2),
('H2', 251, 41, 3),
('H2', 252, 41, 4),
('H2', 253, 41, 5),
('H2', 254, 41, 6),
('H2', 255, 41, 7),
('H2', 256, 41, 8),
('H2', 257, 41, 9),
('H2', 258, 41, 10),
('H2', 259, 41, 11),
('H2', 260, 42, 1),
('H2', 261, 42, 2),
('H2', 262, 42, 3),
('H2', 263, 42, 4),
('H2', 264, 42, 5),
('H2', 265, 42, 6),
('H2', 266, 42, 7),
('H2', 267, 42, 8),
('H2', 268, 42, 9),
('H2', 269, 43, 1),
('H2', 270, 43, 2),
('H2', 271, 43, 3),
('H2', 272, 43, 4),
('H2', 273, 44, 1),
('H2', 274, 44, 2),
('H2', 275, 44, 3),
('H2', 276, 44, 4),
('H2', 277, 45, 1),
('H2', 278, 45, 2),
('H2', 279, 45, 3),
('H2', 280, 45, 4),
('H2', 281, 45, 5),
('H2', 282, 45, 6),
('H2', 283, 45, 7),
('H2', 284, 45, 8),
('H2', 285, 45, 9),
('H2', 286, 45, 10),
('H2', 287, 45, 11),
('H2', 288, 12, 1),
('H2', 289, 46, 1),
('H2', 290, 46, 2),
('H2', 291, 46, 3),
('H2', 292, 46, 4),
('H2', 293, 46, 5),
('H2', 294, 46, 6),
('H2', 295, 2, 1),
('H2', 296, 47, 1),
('H2', 297, 47, 2),
('H2', 298, 47, 3),
('H2', 299, 48, 1),
('H2', 300, 48, 2),
('H2', 303, 49, 1),
('H2', 304, 49, 2),
('H2', 305, 19, 5),
('H2', 306, 19, 6),
('H2', 307, 19, 7),
('H2', 308, 19, 8),
('H2', 309, 19, 9),
('H2', 310, 19, 10),
('H2', 311, 19, 11),
('H2', 312, 21, 10),
('H2', 313, 21, 11),
('H2', 314, 21, 12),
('H2', 315, 21, 13),
('H2', 316, 21, 14),
('H2', 317, 21, 15),
('H2', 327, 14, 12),
('H2', 328, 14, 13),
('H2', 329, 14, 14),
('H2', 330, 14, 15),
('H2', 331, 14, 16),
('H2', 332, 14, 17),
('H2', 333, 20, 6),
('H2', 334, 20, 7),
('H2', 335, 20, 8),
('H2', 336, 11, 32),
('H2', 337, 11, 33),
('H2', 338, 11, 34),
('H2', 339, 11, 35),
('H2', 340, 11, 36),
('H2', 341, 1, 11),
('H2', 342, 1, 12),
('H2', 343, 50, 1),
('H2', 344, 50, 2),
('H2', 345, 51, 1),
('H2', 346, 51, 2),
('H2', 347, 51, 3),
('H2', 348, 51, 4),
('H2', 349, 52, 1),
('H2', 350, 52, 2),
('H2', 351, 52, 3),
('H2', 352, 52, 4),
('H2', 353, 53, 1),
('H2', 354, 53, 2),
('H2', 355, 53, 3),
('H2', 356, 53, 4),
('H2', 357, 54, 1),
('H2', 358, 54, 2),
('H2', 359, 55, 1),
('H2', 360, 55, 2),
('H2', 361, 56, 1),
('H2', 362, 56, 2),
('H2', 363, 56, 3),
('H2', 364, 56, 4),
('H2', 365, 56, 5),
('H2', 366, 57, 1),
('H2', 367, 57, 2),
('H2', 368, 57, 3),
('H2', 369, 57, 4),
('H2', 370, 57, 5),
('H2', 371, 57, 6),
('H2', 372, 58, 1),
('H2', 373, 58, 2),
('H2', 374, 58, 3),
('H2', 375, 58, 4),
('H2', 376, 59, 1),
('H2', 377, 59, 2),
('H2', 378, 59, 3),
('H2', 379, 59, 4),
('H2', 380, 60, 1),
('H2', 381, 60, 2),
('H2', 382, 60, 3),
('H2', 383, 60, 4),
('H2', 384, 60, 5),
('H2', 385, 61, 1),
('H2', 386, 61, 2),
('H2', 387, 61, 3),
('H2', 388, 61, 4),
('H2', 389, 62, 1),
('H2', 390, 62, 2),
('H2', 391, 62, 3),
('H2', 392, 62, 4),
('H2', 393, 63, 1),
('H2', 394, 63, 2),
('H2', 395, 63, 3),
('H2', 396, 63, 4),
('H2', 397, 63, 5),
('H2', 398, 32, 1),
('H2', 399, 32, 2),
('H2', 400, 32, 3),
('H2', 401, 32, 4),
('H2', 402, 32, 5),
('H2', 403, 34, 1),
('H2', 404, 34, 2),
('H2', 405, 34, 3),
('H2', 406, 34, 4),
('H2', 407, 64, 1),
('H2', 408, 64, 2),
('H2', 409, 65, 1),
('H2', 410, 65, 2),
('H2', 411, 66, 1),
('H2', 412, 66, 2),
('H2', 413, 66, 3),
('H2', 414, 67, 1),
('H2', 415, 67, 2),
('H2', 416, 67, 3),
('H2', 417, 67, 4),
('H2', 418, 68, 1),
('H2', 419, 68, 2),
('H2', 420, 68, 3),
('H2', 421, 68, 4),
('H2', 422, 69, 1),
('H2', 423, 69, 2),
('H2', 424, 69, 3),
('H2', 425, 69, 4),
('H2', 426, 70, 1),
('H2', 427, 70, 2),
('H2', 428, 70, 3),
('H2', 429, 70, 4),
('H2', 430, 70, 5),
('H2', 431, 71, 1),
('H2', 432, 71, 2),
('H2', 433, 72, 1),
('H2', 434, 72, 2),
('H2', 435, 72, 3),
('H2', 436, 72, 4),
('H2', 437, 73, 1),
('H2', 438, 73, 2),
('H2', 439, 73, 3),
('H2', 440, 73, 4),
('H2', 441, 71, 1),
('H2', 442, 74, 1),
('H2', 443, 74, 2),
('H2', 444, 74, 3),
('H2', 445, 74, 4),
('H2', 446, 74, 5),
('H2', 447, 74, 6),
('H2', 448, 63, 1),
('H2', 449, 63, 2),
('H2', 450, 63, 3),
('H2', 451, 75, 1),
('H2', 452, 75, 2),
('H2', 453, 75, 3),
('H2', 454, 75, 4),
('H2', 455, 75, 5),
('H2', 456, 75, 6),
('H2', 457, 76, 1),
('H2', 458, 76, 2),
('H2', 459, 76, 3),
('H2', 460, 76, 4),
('H2', 461, 76, 5),
('H2', 462, 76, 6),
('H2', 463, 76, 7),
('H2', 464, 77, 1),
('H2', 465, 77, 2),
('H2', 466, 78, 1),
('H2', 467, 78, 2),
('H2', 468, 78, 3),
('H2', 469, 79, 1),
('H2', 470, 79, 2),
('H2', 471, 79, 3),
('H2', 472, 79, 4),
('H2', 473, 80, 1),
('H2', 474, 80, 2),
('H2', 475, 80, 3),
('H2', 476, 80, 4),
('H2', 477, 81, 1),
('H2', 478, 81, 2),
('H2', 479, 82, 1),
('H2', 480, 82, 2),
('H2', 481, 82, 3),
('H2', 482, 82, 4),
('H2', 483, 82, 5),
('H2', 484, 83, 1),
('H2', 485, 83, 2),
('H2', 486, 83, 3),
('H2', 487, 84, 1),
('H2', 488, 84, 2),
('H2', 489, 84, 3),
('H2', 490, 84, 4),
('H2', 491, 84, 5),
('H2', 492, 85, 1),
('H2', 493, 85, 1),
('H2', 494, 86, 1),
('H2', 495, 86, 2),
('H2', 496, 86, 3),
('H2', 497, 87, 1),
('H2', 498, 87, 2),
('H2', 499, 87, 3),
('H2', 500, 88, 1),
('H2', 501, 89, 1),
('H2', 502, 90, 1),
('H2', 503, 90, 2),
('H2', 504, 90, 3),
('H2', 505, 91, 1),
('H2', 506, 91, 2),
('H2', 507, 91, 3),
('H2', 508, 91, 4),
('H2', 509, 91, 5),
('H2', 510, 92, 1),
('H2', 511, 92, 2),
('H2', 512, 92, 3),
('H2', 513, 92, 4),
('H2', 514, 93, 1),
('H2', 515, 93, 2),
('H2', 516, 93, 3),
('H2', 517, 93, 4),
('H2', 518, 93, 5),
('H29', 1, 1, 0),
('H29', 2, 1, 1),
('H29', 3, 1, 2),
('H29', 4, 1, 3),
('H29', 5, 1, 4),
('H29', 6, 1, 5),
('H29', 7, 1, 6),
('H29', 8, 1, 7),
('H29', 9, 1, 8),
('H29', 10, 1, 9),
('H29', 11, 1, 10),
('H29', 12, 2, 0),
('H29', 13, 2, 1),
('H29', 14, 3, 0),
('H29', 15, 3, 1),
('H29', 16, 3, 2),
('H29', 17, 3, 3),
('H29', 18, 3, 4),
('H29', 19, 3, 5),
('H29', 20, 4, 0),
('H29', 21, 4, 1),
('H29', 22, 4, 2),
('H29', 23, 4, 3),
('H29', 24, 4, 4),
('H29', 25, 4, 5),
('H29', 26, 4, 6),
('H29', 27, 4, 7),
('H29', 28, 4, 8),
('H29', 29, 4, 9),
('H29', 30, 4, 10),
('H29', 31, 4, 11),
('H29', 32, 4, 12),
('H29', 33, 5, 0),
('H29', 34, 5, 1),
('H29', 35, 5, 2),
('H29', 36, 5, 3),
('H29', 37, 5, 4),
('H29', 38, 6, 0),
('H29', 39, 6, 1),
('H29', 40, 6, 2),
('H29', 41, 7, 0),
('H29', 42, 7, 1),
('H29', 43, 7, 2),
('H29', 44, 7, 3),
('H29', 45, 7, 4),
('H29', 46, 8, 0),
('H29', 47, 9, 0),
('H29', 48, 9, 1),
('H29', 49, 9, 2),
('H29', 50, 9, 3),
('H29', 51, 10, 0),
('H29', 52, 10, 1),
('H29', 53, 10, 2),
('H29', 54, 10, 3),
('H29', 55, 10, 4),
('H29', 56, 10, 5),
('H29', 57, 10, 6),
('H29', 58, 10, 7),
('H29', 59, 10, 8),
('H29', 60, 11, 0),
('H29', 61, 11, 1),
('H29', 62, 11, 2),
('H29', 63, 11, 3),
('H29', 64, 11, 4),
('H29', 65, 11, 5),
('H29', 66, 11, 6),
('H29', 67, 11, 7),
('H29', 68, 11, 8),
('H29', 69, 11, 9),
('H29', 70, 11, 10),
('H29', 71, 11, 11),
('H29', 72, 11, 12),
('H29', 73, 11, 13),
('H29', 74, 11, 14),
('H29', 75, 11, 15),
('H29', 76, 11, 16),
('H29', 77, 11, 17),
('H29', 78, 11, 18),
('H29', 79, 11, 19),
('H29', 80, 11, 20),
('H29', 81, 11, 21),
('H29', 82, 11, 22),
('H29', 83, 11, 23),
('H29', 84, 11, 24),
('H29', 85, 11, 25),
('H29', 86, 11, 26),
('H29', 87, 11, 27),
('H29', 88, 11, 28),
('H29', 89, 11, 29),
('H29', 90, 11, 30),
('H29', 91, 11, 31),
('H29', 92, 12, 0),
('H29', 93, 12, 1),
('H29', 94, 12, 2),
('H29', 95, 12, 3),
('H29', 96, 12, 4),
('H29', 97, 12, 5),
('H29', 98, 13, 0),
('H29', 99, 13, 1),
('H29', 100, 13, 2),
('H29', 101, 13, 3),
('H29', 102, 13, 4),
('H29', 103, 13, 5),
('H29', 104, 13, 6),
('H29', 105, 13, 7),
('H29', 106, 13, 8),
('H29', 107, 13, 9),
('H29', 108, 13, 10),
('H29', 109, 13, 11),
('H29', 110, 13, 12),
('H29', 111, 14, 0),
('H29', 112, 14, 1),
('H29', 113, 14, 2),
('H29', 114, 14, 3),
('H29', 115, 14, 4),
('H29', 116, 14, 5),
('H29', 117, 14, 6),
('H29', 118, 14, 7),
('H29', 119, 14, 8),
('H29', 120, 14, 9),
('H29', 121, 14, 10),
('H29', 122, 14, 11),
('H29', 123, 15, 0),
('H29', 124, 15, 1),
('H29', 125, 15, 2),
('H29', 126, 15, 3),
('H29', 127, 16, 0),
('H29', 128, 16, 1),
('H29', 129, 16, 2),
('H29', 130, 17, 0),
('H29', 131, 17, 1),
('H29', 132, 17, 2),
('H29', 133, 17, 3),
('H29', 134, 17, 4),
('H29', 135, 18, 0),
('H29', 136, 18, 1),
('H29', 137, 18, 2),
('H29', 138, 18, 3),
('H29', 139, 19, 0),
('H29', 140, 19, 1),
('H29', 141, 19, 2),
('H29', 142, 19, 3),
('H29', 143, 19, 4),
('H29', 144, 20, 0),
('H29', 145, 20, 1),
('H29', 146, 20, 2),
('H29', 147, 20, 3),
('H29', 148, 20, 4),
('H29', 149, 20, 5),
('H29', 150, 21, 0),
('H29', 151, 21, 1),
('H29', 152, 21, 2),
('H29', 153, 21, 3),
('H29', 154, 21, 4),
('H29', 155, 21, 5),
('H29', 156, 21, 6),
('H29', 157, 21, 7),
('H29', 158, 21, 8),
('H29', 159, 21, 9),
('H29', 160, 22, 0),
('H29', 161, 22, 1),
('H29', 162, 22, 2),
('H29', 163, 22, 3),
('H29', 164, 22, 4),
('H29', 165, 22, 5),
('H29', 166, 23, 0),
('H29', 167, 23, 1),
('H29', 168, 23, 2),
('H29', 169, 23, 3),
('H29', 170, 24, 0),
('H29', 171, 24, 1),
('H29', 172, 24, 2),
('H29', 173, 25, 0),
('H29', 174, 25, 1),
('H29', 175, 25, 2),
('H29', 176, 25, 3),
('H29', 177, 25, 4),
('H29', 178, 25, 5),
('H29', 179, 26, 0),
('H29', 180, 26, 1),
('H29', 181, 26, 2),
('H29', 182, 27, 0),
('H29', 183, 27, 1),
('H29', 184, 27, 2),
('H29', 185, 27, 3),
('H29', 186, 28, 0),
('H29', 187, 28, 1),
('H29', 188, 28, 2),
('H29', 189, 28, 3),
('H29', 190, 29, 0),
('H29', 191, 29, 1),
('H29', 192, 29, 2),
('H29', 193, 29, 3),
('H29', 194, 30, 0),
('H29', 195, 30, 1),
('H29', 196, 30, 2),
('H29', 197, 30, 3),
('H29', 198, 30, 4),
('H29', 199, 30, 5),
('H29', 200, 30, 6),
('H29', 201, 30, 7),
('H29', 202, 30, 8),
('H29', 203, 30, 9),
('H29', 204, 30, 10),
('H29', 205, 30, 11),
('H29', 206, 30, 12),
('H29', 207, 30, 13),
('H29', 208, 30, 14),
('H29', 209, 30, 15),
('H29', 210, 31, 1),
('H29', 211, 31, 2),
('H29', 212, 31, 3),
('H29', 213, 31, 4),
('H29', 214, 32, 1),
('H29', 215, 32, 2),
('H29', 216, 32, 3),
('H29', 217, 32, 4),
('H29', 218, 32, 5),
('H29', 219, 32, 6),
('H29', 220, 33, 1),
('H29', 221, 33, 2),
('H29', 222, 33, 3),
('H29', 223, 34, 1),
('H29', 224, 34, 2),
('H29', 225, 34, 3),
('H29', 226, 35, 1),
('H29', 227, 35, 2),
('H29', 228, 35, 3),
('H29', 229, 36, 1),
('H29', 230, 36, 2),
('H29', 231, 36, 3),
('H29', 232, 36, 4),
('H29', 233, 36, 5),
('H29', 234, 36, 6),
('H29', 235, 37, 1),
('H29', 236, 37, 2),
('H29', 237, 38, 1),
('H29', 238, 38, 2),
('H29', 239, 38, 3),
('H29', 240, 38, 4),
('H29', 241, 39, 1),
('H29', 242, 39, 2),
('H29', 243, 39, 3),
('H29', 244, 39, 4),
('H29', 245, 40, 1),
('H29', 246, 40, 2),
('H29', 247, 40, 3),
('H29', 248, 40, 4),
('H29', 249, 41, 1),
('H29', 250, 41, 2),
('H29', 251, 41, 3),
('H29', 252, 41, 4),
('H29', 253, 41, 5),
('H29', 254, 41, 6),
('H29', 255, 41, 7),
('H29', 256, 41, 8),
('H29', 257, 41, 9),
('H29', 258, 41, 10),
('H29', 259, 41, 11),
('H29', 260, 42, 1),
('H29', 261, 42, 2),
('H29', 262, 42, 3),
('H29', 263, 42, 4),
('H29', 264, 42, 5),
('H29', 265, 42, 6),
('H29', 266, 42, 7),
('H29', 267, 42, 8),
('H29', 268, 42, 9),
('H29', 269, 43, 1),
('H29', 270, 43, 2),
('H29', 271, 43, 3),
('H29', 272, 43, 4),
('H29', 273, 44, 1),
('H29', 274, 44, 2),
('H29', 275, 44, 3),
('H29', 276, 44, 4),
('H29', 277, 45, 1),
('H29', 278, 45, 2),
('H29', 279, 45, 3),
('H29', 280, 45, 4),
('H29', 281, 45, 5),
('H29', 282, 45, 6),
('H29', 283, 45, 7),
('H29', 284, 45, 8),
('H29', 285, 45, 9),
('H29', 286, 45, 10),
('H29', 287, 45, 11),
('H29', 288, 12, 1),
('H29', 289, 46, 1),
('H29', 290, 46, 2),
('H29', 291, 46, 3),
('H29', 292, 46, 4),
('H29', 293, 46, 5),
('H29', 294, 46, 6),
('H29', 295, 2, 1),
('H29', 296, 47, 1),
('H29', 297, 47, 2),
('H29', 298, 47, 3),
('H29', 299, 48, 1),
('H29', 300, 48, 2),
('H29', 303, 49, 1),
('H29', 304, 49, 2),
('H29', 305, 19, 5),
('H29', 306, 19, 6),
('H29', 307, 19, 7),
('H29', 308, 19, 8),
('H29', 309, 19, 9),
('H29', 310, 19, 10),
('H29', 311, 19, 11),
('H29', 312, 21, 10),
('H29', 313, 21, 11),
('H29', 314, 21, 12),
('H29', 315, 21, 13),
('H29', 316, 21, 14),
('H29', 317, 21, 15),
('H29', 327, 14, 12),
('H29', 328, 14, 13),
('H29', 329, 14, 14),
('H29', 330, 14, 15),
('H29', 331, 14, 16),
('H29', 332, 14, 17),
('H29', 333, 20, 6),
('H29', 334, 20, 7),
('H29', 335, 20, 8),
('H29', 336, 11, 32),
('H29', 337, 11, 33),
('H29', 338, 11, 34),
('H29', 339, 11, 35),
('H29', 340, 11, 36),
('H29', 341, 1, 11),
('H29', 342, 1, 12),
('H29', 343, 50, 1),
('H29', 344, 50, 2),
('H29', 345, 51, 1),
('H29', 346, 51, 2),
('H29', 347, 51, 3),
('H29', 348, 51, 4),
('H29', 349, 52, 1),
('H29', 350, 52, 2),
('H29', 351, 52, 3),
('H29', 352, 52, 4),
('H29', 353, 53, 1),
('H29', 354, 53, 2),
('H29', 355, 53, 3),
('H29', 356, 53, 4),
('H29', 357, 54, 1),
('H29', 358, 54, 2),
('H29', 359, 55, 1),
('H29', 360, 55, 2),
('H29', 361, 56, 1),
('H29', 362, 56, 2),
('H29', 363, 56, 3),
('H29', 364, 56, 4),
('H29', 365, 56, 5),
('H29', 366, 57, 1),
('H29', 367, 57, 2),
('H29', 368, 57, 3),
('H29', 369, 57, 4),
('H29', 370, 57, 5),
('H29', 371, 57, 6),
('H29', 372, 58, 1),
('H29', 373, 58, 2),
('H29', 374, 58, 3),
('H29', 375, 58, 4),
('H29', 376, 59, 1),
('H29', 377, 59, 2),
('H29', 378, 59, 3),
('H29', 379, 59, 4),
('H29', 380, 60, 1),
('H29', 381, 60, 2),
('H29', 382, 60, 3),
('H29', 383, 60, 4),
('H29', 384, 60, 5),
('H29', 385, 61, 1),
('H29', 386, 61, 2),
('H29', 387, 61, 3),
('H29', 388, 61, 4),
('H29', 389, 62, 1),
('H29', 390, 62, 2),
('H29', 391, 62, 3),
('H29', 392, 62, 4),
('H29', 393, 63, 1),
('H29', 394, 63, 2),
('H29', 395, 63, 3),
('H29', 396, 63, 4),
('H29', 397, 63, 5),
('H29', 398, 32, 1),
('H29', 399, 32, 2),
('H29', 400, 32, 3),
('H29', 401, 32, 4),
('H29', 402, 32, 5),
('H29', 403, 34, 1),
('H29', 404, 34, 2),
('H29', 405, 34, 3),
('H29', 406, 34, 4),
('H29', 407, 64, 1),
('H29', 408, 64, 2),
('H29', 409, 65, 1),
('H29', 410, 65, 2),
('H29', 411, 66, 1),
('H29', 412, 66, 2),
('H29', 413, 66, 3),
('H29', 414, 67, 1),
('H29', 415, 67, 2),
('H29', 416, 67, 3),
('H29', 417, 67, 4),
('H29', 418, 68, 1),
('H29', 419, 68, 2),
('H29', 420, 68, 3),
('H29', 421, 68, 4),
('H29', 422, 69, 1),
('H29', 423, 69, 2),
('H29', 424, 69, 3),
('H29', 425, 69, 4),
('H29', 426, 70, 1),
('H29', 427, 70, 2),
('H29', 428, 70, 3),
('H29', 429, 70, 4),
('H29', 430, 70, 5),
('H29', 431, 71, 1),
('H29', 432, 71, 2),
('H29', 433, 72, 1),
('H29', 434, 72, 2),
('H29', 435, 72, 3),
('H29', 436, 72, 4),
('H29', 437, 73, 1),
('H29', 438, 73, 2),
('H29', 439, 73, 3),
('H29', 440, 73, 4),
('H29', 441, 71, 1),
('H29', 442, 74, 1),
('H29', 443, 74, 2),
('H29', 444, 74, 3),
('H29', 445, 74, 4),
('H29', 446, 74, 5),
('H29', 447, 74, 6),
('H29', 448, 63, 1),
('H29', 449, 63, 2),
('H29', 450, 63, 3),
('H29', 451, 75, 1),
('H29', 452, 75, 2),
('H29', 453, 75, 3),
('H29', 454, 75, 4),
('H29', 455, 75, 5),
('H29', 456, 75, 6),
('H29', 457, 76, 1),
('H29', 458, 76, 2),
('H29', 459, 76, 3),
('H29', 460, 76, 4),
('H29', 461, 76, 5),
('H29', 462, 76, 6),
('H29', 463, 76, 7),
('H29', 464, 77, 1),
('H29', 465, 77, 2),
('H29', 466, 78, 1),
('H29', 467, 78, 2),
('H29', 468, 78, 3),
('H29', 469, 79, 1),
('H29', 470, 79, 2),
('H29', 471, 79, 3),
('H29', 472, 79, 4),
('H29', 473, 80, 1),
('H29', 474, 80, 2),
('H29', 475, 80, 3),
('H29', 476, 80, 4),
('H29', 477, 81, 1),
('H29', 478, 81, 2),
('H29', 479, 82, 1),
('H29', 480, 82, 2),
('H29', 481, 82, 3),
('H29', 482, 82, 4),
('H29', 483, 82, 5),
('H29', 484, 83, 1),
('H29', 485, 83, 2),
('H29', 486, 83, 3),
('H29', 487, 84, 1),
('H29', 488, 84, 2),
('H29', 489, 84, 3),
('H29', 490, 84, 4),
('H29', 491, 84, 5),
('H29', 492, 85, 1),
('H29', 493, 85, 1),
('H29', 494, 86, 1),
('H29', 495, 86, 2),
('H29', 496, 86, 3),
('H29', 497, 87, 1),
('H29', 498, 87, 2),
('H29', 499, 87, 3),
('H29', 500, 88, 1),
('H29', 501, 89, 1),
('H29', 502, 90, 1),
('H29', 503, 90, 2),
('H29', 504, 90, 3),
('H29', 505, 91, 1),
('H29', 506, 91, 2),
('H29', 507, 91, 3),
('H29', 508, 91, 4),
('H29', 509, 91, 5),
('H29', 510, 92, 1),
('H29', 511, 92, 2),
('H29', 512, 92, 3),
('H29', 513, 92, 4),
('H29', 514, 93, 1),
('H29', 515, 93, 2),
('H29', 516, 93, 3),
('H29', 517, 93, 4),
('H29', 518, 93, 5),
('H3', 1, 1, 0),
('H3', 2, 1, 1),
('H3', 3, 1, 2),
('H3', 4, 1, 3),
('H3', 5, 1, 4),
('H3', 6, 1, 5),
('H3', 7, 1, 6),
('H3', 8, 1, 7),
('H3', 9, 1, 8),
('H3', 10, 1, 9),
('H3', 11, 1, 10),
('H3', 12, 2, 0),
('H3', 13, 2, 1),
('H3', 14, 3, 0),
('H3', 15, 3, 1),
('H3', 16, 3, 2),
('H3', 17, 3, 3),
('H3', 18, 3, 4),
('H3', 19, 3, 5),
('H3', 20, 4, 0),
('H3', 21, 4, 1),
('H3', 22, 4, 2),
('H3', 23, 4, 3),
('H3', 24, 4, 4),
('H3', 25, 4, 5),
('H3', 26, 4, 6),
('H3', 27, 4, 7),
('H3', 28, 4, 8),
('H3', 29, 4, 9),
('H3', 30, 4, 10),
('H3', 31, 4, 11),
('H3', 32, 4, 12),
('H3', 33, 5, 0),
('H3', 34, 5, 1),
('H3', 35, 5, 2),
('H3', 36, 5, 3),
('H3', 37, 5, 4),
('H3', 38, 6, 0),
('H3', 39, 6, 1),
('H3', 40, 6, 2),
('H3', 41, 7, 0),
('H3', 42, 7, 1),
('H3', 43, 7, 2),
('H3', 44, 7, 3),
('H3', 45, 7, 4),
('H3', 46, 8, 0),
('H3', 47, 9, 0),
('H3', 48, 9, 1),
('H3', 49, 9, 2),
('H3', 50, 9, 3),
('H3', 51, 10, 0),
('H3', 52, 10, 1),
('H3', 53, 10, 2),
('H3', 54, 10, 3),
('H3', 55, 10, 4),
('H3', 56, 10, 5),
('H3', 57, 10, 6),
('H3', 58, 10, 7),
('H3', 59, 10, 8),
('H3', 60, 11, 0),
('H3', 61, 11, 1),
('H3', 62, 11, 2),
('H3', 63, 11, 3),
('H3', 64, 11, 4),
('H3', 65, 11, 5),
('H3', 66, 11, 6),
('H3', 67, 11, 7),
('H3', 68, 11, 8),
('H3', 69, 11, 9),
('H3', 70, 11, 10),
('H3', 71, 11, 11),
('H3', 72, 11, 12),
('H3', 73, 11, 13),
('H3', 74, 11, 14),
('H3', 75, 11, 15),
('H3', 76, 11, 16),
('H3', 77, 11, 17),
('H3', 78, 11, 18),
('H3', 79, 11, 19),
('H3', 80, 11, 20),
('H3', 81, 11, 21),
('H3', 82, 11, 22),
('H3', 83, 11, 23),
('H3', 84, 11, 24),
('H3', 85, 11, 25),
('H3', 86, 11, 26),
('H3', 87, 11, 27),
('H3', 88, 11, 28),
('H3', 89, 11, 29),
('H3', 90, 11, 30),
('H3', 91, 11, 31),
('H3', 92, 12, 0),
('H3', 93, 12, 1),
('H3', 94, 12, 2),
('H3', 95, 12, 3),
('H3', 96, 12, 4),
('H3', 97, 12, 5),
('H3', 98, 13, 0),
('H3', 99, 13, 1),
('H3', 100, 13, 2),
('H3', 101, 13, 3),
('H3', 102, 13, 4),
('H3', 103, 13, 5),
('H3', 104, 13, 6),
('H3', 105, 13, 7),
('H3', 106, 13, 8),
('H3', 107, 13, 9),
('H3', 108, 13, 10),
('H3', 109, 13, 11),
('H3', 110, 13, 12),
('H3', 111, 14, 0),
('H3', 112, 14, 1),
('H3', 113, 14, 2),
('H3', 114, 14, 3),
('H3', 115, 14, 4),
('H3', 116, 14, 5),
('H3', 117, 14, 6),
('H3', 118, 14, 7),
('H3', 119, 14, 8),
('H3', 120, 14, 9),
('H3', 121, 14, 10),
('H3', 122, 14, 11),
('H3', 123, 15, 0),
('H3', 124, 15, 1),
('H3', 125, 15, 2),
('H3', 126, 15, 3),
('H3', 127, 16, 0),
('H3', 128, 16, 1),
('H3', 129, 16, 2),
('H3', 130, 17, 0),
('H3', 131, 17, 1),
('H3', 132, 17, 2),
('H3', 133, 17, 3),
('H3', 134, 17, 4),
('H3', 135, 18, 0),
('H3', 136, 18, 1),
('H3', 137, 18, 2),
('H3', 138, 18, 3),
('H3', 139, 19, 0),
('H3', 140, 19, 1),
('H3', 141, 19, 2),
('H3', 142, 19, 3),
('H3', 143, 19, 4),
('H3', 144, 20, 0),
('H3', 145, 20, 1),
('H3', 146, 20, 2),
('H3', 147, 20, 3),
('H3', 148, 20, 4),
('H3', 149, 20, 5),
('H3', 150, 21, 0),
('H3', 151, 21, 1),
('H3', 152, 21, 2),
('H3', 153, 21, 3),
('H3', 154, 21, 4),
('H3', 155, 21, 5),
('H3', 156, 21, 6),
('H3', 157, 21, 7),
('H3', 158, 21, 8),
('H3', 159, 21, 9),
('H3', 160, 22, 0),
('H3', 161, 22, 1),
('H3', 162, 22, 2),
('H3', 163, 22, 3),
('H3', 164, 22, 4),
('H3', 165, 22, 5),
('H3', 166, 23, 0),
('H3', 167, 23, 1),
('H3', 168, 23, 2),
('H3', 169, 23, 3),
('H3', 170, 24, 0),
('H3', 171, 24, 1),
('H3', 172, 24, 2),
('H3', 173, 25, 0),
('H3', 174, 25, 1),
('H3', 175, 25, 2),
('H3', 176, 25, 3),
('H3', 177, 25, 4),
('H3', 178, 25, 5),
('H3', 179, 26, 0),
('H3', 180, 26, 1),
('H3', 181, 26, 2),
('H3', 182, 27, 0),
('H3', 183, 27, 1),
('H3', 184, 27, 2),
('H3', 185, 27, 3),
('H3', 186, 28, 0),
('H3', 187, 28, 1),
('H3', 188, 28, 2),
('H3', 189, 28, 3),
('H3', 190, 29, 0),
('H3', 191, 29, 1),
('H3', 192, 29, 2),
('H3', 193, 29, 3),
('H3', 194, 30, 0),
('H3', 195, 30, 1),
('H3', 196, 30, 2),
('H3', 197, 30, 3),
('H3', 198, 30, 4),
('H3', 199, 30, 5),
('H3', 200, 30, 6),
('H3', 201, 30, 7),
('H3', 202, 30, 8),
('H3', 203, 30, 9),
('H3', 204, 30, 10),
('H3', 205, 30, 11),
('H3', 206, 30, 12),
('H3', 207, 30, 13),
('H3', 208, 30, 14),
('H3', 209, 30, 15),
('H3', 210, 31, 1),
('H3', 211, 31, 2),
('H3', 212, 31, 3),
('H3', 213, 31, 4),
('H3', 214, 32, 1),
('H3', 215, 32, 2),
('H3', 216, 32, 3),
('H3', 217, 32, 4),
('H3', 218, 32, 5),
('H3', 219, 32, 6),
('H3', 220, 33, 1),
('H3', 221, 33, 2),
('H3', 222, 33, 3),
('H3', 223, 34, 1),
('H3', 224, 34, 2),
('H3', 225, 34, 3),
('H3', 226, 35, 1),
('H3', 227, 35, 2),
('H3', 228, 35, 3),
('H3', 229, 36, 1),
('H3', 230, 36, 2),
('H3', 231, 36, 3),
('H3', 232, 36, 4),
('H3', 233, 36, 5),
('H3', 234, 36, 6),
('H3', 235, 37, 1),
('H3', 236, 37, 2),
('H3', 237, 38, 1),
('H3', 238, 38, 2),
('H3', 239, 38, 3),
('H3', 240, 38, 4),
('H3', 241, 39, 1),
('H3', 242, 39, 2),
('H3', 243, 39, 3),
('H3', 244, 39, 4),
('H3', 245, 40, 1),
('H3', 246, 40, 2),
('H3', 247, 40, 3),
('H3', 248, 40, 4),
('H3', 249, 41, 1),
('H3', 250, 41, 2),
('H3', 251, 41, 3),
('H3', 252, 41, 4),
('H3', 253, 41, 5),
('H3', 254, 41, 6),
('H3', 255, 41, 7),
('H3', 256, 41, 8),
('H3', 257, 41, 9),
('H3', 258, 41, 10),
('H3', 259, 41, 11),
('H3', 260, 42, 1),
('H3', 261, 42, 2),
('H3', 262, 42, 3),
('H3', 263, 42, 4),
('H3', 264, 42, 5),
('H3', 265, 42, 6),
('H3', 266, 42, 7),
('H3', 267, 42, 8),
('H3', 268, 42, 9),
('H3', 269, 43, 1),
('H3', 270, 43, 2),
('H3', 271, 43, 3),
('H3', 272, 43, 4),
('H3', 273, 44, 1),
('H3', 274, 44, 2),
('H3', 275, 44, 3),
('H3', 276, 44, 4),
('H3', 277, 45, 1),
('H3', 278, 45, 2),
('H3', 279, 45, 3),
('H3', 280, 45, 4),
('H3', 281, 45, 5),
('H3', 282, 45, 6),
('H3', 283, 45, 7),
('H3', 284, 45, 8),
('H3', 285, 45, 9),
('H3', 286, 45, 10),
('H3', 287, 45, 11),
('H3', 288, 12, 1),
('H3', 289, 46, 1),
('H3', 290, 46, 2),
('H3', 291, 46, 3),
('H3', 292, 46, 4),
('H3', 293, 46, 5),
('H3', 294, 46, 6),
('H3', 295, 2, 1),
('H3', 296, 47, 1),
('H3', 297, 47, 2),
('H3', 298, 47, 3),
('H3', 299, 48, 1),
('H3', 300, 48, 2),
('H3', 303, 49, 1),
('H3', 304, 49, 2),
('H3', 305, 19, 5),
('H3', 306, 19, 6),
('H3', 307, 19, 7),
('H3', 308, 19, 8),
('H3', 309, 19, 9),
('H3', 310, 19, 10),
('H3', 311, 19, 11),
('H3', 312, 21, 10),
('H3', 313, 21, 11),
('H3', 314, 21, 12),
('H3', 315, 21, 13),
('H3', 316, 21, 14),
('H3', 317, 21, 15),
('H3', 327, 14, 12),
('H3', 328, 14, 13),
('H3', 329, 14, 14),
('H3', 330, 14, 15),
('H3', 331, 14, 16),
('H3', 332, 14, 17),
('H3', 333, 20, 6),
('H3', 334, 20, 7),
('H3', 335, 20, 8),
('H3', 336, 11, 32),
('H3', 337, 11, 33),
('H3', 338, 11, 34),
('H3', 339, 11, 35),
('H3', 340, 11, 36),
('H3', 341, 1, 11),
('H3', 342, 1, 12),
('H3', 343, 50, 1),
('H3', 344, 50, 2),
('H3', 345, 51, 1),
('H3', 346, 51, 2),
('H3', 347, 51, 3),
('H3', 348, 51, 4),
('H3', 349, 52, 1),
('H3', 350, 52, 2),
('H3', 351, 52, 3),
('H3', 352, 52, 4),
('H3', 353, 53, 1),
('H3', 354, 53, 2),
('H3', 355, 53, 3),
('H3', 356, 53, 4),
('H3', 357, 54, 1),
('H3', 358, 54, 2),
('H3', 359, 55, 1),
('H3', 360, 55, 2),
('H3', 361, 56, 1),
('H3', 362, 56, 2),
('H3', 363, 56, 3),
('H3', 364, 56, 4),
('H3', 365, 56, 5),
('H3', 366, 57, 1),
('H3', 367, 57, 2),
('H3', 368, 57, 3),
('H3', 369, 57, 4),
('H3', 370, 57, 5),
('H3', 371, 57, 6),
('H3', 372, 58, 1),
('H3', 373, 58, 2),
('H3', 374, 58, 3),
('H3', 375, 58, 4),
('H3', 376, 59, 1),
('H3', 377, 59, 2),
('H3', 378, 59, 3),
('H3', 379, 59, 4),
('H3', 380, 60, 1),
('H3', 381, 60, 2),
('H3', 382, 60, 3),
('H3', 383, 60, 4),
('H3', 384, 60, 5),
('H3', 385, 61, 1),
('H3', 386, 61, 2),
('H3', 387, 61, 3),
('H3', 388, 61, 4),
('H3', 389, 62, 1),
('H3', 390, 62, 2),
('H3', 391, 62, 3),
('H3', 392, 62, 4),
('H3', 393, 63, 1),
('H3', 394, 63, 2),
('H3', 395, 63, 3),
('H3', 396, 63, 4),
('H3', 397, 63, 5),
('H3', 398, 32, 1),
('H3', 399, 32, 2),
('H3', 400, 32, 3),
('H3', 401, 32, 4),
('H3', 402, 32, 5),
('H3', 403, 34, 1),
('H3', 404, 34, 2),
('H3', 405, 34, 3),
('H3', 406, 34, 4),
('H3', 407, 64, 1),
('H3', 408, 64, 2),
('H3', 409, 65, 1),
('H3', 410, 65, 2),
('H3', 411, 66, 1),
('H3', 412, 66, 2),
('H3', 413, 66, 3),
('H3', 414, 67, 1),
('H3', 415, 67, 2),
('H3', 416, 67, 3),
('H3', 417, 67, 4),
('H3', 418, 68, 1),
('H3', 419, 68, 2),
('H3', 420, 68, 3),
('H3', 421, 68, 4),
('H3', 422, 69, 1),
('H3', 423, 69, 2),
('H3', 424, 69, 3),
('H3', 425, 69, 4),
('H3', 426, 70, 1),
('H3', 427, 70, 2),
('H3', 428, 70, 3),
('H3', 429, 70, 4),
('H3', 430, 70, 5),
('H3', 431, 71, 1),
('H3', 432, 71, 2),
('H3', 433, 72, 1),
('H3', 434, 72, 2),
('H3', 435, 72, 3),
('H3', 436, 72, 4),
('H3', 437, 73, 1),
('H3', 438, 73, 2),
('H3', 439, 73, 3),
('H3', 440, 73, 4),
('H3', 441, 71, 1),
('H3', 442, 74, 1),
('H3', 443, 74, 2),
('H3', 444, 74, 3),
('H3', 445, 74, 4),
('H3', 446, 74, 5),
('H3', 447, 74, 6),
('H3', 448, 63, 1),
('H3', 449, 63, 2),
('H3', 450, 63, 3),
('H3', 451, 75, 1),
('H3', 452, 75, 2),
('H3', 453, 75, 3),
('H3', 454, 75, 4),
('H3', 455, 75, 5),
('H3', 456, 75, 6),
('H3', 457, 76, 1),
('H3', 458, 76, 2),
('H3', 459, 76, 3),
('H3', 460, 76, 4),
('H3', 461, 76, 5),
('H3', 462, 76, 6),
('H3', 463, 76, 7),
('H3', 464, 77, 1),
('H3', 465, 77, 2),
('H3', 466, 78, 1),
('H3', 467, 78, 2),
('H3', 468, 78, 3),
('H3', 469, 79, 1),
('H3', 470, 79, 2),
('H3', 471, 79, 3),
('H3', 472, 79, 4),
('H3', 473, 80, 1),
('H3', 474, 80, 2),
('H3', 475, 80, 3),
('H3', 476, 80, 4),
('H3', 477, 81, 1),
('H3', 478, 81, 2),
('H3', 479, 82, 1),
('H3', 480, 82, 2),
('H3', 481, 82, 3),
('H3', 482, 82, 4),
('H3', 483, 82, 5),
('H3', 484, 83, 1),
('H3', 485, 83, 2),
('H3', 486, 83, 3),
('H3', 487, 84, 1),
('H3', 488, 84, 2),
('H3', 489, 84, 3),
('H3', 490, 84, 4),
('H3', 491, 84, 5),
('H3', 492, 85, 1),
('H3', 493, 85, 1),
('H3', 494, 86, 1),
('H3', 495, 86, 2),
('H3', 496, 86, 3),
('H3', 497, 87, 1),
('H3', 498, 87, 2),
('H3', 499, 87, 3),
('H3', 500, 88, 1),
('H3', 501, 89, 1),
('H3', 502, 90, 1),
('H3', 503, 90, 2),
('H3', 504, 90, 3),
('H3', 505, 91, 1),
('H3', 506, 91, 2),
('H3', 507, 91, 3),
('H3', 508, 91, 4),
('H3', 509, 91, 5),
('H3', 510, 92, 1),
('H3', 511, 92, 2),
('H3', 512, 92, 3),
('H3', 513, 92, 4),
('H3', 514, 93, 1),
('H3', 515, 93, 2),
('H3', 516, 93, 3),
('H3', 517, 93, 4),
('H3', 518, 93, 5),
('H30', 1, 1, 0),
('H30', 2, 1, 1),
('H30', 3, 1, 2),
('H30', 4, 1, 3),
('H30', 5, 1, 4),
('H30', 6, 1, 5),
('H30', 7, 1, 6),
('H30', 8, 1, 7),
('H30', 9, 1, 8),
('H30', 10, 1, 9),
('H30', 11, 1, 10),
('H30', 12, 2, 0),
('H30', 13, 2, 1),
('H30', 14, 3, 0),
('H30', 15, 3, 1),
('H30', 16, 3, 2),
('H30', 17, 3, 3),
('H30', 18, 3, 4),
('H30', 19, 3, 5),
('H30', 20, 4, 0),
('H30', 21, 4, 1),
('H30', 22, 4, 2),
('H30', 23, 4, 3),
('H30', 24, 4, 4),
('H30', 25, 4, 5),
('H30', 26, 4, 6),
('H30', 27, 4, 7),
('H30', 28, 4, 8),
('H30', 29, 4, 9),
('H30', 30, 4, 10),
('H30', 31, 4, 11),
('H30', 32, 4, 12),
('H30', 33, 5, 0),
('H30', 34, 5, 1),
('H30', 35, 5, 2),
('H30', 36, 5, 3),
('H30', 37, 5, 4),
('H30', 38, 6, 0),
('H30', 39, 6, 1),
('H30', 40, 6, 2),
('H30', 41, 7, 0),
('H30', 42, 7, 1),
('H30', 43, 7, 2),
('H30', 44, 7, 3),
('H30', 45, 7, 4),
('H30', 46, 8, 0),
('H30', 47, 9, 0),
('H30', 48, 9, 1),
('H30', 49, 9, 2),
('H30', 50, 9, 3),
('H30', 51, 10, 0),
('H30', 52, 10, 1),
('H30', 53, 10, 2),
('H30', 54, 10, 3),
('H30', 55, 10, 4),
('H30', 56, 10, 5),
('H30', 57, 10, 6),
('H30', 58, 10, 7),
('H30', 59, 10, 8),
('H30', 60, 11, 0),
('H30', 61, 11, 1),
('H30', 62, 11, 2),
('H30', 63, 11, 3),
('H30', 64, 11, 4),
('H30', 65, 11, 5),
('H30', 66, 11, 6),
('H30', 67, 11, 7),
('H30', 68, 11, 8),
('H30', 69, 11, 9),
('H30', 70, 11, 10),
('H30', 71, 11, 11),
('H30', 72, 11, 12),
('H30', 73, 11, 13),
('H30', 74, 11, 14),
('H30', 75, 11, 15),
('H30', 76, 11, 16),
('H30', 77, 11, 17),
('H30', 78, 11, 18),
('H30', 79, 11, 19),
('H30', 80, 11, 20),
('H30', 81, 11, 21),
('H30', 82, 11, 22),
('H30', 83, 11, 23),
('H30', 84, 11, 24),
('H30', 85, 11, 25),
('H30', 86, 11, 26),
('H30', 87, 11, 27),
('H30', 88, 11, 28),
('H30', 89, 11, 29),
('H30', 90, 11, 30),
('H30', 91, 11, 31),
('H30', 92, 12, 0),
('H30', 93, 12, 1),
('H30', 94, 12, 2),
('H30', 95, 12, 3),
('H30', 96, 12, 4),
('H30', 97, 12, 5),
('H30', 98, 13, 0),
('H30', 99, 13, 1),
('H30', 100, 13, 2),
('H30', 101, 13, 3),
('H30', 102, 13, 4),
('H30', 103, 13, 5),
('H30', 104, 13, 6),
('H30', 105, 13, 7),
('H30', 106, 13, 8),
('H30', 107, 13, 9),
('H30', 108, 13, 10),
('H30', 109, 13, 11),
('H30', 110, 13, 12),
('H30', 111, 14, 0),
('H30', 112, 14, 1),
('H30', 113, 14, 2),
('H30', 114, 14, 3),
('H30', 115, 14, 4),
('H30', 116, 14, 5),
('H30', 117, 14, 6),
('H30', 118, 14, 7),
('H30', 119, 14, 8),
('H30', 120, 14, 9),
('H30', 121, 14, 10),
('H30', 122, 14, 11),
('H30', 123, 15, 0),
('H30', 124, 15, 1),
('H30', 125, 15, 2),
('H30', 126, 15, 3),
('H30', 127, 16, 0),
('H30', 128, 16, 1),
('H30', 129, 16, 2),
('H30', 130, 17, 0),
('H30', 131, 17, 1),
('H30', 132, 17, 2),
('H30', 133, 17, 3),
('H30', 134, 17, 4),
('H30', 135, 18, 0),
('H30', 136, 18, 1),
('H30', 137, 18, 2),
('H30', 138, 18, 3),
('H30', 139, 19, 0),
('H30', 140, 19, 1),
('H30', 141, 19, 2),
('H30', 142, 19, 3),
('H30', 143, 19, 4),
('H30', 144, 20, 0),
('H30', 145, 20, 1),
('H30', 146, 20, 2),
('H30', 147, 20, 3),
('H30', 148, 20, 4),
('H30', 149, 20, 5),
('H30', 150, 21, 0),
('H30', 151, 21, 1),
('H30', 152, 21, 2),
('H30', 153, 21, 3),
('H30', 154, 21, 4),
('H30', 155, 21, 5),
('H30', 156, 21, 6),
('H30', 157, 21, 7),
('H30', 158, 21, 8),
('H30', 159, 21, 9),
('H30', 160, 22, 0),
('H30', 161, 22, 1),
('H30', 162, 22, 2),
('H30', 163, 22, 3),
('H30', 164, 22, 4),
('H30', 165, 22, 5),
('H30', 166, 23, 0),
('H30', 167, 23, 1),
('H30', 168, 23, 2),
('H30', 169, 23, 3),
('H30', 170, 24, 0),
('H30', 171, 24, 1),
('H30', 172, 24, 2),
('H30', 173, 25, 0),
('H30', 174, 25, 1),
('H30', 175, 25, 2),
('H30', 176, 25, 3),
('H30', 177, 25, 4),
('H30', 178, 25, 5),
('H30', 179, 26, 0),
('H30', 180, 26, 1),
('H30', 181, 26, 2),
('H30', 182, 27, 0),
('H30', 183, 27, 1),
('H30', 184, 27, 2),
('H30', 185, 27, 3),
('H30', 186, 28, 0),
('H30', 187, 28, 1),
('H30', 188, 28, 2),
('H30', 189, 28, 3),
('H30', 190, 29, 0),
('H30', 191, 29, 1),
('H30', 192, 29, 2),
('H30', 193, 29, 3),
('H30', 194, 30, 0),
('H30', 195, 30, 1),
('H30', 196, 30, 2),
('H30', 197, 30, 3),
('H30', 198, 30, 4),
('H30', 199, 30, 5),
('H30', 200, 30, 6),
('H30', 201, 30, 7),
('H30', 202, 30, 8),
('H30', 203, 30, 9),
('H30', 204, 30, 10),
('H30', 205, 30, 11),
('H30', 206, 30, 12),
('H30', 207, 30, 13),
('H30', 208, 30, 14),
('H30', 209, 30, 15),
('H30', 210, 31, 1),
('H30', 211, 31, 2),
('H30', 212, 31, 3),
('H30', 213, 31, 4),
('H30', 214, 32, 1),
('H30', 215, 32, 2),
('H30', 216, 32, 3),
('H30', 217, 32, 4),
('H30', 218, 32, 5),
('H30', 219, 32, 6),
('H30', 220, 33, 1),
('H30', 221, 33, 2),
('H30', 222, 33, 3),
('H30', 223, 34, 1),
('H30', 224, 34, 2),
('H30', 225, 34, 3),
('H30', 226, 35, 1),
('H30', 227, 35, 2),
('H30', 228, 35, 3),
('H30', 229, 36, 1),
('H30', 230, 36, 2),
('H30', 231, 36, 3),
('H30', 232, 36, 4),
('H30', 233, 36, 5),
('H30', 234, 36, 6),
('H30', 235, 37, 1),
('H30', 236, 37, 2),
('H30', 237, 38, 1),
('H30', 238, 38, 2),
('H30', 239, 38, 3),
('H30', 240, 38, 4),
('H30', 241, 39, 1),
('H30', 242, 39, 2),
('H30', 243, 39, 3),
('H30', 244, 39, 4),
('H30', 245, 40, 1),
('H30', 246, 40, 2),
('H30', 247, 40, 3),
('H30', 248, 40, 4),
('H30', 249, 41, 1),
('H30', 250, 41, 2),
('H30', 251, 41, 3),
('H30', 252, 41, 4),
('H30', 253, 41, 5),
('H30', 254, 41, 6),
('H30', 255, 41, 7),
('H30', 256, 41, 8),
('H30', 257, 41, 9),
('H30', 258, 41, 10),
('H30', 259, 41, 11),
('H30', 260, 42, 1),
('H30', 261, 42, 2),
('H30', 262, 42, 3),
('H30', 263, 42, 4),
('H30', 264, 42, 5),
('H30', 265, 42, 6),
('H30', 266, 42, 7),
('H30', 267, 42, 8),
('H30', 268, 42, 9),
('H30', 269, 43, 1),
('H30', 270, 43, 2),
('H30', 271, 43, 3),
('H30', 272, 43, 4),
('H30', 273, 44, 1),
('H30', 274, 44, 2),
('H30', 275, 44, 3),
('H30', 276, 44, 4),
('H30', 277, 45, 1),
('H30', 278, 45, 2),
('H30', 279, 45, 3),
('H30', 280, 45, 4),
('H30', 281, 45, 5),
('H30', 282, 45, 6),
('H30', 283, 45, 7),
('H30', 284, 45, 8),
('H30', 285, 45, 9),
('H30', 286, 45, 10),
('H30', 287, 45, 11),
('H30', 288, 12, 1),
('H30', 289, 46, 1),
('H30', 290, 46, 2),
('H30', 291, 46, 3),
('H30', 292, 46, 4),
('H30', 293, 46, 5),
('H30', 294, 46, 6),
('H30', 295, 2, 1),
('H30', 296, 47, 1),
('H30', 297, 47, 2),
('H30', 298, 47, 3),
('H30', 299, 48, 1),
('H30', 300, 48, 2),
('H30', 303, 49, 1),
('H30', 304, 49, 2),
('H30', 305, 19, 5),
('H30', 306, 19, 6),
('H30', 307, 19, 7),
('H30', 308, 19, 8),
('H30', 309, 19, 9),
('H30', 310, 19, 10),
('H30', 311, 19, 11),
('H30', 312, 21, 10),
('H30', 313, 21, 11),
('H30', 314, 21, 12),
('H30', 315, 21, 13),
('H30', 316, 21, 14),
('H30', 317, 21, 15),
('H30', 327, 14, 12),
('H30', 328, 14, 13),
('H30', 329, 14, 14),
('H30', 330, 14, 15),
('H30', 331, 14, 16),
('H30', 332, 14, 17),
('H30', 333, 20, 6),
('H30', 334, 20, 7),
('H30', 335, 20, 8),
('H30', 336, 11, 32),
('H30', 337, 11, 33),
('H30', 338, 11, 34),
('H30', 339, 11, 35),
('H30', 340, 11, 36),
('H30', 341, 1, 11),
('H30', 342, 1, 12),
('H30', 343, 50, 1),
('H30', 344, 50, 2),
('H30', 345, 51, 1),
('H30', 346, 51, 2),
('H30', 347, 51, 3),
('H30', 348, 51, 4),
('H30', 349, 52, 1),
('H30', 350, 52, 2),
('H30', 351, 52, 3),
('H30', 352, 52, 4),
('H30', 353, 53, 1),
('H30', 354, 53, 2),
('H30', 355, 53, 3),
('H30', 356, 53, 4),
('H30', 357, 54, 1),
('H30', 358, 54, 2),
('H30', 359, 55, 1),
('H30', 360, 55, 2),
('H30', 361, 56, 1),
('H30', 362, 56, 2),
('H30', 363, 56, 3),
('H30', 364, 56, 4),
('H30', 365, 56, 5),
('H30', 366, 57, 1),
('H30', 367, 57, 2),
('H30', 368, 57, 3),
('H30', 369, 57, 4),
('H30', 370, 57, 5),
('H30', 371, 57, 6),
('H30', 372, 58, 1),
('H30', 373, 58, 2),
('H30', 374, 58, 3),
('H30', 375, 58, 4),
('H30', 376, 59, 1),
('H30', 377, 59, 2),
('H30', 378, 59, 3),
('H30', 379, 59, 4),
('H30', 380, 60, 1),
('H30', 381, 60, 2),
('H30', 382, 60, 3),
('H30', 383, 60, 4),
('H30', 384, 60, 5),
('H30', 385, 61, 1),
('H30', 386, 61, 2),
('H30', 387, 61, 3),
('H30', 388, 61, 4),
('H30', 389, 62, 1),
('H30', 390, 62, 2),
('H30', 391, 62, 3),
('H30', 392, 62, 4),
('H30', 393, 63, 1),
('H30', 394, 63, 2),
('H30', 395, 63, 3),
('H30', 396, 63, 4),
('H30', 397, 63, 5),
('H30', 398, 32, 1),
('H30', 399, 32, 2),
('H30', 400, 32, 3),
('H30', 401, 32, 4),
('H30', 402, 32, 5),
('H30', 403, 34, 1),
('H30', 404, 34, 2),
('H30', 405, 34, 3),
('H30', 406, 34, 4),
('H30', 407, 64, 1),
('H30', 408, 64, 2),
('H30', 409, 65, 1),
('H30', 410, 65, 2),
('H30', 411, 66, 1),
('H30', 412, 66, 2),
('H30', 413, 66, 3),
('H30', 414, 67, 1),
('H30', 415, 67, 2),
('H30', 416, 67, 3),
('H30', 417, 67, 4),
('H30', 418, 68, 1),
('H30', 419, 68, 2),
('H30', 420, 68, 3),
('H30', 421, 68, 4),
('H30', 422, 69, 1),
('H30', 423, 69, 2),
('H30', 424, 69, 3),
('H30', 425, 69, 4),
('H30', 426, 70, 1),
('H30', 427, 70, 2),
('H30', 428, 70, 3),
('H30', 429, 70, 4),
('H30', 430, 70, 5),
('H30', 431, 71, 1),
('H30', 432, 71, 2),
('H30', 433, 72, 1),
('H30', 434, 72, 2),
('H30', 435, 72, 3),
('H30', 436, 72, 4),
('H30', 437, 73, 1),
('H30', 438, 73, 2),
('H30', 439, 73, 3),
('H30', 440, 73, 4),
('H30', 441, 71, 1),
('H30', 442, 74, 1),
('H30', 443, 74, 2),
('H30', 444, 74, 3),
('H30', 445, 74, 4),
('H30', 446, 74, 5),
('H30', 447, 74, 6),
('H30', 448, 63, 1),
('H30', 449, 63, 2),
('H30', 450, 63, 3),
('H30', 451, 75, 1),
('H30', 452, 75, 2),
('H30', 453, 75, 3),
('H30', 454, 75, 4),
('H30', 455, 75, 5),
('H30', 456, 75, 6),
('H30', 457, 76, 1),
('H30', 458, 76, 2),
('H30', 459, 76, 3),
('H30', 460, 76, 4),
('H30', 461, 76, 5),
('H30', 462, 76, 6),
('H30', 463, 76, 7),
('H30', 464, 77, 1),
('H30', 465, 77, 2),
('H30', 466, 78, 1),
('H30', 467, 78, 2),
('H30', 468, 78, 3),
('H30', 469, 79, 1),
('H30', 470, 79, 2),
('H30', 471, 79, 3),
('H30', 472, 79, 4),
('H30', 473, 80, 1),
('H30', 474, 80, 2),
('H30', 475, 80, 3),
('H30', 476, 80, 4),
('H30', 477, 81, 1),
('H30', 478, 81, 2),
('H30', 479, 82, 1),
('H30', 480, 82, 2),
('H30', 481, 82, 3),
('H30', 482, 82, 4),
('H30', 483, 82, 5),
('H30', 484, 83, 1),
('H30', 485, 83, 2),
('H30', 486, 83, 3),
('H30', 487, 84, 1),
('H30', 488, 84, 2),
('H30', 489, 84, 3),
('H30', 490, 84, 4),
('H30', 491, 84, 5),
('H30', 492, 85, 1),
('H30', 493, 85, 1),
('H30', 494, 86, 1),
('H30', 495, 86, 2),
('H30', 496, 86, 3),
('H30', 497, 87, 1),
('H30', 498, 87, 2),
('H30', 499, 87, 3),
('H30', 500, 88, 1),
('H30', 501, 89, 1),
('H30', 502, 90, 1),
('H30', 503, 90, 2),
('H30', 504, 90, 3),
('H30', 505, 91, 1),
('H30', 506, 91, 2),
('H30', 507, 91, 3),
('H30', 508, 91, 4),
('H30', 509, 91, 5),
('H30', 510, 92, 1),
('H30', 511, 92, 2),
('H30', 512, 92, 3),
('H30', 513, 92, 4),
('H30', 514, 93, 1),
('H30', 515, 93, 2),
('H30', 516, 93, 3),
('H30', 517, 93, 4),
('H30', 518, 93, 5),
('H31', 1, 1, 0),
('H31', 2, 1, 1),
('H31', 3, 1, 2),
('H31', 4, 1, 3),
('H31', 5, 1, 4),
('H31', 6, 1, 5),
('H31', 7, 1, 6),
('H31', 8, 1, 7),
('H31', 9, 1, 8),
('H31', 10, 1, 9),
('H31', 11, 1, 10),
('H31', 12, 2, 0),
('H31', 13, 2, 1),
('H31', 14, 3, 0),
('H31', 15, 3, 1),
('H31', 16, 3, 2),
('H31', 17, 3, 3),
('H31', 18, 3, 4),
('H31', 19, 3, 5),
('H31', 20, 4, 0),
('H31', 21, 4, 1),
('H31', 22, 4, 2),
('H31', 23, 4, 3),
('H31', 24, 4, 4),
('H31', 25, 4, 5),
('H31', 26, 4, 6),
('H31', 27, 4, 7),
('H31', 28, 4, 8),
('H31', 29, 4, 9),
('H31', 30, 4, 10),
('H31', 31, 4, 11),
('H31', 32, 4, 12),
('H31', 33, 5, 0),
('H31', 34, 5, 1),
('H31', 35, 5, 2),
('H31', 36, 5, 3),
('H31', 37, 5, 4),
('H31', 38, 6, 0),
('H31', 39, 6, 1),
('H31', 40, 6, 2),
('H31', 41, 7, 0),
('H31', 42, 7, 1),
('H31', 43, 7, 2),
('H31', 44, 7, 3),
('H31', 45, 7, 4),
('H31', 46, 8, 0),
('H31', 47, 9, 0),
('H31', 48, 9, 1),
('H31', 49, 9, 2),
('H31', 50, 9, 3),
('H31', 51, 10, 0),
('H31', 52, 10, 1),
('H31', 53, 10, 2),
('H31', 54, 10, 3),
('H31', 55, 10, 4),
('H31', 56, 10, 5),
('H31', 57, 10, 6),
('H31', 58, 10, 7),
('H31', 59, 10, 8),
('H31', 60, 11, 0),
('H31', 61, 11, 1),
('H31', 62, 11, 2),
('H31', 63, 11, 3),
('H31', 64, 11, 4),
('H31', 65, 11, 5),
('H31', 66, 11, 6),
('H31', 67, 11, 7),
('H31', 68, 11, 8),
('H31', 69, 11, 9),
('H31', 70, 11, 10),
('H31', 71, 11, 11),
('H31', 72, 11, 12),
('H31', 73, 11, 13),
('H31', 74, 11, 14),
('H31', 75, 11, 15),
('H31', 76, 11, 16),
('H31', 77, 11, 17),
('H31', 78, 11, 18),
('H31', 79, 11, 19),
('H31', 80, 11, 20),
('H31', 81, 11, 21),
('H31', 82, 11, 22),
('H31', 83, 11, 23),
('H31', 84, 11, 24),
('H31', 85, 11, 25),
('H31', 86, 11, 26),
('H31', 87, 11, 27),
('H31', 88, 11, 28),
('H31', 89, 11, 29),
('H31', 90, 11, 30),
('H31', 91, 11, 31),
('H31', 92, 12, 0),
('H31', 93, 12, 1),
('H31', 94, 12, 2),
('H31', 95, 12, 3),
('H31', 96, 12, 4),
('H31', 97, 12, 5),
('H31', 98, 13, 0),
('H31', 99, 13, 1),
('H31', 100, 13, 2),
('H31', 101, 13, 3),
('H31', 102, 13, 4),
('H31', 103, 13, 5),
('H31', 104, 13, 6),
('H31', 105, 13, 7),
('H31', 106, 13, 8),
('H31', 107, 13, 9),
('H31', 108, 13, 10),
('H31', 109, 13, 11),
('H31', 110, 13, 12),
('H31', 111, 14, 0),
('H31', 112, 14, 1),
('H31', 113, 14, 2),
('H31', 114, 14, 3),
('H31', 115, 14, 4),
('H31', 116, 14, 5),
('H31', 117, 14, 6),
('H31', 118, 14, 7),
('H31', 119, 14, 8),
('H31', 120, 14, 9),
('H31', 121, 14, 10),
('H31', 122, 14, 11),
('H31', 123, 15, 0),
('H31', 124, 15, 1),
('H31', 125, 15, 2),
('H31', 126, 15, 3),
('H31', 127, 16, 0),
('H31', 128, 16, 1),
('H31', 129, 16, 2),
('H31', 130, 17, 0),
('H31', 131, 17, 1),
('H31', 132, 17, 2),
('H31', 133, 17, 3),
('H31', 134, 17, 4),
('H31', 135, 18, 0),
('H31', 136, 18, 1),
('H31', 137, 18, 2),
('H31', 138, 18, 3),
('H31', 139, 19, 0),
('H31', 140, 19, 1),
('H31', 141, 19, 2),
('H31', 142, 19, 3),
('H31', 143, 19, 4),
('H31', 144, 20, 0),
('H31', 145, 20, 1),
('H31', 146, 20, 2),
('H31', 147, 20, 3),
('H31', 148, 20, 4),
('H31', 149, 20, 5),
('H31', 150, 21, 0),
('H31', 151, 21, 1),
('H31', 152, 21, 2),
('H31', 153, 21, 3),
('H31', 154, 21, 4),
('H31', 155, 21, 5),
('H31', 156, 21, 6),
('H31', 157, 21, 7),
('H31', 158, 21, 8),
('H31', 159, 21, 9),
('H31', 160, 22, 0),
('H31', 161, 22, 1),
('H31', 162, 22, 2),
('H31', 163, 22, 3),
('H31', 164, 22, 4),
('H31', 165, 22, 5),
('H31', 166, 23, 0),
('H31', 167, 23, 1),
('H31', 168, 23, 2),
('H31', 169, 23, 3),
('H31', 170, 24, 0),
('H31', 171, 24, 1),
('H31', 172, 24, 2),
('H31', 173, 25, 0),
('H31', 174, 25, 1),
('H31', 175, 25, 2),
('H31', 176, 25, 3),
('H31', 177, 25, 4),
('H31', 178, 25, 5),
('H31', 179, 26, 0),
('H31', 180, 26, 1),
('H31', 181, 26, 2),
('H31', 182, 27, 0),
('H31', 183, 27, 1),
('H31', 184, 27, 2),
('H31', 185, 27, 3),
('H31', 186, 28, 0),
('H31', 187, 28, 1),
('H31', 188, 28, 2),
('H31', 189, 28, 3),
('H31', 190, 29, 0),
('H31', 191, 29, 1),
('H31', 192, 29, 2),
('H31', 193, 29, 3),
('H31', 194, 30, 0),
('H31', 195, 30, 1),
('H31', 196, 30, 2),
('H31', 197, 30, 3),
('H31', 198, 30, 4),
('H31', 199, 30, 5),
('H31', 200, 30, 6),
('H31', 201, 30, 7),
('H31', 202, 30, 8),
('H31', 203, 30, 9);
INSERT IGNORE INTO `vtiger_role2picklist` (`roleid`, `picklistvalueid`, `picklistid`, `sortid`) VALUES
('H31', 204, 30, 10),
('H31', 205, 30, 11),
('H31', 206, 30, 12),
('H31', 207, 30, 13),
('H31', 208, 30, 14),
('H31', 209, 30, 15),
('H31', 210, 31, 1),
('H31', 211, 31, 2),
('H31', 212, 31, 3),
('H31', 213, 31, 4),
('H31', 214, 32, 1),
('H31', 215, 32, 2),
('H31', 216, 32, 3),
('H31', 217, 32, 4),
('H31', 218, 32, 5),
('H31', 219, 32, 6),
('H31', 220, 33, 1),
('H31', 221, 33, 2),
('H31', 222, 33, 3),
('H31', 223, 34, 1),
('H31', 224, 34, 2),
('H31', 225, 34, 3),
('H31', 226, 35, 1),
('H31', 227, 35, 2),
('H31', 228, 35, 3),
('H31', 229, 36, 1),
('H31', 230, 36, 2),
('H31', 231, 36, 3),
('H31', 232, 36, 4),
('H31', 233, 36, 5),
('H31', 234, 36, 6),
('H31', 235, 37, 1),
('H31', 236, 37, 2),
('H31', 237, 38, 1),
('H31', 238, 38, 2),
('H31', 239, 38, 3),
('H31', 240, 38, 4),
('H31', 241, 39, 1),
('H31', 242, 39, 2),
('H31', 243, 39, 3),
('H31', 244, 39, 4),
('H31', 245, 40, 1),
('H31', 246, 40, 2),
('H31', 247, 40, 3),
('H31', 248, 40, 4),
('H31', 249, 41, 1),
('H31', 250, 41, 2),
('H31', 251, 41, 3),
('H31', 252, 41, 4),
('H31', 253, 41, 5),
('H31', 254, 41, 6),
('H31', 255, 41, 7),
('H31', 256, 41, 8),
('H31', 257, 41, 9),
('H31', 258, 41, 10),
('H31', 259, 41, 11),
('H31', 260, 42, 1),
('H31', 261, 42, 2),
('H31', 262, 42, 3),
('H31', 263, 42, 4),
('H31', 264, 42, 5),
('H31', 265, 42, 6),
('H31', 266, 42, 7),
('H31', 267, 42, 8),
('H31', 268, 42, 9),
('H31', 269, 43, 1),
('H31', 270, 43, 2),
('H31', 271, 43, 3),
('H31', 272, 43, 4),
('H31', 273, 44, 1),
('H31', 274, 44, 2),
('H31', 275, 44, 3),
('H31', 276, 44, 4),
('H31', 277, 45, 1),
('H31', 278, 45, 2),
('H31', 279, 45, 3),
('H31', 280, 45, 4),
('H31', 281, 45, 5),
('H31', 282, 45, 6),
('H31', 283, 45, 7),
('H31', 284, 45, 8),
('H31', 285, 45, 9),
('H31', 286, 45, 10),
('H31', 287, 45, 11),
('H31', 288, 12, 1),
('H31', 289, 46, 1),
('H31', 290, 46, 2),
('H31', 291, 46, 3),
('H31', 292, 46, 4),
('H31', 293, 46, 5),
('H31', 294, 46, 6),
('H31', 295, 2, 1),
('H31', 296, 47, 1),
('H31', 297, 47, 2),
('H31', 298, 47, 3),
('H31', 299, 48, 1),
('H31', 300, 48, 2),
('H31', 303, 49, 1),
('H31', 304, 49, 2),
('H31', 305, 19, 5),
('H31', 306, 19, 6),
('H31', 307, 19, 7),
('H31', 308, 19, 8),
('H31', 309, 19, 9),
('H31', 310, 19, 10),
('H31', 311, 19, 11),
('H31', 312, 21, 10),
('H31', 313, 21, 11),
('H31', 314, 21, 12),
('H31', 315, 21, 13),
('H31', 316, 21, 14),
('H31', 317, 21, 15),
('H31', 327, 14, 12),
('H31', 328, 14, 13),
('H31', 329, 14, 14),
('H31', 330, 14, 15),
('H31', 331, 14, 16),
('H31', 332, 14, 17),
('H31', 333, 20, 6),
('H31', 334, 20, 7),
('H31', 335, 20, 8),
('H31', 336, 11, 32),
('H31', 337, 11, 33),
('H31', 338, 11, 34),
('H31', 339, 11, 35),
('H31', 340, 11, 36),
('H31', 341, 1, 11),
('H31', 342, 1, 12),
('H31', 343, 50, 1),
('H31', 344, 50, 2),
('H31', 345, 51, 1),
('H31', 346, 51, 2),
('H31', 347, 51, 3),
('H31', 348, 51, 4),
('H31', 349, 52, 1),
('H31', 350, 52, 2),
('H31', 351, 52, 3),
('H31', 352, 52, 4),
('H31', 353, 53, 1),
('H31', 354, 53, 2),
('H31', 355, 53, 3),
('H31', 356, 53, 4),
('H31', 357, 54, 1),
('H31', 358, 54, 2),
('H31', 359, 55, 1),
('H31', 360, 55, 2),
('H31', 361, 56, 1),
('H31', 362, 56, 2),
('H31', 363, 56, 3),
('H31', 364, 56, 4),
('H31', 365, 56, 5),
('H31', 366, 57, 1),
('H31', 367, 57, 2),
('H31', 368, 57, 3),
('H31', 369, 57, 4),
('H31', 370, 57, 5),
('H31', 371, 57, 6),
('H31', 372, 58, 1),
('H31', 373, 58, 2),
('H31', 374, 58, 3),
('H31', 375, 58, 4),
('H31', 376, 59, 1),
('H31', 377, 59, 2),
('H31', 378, 59, 3),
('H31', 379, 59, 4),
('H31', 380, 60, 1),
('H31', 381, 60, 2),
('H31', 382, 60, 3),
('H31', 383, 60, 4),
('H31', 384, 60, 5),
('H31', 385, 61, 1),
('H31', 386, 61, 2),
('H31', 387, 61, 3),
('H31', 388, 61, 4),
('H31', 389, 62, 1),
('H31', 390, 62, 2),
('H31', 391, 62, 3),
('H31', 392, 62, 4),
('H31', 393, 63, 1),
('H31', 394, 63, 2),
('H31', 395, 63, 3),
('H31', 396, 63, 4),
('H31', 397, 63, 5),
('H31', 398, 32, 1),
('H31', 399, 32, 2),
('H31', 400, 32, 3),
('H31', 401, 32, 4),
('H31', 402, 32, 5),
('H31', 403, 34, 1),
('H31', 404, 34, 2),
('H31', 405, 34, 3),
('H31', 406, 34, 4),
('H31', 407, 64, 1),
('H31', 408, 64, 2),
('H31', 409, 65, 1),
('H31', 410, 65, 2),
('H31', 411, 66, 1),
('H31', 412, 66, 2),
('H31', 413, 66, 3),
('H31', 414, 67, 1),
('H31', 415, 67, 2),
('H31', 416, 67, 3),
('H31', 417, 67, 4),
('H31', 418, 68, 1),
('H31', 419, 68, 2),
('H31', 420, 68, 3),
('H31', 421, 68, 4),
('H31', 422, 69, 1),
('H31', 423, 69, 2),
('H31', 424, 69, 3),
('H31', 425, 69, 4),
('H31', 426, 70, 1),
('H31', 427, 70, 2),
('H31', 428, 70, 3),
('H31', 429, 70, 4),
('H31', 430, 70, 5),
('H31', 431, 71, 1),
('H31', 432, 71, 2),
('H31', 433, 72, 1),
('H31', 434, 72, 2),
('H31', 435, 72, 3),
('H31', 436, 72, 4),
('H31', 437, 73, 1),
('H31', 438, 73, 2),
('H31', 439, 73, 3),
('H31', 440, 73, 4),
('H31', 441, 71, 1),
('H31', 442, 74, 1),
('H31', 443, 74, 2),
('H31', 444, 74, 3),
('H31', 445, 74, 4),
('H31', 446, 74, 5),
('H31', 447, 74, 6),
('H31', 448, 63, 1),
('H31', 449, 63, 2),
('H31', 450, 63, 3),
('H31', 451, 75, 1),
('H31', 452, 75, 2),
('H31', 453, 75, 3),
('H31', 454, 75, 4),
('H31', 455, 75, 5),
('H31', 456, 75, 6),
('H31', 457, 76, 1),
('H31', 458, 76, 2),
('H31', 459, 76, 3),
('H31', 460, 76, 4),
('H31', 461, 76, 5),
('H31', 462, 76, 6),
('H31', 463, 76, 7),
('H31', 464, 77, 1),
('H31', 465, 77, 2),
('H31', 466, 78, 1),
('H31', 467, 78, 2),
('H31', 468, 78, 3),
('H31', 469, 79, 1),
('H31', 470, 79, 2),
('H31', 471, 79, 3),
('H31', 472, 79, 4),
('H31', 473, 80, 1),
('H31', 474, 80, 2),
('H31', 475, 80, 3),
('H31', 476, 80, 4),
('H31', 477, 81, 1),
('H31', 478, 81, 2),
('H31', 479, 82, 1),
('H31', 480, 82, 2),
('H31', 481, 82, 3),
('H31', 482, 82, 4),
('H31', 483, 82, 5),
('H31', 484, 83, 1),
('H31', 485, 83, 2),
('H31', 486, 83, 3),
('H31', 487, 84, 1),
('H31', 488, 84, 2),
('H31', 489, 84, 3),
('H31', 490, 84, 4),
('H31', 491, 84, 5),
('H31', 492, 85, 1),
('H31', 493, 85, 1),
('H31', 494, 86, 1),
('H31', 495, 86, 2),
('H31', 496, 86, 3),
('H31', 497, 87, 1),
('H31', 498, 87, 2),
('H31', 499, 87, 3),
('H31', 500, 88, 1),
('H31', 501, 89, 1),
('H31', 502, 90, 1),
('H31', 503, 90, 2),
('H31', 504, 90, 3),
('H31', 505, 91, 1),
('H31', 506, 91, 2),
('H31', 507, 91, 3),
('H31', 508, 91, 4),
('H31', 509, 91, 5),
('H31', 510, 92, 1),
('H31', 511, 92, 2),
('H31', 512, 92, 3),
('H31', 513, 92, 4),
('H31', 514, 93, 1),
('H31', 515, 93, 2),
('H31', 516, 93, 3),
('H31', 517, 93, 4),
('H31', 518, 93, 5),
('H4', 1, 1, 0),
('H4', 2, 1, 1),
('H4', 3, 1, 2),
('H4', 4, 1, 3),
('H4', 5, 1, 4),
('H4', 6, 1, 5),
('H4', 7, 1, 6),
('H4', 8, 1, 7),
('H4', 9, 1, 8),
('H4', 10, 1, 9),
('H4', 11, 1, 10),
('H4', 12, 2, 0),
('H4', 13, 2, 1),
('H4', 14, 3, 0),
('H4', 15, 3, 1),
('H4', 16, 3, 2),
('H4', 17, 3, 3),
('H4', 18, 3, 4),
('H4', 19, 3, 5),
('H4', 20, 4, 0),
('H4', 21, 4, 1),
('H4', 22, 4, 2),
('H4', 23, 4, 3),
('H4', 24, 4, 4),
('H4', 25, 4, 5),
('H4', 26, 4, 6),
('H4', 27, 4, 7),
('H4', 28, 4, 8),
('H4', 29, 4, 9),
('H4', 30, 4, 10),
('H4', 31, 4, 11),
('H4', 32, 4, 12),
('H4', 33, 5, 0),
('H4', 34, 5, 1),
('H4', 35, 5, 2),
('H4', 36, 5, 3),
('H4', 37, 5, 4),
('H4', 38, 6, 0),
('H4', 39, 6, 1),
('H4', 40, 6, 2),
('H4', 41, 7, 0),
('H4', 42, 7, 1),
('H4', 43, 7, 2),
('H4', 44, 7, 3),
('H4', 45, 7, 4),
('H4', 46, 8, 0),
('H4', 47, 9, 0),
('H4', 48, 9, 1),
('H4', 49, 9, 2),
('H4', 50, 9, 3),
('H4', 51, 10, 0),
('H4', 52, 10, 1),
('H4', 53, 10, 2),
('H4', 54, 10, 3),
('H4', 55, 10, 4),
('H4', 56, 10, 5),
('H4', 57, 10, 6),
('H4', 58, 10, 7),
('H4', 59, 10, 8),
('H4', 60, 11, 0),
('H4', 61, 11, 1),
('H4', 62, 11, 2),
('H4', 63, 11, 3),
('H4', 64, 11, 4),
('H4', 65, 11, 5),
('H4', 66, 11, 6),
('H4', 67, 11, 7),
('H4', 68, 11, 8),
('H4', 69, 11, 9),
('H4', 70, 11, 10),
('H4', 71, 11, 11),
('H4', 72, 11, 12),
('H4', 73, 11, 13),
('H4', 74, 11, 14),
('H4', 75, 11, 15),
('H4', 76, 11, 16),
('H4', 77, 11, 17),
('H4', 78, 11, 18),
('H4', 79, 11, 19),
('H4', 80, 11, 20),
('H4', 81, 11, 21),
('H4', 82, 11, 22),
('H4', 83, 11, 23),
('H4', 84, 11, 24),
('H4', 85, 11, 25),
('H4', 86, 11, 26),
('H4', 87, 11, 27),
('H4', 88, 11, 28),
('H4', 89, 11, 29),
('H4', 90, 11, 30),
('H4', 91, 11, 31),
('H4', 92, 12, 0),
('H4', 93, 12, 1),
('H4', 94, 12, 2),
('H4', 95, 12, 3),
('H4', 96, 12, 4),
('H4', 97, 12, 5),
('H4', 98, 13, 0),
('H4', 99, 13, 1),
('H4', 100, 13, 2),
('H4', 101, 13, 3),
('H4', 102, 13, 4),
('H4', 103, 13, 5),
('H4', 104, 13, 6),
('H4', 105, 13, 7),
('H4', 106, 13, 8),
('H4', 107, 13, 9),
('H4', 108, 13, 10),
('H4', 109, 13, 11),
('H4', 110, 13, 12),
('H4', 111, 14, 0),
('H4', 112, 14, 1),
('H4', 113, 14, 2),
('H4', 114, 14, 3),
('H4', 115, 14, 4),
('H4', 116, 14, 5),
('H4', 117, 14, 6),
('H4', 118, 14, 7),
('H4', 119, 14, 8),
('H4', 120, 14, 9),
('H4', 121, 14, 10),
('H4', 122, 14, 11),
('H4', 123, 15, 0),
('H4', 124, 15, 1),
('H4', 125, 15, 2),
('H4', 126, 15, 3),
('H4', 127, 16, 0),
('H4', 128, 16, 1),
('H4', 129, 16, 2),
('H4', 130, 17, 0),
('H4', 131, 17, 1),
('H4', 132, 17, 2),
('H4', 133, 17, 3),
('H4', 134, 17, 4),
('H4', 135, 18, 0),
('H4', 136, 18, 1),
('H4', 137, 18, 2),
('H4', 138, 18, 3),
('H4', 139, 19, 0),
('H4', 140, 19, 1),
('H4', 141, 19, 2),
('H4', 142, 19, 3),
('H4', 143, 19, 4),
('H4', 144, 20, 0),
('H4', 145, 20, 1),
('H4', 146, 20, 2),
('H4', 147, 20, 3),
('H4', 148, 20, 4),
('H4', 149, 20, 5),
('H4', 150, 21, 0),
('H4', 151, 21, 1),
('H4', 152, 21, 2),
('H4', 153, 21, 3),
('H4', 154, 21, 4),
('H4', 155, 21, 5),
('H4', 156, 21, 6),
('H4', 157, 21, 7),
('H4', 158, 21, 8),
('H4', 159, 21, 9),
('H4', 160, 22, 0),
('H4', 161, 22, 1),
('H4', 162, 22, 2),
('H4', 163, 22, 3),
('H4', 164, 22, 4),
('H4', 165, 22, 5),
('H4', 166, 23, 0),
('H4', 167, 23, 1),
('H4', 168, 23, 2),
('H4', 169, 23, 3),
('H4', 170, 24, 0),
('H4', 171, 24, 1),
('H4', 172, 24, 2),
('H4', 173, 25, 0),
('H4', 174, 25, 1),
('H4', 175, 25, 2),
('H4', 176, 25, 3),
('H4', 177, 25, 4),
('H4', 178, 25, 5),
('H4', 179, 26, 0),
('H4', 180, 26, 1),
('H4', 181, 26, 2),
('H4', 182, 27, 0),
('H4', 183, 27, 1),
('H4', 184, 27, 2),
('H4', 185, 27, 3),
('H4', 186, 28, 0),
('H4', 187, 28, 1),
('H4', 188, 28, 2),
('H4', 189, 28, 3),
('H4', 190, 29, 0),
('H4', 191, 29, 1),
('H4', 192, 29, 2),
('H4', 193, 29, 3),
('H4', 194, 30, 0),
('H4', 195, 30, 1),
('H4', 196, 30, 2),
('H4', 197, 30, 3),
('H4', 198, 30, 4),
('H4', 199, 30, 5),
('H4', 200, 30, 6),
('H4', 201, 30, 7),
('H4', 202, 30, 8),
('H4', 203, 30, 9),
('H4', 204, 30, 10),
('H4', 205, 30, 11),
('H4', 206, 30, 12),
('H4', 207, 30, 13),
('H4', 208, 30, 14),
('H4', 209, 30, 15),
('H4', 210, 31, 1),
('H4', 211, 31, 2),
('H4', 212, 31, 3),
('H4', 213, 31, 4),
('H4', 214, 32, 1),
('H4', 215, 32, 2),
('H4', 216, 32, 3),
('H4', 217, 32, 4),
('H4', 218, 32, 5),
('H4', 219, 32, 6),
('H4', 220, 33, 1),
('H4', 221, 33, 2),
('H4', 222, 33, 3),
('H4', 223, 34, 1),
('H4', 224, 34, 2),
('H4', 225, 34, 3),
('H4', 226, 35, 1),
('H4', 227, 35, 2),
('H4', 228, 35, 3),
('H4', 229, 36, 1),
('H4', 230, 36, 2),
('H4', 231, 36, 3),
('H4', 232, 36, 4),
('H4', 233, 36, 5),
('H4', 234, 36, 6),
('H4', 235, 37, 1),
('H4', 236, 37, 2),
('H4', 237, 38, 1),
('H4', 238, 38, 2),
('H4', 239, 38, 3),
('H4', 240, 38, 4),
('H4', 241, 39, 1),
('H4', 242, 39, 2),
('H4', 243, 39, 3),
('H4', 244, 39, 4),
('H4', 245, 40, 1),
('H4', 246, 40, 2),
('H4', 247, 40, 3),
('H4', 248, 40, 4),
('H4', 249, 41, 1),
('H4', 250, 41, 2),
('H4', 251, 41, 3),
('H4', 252, 41, 4),
('H4', 253, 41, 5),
('H4', 254, 41, 6),
('H4', 255, 41, 7),
('H4', 256, 41, 8),
('H4', 257, 41, 9),
('H4', 258, 41, 10),
('H4', 259, 41, 11),
('H4', 260, 42, 1),
('H4', 261, 42, 2),
('H4', 262, 42, 3),
('H4', 263, 42, 4),
('H4', 264, 42, 5),
('H4', 265, 42, 6),
('H4', 266, 42, 7),
('H4', 267, 42, 8),
('H4', 268, 42, 9),
('H4', 269, 43, 1),
('H4', 270, 43, 2),
('H4', 271, 43, 3),
('H4', 272, 43, 4),
('H4', 273, 44, 1),
('H4', 274, 44, 2),
('H4', 275, 44, 3),
('H4', 276, 44, 4),
('H4', 277, 45, 1),
('H4', 278, 45, 2),
('H4', 279, 45, 3),
('H4', 280, 45, 4),
('H4', 281, 45, 5),
('H4', 282, 45, 6),
('H4', 283, 45, 7),
('H4', 284, 45, 8),
('H4', 285, 45, 9),
('H4', 286, 45, 10),
('H4', 287, 45, 11),
('H4', 288, 12, 1),
('H4', 289, 46, 1),
('H4', 290, 46, 2),
('H4', 291, 46, 3),
('H4', 292, 46, 4),
('H4', 293, 46, 5),
('H4', 294, 46, 6),
('H4', 295, 2, 1),
('H4', 296, 47, 1),
('H4', 297, 47, 2),
('H4', 298, 47, 3),
('H4', 299, 48, 1),
('H4', 300, 48, 2),
('H4', 303, 49, 1),
('H4', 304, 49, 2),
('H4', 305, 19, 5),
('H4', 306, 19, 6),
('H4', 307, 19, 7),
('H4', 308, 19, 8),
('H4', 309, 19, 9),
('H4', 310, 19, 10),
('H4', 311, 19, 11),
('H4', 312, 21, 10),
('H4', 313, 21, 11),
('H4', 314, 21, 12),
('H4', 315, 21, 13),
('H4', 316, 21, 14),
('H4', 317, 21, 15),
('H4', 327, 14, 12),
('H4', 328, 14, 13),
('H4', 329, 14, 14),
('H4', 330, 14, 15),
('H4', 331, 14, 16),
('H4', 332, 14, 17),
('H4', 333, 20, 6),
('H4', 334, 20, 7),
('H4', 335, 20, 8),
('H4', 336, 11, 32),
('H4', 337, 11, 33),
('H4', 338, 11, 34),
('H4', 339, 11, 35),
('H4', 340, 11, 36),
('H4', 341, 1, 11),
('H4', 342, 1, 12),
('H4', 343, 50, 1),
('H4', 344, 50, 2),
('H4', 345, 51, 1),
('H4', 346, 51, 2),
('H4', 347, 51, 3),
('H4', 348, 51, 4),
('H4', 349, 52, 1),
('H4', 350, 52, 2),
('H4', 351, 52, 3),
('H4', 352, 52, 4),
('H4', 353, 53, 1),
('H4', 354, 53, 2),
('H4', 355, 53, 3),
('H4', 356, 53, 4),
('H4', 357, 54, 1),
('H4', 358, 54, 2),
('H4', 359, 55, 1),
('H4', 360, 55, 2),
('H4', 361, 56, 1),
('H4', 362, 56, 2),
('H4', 363, 56, 3),
('H4', 364, 56, 4),
('H4', 365, 56, 5),
('H4', 366, 57, 1),
('H4', 367, 57, 2),
('H4', 368, 57, 3),
('H4', 369, 57, 4),
('H4', 370, 57, 5),
('H4', 371, 57, 6),
('H4', 372, 58, 1),
('H4', 373, 58, 2),
('H4', 374, 58, 3),
('H4', 375, 58, 4),
('H4', 376, 59, 1),
('H4', 377, 59, 2),
('H4', 378, 59, 3),
('H4', 379, 59, 4),
('H4', 380, 60, 1),
('H4', 381, 60, 2),
('H4', 382, 60, 3),
('H4', 383, 60, 4),
('H4', 384, 60, 5),
('H4', 385, 61, 1),
('H4', 386, 61, 2),
('H4', 387, 61, 3),
('H4', 388, 61, 4),
('H4', 389, 62, 1),
('H4', 390, 62, 2),
('H4', 391, 62, 3),
('H4', 392, 62, 4),
('H4', 393, 63, 1),
('H4', 394, 63, 2),
('H4', 395, 63, 3),
('H4', 396, 63, 4),
('H4', 397, 63, 5),
('H4', 398, 32, 1),
('H4', 399, 32, 2),
('H4', 400, 32, 3),
('H4', 401, 32, 4),
('H4', 402, 32, 5),
('H4', 403, 34, 1),
('H4', 404, 34, 2),
('H4', 405, 34, 3),
('H4', 406, 34, 4),
('H4', 407, 64, 1),
('H4', 408, 64, 2),
('H4', 409, 65, 1),
('H4', 410, 65, 2),
('H4', 411, 66, 1),
('H4', 412, 66, 2),
('H4', 413, 66, 3),
('H4', 414, 67, 1),
('H4', 415, 67, 2),
('H4', 416, 67, 3),
('H4', 417, 67, 4),
('H4', 418, 68, 1),
('H4', 419, 68, 2),
('H4', 420, 68, 3),
('H4', 421, 68, 4),
('H4', 422, 69, 1),
('H4', 423, 69, 2),
('H4', 424, 69, 3),
('H4', 425, 69, 4),
('H4', 426, 70, 1),
('H4', 427, 70, 2),
('H4', 428, 70, 3),
('H4', 429, 70, 4),
('H4', 430, 70, 5),
('H4', 431, 71, 1),
('H4', 432, 71, 2),
('H4', 433, 72, 1),
('H4', 434, 72, 2),
('H4', 435, 72, 3),
('H4', 436, 72, 4),
('H4', 437, 73, 1),
('H4', 438, 73, 2),
('H4', 439, 73, 3),
('H4', 440, 73, 4),
('H4', 441, 71, 1),
('H4', 442, 74, 1),
('H4', 443, 74, 2),
('H4', 444, 74, 3),
('H4', 445, 74, 4),
('H4', 446, 74, 5),
('H4', 447, 74, 6),
('H4', 448, 63, 1),
('H4', 449, 63, 2),
('H4', 450, 63, 3),
('H4', 451, 75, 1),
('H4', 452, 75, 2),
('H4', 453, 75, 3),
('H4', 454, 75, 4),
('H4', 455, 75, 5),
('H4', 456, 75, 6),
('H4', 457, 76, 1),
('H4', 458, 76, 2),
('H4', 459, 76, 3),
('H4', 460, 76, 4),
('H4', 461, 76, 5),
('H4', 462, 76, 6),
('H4', 463, 76, 7),
('H4', 464, 77, 1),
('H4', 465, 77, 2),
('H4', 466, 78, 1),
('H4', 467, 78, 2),
('H4', 468, 78, 3),
('H4', 469, 79, 1),
('H4', 470, 79, 2),
('H4', 471, 79, 3),
('H4', 472, 79, 4),
('H4', 473, 80, 1),
('H4', 474, 80, 2),
('H4', 475, 80, 3),
('H4', 476, 80, 4),
('H4', 477, 81, 1),
('H4', 478, 81, 2),
('H4', 479, 82, 1),
('H4', 480, 82, 2),
('H4', 481, 82, 3),
('H4', 482, 82, 4),
('H4', 483, 82, 5),
('H4', 484, 83, 1),
('H4', 485, 83, 2),
('H4', 486, 83, 3),
('H4', 487, 84, 1),
('H4', 488, 84, 2),
('H4', 489, 84, 3),
('H4', 490, 84, 4),
('H4', 491, 84, 5),
('H4', 492, 85, 1),
('H4', 493, 85, 1),
('H4', 494, 86, 1),
('H4', 495, 86, 2),
('H4', 496, 86, 3),
('H4', 497, 87, 1),
('H4', 498, 87, 2),
('H4', 499, 87, 3),
('H4', 500, 88, 1),
('H4', 501, 89, 1),
('H4', 502, 90, 1),
('H4', 503, 90, 2),
('H4', 504, 90, 3),
('H4', 505, 91, 1),
('H4', 506, 91, 2),
('H4', 507, 91, 3),
('H4', 508, 91, 4),
('H4', 509, 91, 5),
('H4', 510, 92, 1),
('H4', 511, 92, 2),
('H4', 512, 92, 3),
('H4', 513, 92, 4),
('H4', 514, 93, 1),
('H4', 515, 93, 2),
('H4', 516, 93, 3),
('H4', 517, 93, 4),
('H4', 518, 93, 5),
('H5', 1, 1, 0),
('H5', 2, 1, 1),
('H5', 3, 1, 2),
('H5', 4, 1, 3),
('H5', 5, 1, 4),
('H5', 6, 1, 5),
('H5', 7, 1, 6),
('H5', 8, 1, 7),
('H5', 9, 1, 8),
('H5', 10, 1, 9),
('H5', 11, 1, 10),
('H5', 12, 2, 0),
('H5', 13, 2, 1),
('H5', 14, 3, 0),
('H5', 15, 3, 1),
('H5', 16, 3, 2),
('H5', 17, 3, 3),
('H5', 18, 3, 4),
('H5', 19, 3, 5),
('H5', 20, 4, 0),
('H5', 21, 4, 1),
('H5', 22, 4, 2),
('H5', 23, 4, 3),
('H5', 24, 4, 4),
('H5', 25, 4, 5),
('H5', 26, 4, 6),
('H5', 27, 4, 7),
('H5', 28, 4, 8),
('H5', 29, 4, 9),
('H5', 30, 4, 10),
('H5', 31, 4, 11),
('H5', 32, 4, 12),
('H5', 33, 5, 0),
('H5', 34, 5, 1),
('H5', 35, 5, 2),
('H5', 36, 5, 3),
('H5', 37, 5, 4),
('H5', 38, 6, 0),
('H5', 39, 6, 1),
('H5', 40, 6, 2),
('H5', 41, 7, 0),
('H5', 42, 7, 1),
('H5', 43, 7, 2),
('H5', 44, 7, 3),
('H5', 45, 7, 4),
('H5', 46, 8, 0),
('H5', 47, 9, 0),
('H5', 48, 9, 1),
('H5', 49, 9, 2),
('H5', 50, 9, 3),
('H5', 51, 10, 0),
('H5', 52, 10, 1),
('H5', 53, 10, 2),
('H5', 54, 10, 3),
('H5', 55, 10, 4),
('H5', 56, 10, 5),
('H5', 57, 10, 6),
('H5', 58, 10, 7),
('H5', 59, 10, 8),
('H5', 60, 11, 0),
('H5', 61, 11, 1),
('H5', 62, 11, 2),
('H5', 63, 11, 3),
('H5', 64, 11, 4),
('H5', 65, 11, 5),
('H5', 66, 11, 6),
('H5', 67, 11, 7),
('H5', 68, 11, 8),
('H5', 69, 11, 9),
('H5', 70, 11, 10),
('H5', 71, 11, 11),
('H5', 72, 11, 12),
('H5', 73, 11, 13),
('H5', 74, 11, 14),
('H5', 75, 11, 15),
('H5', 76, 11, 16),
('H5', 77, 11, 17),
('H5', 78, 11, 18),
('H5', 79, 11, 19),
('H5', 80, 11, 20),
('H5', 81, 11, 21),
('H5', 82, 11, 22),
('H5', 83, 11, 23),
('H5', 84, 11, 24),
('H5', 85, 11, 25),
('H5', 86, 11, 26),
('H5', 87, 11, 27),
('H5', 88, 11, 28),
('H5', 89, 11, 29),
('H5', 90, 11, 30),
('H5', 91, 11, 31),
('H5', 92, 12, 0),
('H5', 93, 12, 1),
('H5', 94, 12, 2),
('H5', 95, 12, 3),
('H5', 96, 12, 4),
('H5', 97, 12, 5),
('H5', 98, 13, 0),
('H5', 99, 13, 1),
('H5', 100, 13, 2),
('H5', 101, 13, 3),
('H5', 102, 13, 4),
('H5', 103, 13, 5),
('H5', 104, 13, 6),
('H5', 105, 13, 7),
('H5', 106, 13, 8),
('H5', 107, 13, 9),
('H5', 108, 13, 10),
('H5', 109, 13, 11),
('H5', 110, 13, 12),
('H5', 111, 14, 0),
('H5', 112, 14, 1),
('H5', 113, 14, 2),
('H5', 114, 14, 3),
('H5', 115, 14, 4),
('H5', 116, 14, 5),
('H5', 117, 14, 6),
('H5', 118, 14, 7),
('H5', 119, 14, 8),
('H5', 120, 14, 9),
('H5', 121, 14, 10),
('H5', 122, 14, 11),
('H5', 123, 15, 0),
('H5', 124, 15, 1),
('H5', 125, 15, 2),
('H5', 126, 15, 3),
('H5', 127, 16, 0),
('H5', 128, 16, 1),
('H5', 129, 16, 2),
('H5', 130, 17, 0),
('H5', 131, 17, 1),
('H5', 132, 17, 2),
('H5', 133, 17, 3),
('H5', 134, 17, 4),
('H5', 135, 18, 0),
('H5', 136, 18, 1),
('H5', 137, 18, 2),
('H5', 138, 18, 3),
('H5', 139, 19, 0),
('H5', 140, 19, 1),
('H5', 141, 19, 2),
('H5', 142, 19, 3),
('H5', 143, 19, 4),
('H5', 144, 20, 0),
('H5', 145, 20, 1),
('H5', 146, 20, 2),
('H5', 147, 20, 3),
('H5', 148, 20, 4),
('H5', 149, 20, 5),
('H5', 150, 21, 0),
('H5', 151, 21, 1),
('H5', 152, 21, 2),
('H5', 153, 21, 3),
('H5', 154, 21, 4),
('H5', 155, 21, 5),
('H5', 156, 21, 6),
('H5', 157, 21, 7),
('H5', 158, 21, 8),
('H5', 159, 21, 9),
('H5', 160, 22, 0),
('H5', 161, 22, 1),
('H5', 162, 22, 2),
('H5', 163, 22, 3),
('H5', 164, 22, 4),
('H5', 165, 22, 5),
('H5', 166, 23, 0),
('H5', 167, 23, 1),
('H5', 168, 23, 2),
('H5', 169, 23, 3),
('H5', 170, 24, 0),
('H5', 171, 24, 1),
('H5', 172, 24, 2),
('H5', 173, 25, 0),
('H5', 174, 25, 1),
('H5', 175, 25, 2),
('H5', 176, 25, 3),
('H5', 177, 25, 4),
('H5', 178, 25, 5),
('H5', 179, 26, 0),
('H5', 180, 26, 1),
('H5', 181, 26, 2),
('H5', 182, 27, 0),
('H5', 183, 27, 1),
('H5', 184, 27, 2),
('H5', 185, 27, 3),
('H5', 186, 28, 0),
('H5', 187, 28, 1),
('H5', 188, 28, 2),
('H5', 189, 28, 3),
('H5', 190, 29, 0),
('H5', 191, 29, 1),
('H5', 192, 29, 2),
('H5', 193, 29, 3),
('H5', 194, 30, 0),
('H5', 195, 30, 1),
('H5', 196, 30, 2),
('H5', 197, 30, 3),
('H5', 198, 30, 4),
('H5', 199, 30, 5),
('H5', 200, 30, 6),
('H5', 201, 30, 7),
('H5', 202, 30, 8),
('H5', 203, 30, 9),
('H5', 204, 30, 10),
('H5', 205, 30, 11),
('H5', 206, 30, 12),
('H5', 207, 30, 13),
('H5', 208, 30, 14),
('H5', 209, 30, 15),
('H5', 210, 31, 1),
('H5', 211, 31, 2),
('H5', 212, 31, 3),
('H5', 213, 31, 4),
('H5', 214, 32, 1),
('H5', 215, 32, 2),
('H5', 216, 32, 3),
('H5', 217, 32, 4),
('H5', 218, 32, 5),
('H5', 219, 32, 6),
('H5', 220, 33, 1),
('H5', 221, 33, 2),
('H5', 222, 33, 3),
('H5', 223, 34, 1),
('H5', 224, 34, 2),
('H5', 225, 34, 3),
('H5', 226, 35, 1),
('H5', 227, 35, 2),
('H5', 228, 35, 3),
('H5', 229, 36, 1),
('H5', 230, 36, 2),
('H5', 231, 36, 3),
('H5', 232, 36, 4),
('H5', 233, 36, 5),
('H5', 234, 36, 6),
('H5', 235, 37, 1),
('H5', 236, 37, 2),
('H5', 237, 38, 1),
('H5', 238, 38, 2),
('H5', 239, 38, 3),
('H5', 240, 38, 4),
('H5', 241, 39, 1),
('H5', 242, 39, 2),
('H5', 243, 39, 3),
('H5', 244, 39, 4),
('H5', 245, 40, 1),
('H5', 246, 40, 2),
('H5', 247, 40, 3),
('H5', 248, 40, 4),
('H5', 249, 41, 1),
('H5', 250, 41, 2),
('H5', 251, 41, 3),
('H5', 252, 41, 4),
('H5', 253, 41, 5),
('H5', 254, 41, 6),
('H5', 255, 41, 7),
('H5', 256, 41, 8),
('H5', 257, 41, 9),
('H5', 258, 41, 10),
('H5', 259, 41, 11),
('H5', 260, 42, 1),
('H5', 261, 42, 2),
('H5', 262, 42, 3),
('H5', 263, 42, 4),
('H5', 264, 42, 5),
('H5', 265, 42, 6),
('H5', 266, 42, 7),
('H5', 267, 42, 8),
('H5', 268, 42, 9),
('H5', 269, 43, 1),
('H5', 270, 43, 2),
('H5', 271, 43, 3),
('H5', 272, 43, 4),
('H5', 273, 44, 1),
('H5', 274, 44, 2),
('H5', 275, 44, 3),
('H5', 276, 44, 4),
('H5', 277, 45, 1),
('H5', 278, 45, 2),
('H5', 279, 45, 3),
('H5', 280, 45, 4),
('H5', 281, 45, 5),
('H5', 282, 45, 6),
('H5', 283, 45, 7),
('H5', 284, 45, 8),
('H5', 285, 45, 9),
('H5', 286, 45, 10),
('H5', 287, 45, 11),
('H5', 288, 12, 1),
('H5', 289, 46, 1),
('H5', 290, 46, 2),
('H5', 291, 46, 3),
('H5', 292, 46, 4),
('H5', 293, 46, 5),
('H5', 294, 46, 6),
('H5', 295, 2, 1),
('H5', 296, 47, 1),
('H5', 297, 47, 2),
('H5', 298, 47, 3),
('H5', 299, 48, 1),
('H5', 300, 48, 2),
('H5', 303, 49, 1),
('H5', 304, 49, 2),
('H5', 305, 19, 5),
('H5', 306, 19, 6),
('H5', 307, 19, 7),
('H5', 308, 19, 8),
('H5', 309, 19, 9),
('H5', 310, 19, 10),
('H5', 311, 19, 11),
('H5', 312, 21, 10),
('H5', 313, 21, 11),
('H5', 314, 21, 12),
('H5', 315, 21, 13),
('H5', 316, 21, 14),
('H5', 317, 21, 15),
('H5', 327, 14, 12),
('H5', 328, 14, 13),
('H5', 329, 14, 14),
('H5', 330, 14, 15),
('H5', 331, 14, 16),
('H5', 332, 14, 17),
('H5', 333, 20, 6),
('H5', 334, 20, 7),
('H5', 335, 20, 8),
('H5', 336, 11, 32),
('H5', 337, 11, 33),
('H5', 338, 11, 34),
('H5', 339, 11, 35),
('H5', 340, 11, 36),
('H5', 341, 1, 11),
('H5', 342, 1, 12),
('H5', 343, 50, 1),
('H5', 344, 50, 2),
('H5', 345, 51, 1),
('H5', 346, 51, 2),
('H5', 347, 51, 3),
('H5', 348, 51, 4),
('H5', 349, 52, 1),
('H5', 350, 52, 2),
('H5', 351, 52, 3),
('H5', 352, 52, 4),
('H5', 353, 53, 1),
('H5', 354, 53, 2),
('H5', 355, 53, 3),
('H5', 356, 53, 4),
('H5', 357, 54, 1),
('H5', 358, 54, 2),
('H5', 359, 55, 1),
('H5', 360, 55, 2),
('H5', 361, 56, 1),
('H5', 362, 56, 2),
('H5', 363, 56, 3),
('H5', 364, 56, 4),
('H5', 365, 56, 5),
('H5', 366, 57, 1),
('H5', 367, 57, 2),
('H5', 368, 57, 3),
('H5', 369, 57, 4),
('H5', 370, 57, 5),
('H5', 371, 57, 6),
('H5', 372, 58, 1),
('H5', 373, 58, 2),
('H5', 374, 58, 3),
('H5', 375, 58, 4),
('H5', 376, 59, 1),
('H5', 377, 59, 2),
('H5', 378, 59, 3),
('H5', 379, 59, 4),
('H5', 380, 60, 1),
('H5', 381, 60, 2),
('H5', 382, 60, 3),
('H5', 383, 60, 4),
('H5', 384, 60, 5),
('H5', 385, 61, 1),
('H5', 386, 61, 2),
('H5', 387, 61, 3),
('H5', 388, 61, 4),
('H5', 389, 62, 1),
('H5', 390, 62, 2),
('H5', 391, 62, 3),
('H5', 392, 62, 4),
('H5', 393, 63, 1),
('H5', 394, 63, 2),
('H5', 395, 63, 3),
('H5', 396, 63, 4),
('H5', 397, 63, 5),
('H5', 398, 32, 1),
('H5', 399, 32, 2),
('H5', 400, 32, 3),
('H5', 401, 32, 4),
('H5', 402, 32, 5),
('H5', 403, 34, 1),
('H5', 404, 34, 2),
('H5', 405, 34, 3),
('H5', 406, 34, 4),
('H5', 407, 64, 1),
('H5', 408, 64, 2),
('H5', 409, 65, 1),
('H5', 410, 65, 2),
('H5', 411, 66, 1),
('H5', 412, 66, 2),
('H5', 413, 66, 3),
('H5', 414, 67, 1),
('H5', 415, 67, 2),
('H5', 416, 67, 3),
('H5', 417, 67, 4),
('H5', 418, 68, 1),
('H5', 419, 68, 2),
('H5', 420, 68, 3),
('H5', 421, 68, 4),
('H5', 422, 69, 1),
('H5', 423, 69, 2),
('H5', 424, 69, 3),
('H5', 425, 69, 4),
('H5', 426, 70, 1),
('H5', 427, 70, 2),
('H5', 428, 70, 3),
('H5', 429, 70, 4),
('H5', 430, 70, 5),
('H5', 431, 71, 1),
('H5', 432, 71, 2),
('H5', 433, 72, 1),
('H5', 434, 72, 2),
('H5', 435, 72, 3),
('H5', 436, 72, 4),
('H5', 437, 73, 1),
('H5', 438, 73, 2),
('H5', 439, 73, 3),
('H5', 440, 73, 4),
('H5', 441, 71, 1),
('H5', 442, 74, 1),
('H5', 443, 74, 2),
('H5', 444, 74, 3),
('H5', 445, 74, 4),
('H5', 446, 74, 5),
('H5', 447, 74, 6),
('H5', 448, 63, 1),
('H5', 449, 63, 2),
('H5', 450, 63, 3),
('H5', 451, 75, 1),
('H5', 452, 75, 2),
('H5', 453, 75, 3),
('H5', 454, 75, 4),
('H5', 455, 75, 5),
('H5', 456, 75, 6),
('H5', 457, 76, 1),
('H5', 458, 76, 2),
('H5', 459, 76, 3),
('H5', 460, 76, 4),
('H5', 461, 76, 5),
('H5', 462, 76, 6),
('H5', 463, 76, 7),
('H5', 464, 77, 1),
('H5', 465, 77, 2),
('H5', 466, 78, 1),
('H5', 467, 78, 2),
('H5', 468, 78, 3),
('H5', 469, 79, 1),
('H5', 470, 79, 2),
('H5', 471, 79, 3),
('H5', 472, 79, 4),
('H5', 473, 80, 1),
('H5', 474, 80, 2),
('H5', 475, 80, 3),
('H5', 476, 80, 4),
('H5', 477, 81, 1),
('H5', 478, 81, 2),
('H5', 479, 82, 1),
('H5', 480, 82, 2),
('H5', 481, 82, 3),
('H5', 482, 82, 4),
('H5', 483, 82, 5),
('H5', 484, 83, 1),
('H5', 485, 83, 2),
('H5', 486, 83, 3),
('H5', 487, 84, 1),
('H5', 488, 84, 2),
('H5', 489, 84, 3),
('H5', 490, 84, 4),
('H5', 491, 84, 5),
('H5', 492, 85, 1),
('H5', 493, 85, 1),
('H5', 494, 86, 1),
('H5', 495, 86, 2),
('H5', 496, 86, 3),
('H5', 497, 87, 1),
('H5', 498, 87, 2),
('H5', 499, 87, 3),
('H5', 500, 88, 1),
('H5', 501, 89, 1),
('H5', 502, 90, 1),
('H5', 503, 90, 2),
('H5', 504, 90, 3),
('H5', 505, 91, 1),
('H5', 506, 91, 2),
('H5', 507, 91, 3),
('H5', 508, 91, 4),
('H5', 509, 91, 5),
('H5', 510, 92, 1),
('H5', 511, 92, 2),
('H5', 512, 92, 3),
('H5', 513, 92, 4),
('H5', 514, 93, 1),
('H5', 515, 93, 2),
('H5', 516, 93, 3),
('H5', 517, 93, 4),
('H5', 518, 93, 5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_role2profile`
--

DROP TABLE IF EXISTS `vtiger_role2profile`;
CREATE TABLE `vtiger_role2profile` (
  `roleid` varchar(255) NOT NULL,
  `profileid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_role2profile`
--

INSERT IGNORE INTO `vtiger_role2profile` (`roleid`, `profileid`) VALUES
('H2', 5),
('H29', 32),
('H3', 6),
('H30', 33),
('H31', 34),
('H4', 7),
('H5', 8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_role_seq`
--

DROP TABLE IF EXISTS `vtiger_role_seq`;
CREATE TABLE `vtiger_role_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_role_seq`
--

INSERT IGNORE INTO `vtiger_role_seq` (`id`) VALUES
(38);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rollupcomments_settings`
--

DROP TABLE IF EXISTS `vtiger_rollupcomments_settings`;
CREATE TABLE `vtiger_rollupcomments_settings` (
  `rollupid` int(19) NOT NULL,
  `userid` int(19) NOT NULL,
  `tabid` int(19) NOT NULL,
  `rollup_status` int(2) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rowheight`
--

DROP TABLE IF EXISTS `vtiger_rowheight`;
CREATE TABLE `vtiger_rowheight` (
  `rowheightid` int(11) NOT NULL,
  `rowheight` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_rowheight`
--

INSERT IGNORE INTO `vtiger_rowheight` (`rowheightid`, `rowheight`, `sortorderid`, `presence`) VALUES
(1, 'wide', 0, 1),
(2, 'medium', 1, 1),
(3, 'narrow', 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rowheight_seq`
--

DROP TABLE IF EXISTS `vtiger_rowheight_seq`;
CREATE TABLE `vtiger_rowheight_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_rowheight_seq`
--

INSERT IGNORE INTO `vtiger_rowheight_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_rss`
--

DROP TABLE IF EXISTS `vtiger_rss`;
CREATE TABLE `vtiger_rss` (
  `rssid` int(19) NOT NULL,
  `rssurl` varchar(200) NOT NULL DEFAULT '',
  `rsstitle` varchar(200) DEFAULT NULL,
  `rsstype` int(10) DEFAULT 0,
  `starred` int(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salesmanactivityrel`
--

DROP TABLE IF EXISTS `vtiger_salesmanactivityrel`;
CREATE TABLE `vtiger_salesmanactivityrel` (
  `smid` int(19) NOT NULL DEFAULT 0,
  `activityid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_salesmanactivityrel`
--

INSERT IGNORE INTO `vtiger_salesmanactivityrel` (`smid`, `activityid`) VALUES
(1, 9),
(1, 10),
(1, 14),
(1, 15),
(1, 16),
(1, 17),
(1, 18),
(1, 19),
(1, 1039),
(1, 1050),
(1, 2061),
(1, 2132),
(1, 2133),
(1, 2134),
(1, 2160),
(1, 2165),
(1, 2172),
(1, 2178),
(1, 2184),
(1, 2190),
(1, 2196),
(1, 2204),
(1, 2212),
(1, 2273),
(1, 2290),
(1, 2291),
(1, 2292),
(1, 2293),
(1, 2294),
(1, 2295),
(1, 2300),
(1, 2305),
(1, 2310),
(1, 2318),
(1, 2326),
(1, 2334),
(1, 2342),
(1, 2350),
(1, 2366),
(2, 2112),
(5, 2115);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salesmanattachmentsrel`
--

DROP TABLE IF EXISTS `vtiger_salesmanattachmentsrel`;
CREATE TABLE `vtiger_salesmanattachmentsrel` (
  `smid` int(19) NOT NULL DEFAULT 0,
  `attachmentsid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_salesmanattachmentsrel`
--

INSERT IGNORE INTO `vtiger_salesmanattachmentsrel` (`smid`, `attachmentsid`) VALUES
(1, 13);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salesmanticketrel`
--

DROP TABLE IF EXISTS `vtiger_salesmanticketrel`;
CREATE TABLE `vtiger_salesmanticketrel` (
  `smid` int(19) NOT NULL DEFAULT 0,
  `id` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salesorder`
--

DROP TABLE IF EXISTS `vtiger_salesorder`;
CREATE TABLE `vtiger_salesorder` (
  `salesorderid` int(19) NOT NULL DEFAULT 0,
  `subject` varchar(100) DEFAULT NULL,
  `potentialid` int(19) DEFAULT NULL,
  `customerno` varchar(100) DEFAULT NULL,
  `salesorder_no` varchar(100) DEFAULT NULL,
  `quoteid` int(19) DEFAULT NULL,
  `vendorterms` varchar(100) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `vendorid` int(19) DEFAULT NULL,
  `duedate` date DEFAULT NULL,
  `carrier` varchar(200) DEFAULT NULL,
  `pending` varchar(200) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `adjustment` decimal(25,8) DEFAULT NULL,
  `salescommission` decimal(25,3) DEFAULT NULL,
  `exciseduty` decimal(25,3) DEFAULT NULL,
  `total` decimal(25,8) DEFAULT NULL,
  `subtotal` decimal(25,8) DEFAULT NULL,
  `taxtype` varchar(25) DEFAULT NULL,
  `discount_percent` decimal(25,3) DEFAULT NULL,
  `discount_amount` decimal(25,8) DEFAULT NULL,
  `s_h_amount` decimal(25,8) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `terms_conditions` text DEFAULT NULL,
  `purchaseorder` varchar(200) DEFAULT NULL,
  `sostatus` varchar(200) DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `conversion_rate` decimal(10,3) NOT NULL DEFAULT 1.000,
  `enable_recurring` int(11) DEFAULT 0,
  `compound_taxes_info` text DEFAULT NULL,
  `pre_tax_total` decimal(25,8) DEFAULT NULL,
  `s_h_percent` decimal(25,3) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `region_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salesordercf`
--

DROP TABLE IF EXISTS `vtiger_salesordercf`;
CREATE TABLE `vtiger_salesordercf` (
  `salesorderid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sales_channel`
--

DROP TABLE IF EXISTS `vtiger_sales_channel`;
CREATE TABLE `vtiger_sales_channel` (
  `sales_channelid` int(11) NOT NULL,
  `sales_channel` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sales_channel`
--

INSERT IGNORE INTO `vtiger_sales_channel` (`sales_channelid`, `sales_channel`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Direct', 1, 437, 1, NULL),
(2, 'Retail', 1, 438, 2, NULL),
(3, 'Online', 1, 439, 3, NULL),
(4, 'Partner', 1, 440, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sales_channel_seq`
--

DROP TABLE IF EXISTS `vtiger_sales_channel_seq`;
CREATE TABLE `vtiger_sales_channel_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sales_channel_seq`
--

INSERT IGNORE INTO `vtiger_sales_channel_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sales_stage`
--

DROP TABLE IF EXISTS `vtiger_sales_stage`;
CREATE TABLE `vtiger_sales_stage` (
  `sales_stage_id` int(19) NOT NULL,
  `sales_stage` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sales_stage`
--

INSERT IGNORE INTO `vtiger_sales_stage` (`sales_stage_id`, `sales_stage`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Prospecting', 1, 150, 0, NULL),
(2, 'Qualification', 1, 151, 1, NULL),
(3, 'Needs Analysis', 1, 152, 2, NULL),
(4, 'Value Proposition', 1, 153, 3, NULL),
(5, 'Id. Decision Makers', 1, 154, 4, NULL),
(6, 'Perception Analysis', 1, 155, 5, NULL),
(7, 'Proposal or Price Quote', 1, 156, 6, NULL),
(8, 'Negotiation or Review', 1, 157, 7, NULL),
(9, 'Closed Won', 1, 158, 8, NULL),
(10, 'Closed Lost', 1, 159, 9, NULL),
(11, '۱.آشنایی اولیه', 0, 312, 10, NULL),
(12, '۲.ارزیابی و تحلیل نیاز', 0, 313, 11, NULL),
(13, '۳.ارائه پیشنهاد/پیش فاکتور', 0, 314, 12, NULL),
(14, '۴.مذاکره نهایی', 0, 315, 13, NULL),
(15, '۵.الف.فروش موفق', 0, 316, 14, NULL),
(16, '۵.ب.فروش ناموفق', 0, 317, 15, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sales_stage_seq`
--

DROP TABLE IF EXISTS `vtiger_sales_stage_seq`;
CREATE TABLE `vtiger_sales_stage_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_sales_stage_seq`
--

INSERT IGNORE INTO `vtiger_sales_stage_seq` (`id`) VALUES
(10);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salutationtype`
--

DROP TABLE IF EXISTS `vtiger_salutationtype`;
CREATE TABLE `vtiger_salutationtype` (
  `salutationid` int(19) NOT NULL,
  `salutationtype` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_salutationtype`
--

INSERT IGNORE INTO `vtiger_salutationtype` (`salutationid`, `salutationtype`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Mr.', 1, 161, 1, NULL),
(3, 'Ms.', 1, 162, 2, NULL),
(4, 'Mrs.', 1, 163, 3, NULL),
(5, 'Dr.', 1, 164, 4, NULL),
(6, 'Prof.', 1, 165, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_salutationtype_seq`
--

DROP TABLE IF EXISTS `vtiger_salutationtype_seq`;
CREATE TABLE `vtiger_salutationtype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_salutationtype_seq`
--

INSERT IGNORE INTO `vtiger_salutationtype_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sample_status`
--

DROP TABLE IF EXISTS `vtiger_sample_status`;
CREATE TABLE `vtiger_sample_status` (
  `sample_statusid` int(11) NOT NULL,
  `sample_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sample_status`
--

INSERT IGNORE INTO `vtiger_sample_status` (`sample_statusid`, `sample_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Requested', 1, 457, 1, NULL),
(2, 'Approved', 1, 458, 2, NULL),
(3, 'Dispatched', 1, 459, 3, NULL),
(4, 'Delivered', 1, 460, 4, NULL),
(5, 'Returned', 1, 461, 5, NULL),
(6, 'Consumed', 1, 462, 6, NULL),
(7, 'Cancelled', 1, 463, 7, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sample_status_seq`
--

DROP TABLE IF EXISTS `vtiger_sample_status_seq`;
CREATE TABLE `vtiger_sample_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sample_status_seq`
--

INSERT IGNORE INTO `vtiger_sample_status_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvaccessgrants`
--

DROP TABLE IF EXISTS `vtiger_sarvaccessgrants`;
CREATE TABLE `vtiger_sarvaccessgrants` (
  `sarvaccessgrantsid` int(19) NOT NULL,
  `grant_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `groupid` int(19) DEFAULT NULL,
  `group_name` varchar(100) DEFAULT NULL,
  `access_level` varchar(255) DEFAULT NULL,
  `grant_status` varchar(255) DEFAULT NULL,
  `valid_from` date DEFAULT NULL,
  `valid_to` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvaccessgrants`
--

INSERT IGNORE INTO `vtiger_sarvaccessgrants` (`sarvaccessgrantsid`, `grant_no`, `subject`, `accountid`, `groupid`, `group_name`, `access_level`, `grant_status`, `valid_from`, `valid_to`) VALUES
(2228, 'AGR1', 'Team Selling - آقای کامران دادجو (مثال) - Read', 2036, 2, 'Team Selling', 'Read', 'Active', '2026-07-18', '2027-07-18');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvaccessgrantscf`
--

DROP TABLE IF EXISTS `vtiger_sarvaccessgrantscf`;
CREATE TABLE `vtiger_sarvaccessgrantscf` (
  `sarvaccessgrantsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvaccessgrantscf`
--

INSERT IGNORE INTO `vtiger_sarvaccessgrantscf` (`sarvaccessgrantsid`) VALUES
(2228);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvbankaccounts`
--

DROP TABLE IF EXISTS `vtiger_sarvbankaccounts`;
CREATE TABLE `vtiger_sarvbankaccounts` (
  `sarvbankaccountsid` int(19) NOT NULL,
  `bankaccount_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `holder_name` varchar(255) DEFAULT NULL,
  `bank_name` varchar(150) DEFAULT NULL,
  `iban_input` varchar(64) DEFAULT NULL,
  `iban_last4` varchar(4) DEFAULT NULL,
  `iban_hash` char(64) DEFAULT NULL,
  `iban_ciphertext` text DEFAULT NULL,
  `account_type` varchar(255) DEFAULT NULL,
  `account_status` varchar(255) DEFAULT NULL,
  `is_primary` varchar(3) DEFAULT NULL,
  `verified_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvbankaccounts`
--

INSERT IGNORE INTO `vtiger_sarvbankaccounts` (`sarvbankaccountsid`, `bankaccount_no`, `subject`, `accountid`, `holder_name`, `bank_name`, `iban_input`, `iban_last4`, `iban_hash`, `iban_ciphertext`, `account_type`, `account_status`, `is_primary`, `verified_at`) VALUES
(2217, 'BA1', 'حساب بانکی آزمایشی امن [Gouya-PHASE05]', 2036, 'آقای کامران دادجو (مثال)', 'بانک نمونه', '', '0001', NULL, NULL, 'Current', 'Active', '1', '2026-07-18 04:56:10'),
(2218, 'BA2', 'حساب بانکی آزمایشی امن [Gouya-PHASE05]', 2036, 'آقای کامران دادجو (مثال)', 'بانک نمونه', '', '0001', '38718b77be274571727c921a2024fc5296d4463c462fa783ce50bc7bf047785c', 'v1:v0GGNCKNCDc3dCD9:eaSN66HkKoPSpXAmRaTLAA==:luUaefA+Po1UqlimBTG0VtbGtA6TIUExzf8=', 'Current', 'Active', '1', '2026-07-18 04:57:31');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvbankaccountscf`
--

DROP TABLE IF EXISTS `vtiger_sarvbankaccountscf`;
CREATE TABLE `vtiger_sarvbankaccountscf` (
  `sarvbankaccountsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvbankaccountscf`
--

INSERT IGNORE INTO `vtiger_sarvbankaccountscf` (`sarvbankaccountsid`) VALUES
(2217),
(2218);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvbusinesslocations`
--

DROP TABLE IF EXISTS `vtiger_sarvbusinesslocations`;
CREATE TABLE `vtiger_sarvbusinesslocations` (
  `sarvbusinesslocationsid` int(19) NOT NULL,
  `location_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `location_type` varchar(255) DEFAULT NULL,
  `parentlocationid` int(19) DEFAULT NULL,
  `location_status` varchar(255) DEFAULT NULL,
  `managercontactid` int(19) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `street` text DEFAULT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `latitude` decimal(10,7) DEFAULT NULL,
  `longitude` decimal(10,7) DEFAULT NULL,
  `timezone` varchar(80) DEFAULT NULL,
  `daily_capacity` decimal(10,2) DEFAULT NULL,
  `sales_channel` varchar(255) DEFAULT NULL,
  `is_primary` varchar(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvbusinesslocations`
--

INSERT IGNORE INTO `vtiger_sarvbusinesslocations` (`sarvbusinesslocationsid`, `location_no`, `subject`, `accountid`, `location_type`, `parentlocationid`, `location_status`, `managercontactid`, `phone`, `email`, `country`, `state`, `city`, `street`, `postal_code`, `latitude`, `longitude`, `timezone`, `daily_capacity`, `sales_channel`, `is_primary`) VALUES
(2222, 'LOC1', 'شعبه مرکزی حساب 2036 [Gouya-PHASE07]', 2036, 'Branch', NULL, 'Active', 2107, '02188770001', 'branch2036@example.test', 'ایران', 'تهران', 'تهران', 'خیابان نمونه، ساختمان مرکزی', '1599911111', 35.7219000, 51.3347000, 'Asia/Tehran', 0.00, 'Direct', '1'),
(2223, 'LOC2', 'مرکز سرویس حساب 2036 [Gouya-PHASE07]', 2036, 'ServiceCenter', 2222, 'Active', 2107, '02188770002', 'service2036@example.test', 'ایران', 'تهران', 'تهران', 'خیابان نمونه، واحد خدمات', '1599922222', 35.7225000, 51.3361000, 'Asia/Tehran', 24.00, NULL, '0'),
(2224, 'LOC3', 'مرکز فروش حساب 2036 [Gouya-PHASE08]', 2036, 'SalesCenter', 2222, 'Active', 2107, '02188770003', 'sales2036@example.test', 'ایران', 'تهران', 'تهران', 'خیابان نمونه، واحد فروش', '1599933333', 35.7231000, 51.3370000, 'Asia/Tehran', 40.00, 'Retail', '0');

--
-- Triggers `vtiger_sarvbusinesslocations`
--
DROP TRIGGER IF EXISTS `bi_sarvlocation_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bi_sarvlocation_optional_refs` BEFORE INSERT ON `vtiger_sarvbusinesslocations` FOR EACH ROW SET NEW.parentlocationid=NULLIF(NEW.parentlocationid,0), NEW.managercontactid=NULLIF(NEW.managercontactid,0)
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `bu_sarvlocation_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bu_sarvlocation_optional_refs` BEFORE UPDATE ON `vtiger_sarvbusinesslocations` FOR EACH ROW SET NEW.parentlocationid=NULLIF(NEW.parentlocationid,0), NEW.managercontactid=NULLIF(NEW.managercontactid,0)
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvbusinesslocationscf`
--

DROP TABLE IF EXISTS `vtiger_sarvbusinesslocationscf`;
CREATE TABLE `vtiger_sarvbusinesslocationscf` (
  `sarvbusinesslocationsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvbusinesslocationscf`
--

INSERT IGNORE INTO `vtiger_sarvbusinesslocationscf` (`sarvbusinesslocationsid`) VALUES
(2222),
(2223),
(2224);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvdeposits`
--

DROP TABLE IF EXISTS `vtiger_sarvdeposits`;
CREATE TABLE `vtiger_sarvdeposits` (
  `sarvdepositsid` int(19) NOT NULL,
  `deposit_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `relatedto` int(19) DEFAULT NULL,
  `deposit_type` varchar(255) DEFAULT NULL,
  `deposit_status` varchar(255) DEFAULT NULL,
  `received_date` date DEFAULT NULL,
  `maturity_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `amount` decimal(25,8) DEFAULT NULL,
  `applied_amount` decimal(25,8) DEFAULT NULL,
  `returned_amount` decimal(25,8) DEFAULT NULL,
  `currency_id` int(19) DEFAULT NULL,
  `conversion_rate` decimal(10,3) DEFAULT NULL,
  `paymentid` int(19) DEFAULT NULL,
  `reference_no` varchar(100) DEFAULT NULL,
  `released_date` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvdeposits`
--

INSERT IGNORE INTO `vtiger_sarvdeposits` (`sarvdepositsid`, `deposit_no`, `subject`, `accountid`, `contactid`, `relatedto`, `deposit_type`, `deposit_status`, `received_date`, `maturity_date`, `expiry_date`, `amount`, `applied_amount`, `returned_amount`, `currency_id`, `conversion_rate`, `paymentid`, `reference_no`, `released_date`) VALUES
(2220, 'DEP1', 'ودیعه تضمینی واقعی حساب ۲۰۳۶ [Gouya-PHASE06]', 2036, 2107, 0, 'Security', 'Received', '2026-07-18', '2026-08-17', '2027-01-14', 3000000.00000000, 0.00000000, 0.00000000, 2, 1.000, 2219, 'Gouya-PHASE06-DEP-2036', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvdepositscf`
--

DROP TABLE IF EXISTS `vtiger_sarvdepositscf`;
CREATE TABLE `vtiger_sarvdepositscf` (
  `sarvdepositsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvdepositscf`
--

INSERT IGNORE INTO `vtiger_sarvdepositscf` (`sarvdepositsid`) VALUES
(2220);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvgifts`
--

DROP TABLE IF EXISTS `vtiger_sarvgifts`;
CREATE TABLE `vtiger_sarvgifts` (
  `sarvgiftsid` int(19) NOT NULL,
  `gift_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `campaignid` int(19) DEFAULT NULL,
  `productid` int(19) DEFAULT NULL,
  `quantity` decimal(10,2) DEFAULT NULL,
  `unit_cost` decimal(25,8) DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `gift_status` varchar(255) DEFAULT NULL,
  `request_date` date DEFAULT NULL,
  `dispatch_date` date DEFAULT NULL,
  `delivery_date` date DEFAULT NULL,
  `return_date` date DEFAULT NULL,
  `tracking_no` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvgifts`
--

INSERT IGNORE INTO `vtiger_sarvgifts` (`sarvgiftsid`, `gift_no`, `subject`, `accountid`, `contactid`, `campaignid`, `productid`, `quantity`, `unit_cost`, `reason`, `gift_status`, `request_date`, `dispatch_date`, `delivery_date`, `return_date`, `tracking_no`) VALUES
(2226, 'GFT1', 'هدیه واقعی حساب 2036 [Gouya-PHASE09]', 2036, 2107, NULL, 26, 1.00, 50000000.00000000, 'هدیه وفاداری مشتری', 'Delivered', '2026-07-18', '2026-07-19', '2026-07-20', NULL, 'GIFT-2036-PH09');

--
-- Triggers `vtiger_sarvgifts`
--
DROP TRIGGER IF EXISTS `bi_sarvgift_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bi_sarvgift_optional_refs` BEFORE INSERT ON `vtiger_sarvgifts` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0),NEW.campaignid=NULLIF(NEW.campaignid,0),NEW.productid=NULLIF(NEW.productid,0)
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `bu_sarvgift_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bu_sarvgift_optional_refs` BEFORE UPDATE ON `vtiger_sarvgifts` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0),NEW.campaignid=NULLIF(NEW.campaignid,0),NEW.productid=NULLIF(NEW.productid,0)
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvgiftscf`
--

DROP TABLE IF EXISTS `vtiger_sarvgiftscf`;
CREATE TABLE `vtiger_sarvgiftscf` (
  `sarvgiftsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvgiftscf`
--

INSERT IGNORE INTO `vtiger_sarvgiftscf` (`sarvgiftsid`) VALUES
(2226);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvparticipations`
--

DROP TABLE IF EXISTS `vtiger_sarvparticipations`;
CREATE TABLE `vtiger_sarvparticipations` (
  `sarvparticipationsid` int(19) NOT NULL,
  `participation_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `relatedto` int(19) DEFAULT NULL,
  `participation_type` varchar(255) DEFAULT NULL,
  `role_name` varchar(150) DEFAULT NULL,
  `participation_status` varchar(255) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `share_percent` decimal(7,3) DEFAULT NULL,
  `contribution_amount` decimal(25,8) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvparticipations`
--

INSERT IGNORE INTO `vtiger_sarvparticipations` (`sarvparticipationsid`, `participation_no`, `subject`, `accountid`, `contactid`, `relatedto`, `participation_type`, `role_name`, `participation_status`, `start_date`, `end_date`, `share_percent`, `contribution_amount`) VALUES
(2151, 'PAR1', 'مشارکت واقعی حساب ۲۰۳۶ [Gouya-PHASE03]', 2036, 2107, 0, 'Member', 'عضو تجاری', 'Active', '2026-07-18', NULL, 25.000, 2500000.00000000);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvparticipationscf`
--

DROP TABLE IF EXISTS `vtiger_sarvparticipationscf`;
CREATE TABLE `vtiger_sarvparticipationscf` (
  `sarvparticipationsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvparticipationscf`
--

INSERT IGNORE INTO `vtiger_sarvparticipationscf` (`sarvparticipationsid`) VALUES
(2151);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvpayments`
--

DROP TABLE IF EXISTS `vtiger_sarvpayments`;
CREATE TABLE `vtiger_sarvpayments` (
  `sarvpaymentsid` int(19) NOT NULL,
  `payment_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `payment_direction` varchar(255) DEFAULT NULL,
  `payment_status` varchar(255) DEFAULT NULL,
  `expected_date` date DEFAULT NULL,
  `payment_date` date DEFAULT NULL,
  `amount` decimal(25,8) DEFAULT NULL,
  `currency_id` int(19) DEFAULT NULL,
  `conversion_rate` decimal(10,3) DEFAULT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `payment_type` varchar(255) DEFAULT NULL,
  `reference_no` varchar(100) DEFAULT NULL,
  `branch_name` varchar(100) DEFAULT NULL,
  `cashbox_name` varchar(100) DEFAULT NULL,
  `payment_company` varchar(100) DEFAULT NULL,
  `sms_reminder` varchar(255) DEFAULT NULL,
  `idempotency_key` varchar(100) DEFAULT NULL,
  `legacy_source` varchar(50) DEFAULT NULL,
  `legacy_id` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvpayments`
--

INSERT IGNORE INTO `vtiger_sarvpayments` (`sarvpaymentsid`, `payment_no`, `subject`, `accountid`, `contactid`, `payment_direction`, `payment_status`, `expected_date`, `payment_date`, `amount`, `currency_id`, `conversion_rate`, `payment_method`, `payment_type`, `reference_no`, `branch_name`, `cashbox_name`, `payment_company`, `sms_reminder`, `idempotency_key`, `legacy_source`, `legacy_id`) VALUES
(2139, 'PAY2', 'پرداخت (مثال)', 0, 0, 'Incoming', 'Paid', '2026-06-21', '2026-06-21', 50000000.00000000, 2, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 1),
(2140, 'PAY6', 'پیشگامان صنعت داده (مثال) - پرداخت', 21, 0, 'Incoming', 'Paid', '2026-06-21', NULL, 200000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 2),
(2141, 'PAY7', 'اورنگ (مثال) - پرداخت', 24, 0, 'Incoming', 'Paid', '2026-06-14', NULL, 58000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 3),
(2142, 'PAY1', 'پرداخت قسط اول (مثال)', 20, 0, 'Incoming', 'Paid', '2026-06-14', '2026-06-14', 80000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 4),
(2143, 'PAY8', 'کیان (مثال) - پرداخت', 25, 0, 'Incoming', 'Paid', '2026-06-12', '2026-06-12', 20000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 5),
(2144, 'PAY4', 'فرایند گستران شرق (مثال) - پرداخت', 22, 0, 'Incoming', 'Paid', '2026-06-08', NULL, 100000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 6),
(2145, 'PAY5', 'فرایند گستران شرق (مثال) - پرداخت', 22, 0, 'Incoming', 'Paid', '2026-06-02', NULL, 60000000.00000000, 1, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 7),
(2146, 'PAY9', 'تست پرداخت - الکترونیک گستر', 23, 0, 'Incoming', 'Paid', '2026-07-04', '2026-07-04', 100000000.00000000, 2, 1.000, 'Cash', 'InvoicePayment', '', '', '', '', 'None', NULL, 'gooyaacc_pay', 8),
(2148, 'PAY10', 'پرداخت واقعی فاکتور خرده‌فروشی حساب ۲۰۳۶ [Gouya-PHASE01]', 2036, 0, 'Incoming', 'Paid', '2026-07-15', '2026-07-15', 5000000.00000000, 2, 1.000, 'BankTransfer', 'InvoicePayment', 'Gouya-PHASE01-2036', '', '', '', 'None', 'Gouya-phase01-account2036', NULL, NULL),
(2219, 'PAY11', 'پرداخت واقعی ودیعه حساب ۲۰۳۶ [Gouya-PHASE06]', 2036, 2107, 'Incoming', 'Paid', '2026-07-18', '2026-07-18', 3000000.00000000, 2, 1.000, 'BankTransfer', 'AdvancePayment', 'Gouya-PHASE06-DEP-2036', '', '', '', 'None', 'Gouya-phase06-deposit-account-2036', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvpaymentscf`
--

DROP TABLE IF EXISTS `vtiger_sarvpaymentscf`;
CREATE TABLE `vtiger_sarvpaymentscf` (
  `sarvpaymentsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvpaymentscf`
--

INSERT IGNORE INTO `vtiger_sarvpaymentscf` (`sarvpaymentsid`) VALUES
(2139),
(2140),
(2141),
(2142),
(2143),
(2144),
(2145),
(2146),
(2148),
(2219);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvproductsamples`
--

DROP TABLE IF EXISTS `vtiger_sarvproductsamples`;
CREATE TABLE `vtiger_sarvproductsamples` (
  `sarvproductsamplesid` int(19) NOT NULL,
  `sample_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `potentialid` int(19) DEFAULT NULL,
  `campaignid` int(19) DEFAULT NULL,
  `productid` int(19) DEFAULT NULL,
  `quantity` decimal(10,2) DEFAULT NULL,
  `unit_name` varchar(30) DEFAULT NULL,
  `sample_status` varchar(255) DEFAULT NULL,
  `request_date` date DEFAULT NULL,
  `dispatch_date` date DEFAULT NULL,
  `return_due_date` date DEFAULT NULL,
  `return_date` date DEFAULT NULL,
  `cost` decimal(25,8) DEFAULT NULL,
  `tracking_no` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvproductsamples`
--

INSERT IGNORE INTO `vtiger_sarvproductsamples` (`sarvproductsamplesid`, `sample_no`, `subject`, `accountid`, `contactid`, `potentialid`, `campaignid`, `productid`, `quantity`, `unit_name`, `sample_status`, `request_date`, `dispatch_date`, `return_due_date`, `return_date`, `cost`, `tracking_no`) VALUES
(2227, 'SMP1', 'نمونه محصول واقعی حساب 2036 [Gouya-PHASE09]', 2036, 2107, 2040, NULL, 26, 2.00, 'عدد', 'Returned', '2026-07-18', '2026-07-19', '2026-07-25', '2026-07-21', 100000000.00000000, 'SAMPLE-2036-PH09');

--
-- Triggers `vtiger_sarvproductsamples`
--
DROP TRIGGER IF EXISTS `bi_sarvsample_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bi_sarvsample_optional_refs` BEFORE INSERT ON `vtiger_sarvproductsamples` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0),NEW.potentialid=NULLIF(NEW.potentialid,0),NEW.campaignid=NULLIF(NEW.campaignid,0)
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `bu_sarvsample_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bu_sarvsample_optional_refs` BEFORE UPDATE ON `vtiger_sarvproductsamples` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0),NEW.potentialid=NULLIF(NEW.potentialid,0),NEW.campaignid=NULLIF(NEW.campaignid,0)
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvproductsamplescf`
--

DROP TABLE IF EXISTS `vtiger_sarvproductsamplescf`;
CREATE TABLE `vtiger_sarvproductsamplescf` (
  `sarvproductsamplesid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvproductsamplescf`
--

INSERT IGNORE INTO `vtiger_sarvproductsamplescf` (`sarvproductsamplesid`) VALUES
(2227);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvsalescontracts`
--

DROP TABLE IF EXISTS `vtiger_sarvsalescontracts`;
CREATE TABLE `vtiger_sarvsalescontracts` (
  `sarvsalescontractsid` int(19) NOT NULL,
  `contract_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `potentialid` int(19) DEFAULT NULL,
  `quoteid` int(19) DEFAULT NULL,
  `salesorderid` int(19) DEFAULT NULL,
  `contract_status` varchar(255) DEFAULT NULL,
  `contract_type` varchar(255) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `signed_date` date DEFAULT NULL,
  `renewal_date` date DEFAULT NULL,
  `auto_renew` varchar(3) DEFAULT NULL,
  `contract_value` decimal(25,8) DEFAULT NULL,
  `currency_id` int(19) DEFAULT NULL,
  `conversion_rate` decimal(10,3) DEFAULT NULL,
  `version_no` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvsalescontracts`
--

INSERT IGNORE INTO `vtiger_sarvsalescontracts` (`sarvsalescontractsid`, `contract_no`, `subject`, `accountid`, `contactid`, `potentialid`, `quoteid`, `salesorderid`, `contract_status`, `contract_type`, `start_date`, `end_date`, `signed_date`, `renewal_date`, `auto_renew`, `contract_value`, `currency_id`, `conversion_rate`, `version_no`) VALUES
(2154, 'SC1', 'قرارداد فروش واقعی حساب 2036 [Gouya-PHASE04]', 2036, 2107, 2040, 0, 0, 'Active', 'Sale', '2026-07-18', '2027-07-18', '2026-07-18', '2027-06-18', '0', 16350000.00000000, 1, 1.000, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvsalescontractscf`
--

DROP TABLE IF EXISTS `vtiger_sarvsalescontractscf`;
CREATE TABLE `vtiger_sarvsalescontractscf` (
  `sarvsalescontractsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvsalescontractscf`
--

INSERT IGNORE INTO `vtiger_sarvsalescontractscf` (`sarvsalescontractsid`) VALUES
(2154);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvsurveyresponses`
--

DROP TABLE IF EXISTS `vtiger_sarvsurveyresponses`;
CREATE TABLE `vtiger_sarvsurveyresponses` (
  `sarvsurveyresponsesid` int(19) NOT NULL,
  `response_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `survey_title` varchar(255) DEFAULT NULL,
  `response_status` varchar(255) DEFAULT NULL,
  `channel` varchar(255) DEFAULT NULL,
  `started_at` datetime DEFAULT NULL,
  `submitted_at` datetime DEFAULT NULL,
  `score` decimal(10,2) DEFAULT NULL,
  `nps` int(3) DEFAULT NULL,
  `answers_json` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvsurveyresponses`
--

INSERT IGNORE INTO `vtiger_sarvsurveyresponses` (`sarvsurveyresponsesid`, `response_no`, `subject`, `accountid`, `contactid`, `survey_title`, `response_status`, `channel`, `started_at`, `submitted_at`, `score`, `nps`, `answers_json`) VALUES
(2153, 'SRV1', 'پاسخ واقعی نظرسنجی رضایت حساب 2036 [Gouya-PHASE04]', 2036, 2107, 'سنجش رضایت از فرایند فروش', 'Submitted', 'Web', '2026-07-18 02:58:33', '2026-07-18 03:03:33', 92.50, 9, '{\"overall_satisfaction\":9,\"recommendation\":9,\"comment\":\"پاسخ واقعی آزمایشی فاز چهارم\"}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvsurveyresponsescf`
--

DROP TABLE IF EXISTS `vtiger_sarvsurveyresponsescf`;
CREATE TABLE `vtiger_sarvsurveyresponsescf` (
  `sarvsurveyresponsesid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvsurveyresponsescf`
--

INSERT IGNORE INTO `vtiger_sarvsurveyresponsescf` (`sarvsurveyresponsesid`) VALUES
(2153);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvtargetlists`
--

DROP TABLE IF EXISTS `vtiger_sarvtargetlists`;
CREATE TABLE `vtiger_sarvtargetlists` (
  `sarvtargetlistsid` int(19) NOT NULL,
  `targetlist_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `list_type` varchar(255) DEFAULT NULL,
  `purpose` varchar(255) DEFAULT NULL,
  `list_status` varchar(255) DEFAULT NULL,
  `valid_from` date DEFAULT NULL,
  `valid_to` date DEFAULT NULL,
  `filter_definition` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvtargetlists`
--

INSERT IGNORE INTO `vtiger_sarvtargetlists` (`sarvtargetlistsid`, `targetlist_no`, `subject`, `accountid`, `list_type`, `purpose`, `list_status`, `valid_from`, `valid_to`, `filter_definition`) VALUES
(2216, 'TL1', 'لیست هدف واقعی حساب ۲۰۳۶ [Gouya-PHASE05]', 2036, 'Dynamic', 'پیگیری مشتریان فعال و دارای فرصت فروش', 'Active', '2026-07-18', '2026-10-16', '{\"version\":1,\"match\":\"all\",\"conditions\":[{\"field\":\"accountstatus\",\"operator\":\"eq\",\"value\":\"Active\"}]}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvtargetlistscf`
--

DROP TABLE IF EXISTS `vtiger_sarvtargetlistscf`;
CREATE TABLE `vtiger_sarvtargetlistscf` (
  `sarvtargetlistsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvtargetlistscf`
--

INSERT IGNORE INTO `vtiger_sarvtargetlistscf` (`sarvtargetlistsid`) VALUES
(2216);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvtimereservations`
--

DROP TABLE IF EXISTS `vtiger_sarvtimereservations`;
CREATE TABLE `vtiger_sarvtimereservations` (
  `sarvtimereservationsid` int(19) NOT NULL,
  `reservation_no` varchar(100) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `accountid` int(19) DEFAULT NULL,
  `contactid` int(19) DEFAULT NULL,
  `locationid` int(19) DEFAULT NULL,
  `serviceid` int(19) DEFAULT NULL,
  `reservation_status` varchar(255) DEFAULT NULL,
  `start_datetime` datetime DEFAULT NULL,
  `end_datetime` datetime DEFAULT NULL,
  `duration_minutes` int(11) DEFAULT NULL,
  `timezone` varchar(80) DEFAULT NULL,
  `party_size` int(11) DEFAULT NULL,
  `channel` varchar(255) DEFAULT NULL,
  `confirmation_code` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvtimereservations`
--

INSERT IGNORE INTO `vtiger_sarvtimereservations` (`sarvtimereservationsid`, `reservation_no`, `subject`, `accountid`, `contactid`, `locationid`, `serviceid`, `reservation_status`, `start_datetime`, `end_datetime`, `duration_minutes`, `timezone`, `party_size`, `channel`, `confirmation_code`) VALUES
(2225, 'RSV1', 'رزرو تایم واقعی حساب 2036 [Gouya-PHASE08]', 2036, 2107, 2224, NULL, 'Confirmed', '2026-07-19 14:00:00', '2026-07-19 15:00:00', 60, 'Asia/Tehran', 1, 'CRM', 'Gouya-2036-PH08');

--
-- Triggers `vtiger_sarvtimereservations`
--
DROP TRIGGER IF EXISTS `bi_sarvreservation_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bi_sarvreservation_optional_refs` BEFORE INSERT ON `vtiger_sarvtimereservations` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0), NEW.serviceid=NULLIF(NEW.serviceid,0), NEW.confirmation_code=NULLIF(TRIM(NEW.confirmation_code),'')
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `bu_sarvreservation_optional_refs`;
DELIMITER $$
CREATE TRIGGER `bu_sarvreservation_optional_refs` BEFORE UPDATE ON `vtiger_sarvtimereservations` FOR EACH ROW SET NEW.contactid=NULLIF(NEW.contactid,0), NEW.serviceid=NULLIF(NEW.serviceid,0), NEW.confirmation_code=NULLIF(TRIM(NEW.confirmation_code),'')
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarvtimereservationscf`
--

DROP TABLE IF EXISTS `vtiger_sarvtimereservationscf`;
CREATE TABLE `vtiger_sarvtimereservationscf` (
  `sarvtimereservationsid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarvtimereservationscf`
--

INSERT IGNORE INTO `vtiger_sarvtimereservationscf` (`sarvtimereservationsid`) VALUES
(2225);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_delivery_format`
--

DROP TABLE IF EXISTS `vtiger_sarv_delivery_format`;
CREATE TABLE `vtiger_sarv_delivery_format` (
  `sarv_delivery_formatid` int(11) NOT NULL,
  `sarv_delivery_format` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_delivery_format`
--

INSERT IGNORE INTO `vtiger_sarv_delivery_format` (`sarv_delivery_formatid`, `sarv_delivery_format`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'معمولی', 1, 477, 1, NULL),
(2, 'فوری', 1, 478, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_delivery_format_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_delivery_format_seq`;
CREATE TABLE `vtiger_sarv_delivery_format_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_delivery_format_seq`
--

INSERT IGNORE INTO `vtiger_sarv_delivery_format_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_otp`
--

DROP TABLE IF EXISTS `vtiger_sarv_otp`;
CREATE TABLE `vtiger_sarv_otp` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `mobile` varchar(20) NOT NULL,
  `code_hash` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL,
  `expires_at` datetime NOT NULL,
  `attempts` int(11) DEFAULT 0,
  `used` tinyint(4) DEFAULT 0,
  `ip` varchar(45) DEFAULT NULL,
  `purpose` varchar(40) NOT NULL DEFAULT 'login',
  `context_hash` char(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_otp`
--

INSERT IGNORE INTO `vtiger_sarv_otp` (`id`, `userid`, `mobile`, `code_hash`, `created_at`, `expires_at`, `attempts`, `used`, `ip`, `purpose`, `context_hash`) VALUES
(18, 1, '09119090378', '$2y$10$8tsaaiUXGd.ny3yTezPi7eDXp2UMrcGz7HHx34KJ/3LPBQchpAHUq', '2026-06-22 21:33:01', '2026-06-22 21:35:01', 0, 1, '::1', 'login', NULL),
(19, 1, '09119090378', '$2y$10$u/.svvsHN05hRazfUgt.8eTKRstu8iOhYA1qN8DJrTnjQcYQmVoHO', '2026-06-22 21:35:09', '2026-06-22 21:37:09', 0, 1, '::1', 'login', NULL),
(20, 1, '09119090378', '$2y$10$SJ5k6X8stZTxDMduT.gie.Fnx0.fWslU1q0XUJE9VBJoGiFsAFUke', '2026-06-22 21:44:47', '2026-06-22 21:46:47', 0, 1, '::1', 'login', NULL),
(21, 1, '09119090378', '$2y$10$jLVKvdts..X.o.R1ZmrVY.N/tGVeU2HOe6CAb2f3Ka9bJrqmg1Q5q', '2026-06-22 21:47:14', '2026-06-22 21:49:14', 0, 1, '::1', 'login', NULL),
(22, 5, '09119220020', '$2y$10$SYMHjci88UEn1vtDulG8kOguJ.c69RZviTvJuyYRy6h32Z8IbMt.C', '2026-06-22 21:49:47', '2026-06-22 21:51:47', 0, 1, '::1', 'login', NULL),
(23, 1, '09119090378', '$2y$10$VmVyec2zu0pS/6UMrrVurOOTmBYXNwzCCpfja9sjsQ1V02diqCmT.', '2026-06-22 21:53:12', '2026-06-22 21:55:12', 0, 1, '::1', 'login', NULL),
(24, 5, '09119220020', '$2y$10$2TWQM/FNsNAg5S.DTdn9p.zdfBuSpgDavyehzIwcLx5WXAPF.pSya', '2026-06-22 22:13:44', '2026-06-22 22:15:44', 0, 1, '::1', 'login', NULL),
(25, 1, '09119090378', '$2y$10$qjLHp09/Nn/TaqRJeNjRP.rs03mIxW2zY5KfNIs8FYBH5vkZogqJ6', '2026-06-22 22:30:58', '2026-06-22 22:32:58', 0, 1, '::1', 'login', NULL),
(26, 1, '09119090378', '$2y$10$Lgu1XmDZY/ZbR5D6P936HeO.mhM/OtjtzUe.m33Gv9uZa3kDZD38e', '2026-06-23 09:40:26', '2026-06-23 09:42:26', 0, 1, '::1', 'login', NULL),
(27, 1, '09119090378', '$2y$10$ARQL03WBt7T6qAJbXUOmJuFiEbNBrSm/ACFi61kOTvYPYLj8aBxKm', '2026-06-23 19:41:27', '2026-06-23 19:43:27', 0, 1, '::1', 'login', NULL),
(28, 1, '09119090378', '$2y$10$IJs0Z9GEeylPV1.3fhbT2.WsHCFunsLWqhwrwsjRF8f3yKCLDm4C6', '2026-06-27 19:36:30', '2026-06-27 19:38:30', 0, 1, '::1', 'login', NULL),
(29, 1, '09119090378', '$2y$10$mAm68StiBlq36ly3LUQmn.YxoYiQL9f.h.n22Sa/ts14ZEtirxC.G', '2026-06-28 09:41:36', '2026-06-28 09:43:36', 0, 1, '::1', 'login', NULL),
(30, 1, '09119090378', '$2y$10$T2btgB5Sa1pw476q5CjBmuvUYT0eHJSrdcGQLbaIXSThce1Btdzhu', '2026-06-28 13:37:36', '2026-06-28 13:39:36', 0, 1, '::1', 'login', NULL),
(31, 1, '09119090378', '$2y$10$CZQBBmpDXcseptG5xk1KTOZVK.uWoWqW1GmFqp50r6KvpmKdTU4Jq', '2026-06-28 19:14:48', '2026-06-28 19:16:48', 0, 1, '::1', 'login', NULL),
(32, 1, '09119090378', '$2y$10$TPPkOK3cvcunVTi4POG.IO1/0YQmAQiJtBANJv2HJ7AadB7Wf2RIK', '2026-06-28 23:38:13', '2026-06-28 23:40:13', 0, 1, '::1', 'login', NULL),
(33, 1, '09119090378', '$2y$10$QqyJZjb4.j294Ar0RocQ0OZ3vAYVYR3lSj0.FiQaKjRIRUHwEBsja', '2026-06-28 23:39:58', '2026-06-28 23:41:58', 0, 1, '::1', 'login', NULL),
(34, 1, '09119090378', '$2y$10$M7V90q1omMKQUdKKMIdmaeFoP4qeNaJygwzFJ6Wj32VSRQPseU53e', '2026-06-28 23:41:08', '2026-06-28 23:43:08', 0, 1, '::1', 'login', NULL),
(35, 1, '09119090378', '$2y$10$9haSminrExBYjO8TUqG2AuWzJ4XgtnmydGhT36Aljdw76si16Cp5u', '2026-06-29 21:16:48', '2026-06-29 21:18:48', 0, 1, '::1', 'login', NULL),
(36, 1, '09119090378', '$2y$10$XHObHYveItuvPEwxeYTa3OxiLgzb5GajSYp/tke4Ca4CGl3X9Ki1K', '2026-06-30 08:56:58', '2026-06-30 08:58:58', 0, 1, '::1', 'login', NULL),
(37, 1, '09119090378', '$2y$10$qZCMF.QcID57micvbLowge0WQZiN.ukwKqYFl.K0.JHwZ5s/DrD9O', '2026-06-30 15:11:15', '2026-06-30 15:13:15', 0, 1, '::1', 'login', NULL),
(38, 1, '09119090378', '$2y$10$BUC8KIT83ZqJ2Zs6Ed5m8e5leL3QK3R8SSrzLxdATWDJiMaRGskru', '2026-07-07 09:45:52', '2026-07-07 09:47:52', 1, 1, '::1', 'login', NULL),
(39, 1, '09119090378', '$2y$10$P6zK1dvi4xcyyrgXGIfm6.BQjDKJC/0pkAzudOFna/uI/rIDvPGAC', '2026-07-11 00:43:54', '2026-07-11 00:45:54', 0, 1, '::1', 'login', NULL),
(40, 1, '09119090378', '$2y$10$jHrPU4xOnMU.ibEHcgjWZ.OCqFrMVy9o7njAqLgmk6f1UYg9nVJei', '2026-07-11 11:10:40', '2026-07-11 11:12:40', 1, 1, '::1', 'login', NULL),
(41, 1, '09119090378', '$2y$10$rc35kWQcQ2BoCuIKDSEwluj1KTmikIiZB6DRmOtm/MGoPlRC3Mccq', '2026-07-14 01:49:59', '2026-07-14 01:51:59', 0, 1, '::1', 'login', NULL),
(42, 1, '09119090378', '$2y$10$eBf0Eh0pikV4NQer/uC8LOIocDGT2aTNxqrMVn/YpIqhOWKuw0/02', '2026-07-14 12:55:15', '2026-07-14 12:57:15', 0, 1, '::1', 'login', NULL),
(43, 1, '09119090378', '$2y$10$1kfiLXE7XfbfMMGvjnakOexnJBBZXGHd0xLizJq1odNQ.EOPl6nUC', '2026-07-14 16:25:01', '2026-07-14 16:27:01', 0, 1, '::1', 'login', NULL),
(44, 1, '09119090378', '$2y$10$2WwEeAo3ogZ2DfoExWIX.eMPQDTj5zyh9m/xtNm7vFnnERB738Pd.', '2026-07-14 16:38:30', '2026-07-14 16:40:30', 0, 1, '::1', 'login', NULL),
(45, 1, '09119090378', '$2y$10$ar89hfdOYgWr4sy0oqScVOYkK3/5Jak8zqLWEO4Q5jkmhAmgQuDf.', '2026-07-14 16:40:24', '2026-07-14 16:42:24', 0, 1, '::1', 'login', NULL),
(46, 1, '09119090378', '$2y$10$A/1cIxMneQDVpgX2NBwe0uiu8F/2YTFaYh1Ijs0H7Fu1ArfrLwBhC', '2026-07-14 16:41:19', '2026-07-14 16:43:19', 0, 1, '::1', 'login', NULL),
(47, 1, '09119090378', '$2y$10$PC38sCNzIS2H9ySedkIMxetMO7b3Z41mEXcV8h5a/9euzaIHaTIuS', '2026-07-14 16:54:12', '2026-07-14 16:56:12', 0, 1, '::1', 'login', NULL),
(48, 1, '09119090378', '$2y$10$20VMWncaf7QIEH8xJTgjjukdn0sJZY.CxyZzup8lebzurifklZAaS', '2026-07-14 19:27:33', '2026-07-14 19:29:33', 0, 1, '::1', 'login', NULL),
(49, 1, '09119090378', '$2y$10$WqPESzOd0OpsN6tvf6nahuRyms/VjfE2SOHGwd/xM1lxUhS4Uj3Sa', '2026-07-15 13:22:40', '2026-07-15 13:24:40', 0, 1, '::1', 'login', NULL),
(50, 1, '09119090378', '$2y$10$g55qyEMhJw838e1cW61gQuy/r9vuy5xKJYw.3dPmnvZqXwAgczAc.', '2026-07-15 13:29:03', '2026-07-15 13:31:03', 0, 1, '::1', 'login', NULL),
(51, 1, '09119090378', '$2y$10$NeXyuAGV0yaTWPSQa4fDpu0DopEr8rzXYyJwahC0odQDmueW.8sy.', '2026-07-16 01:47:24', '2026-07-16 01:49:24', 0, 1, '::1', 'login', NULL),
(52, 1, '09119090378', '$2y$10$S/FP0uJm0Cuwvpd11Q8ileyibf7lMmQOdFVx1BzO8WPxDtGwRG1wC', '2026-07-16 02:00:53', '2026-07-16 02:02:53', 0, 1, '::1', 'login', NULL),
(53, 1, '09119090378', '$2y$10$T6xjYmrGxqYb8y52xFWOAu/HntaA/K3TnYXY.vjDILjw8X/Ajxsxi', '2026-07-16 03:30:33', '2026-07-16 03:32:33', 0, 1, '::1', 'login', NULL),
(54, 1, '09119090378', '$2y$10$RrY.6xo7zFpnurOUfB6wWeEuR1D7/3n6P3n78H6.sYESyBK.Vx6kq', '2026-07-16 03:31:54', '2026-07-16 03:33:54', 0, 1, '::1', 'login', NULL),
(55, 1, '09119090378', '$2y$10$KakpAKSCROq1wYlP5K1L..oYgOq.dFaN99IhqxYOYTf7tNyBKlRu2', '2026-07-16 04:05:38', '2026-07-16 04:07:38', 0, 1, '::1', 'login', NULL),
(56, 1, '09119090378', '$2y$10$4zf5Rq/y3GVKElEwzRpQAeaNP0RDwDjFDEmuVYSvV9RQvwdrHIVE.', '2026-07-16 04:36:21', '2026-07-16 04:38:21', 0, 1, '::1', 'login', NULL),
(57, 1, '09119090378', '$2y$10$t96/jRHdwvH0vJWGsudCqe4SB5Sz0.AP7rim8uO0sCb.xgDf3L8Le', '2026-07-18 01:16:02', '2026-07-18 01:18:02', 0, 1, '::1', 'login', NULL),
(58, 1, '09119090378', '$2y$10$82Cg1T5DA.NOmyhglBI48Oe75Sq24xZHpnvHcC5kETb/hgi5OCu1q', '2026-07-18 01:26:37', '2026-07-18 01:28:37', 0, 1, '::1', 'login', NULL),
(59, 1, '09119090378', '$2y$10$r4qjKm8XDPEyW8qGxvqch.ShbvXhXnEPCYZHRm5.HtjOopTijIYWi', '2026-07-18 01:28:35', '2026-07-18 01:30:35', 0, 1, '::1', 'login', NULL),
(60, 1, '09119090378', '$2y$10$kRTE8V8HwXuo4vgeoN7UEu3.kfCrG2o74ytnfnQeEqR65d1L5MDVm', '2026-07-18 06:21:16', '2026-07-18 06:23:16', 0, 1, '::1', 'login', NULL),
(61, 1, '09119090378', '$2y$10$DKqXSCtL.0ahl2RllggRke30LRftQHzfboYNp6Vmf4RZYkDrYU6RO', '2026-07-18 12:55:50', '2026-07-18 12:57:50', 0, 1, '::1', 'login', NULL),
(62, 1, '09119090378', '$2y$10$K2KKsLlgGMs/mWGhp8/yQeuv.SoFRbcGOYmEskmK5joiFQf7Lgzjq', '2026-07-19 01:17:59', '2026-07-19 01:19:59', 1, 1, '::1', 'login', NULL),
(63, 1, '09119090378', '$2y$10$P4tVPAOl7NnT7GlRcMMzKuEdLMjQZHEg0TFQMlz/g2ymU4.Pfnysi', '2026-07-19 01:50:33', '2026-07-19 01:52:33', 0, 1, '::1', 'login', NULL),
(64, 1, '09119090378', '$2y$10$90..TCo3oX2MVxF.uhrZD.NaCuxyXj8bP6.9x.nPX8ZQ4kLVVU44y', '2026-07-19 01:51:34', '2026-07-19 01:53:34', 0, 1, '::1', 'login', NULL),
(65, 1, '09119090378', '$2y$10$EJqPD3ltMVQO7/BcT2gboebPSkuMELskY5JzOMsvGdNON3M8qOD6O', '2026-07-19 07:34:13', '2026-07-19 07:36:13', 0, 1, '::1', 'login', NULL),
(66, 1, '09119090378', '$2y$10$P.KQjX3BzwU5lVNiRGu75.e73DHP79q24tHJ.0AEDBLH9iTcAJNHO', '2026-07-20 06:14:04', '2026-07-20 06:16:04', 0, 1, '::1', 'login', NULL),
(67, 1, '09119090378', '$2y$10$NjSCy5mq509kUIEo.CGWFuL8I/bJftsQtmSxxJSmJE4nCUWon8CZa', '2026-07-20 07:13:52', '2026-07-20 07:15:52', 0, 1, '::1', 'login', NULL),
(68, 1, '09119090378', '$2y$10$PqXXZYy7tuXmZuoT6d7r2.0S.NlnTVESDjr5A8CmmznwTqSQiZIny', '2026-07-21 02:29:56', '2026-07-21 02:31:56', 0, 1, '::1', 'login', NULL),
(69, 1, '09119090378', '$2y$10$J2VdZXq/VQOGxGjJa7Ja5ODSG32vkgLzYZXq3VOdiopsGwddt1PeC', '2026-07-21 08:01:31', '2026-07-21 08:03:31', 0, 1, '::1', 'login', NULL),
(70, 1, '09119090378', '$2y$10$lPVKzuodDv7cPPj4cNR7Zex5xuxHE3k36cBqeZT73QbImfa8r8mfq', '2026-07-21 08:03:22', '2026-07-21 08:05:22', 0, 1, '::1', 'login', NULL),
(71, 1, '09119090378', '$2y$10$yclFWbVhuXrJ2qsB7zAHceEkPDWw1w6litftRnZ3sIcb5f3hfvI1O', '2026-07-21 08:04:44', '2026-07-21 08:06:44', 0, 1, '::1', 'login', NULL),
(72, 1, '09119090378', '$2y$10$T2BSAF.GHWJsXqOSlKqFZOXqXTWhwU8KpqaZAL864uGNeVeYQyoLy', '2026-07-22 01:21:27', '2026-07-22 01:23:27', 0, 1, '::1', 'login', NULL),
(73, 1, '09119090378', '$2y$10$2szn6ed.wDZsKqmUMZOgwe3/KgcoxIonXWrNN2HyYFD/mskJbtX8e', '2026-07-22 01:22:56', '2026-07-22 01:24:56', 0, 1, '::1', 'login', NULL),
(74, 1, '09119090378', '$2y$10$l06zJAoRbSnbf38i3ha9GusykaXtHuWX8GMl7J8A1pzqs1oLh5nJ.', '2026-07-22 01:24:02', '2026-07-22 01:26:02', 0, 1, '::1', 'login', NULL),
(75, 1, '09119090378', '$2y$10$WvZFLCxYNiEqRuyOgIu7PO1JRhYDawdiswOfwMAswb8vpJ/qI2h4K', '2026-07-22 04:07:58', '2026-07-22 04:09:58', 0, 1, '::1', 'login', NULL),
(76, 1, '09119090378', '$2y$10$GPH54pHqj.C/ce4zqyYftuiqaLI6NDYMXE4GH6/vBmgIcxbVqVNEC', '2026-07-23 08:25:21', '2026-07-23 08:27:21', 0, 1, '::1', 'login', NULL),
(77, 1, '09119090378', '$2y$10$bmaPUHyegCTDSQNp2Ayfdu5GwOyh4Lf6jb.iXQ28uT68KcTlsCrSO', '2026-07-25 03:25:19', '2026-07-25 03:27:19', 0, 1, '::1', 'login', NULL),
(78, 1, '09119090378', '$2y$10$V0LOCf/QRUxVcw0oQ98KD.7/MzuY06pO2DBrSmq1CnY7xJQ4XLrG.', '2026-07-26 09:26:49', '2026-07-26 09:28:49', 0, 1, '::1', 'login', NULL),
(79, 1, '09119090378', '$2y$10$HFXCO93YV9J0uh4TLYG2..r.WcMF.YGJaJrZ1V7iFDD4HvVcQkZU6', '2026-07-26 10:08:34', '2026-07-26 10:10:34', 0, 1, '::1', 'login', NULL),
(80, 1, '09119090378', '$2y$10$OeX9RC4YEK8qcFkAPWOlK.7Feo5aauufbIH81JNehT7dLhBI3Izdy', '2026-07-28 12:33:13', '2026-07-28 12:35:13', 0, 1, '::1', 'login', NULL),
(81, 1, '09119090378', '$2y$10$DR4dPc.0jsZJ6adfwpCLAuBr9CjDJJ00ozLJ30wW2N/39hpxmD8pS', '2026-08-17 13:48:05', '2026-08-17 13:50:05', 0, 0, '::1', 'login', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_payment_method`
--

DROP TABLE IF EXISTS `vtiger_sarv_payment_method`;
CREATE TABLE `vtiger_sarv_payment_method` (
  `sarv_payment_methodid` int(11) NOT NULL,
  `sarv_payment_method` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_payment_method`
--

INSERT IGNORE INTO `vtiger_sarv_payment_method` (`sarv_payment_methodid`, `sarv_payment_method`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'نقدی', 1, 479, 1, NULL),
(2, 'کارت', 1, 480, 2, NULL),
(3, 'انتقال بانکی', 1, 481, 3, NULL),
(4, 'چک', 1, 482, 4, NULL),
(5, 'اعتباری', 1, 483, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_payment_method_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_payment_method_seq`;
CREATE TABLE `vtiger_sarv_payment_method_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_payment_method_seq`
--

INSERT IGNORE INTO `vtiger_sarv_payment_method_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_payment_status`
--

DROP TABLE IF EXISTS `vtiger_sarv_payment_status`;
CREATE TABLE `vtiger_sarv_payment_status` (
  `sarv_payment_statusid` int(11) NOT NULL,
  `sarv_payment_status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_payment_status`
--

INSERT IGNORE INTO `vtiger_sarv_payment_status` (`sarv_payment_statusid`, `sarv_payment_status`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'پرداخت نشده', 1, 484, 1, NULL),
(2, 'بخشی پرداخت شده', 1, 485, 2, NULL),
(3, 'پرداخت شده', 1, 486, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_payment_status_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_payment_status_seq`;
CREATE TABLE `vtiger_sarv_payment_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_payment_status_seq`
--

INSERT IGNORE INTO `vtiger_sarv_payment_status_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_po_category`
--

DROP TABLE IF EXISTS `vtiger_sarv_po_category`;
CREATE TABLE `vtiger_sarv_po_category` (
  `sarv_po_categoryid` int(11) NOT NULL,
  `sarv_po_category` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_po_category`
--

INSERT IGNORE INTO `vtiger_sarv_po_category` (`sarv_po_categoryid`, `sarv_po_category`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'کالا', 1, 487, 1, NULL),
(2, 'خدمات', 1, 488, 2, NULL),
(3, 'تجهیزات', 1, 489, 3, NULL),
(4, 'مصرفی', 1, 490, 4, NULL),
(5, 'سایر', 1, 491, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_po_category_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_po_category_seq`;
CREATE TABLE `vtiger_sarv_po_category_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_po_category_seq`
--

INSERT IGNORE INTO `vtiger_sarv_po_category_seq` (`id`) VALUES
(5);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_print_template`
--

DROP TABLE IF EXISTS `vtiger_sarv_print_template`;
CREATE TABLE `vtiger_sarv_print_template` (
  `sarv_print_templateid` int(11) NOT NULL,
  `sarv_print_template` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_print_template`
--

INSERT IGNORE INTO `vtiger_sarv_print_template` (`sarv_print_templateid`, `sarv_print_template`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'پیش‌فرض', 1, 492, 1, NULL),
(2, 'پیش‌فرض', 1, 493, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_print_template_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_print_template_seq`;
CREATE TABLE `vtiger_sarv_print_template_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_print_template_seq`
--

INSERT IGNORE INTO `vtiger_sarv_print_template_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_shipping_method`
--

DROP TABLE IF EXISTS `vtiger_sarv_shipping_method`;
CREATE TABLE `vtiger_sarv_shipping_method` (
  `sarv_shipping_methodid` int(11) NOT NULL,
  `sarv_shipping_method` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_shipping_method`
--

INSERT IGNORE INTO `vtiger_sarv_shipping_method` (`sarv_shipping_methodid`, `sarv_shipping_method`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'دریایی', 1, 473, 1, NULL),
(2, 'هوایی', 1, 474, 2, NULL),
(3, 'زمینی', 1, 475, 3, NULL),
(4, 'قطار', 1, 476, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_shipping_method_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_shipping_method_seq`;
CREATE TABLE `vtiger_sarv_shipping_method_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_shipping_method_seq`
--

INSERT IGNORE INTO `vtiger_sarv_shipping_method_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_sms_reminder`
--

DROP TABLE IF EXISTS `vtiger_sarv_sms_reminder`;
CREATE TABLE `vtiger_sarv_sms_reminder` (
  `sarv_sms_reminderid` int(11) NOT NULL,
  `sarv_sms_reminder` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sarv_sms_reminder`
--

INSERT IGNORE INTO `vtiger_sarv_sms_reminder` (`sarv_sms_reminderid`, `sarv_sms_reminder`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'بدون یادآوری', 1, 469, 1, NULL),
(2, 'روز سررسید', 1, 470, 2, NULL),
(3, 'یک روز قبل', 1, 471, 3, NULL),
(4, 'سه روز قبل', 1, 472, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sarv_sms_reminder_seq`
--

DROP TABLE IF EXISTS `vtiger_sarv_sms_reminder_seq`;
CREATE TABLE `vtiger_sarv_sms_reminder_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sarv_sms_reminder_seq`
--

INSERT IGNORE INTO `vtiger_sarv_sms_reminder_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_scheduled_reports`
--

DROP TABLE IF EXISTS `vtiger_scheduled_reports`;
CREATE TABLE `vtiger_scheduled_reports` (
  `reportid` int(11) NOT NULL,
  `recipients` text DEFAULT NULL,
  `schedule` text DEFAULT NULL,
  `format` varchar(10) DEFAULT NULL,
  `next_trigger_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_schedulereports`
--

DROP TABLE IF EXISTS `vtiger_schedulereports`;
CREATE TABLE `vtiger_schedulereports` (
  `reportid` int(10) DEFAULT NULL,
  `scheduleid` int(3) DEFAULT NULL,
  `recipients` text DEFAULT NULL,
  `schdate` varchar(20) DEFAULT NULL,
  `schtime` time DEFAULT NULL,
  `schdayoftheweek` varchar(100) DEFAULT NULL,
  `schdayofthemonth` varchar(100) DEFAULT NULL,
  `schannualdates` varchar(500) DEFAULT NULL,
  `specificemails` varchar(500) DEFAULT NULL,
  `next_trigger_time` timestamp NOT NULL DEFAULT current_timestamp(),
  `fileformat` varchar(10) DEFAULT 'CSV'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_seactivityrel`
--

DROP TABLE IF EXISTS `vtiger_seactivityrel`;
CREATE TABLE `vtiger_seactivityrel` (
  `crmid` int(19) NOT NULL,
  `activityid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_seactivityrel`
--

INSERT IGNORE INTO `vtiger_seactivityrel` (`crmid`, `activityid`) VALUES
(2, 9),
(2, 10),
(2, 18),
(2, 19),
(1001, 16),
(1001, 17),
(1006, 2061),
(1006, 2062),
(2034, 2132),
(2034, 2133),
(2036, 2134),
(2052, 2263),
(2052, 2264),
(2052, 2265),
(2063, 2229),
(2063, 2230),
(2063, 2231),
(2157, 2160),
(2166, 2165),
(2169, 2172),
(2175, 2178),
(2181, 2184),
(2187, 2190),
(2198, 2196),
(2206, 2204),
(2214, 2212),
(2275, 2273),
(2297, 2300),
(2302, 2305),
(2312, 2310),
(2320, 2318),
(2328, 2326),
(2336, 2334),
(2344, 2342),
(2352, 2350),
(2363, 2366);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_seactivityrel_seq`
--

DROP TABLE IF EXISTS `vtiger_seactivityrel_seq`;
CREATE TABLE `vtiger_seactivityrel_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_seactivityrel_seq`
--

INSERT IGNORE INTO `vtiger_seactivityrel_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_seattachmentsrel`
--

DROP TABLE IF EXISTS `vtiger_seattachmentsrel`;
CREATE TABLE `vtiger_seattachmentsrel` (
  `crmid` int(19) NOT NULL DEFAULT 0,
  `attachmentsid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_seattachmentsrel`
--

INSERT IGNORE INTO `vtiger_seattachmentsrel` (`crmid`, `attachmentsid`) VALUES
(2158, 2159),
(2163, 2164),
(2170, 2171),
(2176, 2177),
(2182, 2183),
(2188, 2189),
(2194, 2195),
(2202, 2203),
(2210, 2211),
(2277, 2278),
(2298, 2299),
(2303, 2304),
(2308, 2309),
(2316, 2317),
(2324, 2325),
(2332, 2333),
(2340, 2341),
(2348, 2349);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_selectcolumn`
--

DROP TABLE IF EXISTS `vtiger_selectcolumn`;
CREATE TABLE `vtiger_selectcolumn` (
  `queryid` int(19) NOT NULL,
  `columnindex` int(11) NOT NULL DEFAULT 0,
  `columnname` varchar(250) DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_selectcolumn`
--

INSERT IGNORE INTO `vtiger_selectcolumn` (`queryid`, `columnindex`, `columnname`) VALUES
(1, 0, 'vtiger_contactdetails:firstname:Contacts_First_Name:firstname:V'),
(1, 1, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(1, 2, 'vtiger_contactsubdetails:leadsource:Contacts_Lead_Source:leadsource:V'),
(1, 3, 'vtiger_contactdetails:accountid:Contacts_Account_Name:account_id:V'),
(1, 4, 'vtiger_account:industry:Accounts_industry:industry:V'),
(1, 5, 'vtiger_contactdetails:email:Contacts_Email:email:E'),
(2, 0, 'vtiger_contactdetails:firstname:Contacts_First_Name:firstname:V'),
(2, 1, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(2, 2, 'vtiger_contactsubdetails:leadsource:Contacts_Lead_Source:leadsource:V'),
(2, 3, 'vtiger_contactdetails:accountid:Contacts_Account_Name:account_id:V'),
(2, 4, 'vtiger_account:industry:Accounts_industry:industry:V'),
(2, 5, 'vtiger_contactdetails:email:Contacts_Email:email:E'),
(3, 0, 'vtiger_contactdetails:firstname:Contacts_First_Name:firstname:V'),
(3, 1, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(3, 2, 'vtiger_contactdetails:accountid:Contacts_Account_Name:account_id:V'),
(3, 3, 'vtiger_contactdetails:email:Contacts_Email:email:E'),
(3, 4, 'vtiger_potential:potentialname:Potentials_Potential_Name:potentialname:V'),
(3, 5, 'vtiger_potential:sales_stage:Potentials_Sales_Stage:sales_stage:V'),
(4, 0, 'vtiger_leaddetails:firstname:Leads_First_Name:firstname:V'),
(4, 1, 'vtiger_leaddetails:lastname:Leads_Last_Name:lastname:V'),
(4, 2, 'vtiger_leaddetails:company:Leads_Company:company:V'),
(4, 3, 'vtiger_leaddetails:email:Leads_Email:email:E'),
(4, 4, 'vtiger_leaddetails:leadsource:Leads_Lead_Source:leadsource:V'),
(5, 0, 'vtiger_leaddetails:firstname:Leads_First_Name:firstname:V'),
(5, 1, 'vtiger_leaddetails:lastname:Leads_Last_Name:lastname:V'),
(5, 2, 'vtiger_leaddetails:company:Leads_Company:company:V'),
(5, 3, 'vtiger_leaddetails:email:Leads_Email:email:E'),
(5, 4, 'vtiger_leaddetails:leadsource:Leads_Lead_Source:leadsource:V'),
(5, 5, 'vtiger_leaddetails:leadstatus:Leads_Lead_Status:leadstatus:V'),
(6, 0, 'vtiger_potential:potentialname:Potentials_Potential_Name:potentialname:V'),
(6, 1, 'vtiger_potential:amount:Potentials_Amount:amount:N'),
(6, 2, 'vtiger_potential:potentialtype:Potentials_Type:opportunity_type:V'),
(6, 3, 'vtiger_potential:leadsource:Potentials_Lead_Source:leadsource:V'),
(6, 4, 'vtiger_potential:sales_stage:Potentials_Sales_Stage:sales_stage:V'),
(7, 0, 'vtiger_potential:potentialname:Potentials_Potential_Name:potentialname:V'),
(7, 1, 'vtiger_potential:amount:Potentials_Amount:amount:N'),
(7, 2, 'vtiger_potential:potentialtype:Potentials_Type:opportunity_type:V'),
(7, 3, 'vtiger_potential:leadsource:Potentials_Lead_Source:leadsource:V'),
(7, 4, 'vtiger_potential:sales_stage:Potentials_Sales_Stage:sales_stage:V'),
(8, 0, 'vtiger_activity:subject:Calendar_Subject:subject:V'),
(8, 1, 'vtiger_contactdetailsCalendar:lastname:Calendar_Contact_Name:contact_id:I'),
(8, 2, 'vtiger_activity:status:Calendar_Status:taskstatus:V'),
(8, 3, 'vtiger_activity:priority:Calendar_Priority:taskpriority:V'),
(8, 4, 'vtiger_usersCalendar:user_name:Calendar_Assigned_To:assigned_user_id:V'),
(9, 0, 'vtiger_activity:subject:Calendar_Subject:subject:V'),
(9, 1, 'vtiger_contactdetailsCalendar:lastname:Calendar_Contact_Name:contact_id:I'),
(9, 2, 'vtiger_activity:status:Calendar_Status:taskstatus:V'),
(9, 3, 'vtiger_activity:priority:Calendar_Priority:taskpriority:V'),
(9, 4, 'vtiger_usersCalendar:user_name:Calendar_Assigned_To:assigned_user_id:V'),
(10, 0, 'vtiger_troubletickets:title:HelpDesk_Title:ticket_title:V'),
(10, 1, 'vtiger_troubletickets:status:HelpDesk_Status:ticketstatus:V'),
(10, 2, 'vtiger_products:productname:Products_Product_Name:productname:V'),
(10, 3, 'vtiger_products:discontinued:Products_Product_Active:discontinued:V'),
(10, 4, 'vtiger_products:productcategory:Products_Product_Category:productcategory:V'),
(10, 5, 'vtiger_products:manufacturer:Products_Manufacturer:manufacturer:V'),
(11, 0, 'vtiger_troubletickets:title:HelpDesk_Title:ticket_title:V'),
(11, 1, 'vtiger_troubletickets:priority:HelpDesk_Priority:ticketpriorities:V'),
(11, 2, 'vtiger_troubletickets:severity:HelpDesk_Severity:ticketseverities:V'),
(11, 3, 'vtiger_troubletickets:status:HelpDesk_Status:ticketstatus:V'),
(11, 4, 'vtiger_troubletickets:category:HelpDesk_Category:ticketcategories:V'),
(11, 5, 'vtiger_usersHelpDesk:user_name:HelpDesk_Assigned_To:assigned_user_id:V'),
(12, 0, 'vtiger_troubletickets:title:HelpDesk_Title:ticket_title:V'),
(12, 1, 'vtiger_troubletickets:priority:HelpDesk_Priority:ticketpriorities:V'),
(12, 2, 'vtiger_troubletickets:severity:HelpDesk_Severity:ticketseverities:V'),
(12, 3, 'vtiger_troubletickets:status:HelpDesk_Status:ticketstatus:V'),
(12, 4, 'vtiger_troubletickets:category:HelpDesk_Category:ticketcategories:V'),
(12, 5, 'vtiger_usersHelpDesk:user_name:HelpDesk_Assigned_To:assigned_user_id:V'),
(13, 0, 'vtiger_products:productname:Products_Product_Name:productname:V'),
(13, 1, 'vtiger_products:productcode:Products_Product_Code:productcode:V'),
(13, 2, 'vtiger_products:discontinued:Products_Product_Active:discontinued:V'),
(13, 3, 'vtiger_products:productcategory:Products_Product_Category:productcategory:V'),
(13, 4, 'vtiger_products:website:Products_Website:website:V'),
(13, 5, 'vtiger_vendorRelProducts:vendorname:Products_Vendor_Name:vendor_id:I'),
(13, 6, 'vtiger_products:mfr_part_no:Products_Mfr_PartNo:mfr_part_no:V'),
(14, 0, 'vtiger_products:productname:Products_Product_Name:productname:V'),
(14, 1, 'vtiger_products:manufacturer:Products_Manufacturer:manufacturer:V'),
(14, 2, 'vtiger_products:productcategory:Products_Product_Category:productcategory:V'),
(14, 3, 'vtiger_contactdetails:firstname:Contacts_First_Name:firstname:V'),
(14, 4, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(14, 5, 'vtiger_contactsubdetails:leadsource:Contacts_Lead_Source:leadsource:V'),
(15, 0, 'vtiger_quotes:subject:Quotes_Subject:subject:V'),
(15, 1, 'vtiger_potentialRelQuotes:potentialname:Quotes_Potential_Name:potential_id:I'),
(15, 2, 'vtiger_quotes:quotestage:Quotes_Quote_Stage:quotestage:V'),
(15, 3, 'vtiger_quotes:contactid:Quotes_Contact_Name:contact_id:V'),
(15, 4, 'vtiger_usersRel1:user_name:Quotes_Inventory_Manager:assigned_user_id1:I'),
(15, 5, 'vtiger_accountQuotes:accountname:Quotes_Account_Name:account_id:I'),
(16, 0, 'vtiger_quotes:subject:Quotes_Subject:subject:V'),
(16, 1, 'vtiger_potentialRelQuotes:potentialname:Quotes_Potential_Name:potential_id:I'),
(16, 2, 'vtiger_quotes:quotestage:Quotes_Quote_Stage:quotestage:V'),
(16, 3, 'vtiger_quotes:contactid:Quotes_Contact_Name:contact_id:V'),
(16, 4, 'vtiger_usersRel1:user_name:Quotes_Inventory_Manager:assigned_user_id1:I'),
(16, 5, 'vtiger_accountQuotes:accountname:Quotes_Account_Name:account_id:I'),
(16, 6, 'vtiger_quotes:carrier:Quotes_Carrier:carrier:V'),
(16, 7, 'vtiger_quotes:shipping:Quotes_Shipping:shipping:V'),
(17, 0, 'vtiger_purchaseorder:subject:PurchaseOrder_Subject:subject:V'),
(17, 1, 'vtiger_vendorRelPurchaseOrder:vendorname:PurchaseOrder_Vendor_Name:vendor_id:I'),
(17, 2, 'vtiger_purchaseorder:tracking_no:PurchaseOrder_Tracking_Number:tracking_no:V'),
(17, 3, 'vtiger_contactdetails:firstname:Contacts_First_Name:firstname:V'),
(17, 4, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(17, 5, 'vtiger_contactsubdetails:leadsource:Contacts_Lead_Source:leadsource:V'),
(17, 6, 'vtiger_contactdetails:email:Contacts_Email:email:E'),
(18, 0, 'vtiger_purchaseorder:subject:PurchaseOrder_Subject:subject:V'),
(18, 1, 'vtiger_vendorRelPurchaseOrder:vendorname:PurchaseOrder_Vendor_Name:vendor_id:I'),
(18, 2, 'vtiger_purchaseorder:requisition_no:PurchaseOrder_Requisition_No:requisition_no:V'),
(18, 3, 'vtiger_purchaseorder:tracking_no:PurchaseOrder_Tracking_Number:tracking_no:V'),
(18, 4, 'vtiger_contactdetailsPurchaseOrder:lastname:PurchaseOrder_Contact_Name:contact_id:I'),
(18, 5, 'vtiger_purchaseorder:carrier:PurchaseOrder_Carrier:carrier:V'),
(18, 6, 'vtiger_purchaseorder:salescommission:PurchaseOrder_Sales_Commission:salescommission:N'),
(18, 7, 'vtiger_purchaseorder:exciseduty:PurchaseOrder_Excise_Duty:exciseduty:N'),
(18, 8, 'vtiger_usersPurchaseOrder:user_name:PurchaseOrder_Assigned_To:assigned_user_id:V'),
(19, 0, 'vtiger_invoice:subject:Invoice_Subject:subject:V'),
(19, 1, 'vtiger_invoice:salesorderid:Invoice_Sales_Order:salesorder_id:I'),
(19, 2, 'vtiger_invoice:customerno:Invoice_Customer_No:customerno:V'),
(19, 3, 'vtiger_invoice:exciseduty:Invoice_Excise_Duty:exciseduty:N'),
(19, 4, 'vtiger_invoice:salescommission:Invoice_Sales_Commission:salescommission:N'),
(19, 5, 'vtiger_accountInvoice:accountname:Invoice_Account_Name:account_id:I'),
(20, 0, 'vtiger_salesorder:subject:SalesOrder_Subject:subject:V'),
(20, 1, 'vtiger_quotesSalesOrder:subject:SalesOrder_Quote_Name:quote_id:I'),
(20, 2, 'vtiger_contactdetailsSalesOrder:lastname:SalesOrder_Contact_Name:contact_id:I'),
(20, 3, 'vtiger_salesorder:duedate:SalesOrder_Due_Date:duedate:D'),
(20, 4, 'vtiger_salesorder:carrier:SalesOrder_Carrier:carrier:V'),
(20, 5, 'vtiger_salesorder:sostatus:SalesOrder_Status:sostatus:V'),
(20, 6, 'vtiger_accountSalesOrder:accountname:SalesOrder_Account_Name:account_id:I'),
(20, 7, 'vtiger_salesorder:salescommission:SalesOrder_Sales_Commission:salescommission:N'),
(20, 8, 'vtiger_salesorder:exciseduty:SalesOrder_Excise_Duty:exciseduty:N'),
(20, 9, 'vtiger_usersSalesOrder:user_name:SalesOrder_Assigned_To:assigned_user_id:V'),
(21, 0, 'vtiger_campaign:campaignname:Campaigns_Campaign_Name:campaignname:V'),
(21, 1, 'vtiger_campaign:campaigntype:Campaigns_Campaign_Type:campaigntype:V'),
(21, 2, 'vtiger_campaign:targetaudience:Campaigns_Target_Audience:targetaudience:V'),
(21, 3, 'vtiger_campaign:budgetcost:Campaigns_Budget_Cost:budgetcost:I'),
(21, 4, 'vtiger_campaign:actualcost:Campaigns_Actual_Cost:actualcost:I'),
(21, 5, 'vtiger_campaign:expectedrevenue:Campaigns_Expected_Revenue:expectedrevenue:I'),
(21, 6, 'vtiger_campaign:expectedsalescount:Campaigns_Expected_Sales_Count:expectedsalescount:N'),
(21, 7, 'vtiger_campaign:actualsalescount:Campaigns_Actual_Sales_Count:actualsalescount:N'),
(21, 8, 'vtiger_usersCampaigns:user_name:Campaigns_Assigned_To:assigned_user_id:V'),
(22, 0, 'vtiger_contactdetails:lastname:Contacts_Last_Name:lastname:V'),
(22, 1, 'vtiger_contactdetails:email:Contacts_Email:email:E'),
(22, 2, 'vtiger_activity:subject:Emails_Subject:subject:V'),
(22, 3, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I'),
(23, 0, 'vtiger_account:accountname:Accounts_Account_Name:accountname:V'),
(23, 1, 'vtiger_account:phone:Accounts_Phone:phone:V'),
(23, 2, 'vtiger_account:email1:Accounts_Email:email1:E'),
(23, 3, 'vtiger_activity:subject:Emails_Subject:subject:V'),
(23, 4, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I'),
(24, 0, 'vtiger_leaddetails:lastname:Leads_Last_Name:lastname:V'),
(24, 1, 'vtiger_leaddetails:company:Leads_Company:company:V'),
(24, 2, 'vtiger_leaddetails:email:Leads_Email:email:E'),
(24, 3, 'vtiger_activity:subject:Emails_Subject:subject:V'),
(24, 4, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I'),
(25, 0, 'vtiger_vendor:vendorname:Vendors_Vendor_Name:vendorname:V'),
(25, 1, 'vtiger_vendor:glacct:Vendors_GL_Account:glacct:V'),
(25, 2, 'vtiger_vendor:email:Vendors_Email:email:E'),
(25, 3, 'vtiger_activity:subject:Emails_Subject:subject:V'),
(25, 4, 'vtiger_email_track:access_count:Emails_Access_Count:access_count:I');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_selectquery`
--

DROP TABLE IF EXISTS `vtiger_selectquery`;
CREATE TABLE `vtiger_selectquery` (
  `queryid` int(19) NOT NULL,
  `startindex` int(19) DEFAULT 0,
  `numofobjects` int(19) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_selectquery`
--

INSERT IGNORE INTO `vtiger_selectquery` (`queryid`, `startindex`, `numofobjects`) VALUES
(1, 0, 0),
(2, 0, 0),
(3, 0, 0),
(4, 0, 0),
(5, 0, 0),
(6, 0, 0),
(7, 0, 0),
(8, 0, 0),
(9, 0, 0),
(10, 0, 0),
(11, 0, 0),
(12, 0, 0),
(13, 0, 0),
(14, 0, 0),
(15, 0, 0),
(16, 0, 0),
(17, 0, 0),
(18, 0, 0),
(19, 0, 0),
(20, 0, 0),
(21, 0, 0),
(22, 0, 0),
(23, 0, 0),
(24, 0, 0),
(25, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_selectquery_seq`
--

DROP TABLE IF EXISTS `vtiger_selectquery_seq`;
CREATE TABLE `vtiger_selectquery_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_selectquery_seq`
--

INSERT IGNORE INTO `vtiger_selectquery_seq` (`id`) VALUES
(25);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_senotesrel`
--

DROP TABLE IF EXISTS `vtiger_senotesrel`;
CREATE TABLE `vtiger_senotesrel` (
  `crmid` int(19) NOT NULL DEFAULT 0,
  `notesid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_senotesrel`
--

INSERT IGNORE INTO `vtiger_senotesrel` (`crmid`, `notesid`) VALUES
(2052, 2267),
(2063, 2233),
(2157, 2158),
(2162, 2163),
(2166, 2163),
(2169, 2170),
(2175, 2176),
(2181, 2182),
(2187, 2188),
(2193, 2194),
(2198, 2194),
(2201, 2202),
(2206, 2202),
(2209, 2210),
(2214, 2210),
(2297, 2298),
(2302, 2303),
(2307, 2308),
(2312, 2308),
(2315, 2316),
(2320, 2316),
(2323, 2324),
(2328, 2324),
(2331, 2332),
(2336, 2332),
(2339, 2340),
(2344, 2340),
(2347, 2348),
(2352, 2348),
(2363, 2364);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_seproductsrel`
--

DROP TABLE IF EXISTS `vtiger_seproductsrel`;
CREATE TABLE `vtiger_seproductsrel` (
  `crmid` int(19) NOT NULL DEFAULT 0,
  `productid` int(19) NOT NULL DEFAULT 0,
  `setype` varchar(30) NOT NULL,
  `quantity` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_service`
--

DROP TABLE IF EXISTS `vtiger_service`;
CREATE TABLE `vtiger_service` (
  `serviceid` int(11) NOT NULL,
  `service_no` varchar(100) NOT NULL,
  `servicename` varchar(255) DEFAULT NULL,
  `servicecategory` varchar(200) DEFAULT NULL,
  `qty_per_unit` decimal(11,2) DEFAULT 0.00,
  `unit_price` decimal(25,8) DEFAULT NULL,
  `sales_start_date` date DEFAULT NULL,
  `sales_end_date` date DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `discontinued` int(1) NOT NULL DEFAULT 0,
  `service_usageunit` varchar(200) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `taxclass` varchar(200) DEFAULT NULL,
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `commissionrate` decimal(7,3) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL,
  `purchase_cost` decimal(27,8) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_servicecategory`
--

DROP TABLE IF EXISTS `vtiger_servicecategory`;
CREATE TABLE `vtiger_servicecategory` (
  `servicecategoryid` int(11) NOT NULL,
  `servicecategory` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_servicecategory`
--

INSERT IGNORE INTO `vtiger_servicecategory` (`servicecategoryid`, `servicecategory`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Support', 1, 230, 2, NULL),
(3, 'Installation', 1, 231, 3, NULL),
(4, 'Migration', 1, 232, 4, NULL),
(5, 'Customization', 1, 233, 5, NULL),
(6, 'Training', 1, 234, 6, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_servicecategory_seq`
--

DROP TABLE IF EXISTS `vtiger_servicecategory_seq`;
CREATE TABLE `vtiger_servicecategory_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_servicecategory_seq`
--

INSERT IGNORE INTO `vtiger_servicecategory_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_servicecf`
--

DROP TABLE IF EXISTS `vtiger_servicecf`;
CREATE TABLE `vtiger_servicecf` (
  `serviceid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_servicecontracts`
--

DROP TABLE IF EXISTS `vtiger_servicecontracts`;
CREATE TABLE `vtiger_servicecontracts` (
  `servicecontractsid` int(11) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `sc_related_to` int(11) DEFAULT NULL,
  `tracking_unit` varchar(100) DEFAULT NULL,
  `total_units` decimal(5,2) DEFAULT NULL,
  `used_units` decimal(5,2) DEFAULT NULL,
  `subject` varchar(100) DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `planned_duration` varchar(256) DEFAULT NULL,
  `actual_duration` varchar(256) DEFAULT NULL,
  `contract_status` varchar(200) DEFAULT NULL,
  `priority` varchar(200) DEFAULT NULL,
  `contract_type` varchar(200) DEFAULT NULL,
  `progress` decimal(5,2) DEFAULT NULL,
  `contract_no` varchar(100) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_servicecontracts`
--

INSERT IGNORE INTO `vtiger_servicecontracts` (`servicecontractsid`, `start_date`, `end_date`, `sc_related_to`, `tracking_unit`, `total_units`, `used_units`, `subject`, `due_date`, `planned_duration`, `actual_duration`, `contract_status`, `priority`, `contract_type`, `progress`, `contract_no`, `tags`) VALUES
(2000, '2026-06-04', '2026-08-07', NULL, NULL, 75.00, 3.00, 'قرارداد سرویس 1', NULL, NULL, NULL, 'Undefined', NULL, NULL, 46.00, 'SERCON2000', NULL),
(2001, '2026-06-05', '2026-09-25', NULL, NULL, 85.00, 8.00, 'قرارداد سرویس 2', NULL, NULL, NULL, 'In Planning', NULL, NULL, 78.00, 'SERCON2001', NULL),
(2002, '2026-05-13', '2026-11-10', NULL, NULL, 27.00, 9.00, 'قرارداد سرویس 3', NULL, NULL, NULL, 'In Progress', NULL, NULL, 6.00, 'SERCON2002', NULL),
(2003, '2026-05-01', '2026-08-25', NULL, NULL, 53.00, 4.00, 'قرارداد سرویس 4', NULL, NULL, NULL, 'On Hold', NULL, NULL, 61.00, 'SERCON2003', NULL),
(2004, '2026-05-02', '2026-11-09', NULL, NULL, 89.00, 6.00, 'قرارداد سرویس 5', NULL, NULL, NULL, 'Complete', NULL, NULL, 58.00, 'SERCON2004', NULL),
(2005, '2026-04-01', '2026-07-31', NULL, NULL, 35.00, 4.00, 'قرارداد سرویس 6', NULL, NULL, NULL, 'Archived', NULL, NULL, 37.00, 'SERCON2005', NULL),
(2006, '2026-05-25', '2026-11-08', NULL, NULL, 47.00, 2.00, 'قرارداد سرویس 7', NULL, NULL, NULL, 'Undefined', NULL, NULL, 12.00, 'SERCON2006', NULL),
(2007, '2026-05-02', '2026-07-28', NULL, NULL, 94.00, 6.00, 'قرارداد سرویس 8', NULL, NULL, NULL, 'In Planning', NULL, NULL, 69.00, 'SERCON2007', NULL),
(2008, '2026-06-06', '2026-10-26', NULL, NULL, 54.00, 0.00, 'قرارداد سرویس 9', NULL, NULL, NULL, 'In Progress', NULL, NULL, 36.00, 'SERCON2008', NULL),
(2009, '2026-05-02', '2026-07-21', NULL, NULL, 56.00, 4.00, 'قرارداد سرویس 10', NULL, NULL, NULL, 'On Hold', NULL, NULL, 94.00, 'SERCON2009', NULL),
(2010, '2026-04-11', '2026-10-19', NULL, NULL, 65.00, 4.00, 'قرارداد سرویس 11', NULL, NULL, NULL, 'Complete', NULL, NULL, 26.00, 'SERCON2010', NULL),
(2011, '2026-04-11', '2026-09-30', NULL, NULL, 29.00, 5.00, 'قرارداد سرویس 12', NULL, NULL, NULL, 'Archived', NULL, NULL, 33.00, 'SERCON2011', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_servicecontractscf`
--

DROP TABLE IF EXISTS `vtiger_servicecontractscf`;
CREATE TABLE `vtiger_servicecontractscf` (
  `servicecontractsid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_service_usageunit`
--

DROP TABLE IF EXISTS `vtiger_service_usageunit`;
CREATE TABLE `vtiger_service_usageunit` (
  `service_usageunitid` int(11) NOT NULL,
  `service_usageunit` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_service_usageunit`
--

INSERT IGNORE INTO `vtiger_service_usageunit` (`service_usageunitid`, `service_usageunit`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Hours', 1, 226, 1, NULL),
(2, 'Days', 1, 227, 2, NULL),
(3, 'Incidents', 1, 228, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_service_usageunit_seq`
--

DROP TABLE IF EXISTS `vtiger_service_usageunit_seq`;
CREATE TABLE `vtiger_service_usageunit_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_service_usageunit_seq`
--

INSERT IGNORE INTO `vtiger_service_usageunit_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_seticketsrel`
--

DROP TABLE IF EXISTS `vtiger_seticketsrel`;
CREATE TABLE `vtiger_seticketsrel` (
  `crmid` int(19) NOT NULL DEFAULT 0,
  `ticketid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_settings_blocks`
--

DROP TABLE IF EXISTS `vtiger_settings_blocks`;
CREATE TABLE `vtiger_settings_blocks` (
  `blockid` int(19) NOT NULL,
  `label` varchar(250) DEFAULT NULL,
  `sequence` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_settings_blocks`
--

INSERT IGNORE INTO `vtiger_settings_blocks` (`blockid`, `label`, `sequence`) VALUES
(1, 'LBL_USER_MANAGEMENT', 1),
(4, 'LBL_OTHER_SETTINGS', 10),
(5, 'LBL_MODULE_MANAGER', 2),
(6, 'LBL_INTEGRATION', 8),
(7, 'LBL_AUTOMATION', 3),
(8, 'LBL_CONFIGURATION', 4),
(9, 'LBL_MARKETING_SALES', 5),
(10, 'LBL_INVENTORY', 6),
(11, 'LBL_MY_PREFERENCES', 7),
(12, 'LBL_EXTENSIONS', 9);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_settings_blocks_seq`
--

DROP TABLE IF EXISTS `vtiger_settings_blocks_seq`;
CREATE TABLE `vtiger_settings_blocks_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_settings_blocks_seq`
--

INSERT IGNORE INTO `vtiger_settings_blocks_seq` (`id`) VALUES
(12);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_settings_field`
--

DROP TABLE IF EXISTS `vtiger_settings_field`;
CREATE TABLE `vtiger_settings_field` (
  `fieldid` int(19) NOT NULL,
  `blockid` int(19) DEFAULT NULL,
  `name` varchar(250) DEFAULT NULL,
  `iconpath` varchar(300) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `linkto` text DEFAULT NULL,
  `sequence` int(19) DEFAULT NULL,
  `active` int(19) DEFAULT 0,
  `pinned` int(1) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_settings_field`
--

INSERT IGNORE INTO `vtiger_settings_field` (`fieldid`, `blockid`, `name`, `iconpath`, `description`, `linkto`, `sequence`, `active`, `pinned`) VALUES
(1, 1, 'LBL_USERS', 'ico-users.gif', 'LBL_USER_DESCRIPTION', 'index.php?module=Users&parent=Settings&view=List', 1, 0, 1),
(2, 1, 'LBL_ROLES', 'ico-roles.gif', 'LBL_ROLE_DESCRIPTION', 'index.php?module=Roles&parent=Settings&view=Index', 2, 0, 0),
(3, 1, 'LBL_PROFILES', 'ico-profile.gif', 'LBL_PROFILE_DESCRIPTION', 'index.php?module=Profiles&parent=Settings&view=List', 3, 0, 0),
(4, 1, 'USERGROUPLIST', 'ico-groups.gif', 'LBL_GROUP_DESCRIPTION', 'index.php?module=Groups&parent=Settings&view=List', 5, 0, 0),
(5, 1, 'LBL_SHARING_ACCESS', 'shareaccess.gif', 'LBL_SHARING_ACCESS_DESCRIPTION', 'index.php?module=SharingAccess&parent=Settings&view=Index', 4, 0, 0),
(7, 1, 'LBL_LOGIN_HISTORY_DETAILS', 'set-IcoLoginHistory.gif', 'LBL_LOGIN_HISTORY_DESCRIPTION', 'index.php?module=LoginHistory&parent=Settings&view=List', 6, 0, 0),
(8, 5, 'VTLIB_LBL_MODULE_MANAGER', 'vtlib_modmng.gif', 'VTLIB_LBL_MODULE_MANAGER_DESCRIPTION', 'index.php?module=ModuleManager&parent=Settings&view=List', 1, 0, 1),
(9, 8, 'LBL_PICKLIST_EDITOR', 'picklist.gif', 'LBL_PICKLIST_DESCRIPTION', 'index.php?parent=Settings&module=Picklist&view=Index', 6, 0, 1),
(10, 8, 'LBL_PICKLIST_DEPENDENCY', 'picklistdependency.gif', 'LBL_PICKLIST_DEPENDENCY_DESCRIPTION', 'index.php?parent=Settings&module=PickListDependency&view=List', 7, 0, 0),
(11, 8, 'LBL_MENU_EDITOR', 'menueditor.png', 'LBL_MENU_DESC', 'index.php?module=MenuEditor&parent=Settings&view=Index', 8, 0, 0),
(14, 8, 'LBL_COMPANY_DETAILS', 'company.gif', 'LBL_COMPANY_DESCRIPTION', 'index.php?parent=Settings&module=Vtiger&view=CompanyDetails', 1, 0, 0),
(15, 8, 'LBL_MAIL_SERVER_SETTINGS', 'ogmailserver.gif', 'LBL_MAIL_SERVER_DESCRIPTION', 'index.php?parent=Settings&module=Vtiger&view=OutgoingServerDetail', 4, 0, 0),
(16, 8, 'LBL_CURRENCY_SETTINGS', 'currency.gif', 'LBL_CURRENCY_DESCRIPTION', 'index.php?parent=Settings&module=Currency&view=List', 3, 0, 0),
(17, 10, 'LBL_TAX_SETTINGS', 'taxConfiguration.gif', 'LBL_TAX_DESCRIPTION', 'index.php?module=Vtiger&parent=Settings&view=TaxIndex', 1, 0, 0),
(18, 4, 'LBL_SYSTEM_INFO', 'system.gif', 'LBL_SYSTEM_DESCRIPTION', 'index.php?module=Settings&submodule=Server&view=ProxyConfig', 6, 1, 0),
(20, 4, 'LBL_DEFAULT_MODULE_VIEW', 'set-IcoTwoTabConfig.gif', 'LBL_DEFAULT_MODULE_VIEW_DESC', 'index.php?module=Settings&action=DefModuleView&parenttab=Settings', 2, 0, 0),
(21, 10, 'INVENTORYTERMSANDCONDITIONS', 'terms.gif', 'LBL_INV_TANDC_DESCRIPTION', 'index.php?parent=Settings&module=Vtiger&view=TermsAndConditionsEdit', 2, 0, 0),
(22, 5, 'LBL_CUSTOMIZE_MODENT_NUMBER', 'settingsInvNumber.gif', 'LBL_CUSTOMIZE_MODENT_NUMBER_DESCRIPTION', 'index.php?module=Vtiger&parent=Settings&view=CustomRecordNumbering', 4, 0, 0),
(23, 4, 'LBL_MAIL_SCANNER', 'mailScanner.gif', 'LBL_MAIL_SCANNER_DESCRIPTION', 'index.php?parent=Settings&module=MailConverter&view=List', 5, 0, 0),
(24, 7, 'LBL_LIST_WORKFLOWS', 'settingsWorkflow.png', 'LBL_LIST_WORKFLOWS_DESCRIPTION', 'index.php?module=Workflows&parent=Settings&view=List', 3, 0, 1),
(25, 8, 'Configuration Editor', 'migrate.gif', 'LBL_CONFIG_EDITOR_DESCRIPTION', 'index.php?module=Vtiger&parent=Settings&view=ConfigEditorDetail', 5, 0, 0),
(26, 7, 'Scheduler', 'Cron.png', 'Allows you to Configure Cron Task', 'index.php?module=CronTasks&parent=Settings&view=List', 2, 0, 0),
(28, 4, 'ModTracker', 'set-IcoLoginHistory.gif', 'LBL_MODTRACKER_DESCRIPTION', 'index.php?module=ModTracker&action=BasicSettings&parenttab=Settings&formodule=ModTracker', 9, 0, 0),
(29, 6, 'LBL_PBXMANAGER', '', 'PBXManager module Configuration', 'index.php?module=PBXManager&parent=Settings&view=Index', 2, 0, 0),
(31, 7, 'Webforms', 'modules/Webforms/img/Webform.png', 'LBL_WEBFORMS_DESCRIPTION', 'index.php?module=Webforms&parent=Settings&view=List', 1, 0, 0),
(32, 5, 'LBL_EDIT_FIELDS', '', 'LBL_LAYOUT_EDITOR_DESCRIPTION', 'index.php?module=LayoutEditor&parent=Settings&view=Index', 2, 0, 0),
(33, 9, 'LBL_LEAD_MAPPING', 'NULL', 'NULL', 'index.php?parent=Settings&module=Leads&view=MappingDetail', 1, 0, 1),
(34, 9, 'LBL_OPPORTUNITY_MAPPING', 'NULL', 'NULL', 'index.php?parent=Settings&module=Potentials&view=MappingDetail', 2, 0, 1),
(35, 11, 'My Preferences', 'NULL', 'NULL', 'index.php?module=Users&view=PreferenceDetail&parent=Settings&record=1', 1, 0, 1),
(36, 11, 'Calendar Settings', 'NULL', 'NULL', 'index.php?module=Users&parent=Settings&view=Calendar&record=1', 2, 0, 1),
(37, 11, 'LBL_MY_TAGS', 'NULL', 'NULL', 'index.php?module=Tags&parent=Settings&view=List&record=1', 3, 0, 1),
(38, 12, 'LBL_EXTENSION_STORE', 'NULL', 'NULL', 'index.php?module=ExtensionStore&parent=Settings&view=ExtensionStore', 1, 0, 1),
(39, 12, 'LBL_GOOGLE', 'NULL', 'NULL', 'index.php?module=Contacts&parent=Settings&view=Extension&extensionModule=Google&extensionView=Index&mode=settings', 2, 0, 1),
(40, 6, 'LBL_SMS_GATEWAY_SETTINGS', '', 'LBL_SMS_GATEWAY_SETTINGS_DESC', 'index.php?module=SMSNotifier&parent=Settings&view=List', 3, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_settings_field_seq`
--

DROP TABLE IF EXISTS `vtiger_settings_field_seq`;
CREATE TABLE `vtiger_settings_field_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_settings_field_seq`
--

INSERT IGNORE INTO `vtiger_settings_field_seq` (`id`) VALUES
(39);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sharedcalendar`
--

DROP TABLE IF EXISTS `vtiger_sharedcalendar`;
CREATE TABLE `vtiger_sharedcalendar` (
  `userid` int(19) NOT NULL,
  `sharedid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_shareduserinfo`
--

DROP TABLE IF EXISTS `vtiger_shareduserinfo`;
CREATE TABLE `vtiger_shareduserinfo` (
  `userid` int(19) NOT NULL DEFAULT 0,
  `shareduserid` int(19) NOT NULL DEFAULT 0,
  `color` varchar(50) DEFAULT NULL,
  `visible` int(19) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_shippingtaxinfo`
--

DROP TABLE IF EXISTS `vtiger_shippingtaxinfo`;
CREATE TABLE `vtiger_shippingtaxinfo` (
  `taxid` int(3) NOT NULL,
  `taxname` varchar(50) DEFAULT NULL,
  `taxlabel` varchar(50) DEFAULT NULL,
  `percentage` decimal(7,3) DEFAULT NULL,
  `deleted` int(1) DEFAULT NULL,
  `method` varchar(10) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL,
  `compoundon` varchar(400) DEFAULT NULL,
  `regions` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_shippingtaxinfo`
--

INSERT IGNORE INTO `vtiger_shippingtaxinfo` (`taxid`, `taxname`, `taxlabel`, `percentage`, `deleted`, `method`, `type`, `compoundon`, `regions`) VALUES
(1, 'shtax1', 'VAT', 4.500, 0, 'Simple', 'Fixed', '[]', '[]'),
(2, 'shtax2', 'Sales', 10.000, 0, 'Simple', 'Fixed', '[]', '[]'),
(3, 'shtax3', 'Service', 12.500, 0, 'Simple', 'Fixed', '[]', '[]');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_shippingtaxinfo_seq`
--

DROP TABLE IF EXISTS `vtiger_shippingtaxinfo_seq`;
CREATE TABLE `vtiger_shippingtaxinfo_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_shippingtaxinfo_seq`
--

INSERT IGNORE INTO `vtiger_shippingtaxinfo_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_shorturls`
--

DROP TABLE IF EXISTS `vtiger_shorturls`;
CREATE TABLE `vtiger_shorturls` (
  `id` int(11) NOT NULL,
  `uid` varchar(50) DEFAULT NULL,
  `handler_path` varchar(400) DEFAULT NULL,
  `handler_class` varchar(100) DEFAULT NULL,
  `handler_function` varchar(100) DEFAULT NULL,
  `handler_data` text DEFAULT NULL,
  `onetime` int(5) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_smsnotifier`
--

DROP TABLE IF EXISTS `vtiger_smsnotifier`;
CREATE TABLE `vtiger_smsnotifier` (
  `smsnotifierid` int(19) NOT NULL,
  `message` text DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_smsnotifier`
--

INSERT IGNORE INTO `vtiger_smsnotifier` (`smsnotifierid`, `message`, `status`) VALUES
(3, 'قققق', NULL),
(4, 'لالالا', NULL),
(5, 'سیسیس', NULL),
(6, 'سیسیس', NULL),
(7, 'لبلب', NULL),
(8, 'رذذر', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_smsnotifiercf`
--

DROP TABLE IF EXISTS `vtiger_smsnotifiercf`;
CREATE TABLE `vtiger_smsnotifiercf` (
  `smsnotifierid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_smsnotifiercf`
--

INSERT IGNORE INTO `vtiger_smsnotifiercf` (`smsnotifierid`) VALUES
(3),
(4),
(5),
(6),
(7),
(8);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_smsnotifier_servers`
--

DROP TABLE IF EXISTS `vtiger_smsnotifier_servers`;
CREATE TABLE `vtiger_smsnotifier_servers` (
  `id` int(11) NOT NULL,
  `password` varchar(255) DEFAULT NULL,
  `isactive` int(1) DEFAULT NULL,
  `providertype` varchar(50) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `parameters` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_smsnotifier_servers`
--

INSERT IGNORE INTO `vtiger_smsnotifier_servers` (`id`, `password`, `isactive`, `providertype`, `username`, `parameters`) VALUES
(1, '', 1, 'LimoSMS', '', '{\"ApiKey\":\"$ve$z87Oz8_Oz87Pz87Ozs_Pz8_Ozs_Pz87Pz8_Ozs_Oz87Pz87Oz8_Ozs_Ozs_Pzs_Pz8_Ozs_Ozs_Pz87Ozs_Pzs_Pzs_Ozs_Oz8_Ozs_Ozs7Pzs7Pz87Pz8_Pzs7Pz8_Pz87Oz8_Pzs_Pz87Pzs7Pzs_Pzs7Pzs_Pz8_Ozs_Pzs7Pzs7Pz87Oz8_Ozs_Pz8_Oz8_Oz87Oz87Pzs7Pz8_Pzs_Pzs7Oz8_Oz8_Ozs_Oz8_Pzs7Pz87Pzs_Pzs_Ozs_Oz8_Ozs_Pz87Pzs7Pz87Oz8_Pzs7Pzs7Pz8_Ozs_Ozs7Pz87Ozs_Pzs_Ozs_Pz87Pz87Oz8_Oz8_Pzs7Pz8_Oz8_Pzs7Pz87Oz8_Ozs_Oz87Pz87Oz87Pzs_Pzs7Pz87P\",\"SenderNumber\":\"50002201\"}');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_smsnotifier_status`
--

DROP TABLE IF EXISTS `vtiger_smsnotifier_status`;
CREATE TABLE `vtiger_smsnotifier_status` (
  `smsnotifierid` int(19) DEFAULT NULL,
  `tonumber` varchar(20) DEFAULT NULL,
  `status` varchar(10) DEFAULT NULL,
  `smsmessageid` varchar(50) DEFAULT NULL,
  `needlookup` int(1) DEFAULT 1,
  `statusid` int(11) NOT NULL,
  `statusmessage` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_smsnotifier_status`
--

INSERT IGNORE INTO `vtiger_smsnotifier_status` (`smsnotifierid`, `tonumber`, `status`, `smsmessageid`, `needlookup`, `statusid`, `statusmessage`) VALUES
(3, '09119090378', 'Failed', '', 0, 1, 'پاسخ نامعتبر (HTTP 200)'),
(4, '09119090378', 'Failed', '', 0, 2, 'پاسخ نامعتبر (HTTP 200)'),
(5, '09119090378', 'Failed', '', 0, 3, 'پاسخ نامعتبر (HTTP 200)'),
(6, '09119090378', 'Failed', '', 0, 4, 'پاسخ نامعتبر (HTTP 200)'),
(7, '09119090378', 'Failed', '', 0, 5, 'پاسخ نامعتبر (HTTP 200)'),
(8, '09119090378', 'Dispatched', '25694415', 1, 6, 'پیام با موفقیت ارسال شد');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_reminder`
--

DROP TABLE IF EXISTS `vtiger_sms_reminder`;
CREATE TABLE `vtiger_sms_reminder` (
  `sms_reminderid` int(11) NOT NULL,
  `sms_reminder` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sms_reminder`
--

INSERT IGNORE INTO `vtiger_sms_reminder` (`sms_reminderid`, `sms_reminder`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'None', 1, 376, 1, NULL),
(2, 'OneDayBefore', 1, 377, 2, NULL),
(3, 'TwoDaysBefore', 1, 378, 3, NULL),
(4, 'OneWeekBefore', 1, 379, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_reminder_seq`
--

DROP TABLE IF EXISTS `vtiger_sms_reminder_seq`;
CREATE TABLE `vtiger_sms_reminder_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `vtiger_sms_reminder_seq`
--

INSERT IGNORE INTO `vtiger_sms_reminder_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_remind_invitees`
--

DROP TABLE IF EXISTS `vtiger_sms_remind_invitees`;
CREATE TABLE `vtiger_sms_remind_invitees` (
  `sms_remind_inviteesid` int(11) NOT NULL,
  `sms_remind_invitees` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sms_remind_invitees`
--

INSERT IGNORE INTO `vtiger_sms_remind_invitees` (`sms_remind_inviteesid`, `sms_remind_invitees`, `sortorderid`, `presence`, `color`) VALUES
(1, 'بدون', 0, 1, NULL),
(2, 'یک دقیقه قبل از شروع', 1, 1, NULL),
(3, 'پانزده دقیقه قبل از شروع', 2, 1, NULL),
(4, 'یک ساعت قبل از شروع', 3, 1, NULL),
(5, 'چهار ساعت قبل از شروع', 4, 1, NULL),
(6, 'یک روز قبل از شروع', 5, 1, NULL),
(7, 'دو روز قبل از شروع', 6, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_remind_invitees_seq`
--

DROP TABLE IF EXISTS `vtiger_sms_remind_invitees_seq`;
CREATE TABLE `vtiger_sms_remind_invitees_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_sms_remind_invitees_seq`
--

INSERT IGNORE INTO `vtiger_sms_remind_invitees_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_remind_user`
--

DROP TABLE IF EXISTS `vtiger_sms_remind_user`;
CREATE TABLE `vtiger_sms_remind_user` (
  `sms_remind_userid` int(11) NOT NULL,
  `sms_remind_user` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sms_remind_user`
--

INSERT IGNORE INTO `vtiger_sms_remind_user` (`sms_remind_userid`, `sms_remind_user`, `sortorderid`, `presence`, `color`) VALUES
(1, 'بدون', 0, 1, NULL),
(2, 'یک دقیقه قبل از شروع', 1, 1, NULL),
(3, 'پانزده دقیقه قبل از شروع', 2, 1, NULL),
(4, 'یک ساعت قبل از شروع', 3, 1, NULL),
(5, 'چهار ساعت قبل از شروع', 4, 1, NULL),
(6, 'یک روز قبل از شروع', 5, 1, NULL),
(7, 'دو روز قبل از شروع', 6, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sms_remind_user_seq`
--

DROP TABLE IF EXISTS `vtiger_sms_remind_user_seq`;
CREATE TABLE `vtiger_sms_remind_user_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_sms_remind_user_seq`
--

INSERT IGNORE INTO `vtiger_sms_remind_user_seq` (`id`) VALUES
(7);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_soapservice`
--

DROP TABLE IF EXISTS `vtiger_soapservice`;
CREATE TABLE `vtiger_soapservice` (
  `id` int(19) DEFAULT NULL,
  `type` varchar(25) DEFAULT NULL,
  `sessionid` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sobillads`
--

DROP TABLE IF EXISTS `vtiger_sobillads`;
CREATE TABLE `vtiger_sobillads` (
  `sobilladdressid` int(19) NOT NULL DEFAULT 0,
  `bill_city` varchar(30) DEFAULT NULL,
  `bill_code` varchar(30) DEFAULT NULL,
  `bill_country` varchar(30) DEFAULT NULL,
  `bill_state` varchar(30) DEFAULT NULL,
  `bill_street` varchar(250) DEFAULT NULL,
  `bill_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_soshipads`
--

DROP TABLE IF EXISTS `vtiger_soshipads`;
CREATE TABLE `vtiger_soshipads` (
  `soshipaddressid` int(19) NOT NULL DEFAULT 0,
  `ship_city` varchar(30) DEFAULT NULL,
  `ship_code` varchar(30) DEFAULT NULL,
  `ship_country` varchar(30) DEFAULT NULL,
  `ship_state` varchar(30) DEFAULT NULL,
  `ship_street` varchar(250) DEFAULT NULL,
  `ship_pobox` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sostatus`
--

DROP TABLE IF EXISTS `vtiger_sostatus`;
CREATE TABLE `vtiger_sostatus` (
  `sostatusid` int(19) NOT NULL,
  `sostatus` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_sostatus`
--

INSERT IGNORE INTO `vtiger_sostatus` (`sostatusid`, `sostatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Created', 0, 166, 0, NULL),
(2, 'Approved', 0, 167, 1, NULL),
(3, 'Delivered', 0, 168, 2, NULL),
(4, 'Cancelled', 0, 169, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sostatushistory`
--

DROP TABLE IF EXISTS `vtiger_sostatushistory`;
CREATE TABLE `vtiger_sostatushistory` (
  `historyid` int(19) NOT NULL,
  `salesorderid` int(19) NOT NULL,
  `accountname` varchar(100) DEFAULT NULL,
  `total` decimal(10,0) DEFAULT NULL,
  `sostatus` varchar(200) DEFAULT NULL,
  `lastmodified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sostatus_seq`
--

DROP TABLE IF EXISTS `vtiger_sostatus_seq`;
CREATE TABLE `vtiger_sostatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_sostatus_seq`
--

INSERT IGNORE INTO `vtiger_sostatus_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_sqltimelog`
--

DROP TABLE IF EXISTS `vtiger_sqltimelog`;
CREATE TABLE `vtiger_sqltimelog` (
  `id` int(11) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `started` decimal(20,6) DEFAULT NULL,
  `ended` decimal(20,6) DEFAULT NULL,
  `loggedon` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_start_hour`
--

DROP TABLE IF EXISTS `vtiger_start_hour`;
CREATE TABLE `vtiger_start_hour` (
  `start_hourid` int(11) NOT NULL,
  `start_hour` varchar(200) NOT NULL,
  `sortorderid` int(11) DEFAULT NULL,
  `presence` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_start_hour`
--

INSERT IGNORE INTO `vtiger_start_hour` (`start_hourid`, `start_hour`, `sortorderid`, `presence`) VALUES
(1, '00:00', 0, 1),
(2, '01:00', 1, 1),
(3, '02:00', 2, 1),
(4, '03:00', 3, 1),
(5, '04:00', 4, 1),
(6, '05:00', 5, 1),
(7, '06:00', 6, 1),
(8, '07:00', 7, 1),
(9, '08:00', 8, 1),
(10, '09:00', 9, 1),
(11, '10:00', 10, 1),
(12, '11:00', 11, 1),
(13, '12:00', 12, 1),
(14, '13:00', 13, 1),
(15, '14:00', 14, 1),
(16, '15:00', 15, 1),
(17, '16:00', 16, 1),
(18, '17:00', 17, 1),
(19, '18:00', 18, 1),
(20, '19:00', 19, 1),
(21, '20:00', 20, 1),
(22, '21:00', 21, 1),
(23, '22:00', 22, 1),
(24, '23:00', 23, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_start_hour_seq`
--

DROP TABLE IF EXISTS `vtiger_start_hour_seq`;
CREATE TABLE `vtiger_start_hour_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_start_hour_seq`
--

INSERT IGNORE INTO `vtiger_start_hour_seq` (`id`) VALUES
(24);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_status`
--

DROP TABLE IF EXISTS `vtiger_status`;
CREATE TABLE `vtiger_status` (
  `statusid` int(19) NOT NULL,
  `status` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_status`
--

INSERT IGNORE INTO `vtiger_status` (`statusid`, `status`, `presence`, `picklist_valueid`) VALUES
(1, 'Active', 0, 1),
(2, 'Inactive', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_status_seq`
--

DROP TABLE IF EXISTS `vtiger_status_seq`;
CREATE TABLE `vtiger_status_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_status_seq`
--

INSERT IGNORE INTO `vtiger_status_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_systems`
--

DROP TABLE IF EXISTS `vtiger_systems`;
CREATE TABLE `vtiger_systems` (
  `id` int(19) NOT NULL,
  `server` varchar(100) DEFAULT NULL,
  `server_port` int(19) DEFAULT NULL,
  `server_username` varchar(100) DEFAULT NULL,
  `server_password` text DEFAULT NULL,
  `server_type` varchar(20) DEFAULT NULL,
  `smtp_auth` varchar(5) DEFAULT NULL,
  `smtp_auth_type` varchar(20) DEFAULT NULL,
  `smtp_auth_expireson` tinyint(4) DEFAULT NULL,
  `server_path` varchar(256) DEFAULT NULL,
  `from_email_field` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tab`
--

DROP TABLE IF EXISTS `vtiger_tab`;
CREATE TABLE `vtiger_tab` (
  `tabid` int(19) NOT NULL DEFAULT 0,
  `name` varchar(25) NOT NULL,
  `presence` int(19) NOT NULL DEFAULT 1,
  `tabsequence` int(10) DEFAULT NULL,
  `tablabel` varchar(100) DEFAULT NULL,
  `modifiedby` int(19) DEFAULT NULL,
  `modifiedtime` int(19) DEFAULT NULL,
  `customized` int(19) DEFAULT NULL,
  `ownedby` int(19) DEFAULT NULL,
  `isentitytype` int(11) NOT NULL DEFAULT 1,
  `trial` int(1) NOT NULL DEFAULT 0,
  `version` varchar(10) DEFAULT NULL,
  `parent` varchar(30) DEFAULT NULL,
  `source` varchar(255) DEFAULT 'custom',
  `issyncable` tinyint(1) DEFAULT 0,
  `allowduplicates` tinyint(1) DEFAULT 1,
  `sync_action_for_duplicates` int(1) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_tab`
--

INSERT IGNORE INTO `vtiger_tab` (`tabid`, `name`, `presence`, `tabsequence`, `tablabel`, `modifiedby`, `modifiedtime`, `customized`, `ownedby`, `isentitytype`, `trial`, `version`, `parent`, `source`, `issyncable`, `allowduplicates`, `sync_action_for_duplicates`) VALUES
(1, 'Dashboard', 0, 12, 'Dashboards', NULL, NULL, 0, 1, 0, 0, NULL, 'Analytics', NULL, 1, 1, 1),
(2, 'Potentials', 0, 7, 'Potentials', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(3, 'Home', 0, 1, 'Home', NULL, NULL, 0, 1, 0, 0, NULL, NULL, NULL, 1, 1, 1),
(4, 'Contacts', 0, 6, 'Contacts', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(6, 'Accounts', 0, 5, 'Accounts', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 0, 1),
(7, 'Leads', 0, 4, 'Leads', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(8, 'Documents', 0, 9, 'Documents', NULL, NULL, 0, 0, 1, 0, NULL, 'Tools', NULL, 1, 1, 1),
(9, 'Calendar', 0, 3, 'Calendar', NULL, NULL, 0, 0, 1, 0, NULL, 'Tools', NULL, 1, 1, 1),
(10, 'Emails', 0, 10, 'Emails', NULL, NULL, 0, 0, 1, 0, NULL, 'Tools', NULL, 1, 1, 1),
(13, 'HelpDesk', 0, 11, 'HelpDesk', NULL, NULL, 0, 0, 1, 0, NULL, 'Support', NULL, 1, 1, 1),
(14, 'Products', 0, 8, 'Products', NULL, NULL, 0, 0, 1, 0, NULL, 'Inventory', NULL, 1, 1, 1),
(15, 'Faq', 0, -1, 'Faq', NULL, NULL, 0, 1, 1, 0, NULL, 'Support', NULL, 1, 1, 1),
(16, 'Events', 2, -1, 'Events', NULL, NULL, 0, 0, 1, 0, NULL, NULL, NULL, 1, 1, 1),
(18, 'Vendors', 0, -1, 'Vendors', NULL, NULL, 0, 0, 1, 0, NULL, 'Inventory', NULL, 1, 1, 1),
(19, 'PriceBooks', 0, -1, 'PriceBooks', NULL, NULL, 0, 1, 1, 0, NULL, 'Inventory', NULL, 1, 1, 1),
(20, 'Quotes', 0, -1, 'Quotes', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(21, 'PurchaseOrder', 0, -1, 'PurchaseOrder', NULL, NULL, 0, 0, 1, 0, NULL, 'Inventory', NULL, 1, 1, 1),
(22, 'SalesOrder', 0, -1, 'SalesOrder', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(23, 'Invoice', 0, -1, 'Invoice', NULL, NULL, 0, 0, 1, 0, NULL, 'Sales', NULL, 1, 1, 1),
(24, 'Rss', 0, -1, 'Rss', NULL, NULL, 0, 1, 0, 0, NULL, 'Tools', NULL, 1, 1, 1),
(25, 'Reports', 0, -1, 'Reports', NULL, NULL, 0, 1, 0, 0, NULL, 'Analytics', NULL, 1, 1, 1),
(26, 'Campaigns', 0, -1, 'Campaigns', NULL, NULL, 0, 0, 1, 0, NULL, 'Marketing', NULL, 1, 1, 1),
(27, 'Portal', 0, -1, 'Portal', NULL, NULL, 0, 1, 0, 0, NULL, 'Tools', NULL, 1, 1, 1),
(28, 'Webmails', 0, -1, 'Webmails', NULL, NULL, 0, 1, 1, 0, NULL, NULL, NULL, 1, 1, 1),
(29, 'Users', 0, -1, 'Users', NULL, NULL, 0, 1, 0, 0, NULL, NULL, NULL, 1, 1, 1),
(30, 'Import', 0, -1, 'Import', NULL, NULL, 1, 0, 0, 0, '1.7', '', NULL, 1, 1, 1),
(31, 'MailManager', 0, -1, 'MailManager', NULL, NULL, 1, 0, 0, 0, '1.9', 'Tools', NULL, 1, 1, 1),
(32, 'Mobile', 0, -1, 'Mobile', NULL, NULL, 1, 0, 0, 0, '2.0', '', NULL, 1, 1, 1),
(33, 'ModTracker', 0, -1, 'ModTracker', NULL, NULL, 0, 0, 0, 0, '1.2', '', NULL, 1, 1, 1),
(34, 'PBXManager', 0, -1, 'PBXManager', NULL, NULL, 1, 0, 1, 0, '2.2', 'Tools', NULL, 1, 1, 1),
(35, 'ServiceContracts', 0, -1, 'Service Contracts', NULL, NULL, 0, 0, 1, 0, '2.4', 'Support', NULL, 1, 1, 1),
(36, 'Services', 0, -1, 'Services', NULL, NULL, 0, 0, 1, 0, '2.7', 'Inventory', NULL, 1, 1, 1),
(37, 'WSAPP', 0, -1, 'WSAPP', NULL, NULL, 1, 0, 0, 0, '3.4.4', '', NULL, 1, 1, 1),
(38, 'Assets', 0, -1, 'Assets', NULL, NULL, 0, 0, 1, 0, '2.0', 'Inventory', NULL, 1, 1, 1),
(39, 'CustomerPortal', 1, -1, 'CustomerPortal', NULL, NULL, 0, 0, 0, 0, '1.4', '', NULL, 1, 1, 1),
(40, 'EmailTemplates', 0, -1, 'Email Templates', NULL, NULL, 1, 0, 0, 0, '1.0', 'Tools', NULL, 1, 1, 1),
(41, 'Google', 0, -1, 'Google', NULL, NULL, 0, 0, 0, 0, '1.5', '', NULL, 1, 1, 1),
(42, 'ModComments', 0, -1, 'Comments', NULL, NULL, 0, 0, 1, 0, '2.1', '', NULL, 1, 1, 1),
(43, 'ProjectMilestone', 0, -1, 'ProjectMilestone', NULL, NULL, 0, 0, 1, 0, '3.0', 'Support', NULL, 1, 1, 1),
(44, 'ProjectTask', 0, -1, 'ProjectTask', NULL, NULL, 0, 0, 1, 0, '3.1', 'Support', NULL, 1, 1, 1),
(45, 'Project', 0, -1, 'Project', NULL, NULL, 0, 0, 1, 0, '3.3', 'Support', NULL, 1, 1, 1),
(46, 'RecycleBin', 0, -1, 'Recycle Bin', NULL, NULL, 0, 0, 0, 0, '1.5', 'Tools', NULL, 1, 1, 1),
(47, 'SMSNotifier', 0, -1, 'SMSNotifier', NULL, NULL, 0, 0, 1, 0, '2.1', 'Sales', NULL, 1, 1, 1),
(48, 'Webforms', 0, -1, 'Webforms', NULL, NULL, 0, 0, 0, 0, '1.7', '', NULL, 1, 1, 1),
(49, 'ExtensionStore', 0, -1, 'Extension Store', NULL, NULL, 1, 0, 0, 0, '1.2', NULL, NULL, 1, 1, 1),
(50, 'GooyaReports', 0, -1, 'GooyaReports', NULL, NULL, 1, 0, 0, 0, '0', 'Tools', 'custom', 0, 1, 1),
(51, 'GooyaKanban', 0, -1, 'GooyaKanban', NULL, NULL, 1, 0, 0, 0, '0', 'Tools', 'custom', 0, 1, 1),
(52, 'SarvPayments', 0, -1, 'LBL_SARV_PAYMENTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(53, 'SarvParticipations', 0, -1, 'LBL_SARV_PARTICIPATIONS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(54, 'SarvSurveyResponses', 0, -1, 'LBL_SARV_SURVEY_RESPONSES', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(55, 'SarvSalesContracts', 0, -1, 'LBL_SARV_SALES_CONTRACTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(56, 'SarvTargetLists', 0, -1, 'LBL_SARV_TARGET_LISTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(57, 'SarvBankAccounts', 0, -1, 'LBL_SARV_BANK_ACCOUNTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(58, 'SarvDeposits', 0, -1, 'LBL_SARV_DEPOSITS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(59, 'SarvBusinessLocations', 0, -1, 'LBL_SARV_BUSINESS_LOCATIONS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(60, 'SarvTimeReservations', 0, -1, 'LBL_SARV_TIME_RESERVATIONS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(61, 'SarvGifts', 0, -1, 'LBL_SARV_GIFTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(62, 'SarvProductSamples', 0, -1, 'LBL_SARV_PRODUCT_SAMPLES', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(63, 'SarvAccessGrants', 0, -1, 'LBL_SARV_ACCESS_GRANTS', NULL, NULL, 1, 0, 1, 0, '0', 'Sales', 'custom', 0, 1, 1),
(64, 'Administration', 0, -1, 'مدیر سیستم', NULL, NULL, 1, 0, 0, 0, '0', '', 'custom', 0, 1, 1),
(65, 'Communications', 0, -1, 'Communications', NULL, NULL, 1, 0, 1, 0, '0', 'Marketing', 'custom', 0, 1, 1),
(66, 'GooyaCloud', 0, -1, 'GooyaCloud', NULL, NULL, 1, 0, 0, 0, '2.0', 'Tools', 'custom', 0, 1, 1),
(67, 'GooyaChat', 1, -1, 'GooyaChat', NULL, NULL, 1, 0, 0, 0, '2.0', 'Tools', 'custom', 0, 1, 1),
(68, 'GooyaNegar', 0, -1, 'GooyaNegar', NULL, NULL, 1, 0, 0, 0, '1.0', 'Tools', 'custom', 0, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tab_info`
--

DROP TABLE IF EXISTS `vtiger_tab_info`;
CREATE TABLE `vtiger_tab_info` (
  `tabid` int(19) DEFAULT NULL,
  `prefname` varchar(256) DEFAULT NULL,
  `prefvalue` varchar(256) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_tab_info`
--

INSERT IGNORE INTO `vtiger_tab_info` (`tabid`, `prefname`, `prefvalue`) VALUES
(30, 'vtiger_min_version', '6.0.0rc'),
(30, 'vtiger_max_version', '8.*'),
(31, 'vtiger_min_version', '6.0.0RC'),
(32, 'vtiger_min_version', '6.0.0rc'),
(33, 'vtiger_min_version', '6.0.0rc'),
(34, 'vtiger_min_version', '6.0.0'),
(34, 'vtiger_max_version', '8.*'),
(35, 'vtiger_min_version', '6.0.0rc'),
(36, 'vtiger_min_version', '6.0.0rc'),
(36, 'vtiger_max_version', '8.*'),
(37, 'vtiger_min_version', '6.0.0rc'),
(38, 'vtiger_min_version', '6.0.0rc'),
(38, 'vtiger_max_version', '8.*'),
(39, 'vtiger_min_version', '6.0.0rc'),
(39, 'vtiger_max_version', '8.*'),
(40, 'vtiger_min_version', '6.0.0rc'),
(40, 'vtiger_max_version', '8.*'),
(41, 'vtiger_min_version', '6.0.0rc'),
(41, 'vtiger_max_version', '8.*'),
(42, 'vtiger_min_version', '6.0.0rc'),
(42, 'vtiger_max_version', '8.*'),
(43, 'vtiger_min_version', '6.0.0rc'),
(43, 'vtiger_max_version', '8.*'),
(44, 'vtiger_min_version', '6.0.0rc'),
(45, 'vtiger_min_version', '6.0.0rc'),
(46, 'vtiger_min_version', '6.0.0rc'),
(46, 'vtiger_max_version', '8.*'),
(47, 'vtiger_min_version', '6.0.0'),
(47, 'vtiger_max_version', '8.*'),
(48, 'vtiger_min_version', '6.0.0rc'),
(48, 'vtiger_max_version', '8.*'),
(49, 'vtiger_min_version', '6.0.0'),
(49, 'vtiger_max_version', '8.*');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taskpriority`
--

DROP TABLE IF EXISTS `vtiger_taskpriority`;
CREATE TABLE `vtiger_taskpriority` (
  `taskpriorityid` int(19) NOT NULL,
  `taskpriority` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_taskpriority`
--

INSERT IGNORE INTO `vtiger_taskpriority` (`taskpriorityid`, `taskpriority`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'High', 1, 170, 0, NULL),
(2, 'Medium', 1, 171, 1, NULL),
(3, 'Low', 1, 172, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taskpriority_seq`
--

DROP TABLE IF EXISTS `vtiger_taskpriority_seq`;
CREATE TABLE `vtiger_taskpriority_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_taskpriority_seq`
--

INSERT IGNORE INTO `vtiger_taskpriority_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taskstatus`
--

DROP TABLE IF EXISTS `vtiger_taskstatus`;
CREATE TABLE `vtiger_taskstatus` (
  `taskstatusid` int(19) NOT NULL,
  `taskstatus` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_taskstatus`
--

INSERT IGNORE INTO `vtiger_taskstatus` (`taskstatusid`, `taskstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Not Started', 0, 173, 0, NULL),
(2, 'In Progress', 0, 174, 1, NULL),
(3, 'Completed', 0, 175, 2, NULL),
(4, 'Pending Input', 0, 176, 3, NULL),
(5, 'Deferred', 0, 177, 4, NULL),
(6, 'Planned', 0, 178, 5, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taskstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_taskstatus_seq`;
CREATE TABLE `vtiger_taskstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_taskstatus_seq`
--

INSERT IGNORE INTO `vtiger_taskstatus_seq` (`id`) VALUES
(6);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taxclass`
--

DROP TABLE IF EXISTS `vtiger_taxclass`;
CREATE TABLE `vtiger_taxclass` (
  `taxclassid` int(19) NOT NULL,
  `taxclass` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_taxclass`
--

INSERT IGNORE INTO `vtiger_taxclass` (`taxclassid`, `taxclass`, `sortorderid`, `presence`) VALUES
(1, 'SalesTax', 0, 1),
(2, 'Vat', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taxclass_seq`
--

DROP TABLE IF EXISTS `vtiger_taxclass_seq`;
CREATE TABLE `vtiger_taxclass_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_taxclass_seq`
--

INSERT IGNORE INTO `vtiger_taxclass_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_taxregions`
--

DROP TABLE IF EXISTS `vtiger_taxregions`;
CREATE TABLE `vtiger_taxregions` (
  `regionid` int(10) NOT NULL,
  `name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketcategories`
--

DROP TABLE IF EXISTS `vtiger_ticketcategories`;
CREATE TABLE `vtiger_ticketcategories` (
  `ticketcategories_id` int(19) NOT NULL,
  `ticketcategories` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 0,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ticketcategories`
--

INSERT IGNORE INTO `vtiger_ticketcategories` (`ticketcategories_id`, `ticketcategories`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Big Problem', 1, 179, 0, NULL),
(2, 'Small Problem', 1, 180, 1, NULL),
(3, 'Other Problem', 1, 181, 2, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketcategories_seq`
--

DROP TABLE IF EXISTS `vtiger_ticketcategories_seq`;
CREATE TABLE `vtiger_ticketcategories_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ticketcategories_seq`
--

INSERT IGNORE INTO `vtiger_ticketcategories_seq` (`id`) VALUES
(3);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketcf`
--

DROP TABLE IF EXISTS `vtiger_ticketcf`;
CREATE TABLE `vtiger_ticketcf` (
  `ticketid` int(19) NOT NULL DEFAULT 0,
  `from_portal` varchar(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ticketcf`
--

INSERT IGNORE INTO `vtiger_ticketcf` (`ticketid`, `from_portal`) VALUES
(2092, '0'),
(2094, '0'),
(2097, '0'),
(2099, '0'),
(2101, '0'),
(2104, '0'),
(2106, '0'),
(2109, '0'),
(2149, '0');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketcomments`
--

DROP TABLE IF EXISTS `vtiger_ticketcomments`;
CREATE TABLE `vtiger_ticketcomments` (
  `commentid` int(19) NOT NULL,
  `ticketid` int(19) DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `ownerid` int(19) NOT NULL DEFAULT 0,
  `ownertype` varchar(10) DEFAULT NULL,
  `createdtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketpriorities`
--

DROP TABLE IF EXISTS `vtiger_ticketpriorities`;
CREATE TABLE `vtiger_ticketpriorities` (
  `ticketpriorities_id` int(19) NOT NULL,
  `ticketpriorities` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 0,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ticketpriorities`
--

INSERT IGNORE INTO `vtiger_ticketpriorities` (`ticketpriorities_id`, `ticketpriorities`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Low', 1, 182, 0, NULL),
(2, 'Normal', 1, 183, 1, NULL),
(3, 'High', 1, 184, 2, NULL),
(4, 'Urgent', 1, 185, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketpriorities_seq`
--

DROP TABLE IF EXISTS `vtiger_ticketpriorities_seq`;
CREATE TABLE `vtiger_ticketpriorities_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ticketpriorities_seq`
--

INSERT IGNORE INTO `vtiger_ticketpriorities_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketseverities`
--

DROP TABLE IF EXISTS `vtiger_ticketseverities`;
CREATE TABLE `vtiger_ticketseverities` (
  `ticketseverities_id` int(19) NOT NULL,
  `ticketseverities` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 0,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ticketseverities`
--

INSERT IGNORE INTO `vtiger_ticketseverities` (`ticketseverities_id`, `ticketseverities`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Minor', 1, 186, 0, NULL),
(2, 'Major', 1, 187, 1, NULL),
(3, 'Feature', 1, 188, 2, NULL),
(4, 'Critical', 1, 189, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketseverities_seq`
--

DROP TABLE IF EXISTS `vtiger_ticketseverities_seq`;
CREATE TABLE `vtiger_ticketseverities_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ticketseverities_seq`
--

INSERT IGNORE INTO `vtiger_ticketseverities_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketstatus`
--

DROP TABLE IF EXISTS `vtiger_ticketstatus`;
CREATE TABLE `vtiger_ticketstatus` (
  `ticketstatus_id` int(19) NOT NULL,
  `ticketstatus` varchar(200) DEFAULT NULL,
  `presence` int(1) NOT NULL DEFAULT 0,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ticketstatus`
--

INSERT IGNORE INTO `vtiger_ticketstatus` (`ticketstatus_id`, `ticketstatus`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Open', 0, 190, 0, NULL),
(2, 'In Progress', 0, 191, 1, NULL),
(3, 'Wait For Response', 0, 192, 2, NULL),
(4, 'Closed', 0, 193, 3, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ticketstatus_seq`
--

DROP TABLE IF EXISTS `vtiger_ticketstatus_seq`;
CREATE TABLE `vtiger_ticketstatus_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ticketstatus_seq`
--

INSERT IGNORE INTO `vtiger_ticketstatus_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_time_zone`
--

DROP TABLE IF EXISTS `vtiger_time_zone`;
CREATE TABLE `vtiger_time_zone` (
  `time_zoneid` int(19) NOT NULL,
  `time_zone` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_time_zone`
--

INSERT IGNORE INTO `vtiger_time_zone` (`time_zoneid`, `time_zone`, `sortorderid`, `presence`) VALUES
(1, 'Pacific/Midway', 1, 1),
(2, 'Pacific/Samoa', 0, 1),
(3, 'Pacific/Honolulu', 2, 1),
(4, 'America/Anchorage', 3, 1),
(5, 'America/Los_Angeles', 5, 1),
(6, 'America/Tijuana', 4, 1),
(7, 'America/Denver', 6, 1),
(8, 'America/Chihuahua', 8, 1),
(9, 'America/Mazatlan', 7, 1),
(10, 'America/Phoenix', 9, 1),
(11, 'America/Regina', 10, 1),
(12, 'America/Tegucigalpa', 14, 1),
(13, 'America/Chicago', 13, 1),
(14, 'America/Mexico_City', 12, 1),
(15, 'America/Monterrey', 11, 1),
(16, 'America/New_York', 18, 1),
(17, 'America/Bogota', 19, 1),
(18, 'America/Lima', 16, 1),
(19, 'America/Rio_Branco', 15, 1),
(20, 'America/Indiana/Indianapolis', 17, 1),
(21, 'America/Caracas', 20, 1),
(22, 'America/Halifax', 25, 1),
(23, 'America/Manaus', 22, 1),
(24, 'America/Santiago', 21, 1),
(25, 'America/La_Paz', 23, 1),
(26, 'America/Cuiaba', 24, 1),
(27, 'America/Asuncion', 26, 1),
(28, 'America/St_Johns', 27, 1),
(29, 'America/Argentina/Buenos_Aires', 30, 1),
(30, 'America/Sao_Paulo', 31, 1),
(31, 'America/Godthab', 29, 1),
(32, 'America/Montevideo', 28, 1),
(33, 'Atlantic/South_Georgia', 32, 1),
(34, 'Atlantic/Azores', 34, 1),
(35, 'Atlantic/Cape_Verde', 33, 1),
(36, 'Europe/London', 37, 1),
(37, 'UTC', 36, 1),
(38, 'Africa/Monrovia', 38, 1),
(39, 'Africa/Casablanca', 35, 1),
(40, 'Europe/Belgrade', 40, 1),
(41, 'Europe/Sarajevo', 42, 1),
(42, 'Europe/Brussels', 41, 1),
(43, 'Africa/Algiers', 43, 1),
(44, 'Europe/Amsterdam', 39, 1),
(45, 'Europe/Minsk', 52, 1),
(46, 'Africa/Cairo', 47, 1),
(47, 'Europe/Helsinki', 49, 1),
(48, 'Europe/Athens', 45, 1),
(49, 'Europe/Istanbul', 50, 1),
(50, 'Asia/Jerusalem', 51, 1),
(51, 'Asia/Amman', 44, 1),
(52, 'Asia/Beirut', 46, 1),
(53, 'Africa/Windhoek', 53, 1),
(54, 'Africa/Harare', 48, 1),
(55, 'Asia/Kuwait', 55, 1),
(56, 'Asia/Baghdad', 54, 1),
(57, 'Africa/Nairobi', 57, 1),
(58, 'Asia/Tehran', 58, 1),
(59, 'Asia/Tbilisi', 61, 1),
(60, 'Europe/Moscow', 56, 1),
(61, 'Asia/Muscat', 59, 1),
(62, 'Asia/Baku', 60, 1),
(63, 'Asia/Yerevan', 62, 1),
(64, 'Asia/Karachi', 63, 1),
(65, 'Asia/Tashkent', 64, 1),
(66, 'Asia/Kolkata', 65, 1),
(67, 'Asia/Colombo', 66, 1),
(68, 'Asia/Katmandu', 67, 1),
(69, 'Asia/Dhaka', 69, 1),
(70, 'Asia/Almaty', 68, 1),
(71, 'Asia/Yekaterinburg', 70, 1),
(72, 'Asia/Rangoon', 71, 1),
(73, 'Asia/Novosibirsk', 73, 1),
(74, 'Asia/Bangkok', 72, 1),
(75, 'Asia/Brunei', 74, 1),
(76, 'Asia/Krasnoyarsk', 75, 1),
(77, 'Asia/Ulaanbaatar', 79, 1),
(78, 'Asia/Kuala_Lumpur', 76, 1),
(79, 'Asia/Taipei', 78, 1),
(80, 'Australia/Perth', 77, 1),
(81, 'Asia/Irkutsk', 80, 1),
(82, 'Asia/Seoul', 81, 1),
(83, 'Asia/Tokyo', 82, 1),
(84, 'Australia/Darwin', 84, 1),
(85, 'Australia/Adelaide', 83, 1),
(86, 'Australia/Canberra', 86, 1),
(87, 'Australia/Brisbane', 85, 1),
(88, 'Australia/Hobart', 88, 1),
(89, 'Asia/Vladivostok', 89, 1),
(90, 'Pacific/Guam', 87, 1),
(91, 'Asia/Yakutsk', 90, 1),
(92, 'Pacific/Fiji', 93, 1),
(93, 'Asia/Kamchatka', 94, 1),
(94, 'Pacific/Auckland', 92, 1),
(95, 'Asia/Magadan', 95, 1),
(96, 'Pacific/Tongatapu', 96, 1),
(97, 'Etc/GMT-11', 91, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_time_zone_seq`
--

DROP TABLE IF EXISTS `vtiger_time_zone_seq`;
CREATE TABLE `vtiger_time_zone_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_time_zone_seq`
--

INSERT IGNORE INTO `vtiger_time_zone_seq` (`id`) VALUES
(96);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_read_group_rel_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_read_group_rel_sharing_per`;
CREATE TABLE `vtiger_tmp_read_group_rel_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `relatedtabid` int(11) NOT NULL,
  `sharedgroupid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_read_group_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_read_group_sharing_per`;
CREATE TABLE `vtiger_tmp_read_group_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `sharedgroupid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_read_user_rel_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_read_user_rel_sharing_per`;
CREATE TABLE `vtiger_tmp_read_user_rel_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `relatedtabid` int(11) NOT NULL,
  `shareduserid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_read_user_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_read_user_sharing_per`;
CREATE TABLE `vtiger_tmp_read_user_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `shareduserid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_write_group_rel_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_write_group_rel_sharing_per`;
CREATE TABLE `vtiger_tmp_write_group_rel_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `relatedtabid` int(11) NOT NULL,
  `sharedgroupid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_write_group_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_write_group_sharing_per`;
CREATE TABLE `vtiger_tmp_write_group_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `sharedgroupid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_write_user_rel_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_write_user_rel_sharing_per`;
CREATE TABLE `vtiger_tmp_write_user_rel_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `relatedtabid` int(11) NOT NULL,
  `shareduserid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tmp_write_user_sharing_per`
--

DROP TABLE IF EXISTS `vtiger_tmp_write_user_sharing_per`;
CREATE TABLE `vtiger_tmp_write_user_sharing_per` (
  `userid` int(11) NOT NULL,
  `tabid` int(11) NOT NULL,
  `shareduserid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tracker`
--

DROP TABLE IF EXISTS `vtiger_tracker`;
CREATE TABLE `vtiger_tracker` (
  `id` int(11) NOT NULL,
  `user_id` varchar(36) DEFAULT NULL,
  `module_name` varchar(25) DEFAULT NULL,
  `item_id` varchar(36) DEFAULT NULL,
  `item_summary` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_tracker`
--

INSERT IGNORE INTO `vtiger_tracker` (`id`, `user_id`, `module_name`, `item_id`, `item_summary`) VALUES
(5, '1', 'Contacts', '2123', 'آقای منوچهر انصاری (مثال)'),
(7, '1', 'Communications', '2289', 'ارتباط عملی طرح گویا ۱۴۰۵/۰۵/۱۱'),
(17, '1', 'Users', '1', 'حسین فغان پور'),
(18, '1', 'Users', '24', 'آرش فلاحی'),
(19, '1', 'Contacts', '2286', 'آزمایش نمونه عملی طرح گویا');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tracking_unit`
--

DROP TABLE IF EXISTS `vtiger_tracking_unit`;
CREATE TABLE `vtiger_tracking_unit` (
  `tracking_unitid` int(11) NOT NULL,
  `tracking_unit` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(11) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT 0,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_tracking_unit`
--

INSERT IGNORE INTO `vtiger_tracking_unit` (`tracking_unitid`, `tracking_unit`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(2, 'Hours', 1, 211, 2, NULL),
(3, 'Days', 1, 212, 3, NULL),
(4, 'Incidents', 1, 213, 4, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_tracking_unit_seq`
--

DROP TABLE IF EXISTS `vtiger_tracking_unit_seq`;
CREATE TABLE `vtiger_tracking_unit_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_tracking_unit_seq`
--

INSERT IGNORE INTO `vtiger_tracking_unit_seq` (`id`) VALUES
(4);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_troubletickets`
--

DROP TABLE IF EXISTS `vtiger_troubletickets`;
CREATE TABLE `vtiger_troubletickets` (
  `ticketid` int(19) NOT NULL,
  `ticket_no` varchar(100) NOT NULL,
  `groupname` varchar(100) DEFAULT NULL,
  `parent_id` varchar(100) DEFAULT NULL,
  `product_id` varchar(100) DEFAULT NULL,
  `priority` varchar(200) DEFAULT NULL,
  `severity` varchar(200) DEFAULT NULL,
  `status` varchar(200) DEFAULT NULL,
  `category` varchar(200) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `solution` text DEFAULT NULL,
  `update_log` text DEFAULT NULL,
  `version_id` int(11) DEFAULT NULL,
  `hours` decimal(25,8) DEFAULT NULL,
  `days` decimal(25,8) DEFAULT NULL,
  `contact_id` int(19) DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_troubletickets`
--

INSERT IGNORE INTO `vtiger_troubletickets` (`ticketid`, `ticket_no`, `groupname`, `parent_id`, `product_id`, `priority`, `severity`, `status`, `category`, `title`, `solution`, `update_log`, `version_id`, `hours`, `days`, `contact_id`, `tags`) VALUES
(2092, 'TT1', NULL, '20', '0', 'High', NULL, 'Open', NULL, 'درخواست پشتیبانی نصب (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2094, 'TT2', NULL, '21', '0', 'Urgent', NULL, 'In Progress', NULL, 'مشکل ورود به سامانه (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2097, 'TT3', NULL, '22', '0', 'Normal', NULL, 'Wait For Response', NULL, 'درخواست آموزش کاربری (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2099, 'TT4', NULL, '23', '0', 'Normal', NULL, 'Closed', NULL, 'خطای چاپ فاکتور (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2101, 'TT5', NULL, '24', '0', 'Low', NULL, 'Open', NULL, 'درخواست گزارش اختصاصی (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2104, 'TT6', NULL, '25', '0', 'High', NULL, 'In Progress', NULL, 'کندی سیستم در ساعات اوج (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2106, 'TT7', NULL, '2028', '0', 'Normal', NULL, 'Closed', NULL, 'تمدید قرارداد پشتیبانی (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2109, 'TT8', NULL, '2029', '0', 'Normal', NULL, 'Open', NULL, 'درخواست فعال‌سازی ماژول جدید (مثال)', '', NULL, NULL, 0.00000000, 0.00000000, 0, ''),
(2149, 'TT9', NULL, '2036', '0', 'High', 'Major', 'In Progress', 'Other Problem', 'سرویس نصب و راه‌اندازی پکیج پیشرفته (نمونه فاز ۲)', '', NULL, NULL, 0.00000000, 0.00000000, 2107, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_usageunit`
--

DROP TABLE IF EXISTS `vtiger_usageunit`;
CREATE TABLE `vtiger_usageunit` (
  `usageunitid` int(19) NOT NULL,
  `usageunit` varchar(200) NOT NULL,
  `presence` int(1) NOT NULL DEFAULT 1,
  `picklist_valueid` int(19) NOT NULL DEFAULT 0,
  `sortorderid` int(11) DEFAULT NULL,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_usageunit`
--

INSERT IGNORE INTO `vtiger_usageunit` (`usageunitid`, `usageunit`, `presence`, `picklist_valueid`, `sortorderid`, `color`) VALUES
(1, 'Box', 1, 194, 0, NULL),
(2, 'Carton', 1, 195, 1, NULL),
(3, 'Dozen', 1, 196, 2, NULL),
(4, 'Each', 1, 197, 3, NULL),
(5, 'Hours', 1, 198, 4, NULL),
(6, 'Impressions', 1, 199, 5, NULL),
(7, 'Lb', 1, 200, 6, NULL),
(8, 'M', 1, 201, 7, NULL),
(9, 'Pack', 1, 202, 8, NULL),
(10, 'Pages', 1, 203, 9, NULL),
(11, 'Pieces', 1, 204, 10, NULL),
(12, 'Quantity', 1, 205, 11, NULL),
(13, 'Reams', 1, 206, 12, NULL),
(14, 'Sheet', 1, 207, 13, NULL),
(15, 'Spiral Binder', 1, 208, 14, NULL),
(16, 'Sq Ft', 1, 209, 15, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_usageunit_seq`
--

DROP TABLE IF EXISTS `vtiger_usageunit_seq`;
CREATE TABLE `vtiger_usageunit_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_usageunit_seq`
--

INSERT IGNORE INTO `vtiger_usageunit_seq` (`id`) VALUES
(16);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_user2mergefields`
--

DROP TABLE IF EXISTS `vtiger_user2mergefields`;
CREATE TABLE `vtiger_user2mergefields` (
  `userid` int(11) DEFAULT NULL,
  `tabid` int(19) DEFAULT NULL,
  `fieldid` int(19) DEFAULT NULL,
  `visible` int(2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_user2role`
--

DROP TABLE IF EXISTS `vtiger_user2role`;
CREATE TABLE `vtiger_user2role` (
  `userid` int(11) NOT NULL,
  `roleid` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_user2role`
--

INSERT IGNORE INTO `vtiger_user2role` (`userid`, `roleid`) VALUES
(1, 'H2'),
(8, 'H29'),
(13, 'H29'),
(14, 'H29'),
(17, 'H29'),
(18, 'H29'),
(19, 'H29'),
(20, 'H29'),
(2, 'H3'),
(6, 'H3'),
(9, 'H30'),
(10, 'H30'),
(12, 'H30'),
(16, 'H30'),
(24, 'H30'),
(25, 'H30'),
(26, 'H30'),
(11, 'H31'),
(15, 'H31'),
(21, 'H31'),
(22, 'H31'),
(23, 'H31'),
(5, 'H4'),
(3, 'H5'),
(4, 'H5'),
(7, 'H5');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_users`
--

DROP TABLE IF EXISTS `vtiger_users`;
CREATE TABLE `vtiger_users` (
  `id` int(11) NOT NULL,
  `user_name` varchar(255) DEFAULT NULL,
  `user_password` varchar(200) DEFAULT NULL,
  `cal_color` varchar(25) DEFAULT '#E6FAD8',
  `first_name` varchar(30) DEFAULT NULL,
  `last_name` varchar(30) DEFAULT NULL,
  `reports_to_id` varchar(36) DEFAULT NULL,
  `is_admin` varchar(3) DEFAULT '0',
  `currency_id` int(19) NOT NULL DEFAULT 1,
  `description` text DEFAULT NULL,
  `date_entered` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `date_modified` datetime DEFAULT NULL,
  `modified_user_id` varchar(36) DEFAULT NULL,
  `title` varchar(50) DEFAULT NULL,
  `department` varchar(50) DEFAULT NULL,
  `phone_home` varchar(50) DEFAULT NULL,
  `phone_mobile` varchar(50) DEFAULT NULL,
  `phone_work` varchar(50) DEFAULT NULL,
  `phone_other` varchar(50) DEFAULT NULL,
  `phone_fax` varchar(50) DEFAULT NULL,
  `email1` varchar(100) DEFAULT NULL,
  `email2` varchar(100) DEFAULT NULL,
  `secondaryemail` varchar(100) DEFAULT NULL,
  `status` varchar(25) DEFAULT NULL,
  `signature` text DEFAULT NULL,
  `address_street` varchar(150) DEFAULT NULL,
  `address_city` varchar(100) DEFAULT NULL,
  `address_state` varchar(100) DEFAULT NULL,
  `address_country` varchar(25) DEFAULT NULL,
  `address_postalcode` varchar(9) DEFAULT NULL,
  `user_preferences` text DEFAULT NULL,
  `tz` varchar(30) DEFAULT NULL,
  `holidays` varchar(60) DEFAULT NULL,
  `namedays` varchar(60) DEFAULT NULL,
  `workdays` varchar(30) DEFAULT NULL,
  `weekstart` int(11) DEFAULT NULL,
  `date_format` varchar(200) DEFAULT NULL,
  `hour_format` varchar(30) DEFAULT 'am/pm',
  `start_hour` varchar(30) DEFAULT '10:00',
  `end_hour` varchar(30) DEFAULT '23:00',
  `is_owner` varchar(100) DEFAULT '0',
  `activity_view` varchar(200) DEFAULT 'Today',
  `lead_view` varchar(200) DEFAULT 'Today',
  `imagename` varchar(250) DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0,
  `confirm_password` varchar(300) DEFAULT NULL,
  `internal_mailer` varchar(3) NOT NULL DEFAULT '1',
  `reminder_interval` varchar(100) DEFAULT NULL,
  `reminder_next_time` varchar(100) DEFAULT NULL,
  `crypt_type` varchar(20) NOT NULL DEFAULT 'MD5',
  `accesskey` varchar(36) DEFAULT NULL,
  `theme` varchar(100) DEFAULT NULL,
  `language` varchar(36) DEFAULT NULL,
  `time_zone` varchar(200) DEFAULT NULL,
  `currency_grouping_pattern` varchar(100) DEFAULT NULL,
  `currency_decimal_separator` varchar(2) DEFAULT NULL,
  `currency_grouping_separator` varchar(2) DEFAULT NULL,
  `currency_symbol_placement` varchar(20) DEFAULT NULL,
  `userlabel` varchar(255) DEFAULT NULL,
  `defaultlandingpage` varchar(200) DEFAULT NULL,
  `phone_crm_extension` varchar(100) DEFAULT NULL,
  `no_of_currency_decimals` varchar(2) DEFAULT NULL,
  `truncate_trailing_zeros` varchar(3) DEFAULT NULL,
  `dayoftheweek` varchar(100) DEFAULT NULL,
  `callduration` varchar(100) DEFAULT NULL,
  `othereventduration` varchar(100) DEFAULT NULL,
  `calendarsharedtype` varchar(100) DEFAULT NULL,
  `default_record_view` varchar(10) DEFAULT NULL,
  `leftpanelhide` varchar(3) DEFAULT NULL,
  `rowheight` varchar(10) DEFAULT NULL,
  `defaulteventstatus` varchar(50) DEFAULT NULL,
  `defaultactivitytype` varchar(50) DEFAULT NULL,
  `hidecompletedevents` int(11) DEFAULT NULL,
  `defaultcalendarview` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_users`
--

INSERT IGNORE INTO `vtiger_users` (`id`, `user_name`, `user_password`, `cal_color`, `first_name`, `last_name`, `reports_to_id`, `is_admin`, `currency_id`, `description`, `date_entered`, `date_modified`, `modified_user_id`, `title`, `department`, `phone_home`, `phone_mobile`, `phone_work`, `phone_other`, `phone_fax`, `email1`, `email2`, `secondaryemail`, `status`, `signature`, `address_street`, `address_city`, `address_state`, `address_country`, `address_postalcode`, `user_preferences`, `tz`, `holidays`, `namedays`, `workdays`, `weekstart`, `date_format`, `hour_format`, `start_hour`, `end_hour`, `is_owner`, `activity_view`, `lead_view`, `imagename`, `deleted`, `confirm_password`, `internal_mailer`, `reminder_interval`, `reminder_next_time`, `crypt_type`, `accesskey`, `theme`, `language`, `time_zone`, `currency_grouping_pattern`, `currency_decimal_separator`, `currency_grouping_separator`, `currency_symbol_placement`, `userlabel`, `defaultlandingpage`, `phone_crm_extension`, `no_of_currency_decimals`, `truncate_trailing_zeros`, `dayoftheweek`, `callduration`, `othereventduration`, `calendarsharedtype`, `default_record_view`, `leftpanelhide`, `rowheight`, `defaulteventstatus`, `defaultactivitytype`, `hidecompletedevents`, `defaultcalendarview`) VALUES
(1, 'admin', '$2y$10$AOJCDzBWLIgy7I/Ee.rRZuCHtHxLwr0IZRj.4Mx5OByq3uWc91Q/W', '#E6FAD8', 'فرهاد', 'داداشی', '', 'on', 1, '', '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'مدیرعامل', 'مدیریت عامل', '', '09111007370', '', '', '', '', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'فرهاد داداشی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(2, 'ali', '3313eda2f6755495def475f62eac7cec', '#E6FAD8', 'خانم', 'حسنی', '1', 'off', 1, NULL, '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'مدیر پروژه', 'مدیریت پروژه', NULL, '', NULL, NULL, NULL, '', '', '', 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'am/pm', '10:00', '23:00', '0', 'Today', 'Today', NULL, 0, NULL, '1', NULL, NULL, 'PHP5.3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'خانم حسنی', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(3, 'sara', '3313eda2f6755495def475f62eac7cec', '#E6FAD8', 'خانم', 'رمضانپور', '2', 'off', 1, NULL, '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'کارشناس', 'کارشناسی پروژه', NULL, '', NULL, NULL, NULL, '', '', '', 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'am/pm', '10:00', '23:00', '0', 'Today', 'Today', NULL, 0, NULL, '1', NULL, NULL, 'PHP5.3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'خانم رمضانپور', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(4, 'reza', '3313eda2f6755495def475f62eac7cec', '#E6FAD8', 'خانم', 'تقی پور', '2', 'off', 1, NULL, '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'کارشناس', 'کارشناسی پروژه', NULL, '', NULL, NULL, NULL, '', '', '', 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'am/pm', '10:00', '23:00', '0', 'Today', 'Today', NULL, 0, NULL, '1', NULL, NULL, 'PHP5.3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'خانم تقی پور', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(5, 'a.zare', '$2y$10$E5ZFRFHX4PplU0ShAIU7c.031/yCkjSFHux2XXMgLvJcQXB8jXRrO', '#E6FAD8', 'خانم', 'رامی', '1', 'off', 1, '', '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'سرپرست و مدیر دفتر', 'دفتر مدیریت', '', '', '', '', '', '', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'yyyy-mm-dd', '12', '09:00', '', '', 'Today', 'Today', '', 0, '$2y$10$puJuSGdzsOrIbPm2BFWxfunb1zolwZPOrbuP2PtetpvZYk4gpgyMy', '0', '', NULL, 'PHASH', 'GlOTEZshBX6Kae6z', 'softed', 'en_us', 'UTC', '123,456,789', '.', ',', '$1.0', 'خانم رامی', 'Home', '', '2', '0', 'Sunday', '5', '5', 'public', 'Summary', '0', 'medium', '', '', 0, ''),
(6, 'kpiseed_mgr', '95d917223c3fa2f3b163b6536d2c6eca', '#E6FAD8', 'خانم', 'سعادتی', '1', 'off', 1, '', '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'مدیر پروژه', 'مدیریت پروژه', '', '', '+98 09119090378', '', '', '', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'خانم سعادتی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(7, 'kpiseed_sup1', '170b403efcda5415a6f55997637bcb5f', '#E6FAD8', 'خانم', 'صادق نیا', '6', 'off', 1, '', '2026-08-25 06:16:58', '2026-08-25 09:46:58', '1', 'کارشناس', 'کارشناسی پروژه', '', '', '', '', '', '', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'خانم صادق نیا', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(8, 'kpiseed_emp1', '2b515623a14c0eb329fd3a5c52c4279c', '#E6FAD8', 'نیما', 'قاسمی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp1@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'نیما قاسمی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(9, 'kpiseed_emp2', '763defb1ed27b81e9ae076a5c4c3614c', '#E6FAD8', 'زهرا', 'مرادی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp2@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'زهرا مرادی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(10, 'kpiseed_emp3', '47069c6842a84e52f9c66cd12ed04f8e', '#E6FAD8', 'امیر', 'صادقی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp3@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'امیر صادقی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(11, 'kpiseed_sup2', '07e2526f20449483a385a780145de096', '#E6FAD8', 'سارا', 'احمدی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_sup2@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'سارا احمدی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(12, 'kpiseed_emp4', 'c68363c4953b6043f654647397da8c58', '#E6FAD8', 'فاطمه', 'کاظمی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp4@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'فاطمه کاظمی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(13, 'kpiseed_emp5', '1bcf16c7435b2cf4b9a108843626adea', '#E6FAD8', 'سینا', 'یوسفی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp5@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'سینا یوسفی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(14, 'kpiseed_emp6', 'ec077a2b3a9a3a8b5c01980571974156', '#E6FAD8', 'الهام', 'جعفری', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp6@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'الهام جعفری', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(15, 'kpiseed_sup3', '6909a6d8a12874d8d95d16e1e7e9658f', '#E6FAD8', 'حسن', 'رضایی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_sup3@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'حسن رضایی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(16, 'kpiseed_emp7', '508da96baf0f1a72b6bb5c5c39324a05', '#E6FAD8', 'بهرام', 'اکبری', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp7@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'بهرام اکبری', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(17, 'kpiseed_emp8', 'bfd4dfc7726fae568a0bba0bbd0a82b7', '#E6FAD8', 'نگار', 'شریفی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp8@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'نگار شریفی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(18, 'kpiseed_emp9', '35ad982d4927a0e2a958036113230ed6', '#E6FAD8', 'پیمان', 'بابایی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp9@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'پیمان بابایی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(19, 'kpiseed_sup4', '03bfc33e5e33db133a40062881afeaa6', '#E6FAD8', 'مریم', 'حسینی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_sup4@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'مریم حسینی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(20, 'kpiseed_emp10', '854ec174806d2eab33d6f36e2034f541', '#E6FAD8', 'مینا', 'رستمی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp10@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'مینا رستمی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(21, 'kpiseed_emp11', '1680fc92f2e8f8b39361029aadd01160', '#E6FAD8', 'کیان', 'عباسی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp11@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'کیان عباسی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(22, 'kpiseed_emp12', 'a05cc0c9a01119da78d488bf10811b51', '#E6FAD8', 'رها', 'نادری', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp12@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'رها نادری', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(23, 'kpiseed_sup5', '043f32a4e240b7e9bca4e58ddbe34c93', '#E6FAD8', 'کاوه', 'نوری', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_sup5@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'کاوه نوری', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(24, 'kpiseed_emp13', '7382474a6d3959dc82310dd5d42ca3d2', '#E6FAD8', 'آرش', 'فلاحی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp13@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'آرش فلاحی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(25, 'kpiseed_emp14', 'b7451ca63513b3472568e5f334d5cae5', '#E6FAD8', 'سحر', 'زارع', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp14@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'سحر زارع', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar'),
(26, 'kpiseed_emp15', '24bf5d8063c2304240f258a0fc8c863e', '#E6FAD8', 'وحید', 'محمودی', '', 'off', 1, '', '2026-07-29 12:49:05', NULL, NULL, '', '', '', '09119090378', '', '', '', 'kpiseed_emp15@example.local', '', '', 'Active', '', '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 'mm-dd-yyyy', '12', '00:00', '23:00', '1', 'This Week', 'Today', '', 0, '$2y$10$2XRq5pqeq6bvhShM9sMwceTg/SaH3EojVmzMGjVxkHW02fdPxk9J.', '1', '1 Minute', NULL, 'PHASH', 'fPCJgVwB7l0IQMqw', 'alphagrey', 'fa_ir', 'Asia/Tehran', '123,456,789', '.', ',', '$1.0', 'وحید محمودی', 'Home', '', '2', '1', 'Sunday', '5', '5', 'public', 'Summary', '0', '', 'Planned', 'Call', 0, 'MyCalendar');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_users2group`
--

DROP TABLE IF EXISTS `vtiger_users2group`;
CREATE TABLE `vtiger_users2group` (
  `groupid` int(19) NOT NULL,
  `userid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_users2group`
--

INSERT IGNORE INTO `vtiger_users2group` (`groupid`, `userid`) VALUES
(3, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_users_last_import`
--

DROP TABLE IF EXISTS `vtiger_users_last_import`;
CREATE TABLE `vtiger_users_last_import` (
  `id` int(36) NOT NULL,
  `assigned_user_id` varchar(36) DEFAULT NULL,
  `bean_type` varchar(36) DEFAULT NULL,
  `bean_id` varchar(36) DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_users_seq`
--

DROP TABLE IF EXISTS `vtiger_users_seq`;
CREATE TABLE `vtiger_users_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_users_seq`
--

INSERT IGNORE INTO `vtiger_users_seq` (`id`) VALUES
(24);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_user_module_preferences`
--

DROP TABLE IF EXISTS `vtiger_user_module_preferences`;
CREATE TABLE `vtiger_user_module_preferences` (
  `userid` int(19) NOT NULL,
  `tabid` int(19) NOT NULL,
  `default_cvid` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_vendor`
--

DROP TABLE IF EXISTS `vtiger_vendor`;
CREATE TABLE `vtiger_vendor` (
  `vendorid` int(19) NOT NULL DEFAULT 0,
  `vendor_no` varchar(100) NOT NULL,
  `vendorname` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `website` varchar(100) DEFAULT NULL,
  `glacct` varchar(200) DEFAULT NULL,
  `category` varchar(50) DEFAULT NULL,
  `street` text DEFAULT NULL,
  `city` varchar(30) DEFAULT NULL,
  `state` varchar(30) DEFAULT NULL,
  `pobox` varchar(30) DEFAULT NULL,
  `postalcode` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `tags` varchar(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_vendor`
--

INSERT IGNORE INTO `vtiger_vendor` (`vendorid`, `vendor_no`, `vendorname`, `phone`, `email`, `website`, `glacct`, `category`, `street`, `city`, `state`, `pobox`, `postalcode`, `country`, `description`, `tags`) VALUES
(2126, 'VEN1', 'بازرگانی پارت تامین (مثال)', '021-44556677', 'part@test.com', '', NULL, 'قطعات', '', '', '', '', '', '', NULL, ''),
(2127, 'VEN2', 'صنایع فلزی آریا (مثال)', '021-88997766', 'arya@test.com', '', NULL, 'مواد اولیه', '', '', '', '', '', '', NULL, ''),
(2128, 'VEN3', 'پخش البرز (مثال)', '026-32221100', 'alborz@test.com', '', NULL, 'توزیع', '', '', '', '', '', '', NULL, ''),
(2129, 'VEN4', 'تجهیزات نوین صنعت (مثال)', '031-36667788', 'novin@test.com', '', NULL, 'تجهیزات', '', '', '', '', '', '', NULL, '');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_vendorcf`
--

DROP TABLE IF EXISTS `vtiger_vendorcf`;
CREATE TABLE `vtiger_vendorcf` (
  `vendorid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_vendorcf`
--

INSERT IGNORE INTO `vtiger_vendorcf` (`vendorid`) VALUES
(2126),
(2127),
(2128),
(2129);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_vendorcontactrel`
--

DROP TABLE IF EXISTS `vtiger_vendorcontactrel`;
CREATE TABLE `vtiger_vendorcontactrel` (
  `vendorid` int(19) NOT NULL DEFAULT 0,
  `contactid` int(19) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_version`
--

DROP TABLE IF EXISTS `vtiger_version`;
CREATE TABLE `vtiger_version` (
  `id` int(11) NOT NULL,
  `old_version` varchar(30) DEFAULT NULL,
  `current_version` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_version`
--

INSERT IGNORE INTO `vtiger_version` (`id`, `old_version`, `current_version`) VALUES
(1, '8.4.0', '8.4.0');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_version_seq`
--

DROP TABLE IF EXISTS `vtiger_version_seq`;
CREATE TABLE `vtiger_version_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_version_seq`
--

INSERT IGNORE INTO `vtiger_version_seq` (`id`) VALUES
(1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_visibility`
--

DROP TABLE IF EXISTS `vtiger_visibility`;
CREATE TABLE `vtiger_visibility` (
  `visibilityid` int(19) NOT NULL,
  `visibility` varchar(200) NOT NULL,
  `sortorderid` int(19) NOT NULL DEFAULT 0,
  `presence` int(1) NOT NULL DEFAULT 1,
  `color` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_visibility`
--

INSERT IGNORE INTO `vtiger_visibility` (`visibilityid`, `visibility`, `sortorderid`, `presence`, `color`) VALUES
(1, 'Private', 0, 1, NULL),
(2, 'Public', 1, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_visibility_seq`
--

DROP TABLE IF EXISTS `vtiger_visibility_seq`;
CREATE TABLE `vtiger_visibility_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_visibility_seq`
--

INSERT IGNORE INTO `vtiger_visibility_seq` (`id`) VALUES
(2);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_webforms`
--

DROP TABLE IF EXISTS `vtiger_webforms`;
CREATE TABLE `vtiger_webforms` (
  `id` int(19) NOT NULL,
  `name` varchar(100) NOT NULL,
  `publicid` varchar(100) NOT NULL,
  `enabled` int(1) NOT NULL DEFAULT 1,
  `targetmodule` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `ownerid` int(19) NOT NULL,
  `returnurl` varchar(250) DEFAULT NULL,
  `captcha` int(1) NOT NULL DEFAULT 0,
  `roundrobin` int(1) NOT NULL DEFAULT 0,
  `roundrobin_userid` varchar(256) DEFAULT NULL,
  `roundrobin_logic` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_webforms_field`
--

DROP TABLE IF EXISTS `vtiger_webforms_field`;
CREATE TABLE `vtiger_webforms_field` (
  `id` int(19) NOT NULL,
  `webformid` int(19) NOT NULL,
  `fieldid` int(19) NOT NULL,
  `fieldname` varchar(50) NOT NULL,
  `neutralizedfield` varchar(50) NOT NULL,
  `defaultvalue` text DEFAULT NULL,
  `required` int(10) NOT NULL DEFAULT 0,
  `sequence` int(10) DEFAULT NULL,
  `hidden` int(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_webform_file_fields`
--

DROP TABLE IF EXISTS `vtiger_webform_file_fields`;
CREATE TABLE `vtiger_webform_file_fields` (
  `id` int(19) NOT NULL,
  `webformid` int(19) NOT NULL,
  `fieldname` varchar(100) NOT NULL,
  `fieldlabel` varchar(100) NOT NULL,
  `required` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wordtemplates`
--

DROP TABLE IF EXISTS `vtiger_wordtemplates`;
CREATE TABLE `vtiger_wordtemplates` (
  `templateid` int(19) NOT NULL,
  `filename` varchar(100) NOT NULL,
  `module` varchar(30) NOT NULL,
  `date_entered` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `parent_type` varchar(50) NOT NULL,
  `data` longblob NOT NULL,
  `description` text DEFAULT NULL,
  `filesize` varchar(50) NOT NULL,
  `filetype` varchar(20) NOT NULL,
  `deleted` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp`
--

DROP TABLE IF EXISTS `vtiger_wsapp`;
CREATE TABLE `vtiger_wsapp` (
  `appid` int(11) NOT NULL,
  `name` varchar(200) NOT NULL,
  `appkey` varchar(255) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_wsapp`
--

INSERT IGNORE INTO `vtiger_wsapp` (`appid`, `name`, `appkey`, `type`) VALUES
(1, 'vtigerCRM', '6a2c58fc69077', 'user');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_handlerdetails`
--

DROP TABLE IF EXISTS `vtiger_wsapp_handlerdetails`;
CREATE TABLE `vtiger_wsapp_handlerdetails` (
  `type` varchar(200) NOT NULL,
  `handlerclass` varchar(100) DEFAULT NULL,
  `handlerpath` varchar(300) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_wsapp_handlerdetails`
--

INSERT IGNORE INTO `vtiger_wsapp_handlerdetails` (`type`, `handlerclass`, `handlerpath`) VALUES
('Outlook', 'OutlookHandler', 'modules/WSAPP/Handlers/OutlookHandler.php'),
('vtigerCRM', 'vtigerCRMHandler', 'modules/WSAPP/Handlers/vtigerCRMHandler.php'),
('vtigerSyncLib', 'WSAPP_VtigerSyncEventHandler', 'modules/WSAPP/synclib/handlers/VtigerSyncEventHandler.php'),
('Google_vtigerHandler', 'Google_Vtiger_Handler', 'modules/Google/handlers/Vtiger.php'),
('Google_vtigerSyncHandler', 'Google_VtigerSync_Handler', 'modules/Google/handlers/VtigerSync.php');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_logs_basic`
--

DROP TABLE IF EXISTS `vtiger_wsapp_logs_basic`;
CREATE TABLE `vtiger_wsapp_logs_basic` (
  `id` int(25) NOT NULL,
  `extensiontabid` int(19) DEFAULT NULL,
  `module` varchar(50) NOT NULL,
  `sync_datetime` datetime NOT NULL,
  `app_create_count` int(11) DEFAULT NULL,
  `app_update_count` int(11) DEFAULT NULL,
  `app_delete_count` int(11) DEFAULT NULL,
  `app_skip_count` int(11) DEFAULT NULL,
  `vt_create_count` int(11) DEFAULT NULL,
  `vt_update_count` int(11) DEFAULT NULL,
  `vt_delete_count` int(11) DEFAULT NULL,
  `vt_skip_count` int(11) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_logs_details`
--

DROP TABLE IF EXISTS `vtiger_wsapp_logs_details`;
CREATE TABLE `vtiger_wsapp_logs_details` (
  `id` int(25) NOT NULL,
  `app_create_ids` mediumtext DEFAULT NULL,
  `app_update_ids` mediumtext DEFAULT NULL,
  `app_delete_ids` mediumtext DEFAULT NULL,
  `app_skip_info` mediumtext DEFAULT NULL,
  `vt_create_ids` mediumtext DEFAULT NULL,
  `vt_update_ids` mediumtext DEFAULT NULL,
  `vt_delete_ids` mediumtext DEFAULT NULL,
  `vt_skip_info` mediumtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_queuerecords`
--

DROP TABLE IF EXISTS `vtiger_wsapp_queuerecords`;
CREATE TABLE `vtiger_wsapp_queuerecords` (
  `syncserverid` int(19) DEFAULT NULL,
  `details` varchar(300) DEFAULT NULL,
  `flag` varchar(100) DEFAULT NULL,
  `appid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_recordmapping`
--

DROP TABLE IF EXISTS `vtiger_wsapp_recordmapping`;
CREATE TABLE `vtiger_wsapp_recordmapping` (
  `id` int(19) NOT NULL,
  `serverid` varchar(10) DEFAULT NULL,
  `clientid` varchar(255) DEFAULT NULL,
  `clientmodifiedtime` datetime DEFAULT NULL,
  `appid` int(11) DEFAULT NULL,
  `servermodifiedtime` datetime DEFAULT NULL,
  `serverappid` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_wsapp_sync_state`
--

DROP TABLE IF EXISTS `vtiger_wsapp_sync_state`;
CREATE TABLE `vtiger_wsapp_sync_state` (
  `id` int(19) NOT NULL,
  `name` varchar(200) DEFAULT NULL,
  `stateencodedvalues` varchar(300) NOT NULL,
  `userid` int(19) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity`
--

DROP TABLE IF EXISTS `vtiger_ws_entity`;
CREATE TABLE `vtiger_ws_entity` (
  `id` int(11) NOT NULL,
  `name` varchar(25) NOT NULL,
  `handler_path` varchar(255) NOT NULL,
  `handler_class` varchar(64) NOT NULL,
  `ismodule` int(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_entity`
--

INSERT IGNORE INTO `vtiger_ws_entity` (`id`, `name`, `handler_path`, `handler_class`, `ismodule`) VALUES
(1, 'Campaigns', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(2, 'Vendors', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(3, 'Faq', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(4, 'Quotes', 'include/Webservices/LineItem/VtigerInventoryOperation.php', 'VtigerInventoryOperation', 1),
(5, 'PurchaseOrder', 'include/Webservices/LineItem/VtigerInventoryOperation.php', 'VtigerInventoryOperation', 1),
(6, 'SalesOrder', 'include/Webservices/LineItem/VtigerInventoryOperation.php', 'VtigerInventoryOperation', 1),
(7, 'Invoice', 'include/Webservices/LineItem/VtigerInventoryOperation.php', 'VtigerInventoryOperation', 1),
(8, 'PriceBooks', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(9, 'Calendar', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(10, 'Leads', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(11, 'Accounts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(12, 'Contacts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(13, 'Potentials', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(14, 'Products', 'include/Webservices/VtigerProductOperation.php', 'VtigerProductOperation', 1),
(15, 'Documents', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(16, 'Emails', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(17, 'HelpDesk', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(18, 'Events', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(19, 'Users', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(20, 'Groups', 'include/Webservices/VtigerActorOperation.php', 'VtigerActorOperation', 0),
(21, 'Currency', 'include/Webservices/VtigerActorOperation.php', 'VtigerActorOperation', 0),
(22, 'DocumentFolders', 'include/Webservices/VtigerActorOperation.php', 'VtigerActorOperation', 0),
(23, 'CompanyDetails', 'include/Webservices/VtigerCompanyDetails.php', 'VtigerCompanyDetails', 0),
(24, 'PBXManager', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(25, 'ServiceContracts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(26, 'Services', 'include/Webservices/VtigerProductOperation.php', 'VtigerProductOperation', 1),
(27, 'Assets', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(28, 'ModComments', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(29, 'ProjectMilestone', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(30, 'ProjectTask', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(31, 'Project', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(32, 'SMSNotifier', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(33, 'LineItem', 'include/Webservices/LineItem/VtigerLineItemOperation.php', 'VtigerLineItemOperation', 0),
(34, 'Tax', 'include/Webservices/LineItem/VtigerTaxOperation.php', 'VtigerTaxOperation', 0),
(35, 'ProductTaxes', 'include/Webservices/LineItem/VtigerProductTaxesOperation.php', 'VtigerProductTaxesOperation', 0),
(36, 'SarvPayments', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(37, 'SarvParticipations', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(38, 'SarvSurveyResponses', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(39, 'SarvSalesContracts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(40, 'SarvTargetLists', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(41, 'SarvBankAccounts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(42, 'SarvDeposits', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(43, 'SarvBusinessLocations', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(44, 'SarvTimeReservations', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(45, 'SarvGifts', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(46, 'SarvProductSamples', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(47, 'SarvAccessGrants', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1),
(48, 'Communications', 'include/Webservices/VtigerModuleOperation.php', 'VtigerModuleOperation', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_fieldtype`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_fieldtype`;
CREATE TABLE `vtiger_ws_entity_fieldtype` (
  `fieldtypeid` int(19) NOT NULL,
  `table_name` varchar(50) NOT NULL,
  `field_name` varchar(50) NOT NULL,
  `fieldtype` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_fieldtype`
--

INSERT IGNORE INTO `vtiger_ws_entity_fieldtype` (`fieldtypeid`, `table_name`, `field_name`, `fieldtype`) VALUES
(1, 'vtiger_attachmentsfolder', 'createdby', 'reference'),
(2, 'vtiger_organizationdetails', 'logoname', 'file'),
(3, 'vtiger_organizationdetails', 'phone', 'phone'),
(4, 'vtiger_organizationdetails', 'fax', 'phone'),
(5, 'vtiger_organizationdetails', 'website', 'url'),
(6, 'vtiger_inventoryproductrel', 'productid', 'reference'),
(7, 'vtiger_inventoryproductrel', 'id', 'reference'),
(8, 'vtiger_inventoryproductrel', 'incrementondel', 'autogenerated'),
(9, 'vtiger_producttaxrel', 'productid', 'reference'),
(10, 'vtiger_producttaxrel', 'taxid', 'reference');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_fieldtype_seq`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_fieldtype_seq`;
CREATE TABLE `vtiger_ws_entity_fieldtype_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_fieldtype_seq`
--

INSERT IGNORE INTO `vtiger_ws_entity_fieldtype_seq` (`id`) VALUES
(10);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_name`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_name`;
CREATE TABLE `vtiger_ws_entity_name` (
  `entity_id` int(11) NOT NULL,
  `name_fields` varchar(50) NOT NULL,
  `index_field` varchar(50) NOT NULL,
  `table_name` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_name`
--

INSERT IGNORE INTO `vtiger_ws_entity_name` (`entity_id`, `name_fields`, `index_field`, `table_name`) VALUES
(20, 'groupname', 'groupid', 'vtiger_groups'),
(21, 'currency_name', 'id', 'vtiger_currency_info'),
(22, 'foldername', 'folderid', 'vtiger_attachmentsfolder'),
(23, 'organizationname', 'groupid', 'vtiger_organizationdetails'),
(34, 'taxlabel', 'taxid', 'vtiger_inventorytaxinfo');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_referencetype`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_referencetype`;
CREATE TABLE `vtiger_ws_entity_referencetype` (
  `fieldtypeid` int(19) NOT NULL,
  `type` varchar(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_referencetype`
--

INSERT IGNORE INTO `vtiger_ws_entity_referencetype` (`fieldtypeid`, `type`) VALUES
(5, 'Users'),
(6, 'Products'),
(7, 'Invoice'),
(7, 'PurchaseOrder'),
(7, 'Quotes'),
(7, 'SalesOrder'),
(9, 'Products'),
(10, 'Tax');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_seq`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_seq`;
CREATE TABLE `vtiger_ws_entity_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_seq`
--

INSERT IGNORE INTO `vtiger_ws_entity_seq` (`id`) VALUES
(48);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_entity_tables`
--

DROP TABLE IF EXISTS `vtiger_ws_entity_tables`;
CREATE TABLE `vtiger_ws_entity_tables` (
  `webservice_entity_id` int(11) NOT NULL,
  `table_name` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_entity_tables`
--

INSERT IGNORE INTO `vtiger_ws_entity_tables` (`webservice_entity_id`, `table_name`) VALUES
(20, 'vtiger_groups'),
(21, 'vtiger_currency_info'),
(22, 'vtiger_attachmentsfolder'),
(23, 'vtiger_organizationdetails'),
(33, 'vtiger_inventoryproductrel'),
(34, 'vtiger_inventorytaxinfo'),
(35, 'vtiger_producttaxrel');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_fieldinfo`
--

DROP TABLE IF EXISTS `vtiger_ws_fieldinfo`;
CREATE TABLE `vtiger_ws_fieldinfo` (
  `id` varchar(64) NOT NULL,
  `property_name` varchar(32) DEFAULT NULL,
  `property_value` varchar(64) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_fieldinfo`
--

INSERT IGNORE INTO `vtiger_ws_fieldinfo` (`id`, `property_name`, `property_value`) VALUES
('vtiger_organizationdetails.organization_id', 'upload.path', '1');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_fieldtype`
--

DROP TABLE IF EXISTS `vtiger_ws_fieldtype`;
CREATE TABLE `vtiger_ws_fieldtype` (
  `fieldtypeid` int(19) NOT NULL,
  `uitype` varchar(30) NOT NULL,
  `fieldtype` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_fieldtype`
--

INSERT IGNORE INTO `vtiger_ws_fieldtype` (`fieldtypeid`, `uitype`, `fieldtype`) VALUES
(1, '15', 'picklist'),
(2, '16', 'picklist'),
(3, '19', 'text'),
(4, '20', 'text'),
(5, '21', 'text'),
(6, '24', 'text'),
(7, '3', 'autogenerated'),
(8, '11', 'phone'),
(9, '33', 'multipicklist'),
(10, '17', 'url'),
(11, '85', 'skype'),
(12, '56', 'boolean'),
(13, '156', 'boolean'),
(14, '53', 'owner'),
(15, '61', 'file'),
(16, '28', 'file'),
(17, '13', 'email'),
(18, '71', 'currency'),
(19, '72', 'currency'),
(20, '50', 'reference'),
(21, '51', 'reference'),
(22, '57', 'reference'),
(23, '58', 'reference'),
(24, '73', 'reference'),
(25, '75', 'reference'),
(26, '76', 'reference'),
(27, '78', 'reference'),
(28, '80', 'reference'),
(29, '81', 'reference'),
(30, '101', 'reference'),
(31, '52', 'reference'),
(32, '357', 'reference'),
(33, '59', 'reference'),
(34, '66', 'reference'),
(35, '77', 'reference'),
(36, '68', 'reference'),
(37, '117', 'reference'),
(38, '26', 'reference'),
(39, '10', 'reference'),
(40, '98', 'reference'),
(41, '69', 'image'),
(42, '1001', 'ownergroup');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_operation`
--

DROP TABLE IF EXISTS `vtiger_ws_operation`;
CREATE TABLE `vtiger_ws_operation` (
  `operationid` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  `handler_path` varchar(255) NOT NULL,
  `handler_method` varchar(64) NOT NULL,
  `type` varchar(8) NOT NULL,
  `prelogin` int(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_operation`
--

INSERT IGNORE INTO `vtiger_ws_operation` (`operationid`, `name`, `handler_path`, `handler_method`, `type`, `prelogin`) VALUES
(1, 'login', 'include/Webservices/Login.php', 'vtws_login', 'POST', 1),
(2, 'retrieve', 'include/Webservices/Retrieve.php', 'vtws_retrieve', 'GET', 0),
(3, 'create', 'include/Webservices/Create.php', 'vtws_create', 'POST', 0),
(4, 'update', 'include/Webservices/Update.php', 'vtws_update', 'POST', 0),
(5, 'delete', 'include/Webservices/Delete.php', 'vtws_delete', 'POST', 0),
(6, 'sync', 'include/Webservices/GetUpdates.php', 'vtws_sync', 'GET', 0),
(7, 'query', 'include/Webservices/Query.php', 'vtws_query', 'GET', 0),
(8, 'logout', 'include/Webservices/Logout.php', 'vtws_logout', 'POST', 0),
(9, 'listtypes', 'include/Webservices/ModuleTypes.php', 'vtws_listtypes', 'GET', 0),
(10, 'getchallenge', 'include/Webservices/AuthToken.php', 'vtws_getchallenge', 'GET', 1),
(11, 'describe', 'include/Webservices/DescribeObject.php', 'vtws_describe', 'GET', 0),
(12, 'extendsession', 'include/Webservices/ExtendSession.php', 'vtws_extendSession', 'POST', 1),
(13, 'convertlead', 'include/Webservices/ConvertLead.php', 'vtws_convertlead', 'POST', 0),
(14, 'revise', 'include/Webservices/Revise.php', 'vtws_revise', 'POST', 0),
(15, 'changePassword', 'include/Webservices/ChangePassword.php', 'vtws_changePassword', 'POST', 0),
(16, 'deleteUser', 'include/Webservices/DeleteUser.php', 'vtws_deleteUser', 'POST', 0),
(17, 'mobile.fetchallalerts', 'modules/Mobile/api/wsapi.php', 'mobile_ws_fetchAllAlerts', 'POST', 0),
(18, 'mobile.alertdetailswithmessage', 'modules/Mobile/api/wsapi.php', 'mobile_ws_alertDetailsWithMessage', 'POST', 0),
(19, 'mobile.fetchmodulefilters', 'modules/Mobile/api/wsapi.php', 'mobile_ws_fetchModuleFilters', 'POST', 0),
(20, 'mobile.fetchrecord', 'modules/Mobile/api/wsapi.php', 'mobile_ws_fetchRecord', 'POST', 0),
(21, 'mobile.fetchrecordwithgrouping', 'modules/Mobile/api/wsapi.php', 'mobile_ws_fetchRecordWithGrouping', 'POST', 0),
(22, 'mobile.filterdetailswithcount', 'modules/Mobile/api/wsapi.php', 'mobile_ws_filterDetailsWithCount', 'POST', 0),
(23, 'mobile.listmodulerecords', 'modules/Mobile/api/wsapi.php', 'mobile_ws_listModuleRecords', 'POST', 0),
(24, 'mobile.saverecord', 'modules/Mobile/api/wsapi.php', 'mobile_ws_saveRecord', 'POST', 0),
(25, 'mobile.syncModuleRecords', 'modules/Mobile/api/wsapi.php', 'mobile_ws_syncModuleRecords', 'POST', 0),
(26, 'mobile.query', 'modules/Mobile/api/wsapi.php', 'mobile_ws_query', 'POST', 0),
(27, 'mobile.querywithgrouping', 'modules/Mobile/api/wsapi.php', 'mobile_ws_queryWithGrouping', 'POST', 0),
(28, 'wsapp_register', 'modules/WSAPP/api/ws/Register.php', 'wsapp_register', 'POST', 0),
(29, 'wsapp_deregister', 'modules/WSAPP/api/ws/DeRegister.php', 'wsapp_deregister', 'POST', 0),
(30, 'wsapp_get', 'modules/WSAPP/api/ws/Get.php', 'wsapp_get', 'POST', 0),
(31, 'wsapp_put', 'modules/WSAPP/api/ws/Put.php', 'wsapp_put', 'POST', 0),
(32, 'wsapp_map', 'modules/WSAPP/api/ws/Map.php', 'wsapp_map', 'POST', 0),
(33, 'retrieve_inventory', 'include/Webservices/LineItem/RetrieveInventory.php', 'vtws_retrieve_inventory', 'GET', 0),
(34, 'relatedtypes', 'include/Webservices/RelatedTypes.php', 'vtws_relatedtypes', 'GET', 0),
(35, 'retrieve_related', 'include/Webservices/RetrieveRelated.php', 'vtws_retrieve_related', 'GET', 0),
(36, 'query_related', 'include/Webservices/QueryRelated.php', 'vtws_query_related', 'GET', 0),
(37, 'add_related', 'include/Webservices/AddRelated.php', 'vtws_add_related', 'POST', 0),
(38, 'files_retrieve', 'include/Webservices/FileRetrieve.php', 'vtws_file_retrieve', 'GET', 0);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_operation_parameters`
--

DROP TABLE IF EXISTS `vtiger_ws_operation_parameters`;
CREATE TABLE `vtiger_ws_operation_parameters` (
  `operationid` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  `type` varchar(64) NOT NULL,
  `sequence` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_operation_parameters`
--

INSERT IGNORE INTO `vtiger_ws_operation_parameters` (`operationid`, `name`, `type`, `sequence`) VALUES
(1, 'accessKey', 'String', 2),
(1, 'username', 'String', 1),
(2, 'id', 'String', 1),
(3, 'element', 'encoded', 2),
(3, 'elementType', 'String', 1),
(4, 'element', 'encoded', 1),
(5, 'id', 'String', 1),
(6, 'elementType', 'String', 2),
(6, 'modifiedTime', 'DateTime', 1),
(7, 'query', 'String', 1),
(8, 'sessionName', 'String', 1),
(9, 'fieldTypeList', 'encoded', 1),
(10, 'username', 'String', 1),
(11, 'elementType', 'String', 1),
(13, 'element', 'encoded', 1),
(14, 'element', 'Encoded', 1),
(15, 'confirmPassword', 'String', 4),
(15, 'id', 'String', 1),
(15, 'newPassword', 'String', 3),
(15, 'oldPassword', 'String', 2),
(16, 'id', 'String', 1),
(16, 'newOwnerId', 'String', 2),
(18, 'alertid', 'string', 1),
(19, 'module', 'string', 1),
(20, 'record', 'string', 1),
(21, 'record', 'string', 1),
(22, 'filterid', 'string', 1),
(23, 'elements', 'encoded', 1),
(24, 'module', 'string', 1),
(24, 'record', 'string', 2),
(24, 'values', 'encoded', 3),
(25, 'module', 'string', 1),
(25, 'page', 'string', 3),
(25, 'syncToken', 'string', 2),
(26, 'module', 'string', 1),
(26, 'page', 'string', 3),
(26, 'query', 'string', 2),
(27, 'module', 'string', 1),
(27, 'page', 'string', 3),
(27, 'query', 'string', 2),
(28, 'synctype', 'string', 2),
(28, 'type', 'string', 1),
(29, 'key', 'string', 2),
(29, 'type', 'string', 1),
(30, 'key', 'string', 1),
(30, 'module', 'string', 2),
(30, 'token', 'string', 3),
(31, 'element', 'encoded', 2),
(31, 'key', 'string', 1),
(32, 'element', 'encoded', 2),
(32, 'key', 'string', 1),
(33, 'id', 'String', 1),
(34, 'elementType', 'string', 1),
(35, 'id', 'string', 1),
(35, 'relatedLabel', 'string', 3),
(35, 'relatedType', 'string', 2),
(36, 'id', 'string', 2),
(36, 'query', 'string', 1),
(36, 'relatedLabel', 'string', 3),
(37, 'relatedRecordId', 'string', 2),
(37, 'relationIdLabel', 'string', 3),
(37, 'sourceRecordId', 'string', 1),
(38, 'id', 'string', 1);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_operation_seq`
--

DROP TABLE IF EXISTS `vtiger_ws_operation_seq`;
CREATE TABLE `vtiger_ws_operation_seq` (
  `id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `vtiger_ws_operation_seq`
--

INSERT IGNORE INTO `vtiger_ws_operation_seq` (`id`) VALUES
(38);

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_referencetype`
--

DROP TABLE IF EXISTS `vtiger_ws_referencetype`;
CREATE TABLE `vtiger_ws_referencetype` (
  `fieldtypeid` int(19) NOT NULL,
  `type` varchar(25) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `vtiger_ws_referencetype`
--

INSERT IGNORE INTO `vtiger_ws_referencetype` (`fieldtypeid`, `type`) VALUES
(20, 'Accounts'),
(21, 'Accounts'),
(22, 'Contacts'),
(23, 'Campaigns'),
(24, 'Accounts'),
(25, 'Vendors'),
(26, 'Potentials'),
(27, 'Quotes'),
(28, 'SalesOrder'),
(29, 'Vendors'),
(30, 'Users'),
(31, 'Users'),
(32, 'Accounts'),
(32, 'Contacts'),
(32, 'Leads'),
(32, 'Users'),
(32, 'Vendors'),
(33, 'Products'),
(34, 'Accounts'),
(34, 'Campaigns'),
(34, 'HelpDesk'),
(34, 'Invoice'),
(34, 'Leads'),
(34, 'Potentials'),
(34, 'PurchaseOrder'),
(34, 'Quotes'),
(34, 'SalesOrder'),
(35, 'Users'),
(36, 'Accounts'),
(36, 'Contacts'),
(37, 'Currency'),
(38, 'DocumentFolders');

-- --------------------------------------------------------

--
-- Table structure for table `vtiger_ws_userauthtoken`
--

DROP TABLE IF EXISTS `vtiger_ws_userauthtoken`;
CREATE TABLE `vtiger_ws_userauthtoken` (
  `userid` int(19) NOT NULL,
  `token` varchar(36) NOT NULL,
  `expiretime` int(19) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `com_vtiger_workflows`
--
ALTER TABLE `com_vtiger_workflows`
  ADD PRIMARY KEY (`workflow_id`),
  ADD UNIQUE KEY `com_vtiger_workflows_idx` (`workflow_id`);

--
-- Indexes for table `com_vtiger_workflowtasks`
--
ALTER TABLE `com_vtiger_workflowtasks`
  ADD PRIMARY KEY (`task_id`),
  ADD UNIQUE KEY `com_vtiger_workflowtasks_idx` (`task_id`);

--
-- Indexes for table `com_vtiger_workflowtasks_entitymethod`
--
ALTER TABLE `com_vtiger_workflowtasks_entitymethod`
  ADD PRIMARY KEY (`workflowtasks_entitymethod_id`),
  ADD UNIQUE KEY `com_vtiger_workflowtasks_entitymethod_idx` (`workflowtasks_entitymethod_id`);

--
-- Indexes for table `com_vtiger_workflowtemplates`
--
ALTER TABLE `com_vtiger_workflowtemplates`
  ADD PRIMARY KEY (`template_id`);

--
-- Indexes for table `com_vtiger_workflow_activatedonce`
--
ALTER TABLE `com_vtiger_workflow_activatedonce`
  ADD PRIMARY KEY (`workflow_id`,`entity_id`);

--
-- Indexes for table `gooyaacc_cloud_files`
--
ALTER TABLE `gooyaacc_cloud_files`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_cloud_file_attachment` (`current_attachment_id`),
  ADD KEY `idx_cloud_file_owner` (`owner_id`,`deleted`),
  ADD KEY `idx_cloud_file_folder` (`folder_id`,`deleted`),
  ADD KEY `idx_cloud_file_starred` (`owner_id`,`is_starred`,`deleted`),
  ADD KEY `idx_cloud_file_sha` (`sha256`),
  ADD KEY `idx_cloud_file_purge` (`purge_status`,`deleted_at`);

--
-- Indexes for table `gooyaacc_cloud_folders`
--
ALTER TABLE `gooyaacc_cloud_folders`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cloud_folder_owner` (`owner_id`,`deleted`),
  ADD KEY `idx_cloud_folder_parent` (`parent_id`,`deleted`),
  ADD KEY `idx_cloud_folder_root` (`owner_id`,`is_root`);

--
-- Indexes for table `gooyaacc_cloud_links`
--
ALTER TABLE `gooyaacc_cloud_links`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_cloud_link_token` (`token`),
  ADD KEY `idx_cloud_link_item` (`item_type`,`item_id`),
  ADD KEY `idx_cloud_link_live` (`revoked`,`expires_at`);

--
-- Indexes for table `gooyaacc_cloud_log`
--
ALTER TABLE `gooyaacc_cloud_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_cloud_log_request` (`request_id`),
  ADD KEY `idx_cloud_log_user` (`user_id`,`created_at`),
  ADD KEY `idx_cloud_log_action` (`action`,`created_at`),
  ADD KEY `idx_cloud_log_item` (`item_type`,`item_id`,`created_at`),
  ADD KEY `idx_cloud_log_attachment` (`attachment_id`),
  ADD KEY `idx_cloud_log_created` (`created_at`);

--
-- Indexes for table `gooyaacc_cloud_quota`
--
ALTER TABLE `gooyaacc_cloud_quota`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_cloud_quota_usage` (`used_bytes`,`reserved_bytes`);

--
-- Indexes for table `gooyaacc_cloud_settings`
--
ALTER TABLE `gooyaacc_cloud_settings`
  ADD PRIMARY KEY (`skey`);

--
-- Indexes for table `gooyaacc_cloud_shares`
--
ALTER TABLE `gooyaacc_cloud_shares`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_cloud_share` (`item_type`,`item_id`,`target_type`,`target_id`),
  ADD KEY `idx_cloud_share_target` (`target_type`,`target_id`,`revoked`,`expires_at`),
  ADD KEY `idx_cloud_share_item` (`item_type`,`item_id`,`revoked`),
  ADD KEY `idx_cloud_share_owner` (`owner_id`);

--
-- Indexes for table `gooyaacc_cloud_versions`
--
ALTER TABLE `gooyaacc_cloud_versions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_cloud_file_version` (`file_id`,`version_no`),
  ADD UNIQUE KEY `uq_cloud_version_attachment` (`attachment_id`),
  ADD KEY `idx_cloud_version_file` (`file_id`,`purge_status`),
  ADD KEY `idx_cloud_version_purge` (`purge_status`,`created_at`);

--
-- Indexes for table `gooyaacc_competitors`
--
ALTER TABLE `gooyaacc_competitors`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_owner` (`assigned_user_id`);

--
-- Indexes for table `gooyaacc_forecast_preferences`
--
ALTER TABLE `gooyaacc_forecast_preferences`
  ADD PRIMARY KEY (`user_id`);

--
-- Indexes for table `gooyaacc_kpi_attendance_statuses`
--
ALTER TABLE `gooyaacc_kpi_attendance_statuses`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gooyaacc_kpi_audit_logs`
--
ALTER TABLE `gooyaacc_kpi_audit_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_kpi_audit_user` (`user_id`);

--
-- Indexes for table `gooyaacc_kpi_avatars`
--
ALTER TABLE `gooyaacc_kpi_avatars`
  ADD PRIMARY KEY (`user_id`);

--
-- Indexes for table `gooyaacc_kpi_ceo_priorities`
--
ALTER TABLE `gooyaacc_kpi_ceo_priorities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_def` (`kpi_definition_id`);

--
-- Indexes for table `gooyaacc_kpi_definitions`
--
ALTER TABLE `gooyaacc_kpi_definitions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_active` (`is_active`);

--
-- Indexes for table `gooyaacc_kpi_evaluations_main`
--
ALTER TABLE `gooyaacc_kpi_evaluations_main`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_evaluator` (`evaluator_id`),
  ADD KEY `idx_evaluated` (`evaluated_entity_id`,`entity_type`),
  ADD KEY `idx_date` (`evaluation_occurrence_date`);

--
-- Indexes for table `gooyaacc_kpi_evaluation_scores`
--
ALTER TABLE `gooyaacc_kpi_evaluation_scores`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_eval` (`evaluation_id`),
  ADD KEY `idx_def` (`definition_id`);

--
-- Indexes for table `gooyaacc_kpi_evaluation_statuses`
--
ALTER TABLE `gooyaacc_kpi_evaluation_statuses`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gooyaacc_kpi_evaluator_weights`
--
ALTER TABLE `gooyaacc_kpi_evaluator_weights`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_trole` (`target_role_id`),
  ADD KEY `idx_tuser` (`target_user_id`),
  ADD KEY `idx_tteam` (`target_team_id`),
  ADD KEY `fk_kpi_weight_evaluator_user` (`evaluator_user_id`);

--
-- Indexes for table `gooyaacc_kpi_factor_weights`
--
ALTER TABLE `gooyaacc_kpi_factor_weights`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_key` (`factor_key`);

--
-- Indexes for table `gooyaacc_kpi_license`
--
ALTER TABLE `gooyaacc_kpi_license`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_key` (`license_key`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `gooyaacc_kpi_license_logs`
--
ALTER TABLE `gooyaacc_kpi_license_logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gooyaacc_kpi_permissions`
--
ALTER TABLE `gooyaacc_kpi_permissions`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `fk_kpi_permission_updater` (`updated_by`);

--
-- Indexes for table `gooyaacc_kpi_roles`
--
ALTER TABLE `gooyaacc_kpi_roles`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gooyaacc_kpi_saved_filters`
--
ALTER TABLE `gooyaacc_kpi_saved_filters`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_kpi_filter_supervisor` (`supervisor_id`);

--
-- Indexes for table `gooyaacc_kpi_settings`
--
ALTER TABLE `gooyaacc_kpi_settings`
  ADD PRIMARY KEY (`setting_key`);

--
-- Indexes for table `gooyaacc_kpi_supervisor_notes`
--
ALTER TABLE `gooyaacc_kpi_supervisor_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_kpi_note_supervisor` (`supervisor_id`),
  ADD KEY `fk_kpi_note_user` (`user_id`);

--
-- Indexes for table `gooyaacc_kpi_target_evaluators`
--
ALTER TABLE `gooyaacc_kpi_target_evaluators`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_def` (`kpi_definition_id`);

--
-- Indexes for table `gooyaacc_kpi_teams`
--
ALTER TABLE `gooyaacc_kpi_teams`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sarv_team_active` (`deleted`,`name`),
  ADD KEY `fk_kpi_team_supervisor` (`supervisor_id`);

--
-- Indexes for table `gooyaacc_kpi_team_members`
--
ALTER TABLE `gooyaacc_kpi_team_members`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_team_user` (`team_id`,`user_id`),
  ADD KEY `idx_user` (`user_id`);

--
-- Indexes for table `gooyaacc_kpi_user_profile`
--
ALTER TABLE `gooyaacc_kpi_user_profile`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_role` (`kpi_role_id`),
  ADD KEY `idx_team` (`team_id`),
  ADD KEY `idx_sup` (`supervisor_id`);

--
-- Indexes for table `gooyaacc_notes`
--
ALTER TABLE `gooyaacc_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_owner` (`assigned_user_id`);

--
-- Indexes for table `gooyaacc_note_attachments`
--
ALTER TABLE `gooyaacc_note_attachments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_note` (`note_id`),
  ADD KEY `idx_gooya_note_attachment` (`attachment_id`);

--
-- Indexes for table `gooyaacc_pay`
--
ALTER TABLE `gooyaacc_pay`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_acc` (`accountid`),
  ADD KEY `idx_no` (`pay_no`);

--
-- Indexes for table `gooyaacc_payments`
--
ALTER TABLE `gooyaacc_payments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_owner` (`assigned_user_id`);

--
-- Indexes for table `gooyaacc_pay_alloc`
--
ALTER TABLE `gooyaacc_pay_alloc`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_pay_inv` (`pay_id`,`invoiceid`),
  ADD KEY `idx_inv` (`invoiceid`);

--
-- Indexes for table `gooyaacc_pdf_templates`
--
ALTER TABLE `gooyaacc_pdf_templates`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_owner` (`assigned_user_id`);

--
-- Indexes for table `gooya_account_email`
--
ALTER TABLE `gooya_account_email`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gooya_account_email_account` (`accountid`);

--
-- Indexes for table `gooya_account_phone`
--
ALTER TABLE `gooya_account_phone`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gooya_account_phone_account` (`accountid`);

--
-- Indexes for table `gooya_account_timeline`
--
ALTER TABLE `gooya_account_timeline`
  ADD PRIMARY KEY (`timeline_id`),
  ADD UNIQUE KEY `uq_gooya_timeline_dedupe` (`dedupe_key`),
  ADD KEY `idx_gooya_timeline_source` (`source_module`,`source_crmid`),
  ADD KEY `idx_gooya_timeline_account` (`accountid`,`relation_state`,`source_deleted`,`occurred_at`,`timeline_id`);

--
-- Indexes for table `gooya_attachment_storage`
--
ALTER TABLE `gooya_attachment_storage`
  ADD PRIMARY KEY (`attachment_id`),
  ADD KEY `idx_gooya_attachment_source` (`source_module`,`source_record_id`),
  ADD KEY `idx_gooya_attachment_status` (`storage_status`);

--
-- Indexes for table `gooya_contact_account_rel`
--
ALTER TABLE `gooya_contact_account_rel`
  ADD PRIMARY KEY (`relation_id`),
  ADD UNIQUE KEY `uq_gooya_contact_account` (`contactid`,`accountid`),
  ADD UNIQUE KEY `uq_gooya_contact_primary` (`primary_contactid`),
  ADD KEY `idx_gooya_account_contact` (`accountid`,`contactid`),
  ADD KEY `idx_gooya_contact_status` (`contactid`,`relationship_status`);

--
-- Indexes for table `gooya_contact_email`
--
ALTER TABLE `gooya_contact_email`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gouya_contact_email_contact` (`contactid`),
  ADD KEY `idx_gouya_contact_email_address` (`email_address`);

--
-- Indexes for table `gooya_contact_phone`
--
ALTER TABLE `gooya_contact_phone`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gouya_contact_phone_contact` (`contactid`),
  ADD KEY `idx_gouya_contact_phone_number` (`phone_number`);

--
-- Indexes for table `gooya_lead_email`
--
ALTER TABLE `gooya_lead_email`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gooya_lead_email_lead` (`leadid`),
  ADD KEY `idx_gooya_lead_email_address` (`email_address`);

--
-- Indexes for table `gooya_lead_phone`
--
ALTER TABLE `gooya_lead_phone`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_gooya_lead_phone_lead` (`leadid`),
  ADD KEY `idx_gooya_lead_phone_number` (`phone_number`);

--
-- Indexes for table `gooya_storage_settings`
--
ALTER TABLE `gooya_storage_settings`
  ADD PRIMARY KEY (`setting_id`);

--
-- Indexes for table `gooya_upload_session`
--
ALTER TABLE `gooya_upload_session`
  ADD PRIMARY KEY (`upload_id`),
  ADD KEY `idx_gooya_upload_owner` (`user_id`,`upload_status`),
  ADD KEY `idx_gooya_upload_expiry` (`expires_at`);

--
-- Indexes for table `gouya_role_favorites`
--
ALTER TABLE `gouya_role_favorites`
  ADD PRIMARY KEY (`owner_user_id`,`target_role_id`),
  ADD KEY `idx_gouya_role_favorite_target` (`target_role_id`);

--
-- Indexes for table `gouya_topbar_favorites`
--
ALTER TABLE `gouya_topbar_favorites`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_gouya_topbar_favorite` (`user_id`,`route_key`),
  ADD KEY `idx_gouya_topbar_favorite_user` (`user_id`,`updated_at`);

--
-- Indexes for table `gouya_topbar_state`
--
ALTER TABLE `gouya_topbar_state`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_gouya_topbar_updated` (`updated_at`);

--
-- Indexes for table `gouya_user_favorites`
--
ALTER TABLE `gouya_user_favorites`
  ADD PRIMARY KEY (`owner_user_id`,`target_user_id`),
  ADD KEY `idx_gouya_user_favorite_target` (`target_user_id`);

--
-- Indexes for table `goya_dashboard_widgets`
--
ALTER TABLE `goya_dashboard_widgets`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_user_widget` (`userid`,`widget_key`);

--
-- Indexes for table `goya_onboarding`
--
ALTER TABLE `goya_onboarding`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_user_step` (`userid`,`step_key`);

--
-- Indexes for table `sarv_communications_migration_manifest`
--
ALTER TABLE `sarv_communications_migration_manifest`
  ADD PRIMARY KEY (`source_table`,`source_id`),
  ADD UNIQUE KEY `uq_comm_manifest_record` (`communicationsid`);

--
-- Indexes for table `sarv_field_acl_audit`
--
ALTER TABLE `sarv_field_acl_audit`
  ADD PRIMARY KEY (`audit_id`),
  ADD KEY `idx_sarv_field_acl_audit_rule` (`rule_id`,`created_at`),
  ADD KEY `idx_sarv_field_acl_audit_actor` (`actor_id`,`created_at`);

--
-- Indexes for table `sarv_field_acl_rules`
--
ALTER TABLE `sarv_field_acl_rules`
  ADD PRIMARY KEY (`rule_id`),
  ADD UNIQUE KEY `uq_sarv_field_acl_role_field` (`role_id`,`field_id`),
  ADD KEY `idx_sarv_field_acl_module` (`tab_id`,`field_id`),
  ADD KEY `idx_sarv_field_acl_updated` (`updated_at`);

--
-- Indexes for table `sarv_geographic_regions`
--
ALTER TABLE `sarv_geographic_regions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_sarv_geo_code` (`region_code`),
  ADD KEY `idx_sarv_geo_parent` (`parent_id`,`is_active`,`sort_order`);

--
-- Indexes for table `sarv_module_manager_config`
--
ALTER TABLE `sarv_module_manager_config`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_sarv_module_config_user` (`updated_by`);

--
-- Indexes for table `sarv_module_visibility`
--
ALTER TABLE `sarv_module_visibility`
  ADD PRIMARY KEY (`module_name`),
  ADD UNIQUE KEY `uq_sarv_module_visibility_tab` (`tabid`),
  ADD KEY `idx_sarv_module_visibility_state` (`is_visible`,`position`),
  ADD KEY `fk_sarv_module_visibility_user` (`updated_by`);

--
-- Indexes for table `sarv_module_visibility_audit`
--
ALTER TABLE `sarv_module_visibility_audit`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sarv_module_audit_time` (`changed_at`),
  ADD KEY `fk_sarv_module_audit_user` (`changed_by`);

--
-- Indexes for table `sarv_password_policy`
--
ALTER TABLE `sarv_password_policy`
  ADD PRIMARY KEY (`policy_id`);

--
-- Indexes for table `sarv_password_policy_audit`
--
ALTER TABLE `sarv_password_policy_audit`
  ADD PRIMARY KEY (`audit_id`),
  ADD KEY `idx_sarv_password_audit_actor` (`actor_id`,`created_at`);

--
-- Indexes for table `sarv_payment_allocation_history`
--
ALTER TABLE `sarv_payment_allocation_history`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `idx_sarv_alloc_history_payment` (`paymentid`,`changedat`),
  ADD KEY `idx_sarv_alloc_history_invoice` (`invoiceid`,`changedat`);

--
-- Indexes for table `sarv_payment_allocation_migration_manifest`
--
ALTER TABLE `sarv_payment_allocation_migration_manifest`
  ADD PRIMARY KEY (`legacy_table`,`legacy_id`),
  ADD KEY `idx_sarv_alloc_manifest_payment` (`paymentid`),
  ADD KEY `fk_sarv_alloc_manifest_invoice` (`invoiceid`);

--
-- Indexes for table `sarv_payment_invoice_rel`
--
ALTER TABLE `sarv_payment_invoice_rel`
  ADD PRIMARY KEY (`paymentid`,`invoiceid`),
  ADD UNIQUE KEY `uq_sarv_payment_legacy_alloc` (`legacy_alloc_id`),
  ADD KEY `idx_sarv_payment_invoice` (`invoiceid`);

--
-- Indexes for table `sarv_payment_migration_manifest`
--
ALTER TABLE `sarv_payment_migration_manifest`
  ADD PRIMARY KEY (`legacy_table`,`legacy_id`),
  ADD UNIQUE KEY `uq_sarv_manifest_payment` (`paymentid`);

--
-- Indexes for table `sarv_phase02_sample_manifest`
--
ALTER TABLE `sarv_phase02_sample_manifest`
  ADD PRIMARY KEY (`sample_key`),
  ADD UNIQUE KEY `uq_sarv_phase02_record` (`module`,`crmid`);

--
-- Indexes for table `sarv_phase03_sample_manifest`
--
ALTER TABLE `sarv_phase03_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase03_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase04_legacy_survey_audit`
--
ALTER TABLE `sarv_phase04_legacy_survey_audit`
  ADD PRIMARY KEY (`legacy_id`);

--
-- Indexes for table `sarv_phase04_sample_manifest`
--
ALTER TABLE `sarv_phase04_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase04_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase05_sample_manifest`
--
ALTER TABLE `sarv_phase05_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase05_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase06_legacy_deposit_audit`
--
ALTER TABLE `sarv_phase06_legacy_deposit_audit`
  ADD PRIMARY KEY (`legacy_id`);

--
-- Indexes for table `sarv_phase06_sample_manifest`
--
ALTER TABLE `sarv_phase06_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase06_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase07_sample_manifest`
--
ALTER TABLE `sarv_phase07_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase07_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase08_legacy_timesheet_audit`
--
ALTER TABLE `sarv_phase08_legacy_timesheet_audit`
  ADD PRIMARY KEY (`legacy_id`);

--
-- Indexes for table `sarv_phase08_sample_manifest`
--
ALTER TABLE `sarv_phase08_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase08_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase09_sample_manifest`
--
ALTER TABLE `sarv_phase09_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase09_crmid` (`crmid`);

--
-- Indexes for table `sarv_phase10_sample_manifest`
--
ALTER TABLE `sarv_phase10_sample_manifest`
  ADD PRIMARY KEY (`sample_key`,`module`),
  ADD UNIQUE KEY `uq_phase10_crmid` (`crmid`);

--
-- Indexes for table `sarv_purchaseorder_stock_ledger`
--
ALTER TABLE `sarv_purchaseorder_stock_ledger`
  ADD PRIMARY KEY (`purchaseorderid`,`productid`),
  ADD KEY `idx_sarv_po_stock_product` (`productid`);

--
-- Indexes for table `sarv_role_audit`
--
ALTER TABLE `sarv_role_audit`
  ADD PRIMARY KEY (`audit_id`),
  ADD KEY `idx_sarv_role_audit_role` (`role_id`,`created_at`);

--
-- Indexes for table `sarv_role_meta`
--
ALTER TABLE `sarv_role_meta`
  ADD PRIMARY KEY (`role_id`),
  ADD KEY `idx_sarv_role_meta_updated` (`updated_at`);

--
-- Indexes for table `sarv_role_permission_override`
--
ALTER TABLE `sarv_role_permission_override`
  ADD PRIMARY KEY (`role_id`,`tab_id`,`operation_id`),
  ADD KEY `idx_sarv_role_permission_state` (`permission_state`);

--
-- Indexes for table `sarv_role_virtual_module_permission`
--
ALTER TABLE `sarv_role_virtual_module_permission`
  ADD PRIMARY KEY (`role_id`,`module_key`),
  ADD KEY `idx_sarv_virtual_module` (`module_key`,`permission_state`);

--
-- Indexes for table `sarv_security_group_audit`
--
ALTER TABLE `sarv_security_group_audit`
  ADD PRIMARY KEY (`audit_id`),
  ADD KEY `idx_sarv_security_group_audit` (`group_id`,`created_at`);

--
-- Indexes for table `sarv_security_group_meta`
--
ALTER TABLE `sarv_security_group_meta`
  ADD PRIMARY KEY (`group_id`),
  ADD KEY `idx_sarv_security_group_owner` (`assigned_user_id`),
  ADD KEY `idx_sarv_security_group_updated` (`updated_at`);

--
-- Indexes for table `sarv_stock_movement_ledger`
--
ALTER TABLE `sarv_stock_movement_ledger`
  ADD PRIMARY KEY (`movement_id`),
  ADD UNIQUE KEY `uq_sarv_stock_source_movement` (`source_module`,`source_record_id`,`movement_code`),
  ADD KEY `idx_sarv_stock_product_time` (`productid`,`createdtime`),
  ADD KEY `idx_sarv_stock_source` (`source_record_id`);

--
-- Indexes for table `sarv_subpanel_visibility`
--
ALTER TABLE `sarv_subpanel_visibility`
  ADD PRIMARY KEY (`panel_key`),
  ADD KEY `idx_sarv_subpanel_relation` (`relation_id`),
  ADD KEY `idx_sarv_subpanel_state` (`is_visible`,`position`);

--
-- Indexes for table `sarv_subpanel_visibility_audit`
--
ALTER TABLE `sarv_subpanel_visibility_audit`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sarv_subpanel_audit_time` (`changed_at`),
  ADD KEY `idx_sarv_subpanel_audit_user` (`changed_by`);

--
-- Indexes for table `sarv_team_audit`
--
ALTER TABLE `sarv_team_audit`
  ADD PRIMARY KEY (`audit_id`),
  ADD KEY `idx_sarv_team_audit` (`team_id`,`created_at`),
  ADD KEY `idx_sarv_team_audit_actor` (`actor_id`,`created_at`);

--
-- Indexes for table `sarv_user_emails`
--
ALTER TABLE `sarv_user_emails`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_sarv_user_email` (`user_id`,`email_address`),
  ADD KEY `idx_sarv_user_emails_user` (`user_id`,`position`);

--
-- Indexes for table `sarv_user_module_layout`
--
ALTER TABLE `sarv_user_module_layout`
  ADD PRIMARY KEY (`user_id`,`layout_key`),
  ADD KEY `idx_sarv_layout_visible` (`user_id`,`is_visible`,`position`),
  ADD KEY `idx_sarv_layout_tab` (`tabid`),
  ADD KEY `fk_sarv_layout_updated_by` (`updated_by`);

--
-- Indexes for table `sarv_user_password_state`
--
ALTER TABLE `sarv_user_password_state`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_sarv_password_expiry` (`must_change`,`password_changed_at`);

--
-- Indexes for table `sarv_user_phones`
--
ALTER TABLE `sarv_user_phones`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sarv_user_phones_user` (`user_id`,`position`);

--
-- Indexes for table `sarv_user_profile`
--
ALTER TABLE `sarv_user_profile`
  ADD PRIMARY KEY (`user_id`),
  ADD KEY `idx_sarv_user_profile_updated_by` (`updated_by`),
  ADD KEY `idx_sarv_user_profile_geo_region` (`geo_region_id`);

--
-- Indexes for table `sarv_user_profile_audit`
--
ALTER TABLE `sarv_user_profile_audit`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sarv_user_audit` (`user_id`,`changed_at`),
  ADD KEY `idx_sarv_user_audit_by` (`changed_by`);

--
-- Indexes for table `vtiger_access_level`
--
ALTER TABLE `vtiger_access_level`
  ADD PRIMARY KEY (`access_levelid`);

--
-- Indexes for table `vtiger_account`
--
ALTER TABLE `vtiger_account`
  ADD PRIMARY KEY (`accountid`),
  ADD KEY `account_account_type_idx` (`account_type`),
  ADD KEY `email_idx` (`email1`,`email2`),
  ADD KEY `idx_account_parentid` (`parentid`);

--
-- Indexes for table `vtiger_accountbillads`
--
ALTER TABLE `vtiger_accountbillads`
  ADD PRIMARY KEY (`accountaddressid`);

--
-- Indexes for table `vtiger_accountrating`
--
ALTER TABLE `vtiger_accountrating`
  ADD PRIMARY KEY (`accountratingid`),
  ADD UNIQUE KEY `accountrating_rating_idx` (`rating`);

--
-- Indexes for table `vtiger_accountscf`
--
ALTER TABLE `vtiger_accountscf`
  ADD PRIMARY KEY (`accountid`);

--
-- Indexes for table `vtiger_accountshipads`
--
ALTER TABLE `vtiger_accountshipads`
  ADD PRIMARY KEY (`accountaddressid`);

--
-- Indexes for table `vtiger_accounttype`
--
ALTER TABLE `vtiger_accounttype`
  ADD PRIMARY KEY (`accounttypeid`),
  ADD UNIQUE KEY `accounttype_accounttype_idx` (`accounttype`);

--
-- Indexes for table `vtiger_account_status`
--
ALTER TABLE `vtiger_account_status`
  ADD PRIMARY KEY (`account_statusid`);

--
-- Indexes for table `vtiger_account_type`
--
ALTER TABLE `vtiger_account_type`
  ADD PRIMARY KEY (`account_typeid`);

--
-- Indexes for table `vtiger_actionmapping`
--
ALTER TABLE `vtiger_actionmapping`
  ADD PRIMARY KEY (`actionid`,`actionname`);

--
-- Indexes for table `vtiger_activity`
--
ALTER TABLE `vtiger_activity`
  ADD PRIMARY KEY (`activityid`),
  ADD KEY `activity_activityid_subject_idx` (`activityid`,`subject`),
  ADD KEY `activity_activitytype_date_start_idx` (`activitytype`,`date_start`),
  ADD KEY `activity_date_start_due_date_idx` (`date_start`,`due_date`),
  ADD KEY `activity_date_start_time_start_idx` (`date_start`,`time_start`),
  ADD KEY `activity_eventstatus_idx` (`eventstatus`),
  ADD KEY `activity_status_idx` (`status`);

--
-- Indexes for table `vtiger_activitycf`
--
ALTER TABLE `vtiger_activitycf`
  ADD PRIMARY KEY (`activityid`);

--
-- Indexes for table `vtiger_activityproductrel`
--
ALTER TABLE `vtiger_activityproductrel`
  ADD PRIMARY KEY (`activityid`,`productid`),
  ADD KEY `activityproductrel_activityid_idx` (`activityid`),
  ADD KEY `activityproductrel_productid_idx` (`productid`);

--
-- Indexes for table `vtiger_activitytype`
--
ALTER TABLE `vtiger_activitytype`
  ADD PRIMARY KEY (`activitytypeid`),
  ADD UNIQUE KEY `activitytype_activitytype_idx` (`activitytype`);

--
-- Indexes for table `vtiger_activity_reminder`
--
ALTER TABLE `vtiger_activity_reminder`
  ADD PRIMARY KEY (`activity_id`,`recurringid`);

--
-- Indexes for table `vtiger_activity_reminder_popup`
--
ALTER TABLE `vtiger_activity_reminder_popup`
  ADD PRIMARY KEY (`reminderid`);

--
-- Indexes for table `vtiger_activity_view`
--
ALTER TABLE `vtiger_activity_view`
  ADD PRIMARY KEY (`activity_viewid`);

--
-- Indexes for table `vtiger_announcement`
--
ALTER TABLE `vtiger_announcement`
  ADD PRIMARY KEY (`creatorid`),
  ADD KEY `announcement_creatorid_idx` (`creatorid`);

--
-- Indexes for table `vtiger_app2tab`
--
ALTER TABLE `vtiger_app2tab`
  ADD KEY `vtiger_app2tab_fk_tab` (`tabid`);

--
-- Indexes for table `vtiger_assets`
--
ALTER TABLE `vtiger_assets`
  ADD PRIMARY KEY (`assetsid`),
  ADD KEY `idx_assets_account` (`account`),
  ADD KEY `idx_assets_contact` (`contact`),
  ADD KEY `idx_assets_invoice` (`invoiceid`);

--
-- Indexes for table `vtiger_assetscf`
--
ALTER TABLE `vtiger_assetscf`
  ADD PRIMARY KEY (`assetsid`);

--
-- Indexes for table `vtiger_assetstatus`
--
ALTER TABLE `vtiger_assetstatus`
  ADD PRIMARY KEY (`assetstatusid`);

--
-- Indexes for table `vtiger_asteriskincomingevents`
--
ALTER TABLE `vtiger_asteriskincomingevents`
  ADD PRIMARY KEY (`uid`);

--
-- Indexes for table `vtiger_attachments`
--
ALTER TABLE `vtiger_attachments`
  ADD PRIMARY KEY (`attachmentsid`),
  ADD KEY `attachments_attachmentsid_idx` (`attachmentsid`);

--
-- Indexes for table `vtiger_attachmentsfolder`
--
ALTER TABLE `vtiger_attachmentsfolder`
  ADD PRIMARY KEY (`folderid`);

--
-- Indexes for table `vtiger_audit_trial`
--
ALTER TABLE `vtiger_audit_trial`
  ADD PRIMARY KEY (`auditid`);

--
-- Indexes for table `vtiger_blocks`
--
ALTER TABLE `vtiger_blocks`
  ADD PRIMARY KEY (`blockid`),
  ADD KEY `block_tabid_idx` (`tabid`);

--
-- Indexes for table `vtiger_calendarsharedtype`
--
ALTER TABLE `vtiger_calendarsharedtype`
  ADD PRIMARY KEY (`calendarsharedtypeid`);

--
-- Indexes for table `vtiger_calendar_default_activitytypes`
--
ALTER TABLE `vtiger_calendar_default_activitytypes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_calendar_user_activitytypes`
--
ALTER TABLE `vtiger_calendar_user_activitytypes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_callduration`
--
ALTER TABLE `vtiger_callduration`
  ADD PRIMARY KEY (`calldurationid`);

--
-- Indexes for table `vtiger_call_direction`
--
ALTER TABLE `vtiger_call_direction`
  ADD PRIMARY KEY (`call_directionid`);

--
-- Indexes for table `vtiger_campaign`
--
ALTER TABLE `vtiger_campaign`
  ADD PRIMARY KEY (`campaignid`),
  ADD KEY `campaign_campaignstatus_idx` (`campaignstatus`),
  ADD KEY `campaign_campaignname_idx` (`campaignname`),
  ADD KEY `campaign_campaignid_idx` (`campaignid`);

--
-- Indexes for table `vtiger_campaignaccountrel`
--
ALTER TABLE `vtiger_campaignaccountrel`
  ADD UNIQUE KEY `uq_campaign_account` (`campaignid`,`accountid`),
  ADD KEY `idx_campaignaccountrel_account` (`accountid`);

--
-- Indexes for table `vtiger_campaigncontrel`
--
ALTER TABLE `vtiger_campaigncontrel`
  ADD PRIMARY KEY (`campaignid`,`contactid`,`campaignrelstatusid`),
  ADD KEY `campaigncontrel_contractid_idx` (`contactid`);

--
-- Indexes for table `vtiger_campaignleadrel`
--
ALTER TABLE `vtiger_campaignleadrel`
  ADD PRIMARY KEY (`campaignid`,`leadid`,`campaignrelstatusid`),
  ADD KEY `campaignleadrel_leadid_campaignid_idx` (`leadid`,`campaignid`);

--
-- Indexes for table `vtiger_campaignscf`
--
ALTER TABLE `vtiger_campaignscf`
  ADD PRIMARY KEY (`campaignid`);

--
-- Indexes for table `vtiger_campaignstatus`
--
ALTER TABLE `vtiger_campaignstatus`
  ADD PRIMARY KEY (`campaignstatusid`),
  ADD KEY `campaignstatus_campaignstatus_idx` (`campaignstatus`);

--
-- Indexes for table `vtiger_campaigntype`
--
ALTER TABLE `vtiger_campaigntype`
  ADD PRIMARY KEY (`campaigntypeid`),
  ADD UNIQUE KEY `campaigntype_campaigntype_idx` (`campaigntype`);

--
-- Indexes for table `vtiger_carrier`
--
ALTER TABLE `vtiger_carrier`
  ADD PRIMARY KEY (`carrierid`),
  ADD UNIQUE KEY `carrier_carrier_idx` (`carrier`);

--
-- Indexes for table `vtiger_cf_credit_source`
--
ALTER TABLE `vtiger_cf_credit_source`
  ADD PRIMARY KEY (`cf_credit_sourceid`);

--
-- Indexes for table `vtiger_cf_credit_status`
--
ALTER TABLE `vtiger_cf_credit_status`
  ADD PRIMARY KEY (`cf_credit_statusid`);

--
-- Indexes for table `vtiger_cf_credit_type`
--
ALTER TABLE `vtiger_cf_credit_type`
  ADD PRIMARY KEY (`cf_credit_typeid`);

--
-- Indexes for table `vtiger_cf_forecast_category`
--
ALTER TABLE `vtiger_cf_forecast_category`
  ADD PRIMARY KEY (`cf_forecast_categoryid`);

--
-- Indexes for table `vtiger_cf_grouping1`
--
ALTER TABLE `vtiger_cf_grouping1`
  ADD PRIMARY KEY (`cf_grouping1id`);

--
-- Indexes for table `vtiger_cf_grouping2`
--
ALTER TABLE `vtiger_cf_grouping2`
  ADD PRIMARY KEY (`cf_grouping2id`);

--
-- Indexes for table `vtiger_cf_invoice_cycles`
--
ALTER TABLE `vtiger_cf_invoice_cycles`
  ADD PRIMARY KEY (`cf_invoice_cyclesid`);

--
-- Indexes for table `vtiger_cf_invoice_kind`
--
ALTER TABLE `vtiger_cf_invoice_kind`
  ADD PRIMARY KEY (`cf_invoice_kindid`);

--
-- Indexes for table `vtiger_cf_lead_party_type`
--
ALTER TABLE `vtiger_cf_lead_party_type`
  ADD PRIMARY KEY (`cf_lead_party_typeid`);

--
-- Indexes for table `vtiger_cf_loss_reason`
--
ALTER TABLE `vtiger_cf_loss_reason`
  ADD PRIMARY KEY (`cf_loss_reasonid`);

--
-- Indexes for table `vtiger_cf_opportunity_currency`
--
ALTER TABLE `vtiger_cf_opportunity_currency`
  ADD PRIMARY KEY (`cf_opportunity_currencyid`);

--
-- Indexes for table `vtiger_cf_opportunity_priority`
--
ALTER TABLE `vtiger_cf_opportunity_priority`
  ADD PRIMARY KEY (`cf_opportunity_priorityid`);

--
-- Indexes for table `vtiger_cf_party_type`
--
ALTER TABLE `vtiger_cf_party_type`
  ADD PRIMARY KEY (`cf_party_typeid`);

--
-- Indexes for table `vtiger_cf_sales_process`
--
ALTER TABLE `vtiger_cf_sales_process`
  ADD PRIMARY KEY (`cf_sales_processid`);

--
-- Indexes for table `vtiger_channel`
--
ALTER TABLE `vtiger_channel`
  ADD PRIMARY KEY (`channelid`);

--
-- Indexes for table `vtiger_cntactivityrel`
--
ALTER TABLE `vtiger_cntactivityrel`
  ADD PRIMARY KEY (`contactid`,`activityid`),
  ADD KEY `cntactivityrel_contactid_idx` (`contactid`),
  ADD KEY `cntactivityrel_activityid_idx` (`activityid`);

--
-- Indexes for table `vtiger_communications`
--
ALTER TABLE `vtiger_communications`
  ADD PRIMARY KEY (`communicationsid`);

--
-- Indexes for table `vtiger_communicationscf`
--
ALTER TABLE `vtiger_communicationscf`
  ADD PRIMARY KEY (`communicationsid`);

--
-- Indexes for table `vtiger_communications_audit`
--
ALTER TABLE `vtiger_communications_audit`
  ADD PRIMARY KEY (`auditid`),
  ADD KEY `idx_comm_audit_record` (`communicationsid`,`event_time`);

--
-- Indexes for table `vtiger_contactaddress`
--
ALTER TABLE `vtiger_contactaddress`
  ADD PRIMARY KEY (`contactaddressid`);

--
-- Indexes for table `vtiger_contactdetails`
--
ALTER TABLE `vtiger_contactdetails`
  ADD PRIMARY KEY (`contactid`),
  ADD KEY `contactdetails_accountid_idx` (`accountid`),
  ADD KEY `email_idx` (`email`);

--
-- Indexes for table `vtiger_contactscf`
--
ALTER TABLE `vtiger_contactscf`
  ADD PRIMARY KEY (`contactid`);

--
-- Indexes for table `vtiger_contactsubdetails`
--
ALTER TABLE `vtiger_contactsubdetails`
  ADD PRIMARY KEY (`contactsubscriptionid`);

--
-- Indexes for table `vtiger_contpotentialrel`
--
ALTER TABLE `vtiger_contpotentialrel`
  ADD PRIMARY KEY (`contactid`,`potentialid`),
  ADD KEY `contpotentialrel_potentialid_idx` (`potentialid`),
  ADD KEY `contpotentialrel_contactid_idx` (`contactid`);

--
-- Indexes for table `vtiger_contract_priority`
--
ALTER TABLE `vtiger_contract_priority`
  ADD PRIMARY KEY (`contract_priorityid`);

--
-- Indexes for table `vtiger_contract_status`
--
ALTER TABLE `vtiger_contract_status`
  ADD PRIMARY KEY (`contract_statusid`);

--
-- Indexes for table `vtiger_contract_type`
--
ALTER TABLE `vtiger_contract_type`
  ADD PRIMARY KEY (`contract_typeid`);

--
-- Indexes for table `vtiger_convertleadmapping`
--
ALTER TABLE `vtiger_convertleadmapping`
  ADD PRIMARY KEY (`cfmid`);

--
-- Indexes for table `vtiger_convertpotentialmapping`
--
ALTER TABLE `vtiger_convertpotentialmapping`
  ADD PRIMARY KEY (`cfmid`);

--
-- Indexes for table `vtiger_crmentity`
--
ALTER TABLE `vtiger_crmentity`
  ADD PRIMARY KEY (`crmid`),
  ADD KEY `crmentity_smcreatorid_idx` (`smcreatorid`),
  ADD KEY `crmentity_modifiedby_idx` (`modifiedby`),
  ADD KEY `crmentity_deleted_idx` (`deleted`),
  ADD KEY `crm_ownerid_del_setype_idx` (`smownerid`,`deleted`,`setype`),
  ADD KEY `vtiger_crmentity_labelidx` (`label`);

--
-- Indexes for table `vtiger_crmentityrel`
--
ALTER TABLE `vtiger_crmentityrel`
  ADD KEY `crmid_idx` (`crmid`),
  ADD KEY `relcrmid_idx` (`relcrmid`);

--
-- Indexes for table `vtiger_crmentity_user_field`
--
ALTER TABLE `vtiger_crmentity_user_field`
  ADD KEY `record_user_idx` (`recordid`,`userid`);

--
-- Indexes for table `vtiger_cron_task`
--
ALTER TABLE `vtiger_cron_task`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `name` (`name`),
  ADD UNIQUE KEY `handler_file` (`handler_file`);

--
-- Indexes for table `vtiger_currencies`
--
ALTER TABLE `vtiger_currencies`
  ADD PRIMARY KEY (`currencyid`);

--
-- Indexes for table `vtiger_currency`
--
ALTER TABLE `vtiger_currency`
  ADD PRIMARY KEY (`currencyid`),
  ADD UNIQUE KEY `currency_currency_idx` (`currency`);

--
-- Indexes for table `vtiger_currency_decimal_separator`
--
ALTER TABLE `vtiger_currency_decimal_separator`
  ADD PRIMARY KEY (`currency_decimal_separatorid`);

--
-- Indexes for table `vtiger_currency_grouping_pattern`
--
ALTER TABLE `vtiger_currency_grouping_pattern`
  ADD PRIMARY KEY (`currency_grouping_patternid`);

--
-- Indexes for table `vtiger_currency_grouping_separator`
--
ALTER TABLE `vtiger_currency_grouping_separator`
  ADD PRIMARY KEY (`currency_grouping_separatorid`);

--
-- Indexes for table `vtiger_currency_info`
--
ALTER TABLE `vtiger_currency_info`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_currency_symbol_placement`
--
ALTER TABLE `vtiger_currency_symbol_placement`
  ADD PRIMARY KEY (`currency_symbol_placementid`);

--
-- Indexes for table `vtiger_customaction`
--
ALTER TABLE `vtiger_customaction`
  ADD KEY `customaction_cvid_idx` (`cvid`);

--
-- Indexes for table `vtiger_customerdetails`
--
ALTER TABLE `vtiger_customerdetails`
  ADD PRIMARY KEY (`customerid`);

--
-- Indexes for table `vtiger_customerportal_fields`
--
ALTER TABLE `vtiger_customerportal_fields`
  ADD PRIMARY KEY (`tabid`);

--
-- Indexes for table `vtiger_customerportal_prefs`
--
ALTER TABLE `vtiger_customerportal_prefs`
  ADD PRIMARY KEY (`tabid`,`prefkey`);

--
-- Indexes for table `vtiger_customerportal_relatedmoduleinfo`
--
ALTER TABLE `vtiger_customerportal_relatedmoduleinfo`
  ADD PRIMARY KEY (`tabid`);

--
-- Indexes for table `vtiger_customerportal_tabs`
--
ALTER TABLE `vtiger_customerportal_tabs`
  ADD PRIMARY KEY (`tabid`);

--
-- Indexes for table `vtiger_customview`
--
ALTER TABLE `vtiger_customview`
  ADD PRIMARY KEY (`cvid`),
  ADD KEY `customview_entitytype_idx` (`entitytype`);

--
-- Indexes for table `vtiger_cv2group`
--
ALTER TABLE `vtiger_cv2group`
  ADD KEY `vtiger_cv2group_ibfk_1` (`cvid`),
  ADD KEY `vtiger_groups_ibfk_1` (`groupid`);

--
-- Indexes for table `vtiger_cv2role`
--
ALTER TABLE `vtiger_cv2role`
  ADD KEY `vtiger_cv2role_ibfk_1` (`cvid`),
  ADD KEY `vtiger_role_ibfk_1` (`roleid`);

--
-- Indexes for table `vtiger_cv2rs`
--
ALTER TABLE `vtiger_cv2rs`
  ADD KEY `vtiger_cv2role_ibfk_1` (`cvid`),
  ADD KEY `vtiger_rolesd_ibfk_1` (`rsid`);

--
-- Indexes for table `vtiger_cv2users`
--
ALTER TABLE `vtiger_cv2users`
  ADD KEY `vtiger_cv2users_ibfk_1` (`cvid`),
  ADD KEY `vtiger_users_ibfk_1` (`userid`);

--
-- Indexes for table `vtiger_cvadvfilter`
--
ALTER TABLE `vtiger_cvadvfilter`
  ADD PRIMARY KEY (`cvid`,`columnindex`),
  ADD KEY `cvadvfilter_cvid_idx` (`cvid`);

--
-- Indexes for table `vtiger_cvadvfilter_grouping`
--
ALTER TABLE `vtiger_cvadvfilter_grouping`
  ADD PRIMARY KEY (`groupid`,`cvid`);

--
-- Indexes for table `vtiger_cvcolumnlist`
--
ALTER TABLE `vtiger_cvcolumnlist`
  ADD PRIMARY KEY (`cvid`,`columnindex`),
  ADD KEY `cvcolumnlist_columnindex_idx` (`columnindex`),
  ADD KEY `cvcolumnlist_cvid_idx` (`cvid`);

--
-- Indexes for table `vtiger_cvstdfilter`
--
ALTER TABLE `vtiger_cvstdfilter`
  ADD KEY `cvstdfilter_cvid_idx` (`cvid`);

--
-- Indexes for table `vtiger_dashboard_tabs`
--
ALTER TABLE `vtiger_dashboard_tabs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `tabname` (`tabname`,`userid`),
  ADD KEY `vtiger_dashboard_tabs_ibfk_1` (`userid`);

--
-- Indexes for table `vtiger_datashare_grp2grp`
--
ALTER TABLE `vtiger_datashare_grp2grp`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_grp2grp_share_groupid_idx` (`share_groupid`),
  ADD KEY `datashare_grp2grp_to_groupid_idx` (`to_groupid`);

--
-- Indexes for table `vtiger_datashare_grp2role`
--
ALTER TABLE `vtiger_datashare_grp2role`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `idx_datashare_grp2role_share_groupid` (`share_groupid`),
  ADD KEY `idx_datashare_grp2role_to_roleid` (`to_roleid`);

--
-- Indexes for table `vtiger_datashare_grp2rs`
--
ALTER TABLE `vtiger_datashare_grp2rs`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_grp2rs_share_groupid_idx` (`share_groupid`),
  ADD KEY `datashare_grp2rs_to_roleandsubid_idx` (`to_roleandsubid`);

--
-- Indexes for table `vtiger_datashare_module_rel`
--
ALTER TABLE `vtiger_datashare_module_rel`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `idx_datashare_module_rel_tabid` (`tabid`);

--
-- Indexes for table `vtiger_datashare_relatedmodules`
--
ALTER TABLE `vtiger_datashare_relatedmodules`
  ADD PRIMARY KEY (`datashare_relatedmodule_id`),
  ADD KEY `datashare_relatedmodules_tabid_idx` (`tabid`),
  ADD KEY `datashare_relatedmodules_relatedto_tabid_idx` (`relatedto_tabid`);

--
-- Indexes for table `vtiger_datashare_relatedmodule_permission`
--
ALTER TABLE `vtiger_datashare_relatedmodule_permission`
  ADD PRIMARY KEY (`shareid`,`datashare_relatedmodule_id`),
  ADD KEY `datashare_relatedmodule_permission_shareid_permissions_idx` (`shareid`,`permission`);

--
-- Indexes for table `vtiger_datashare_role2group`
--
ALTER TABLE `vtiger_datashare_role2group`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `idx_datashare_role2group_share_roleid` (`share_roleid`),
  ADD KEY `idx_datashare_role2group_to_groupid` (`to_groupid`);

--
-- Indexes for table `vtiger_datashare_role2role`
--
ALTER TABLE `vtiger_datashare_role2role`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_role2role_share_roleid_idx` (`share_roleid`),
  ADD KEY `datashare_role2role_to_roleid_idx` (`to_roleid`);

--
-- Indexes for table `vtiger_datashare_role2rs`
--
ALTER TABLE `vtiger_datashare_role2rs`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_role2s_share_roleid_idx` (`share_roleid`),
  ADD KEY `datashare_role2s_to_roleandsubid_idx` (`to_roleandsubid`);

--
-- Indexes for table `vtiger_datashare_rs2grp`
--
ALTER TABLE `vtiger_datashare_rs2grp`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_rs2grp_share_roleandsubid_idx` (`share_roleandsubid`),
  ADD KEY `datashare_rs2grp_to_groupid_idx` (`to_groupid`);

--
-- Indexes for table `vtiger_datashare_rs2role`
--
ALTER TABLE `vtiger_datashare_rs2role`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_rs2role_share_roleandsubid_idx` (`share_roleandsubid`),
  ADD KEY `datashare_rs2role_to_roleid_idx` (`to_roleid`);

--
-- Indexes for table `vtiger_datashare_rs2rs`
--
ALTER TABLE `vtiger_datashare_rs2rs`
  ADD PRIMARY KEY (`shareid`),
  ADD KEY `datashare_rs2rs_share_roleandsubid_idx` (`share_roleandsubid`),
  ADD KEY `idx_datashare_rs2rs_to_roleandsubid_idx` (`to_roleandsubid`);

--
-- Indexes for table `vtiger_date_format`
--
ALTER TABLE `vtiger_date_format`
  ADD PRIMARY KEY (`date_formatid`);

--
-- Indexes for table `vtiger_dayoftheweek`
--
ALTER TABLE `vtiger_dayoftheweek`
  ADD PRIMARY KEY (`dayoftheweekid`);

--
-- Indexes for table `vtiger_defaultactivitytype`
--
ALTER TABLE `vtiger_defaultactivitytype`
  ADD PRIMARY KEY (`defaultactivitytypeid`);

--
-- Indexes for table `vtiger_defaultcalendarview`
--
ALTER TABLE `vtiger_defaultcalendarview`
  ADD PRIMARY KEY (`defaultcalendarviewid`);

--
-- Indexes for table `vtiger_defaultcv`
--
ALTER TABLE `vtiger_defaultcv`
  ADD PRIMARY KEY (`tabid`);

--
-- Indexes for table `vtiger_defaulteventstatus`
--
ALTER TABLE `vtiger_defaulteventstatus`
  ADD PRIMARY KEY (`defaulteventstatusid`);

--
-- Indexes for table `vtiger_defaultlandingpage`
--
ALTER TABLE `vtiger_defaultlandingpage`
  ADD PRIMARY KEY (`defaultlandingpageid`);

--
-- Indexes for table `vtiger_default_record_view`
--
ALTER TABLE `vtiger_default_record_view`
  ADD PRIMARY KEY (`default_record_viewid`);

--
-- Indexes for table `vtiger_def_org_field`
--
ALTER TABLE `vtiger_def_org_field`
  ADD PRIMARY KEY (`fieldid`),
  ADD KEY `def_org_field_tabid_fieldid_idx` (`tabid`,`fieldid`),
  ADD KEY `def_org_field_tabid_idx` (`tabid`),
  ADD KEY `def_org_field_visible_fieldid_idx` (`visible`,`fieldid`);

--
-- Indexes for table `vtiger_def_org_share`
--
ALTER TABLE `vtiger_def_org_share`
  ADD PRIMARY KEY (`ruleid`),
  ADD KEY `fk_1_vtiger_def_org_share` (`permission`);

--
-- Indexes for table `vtiger_deposit_status`
--
ALTER TABLE `vtiger_deposit_status`
  ADD PRIMARY KEY (`deposit_statusid`);

--
-- Indexes for table `vtiger_deposit_type`
--
ALTER TABLE `vtiger_deposit_type`
  ADD PRIMARY KEY (`deposit_typeid`);

--
-- Indexes for table `vtiger_durationhrs`
--
ALTER TABLE `vtiger_durationhrs`
  ADD PRIMARY KEY (`hrsid`);

--
-- Indexes for table `vtiger_durationmins`
--
ALTER TABLE `vtiger_durationmins`
  ADD PRIMARY KEY (`minsid`);

--
-- Indexes for table `vtiger_duration_minutes`
--
ALTER TABLE `vtiger_duration_minutes`
  ADD PRIMARY KEY (`minutesid`);

--
-- Indexes for table `vtiger_emaildetails`
--
ALTER TABLE `vtiger_emaildetails`
  ADD PRIMARY KEY (`emailid`);

--
-- Indexes for table `vtiger_emailslookup`
--
ALTER TABLE `vtiger_emailslookup`
  ADD UNIQUE KEY `emailslookup_crmid_setype_fieldname_uk` (`crmid`,`setype`,`fieldid`),
  ADD KEY `emailslookup_fieldid_setype_idx` (`fieldid`,`setype`);

--
-- Indexes for table `vtiger_emails_recipientprefs`
--
ALTER TABLE `vtiger_emails_recipientprefs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_emailtemplates`
--
ALTER TABLE `vtiger_emailtemplates`
  ADD PRIMARY KEY (`templateid`),
  ADD KEY `emailtemplates_foldernamd_templatename_subject_idx` (`foldername`,`templatename`,`subject`);

--
-- Indexes for table `vtiger_email_track`
--
ALTER TABLE `vtiger_email_track`
  ADD UNIQUE KEY `link_tabidtype_idx` (`crmid`,`mailid`);

--
-- Indexes for table `vtiger_entityname`
--
ALTER TABLE `vtiger_entityname`
  ADD PRIMARY KEY (`tabid`),
  ADD KEY `entityname_tabid_idx` (`tabid`);

--
-- Indexes for table `vtiger_eventhandlers`
--
ALTER TABLE `vtiger_eventhandlers`
  ADD PRIMARY KEY (`eventhandler_id`,`event_name`,`handler_class`),
  ADD UNIQUE KEY `eventhandler_idx` (`eventhandler_id`);

--
-- Indexes for table `vtiger_eventhandler_module`
--
ALTER TABLE `vtiger_eventhandler_module`
  ADD PRIMARY KEY (`eventhandler_module_id`);

--
-- Indexes for table `vtiger_eventstatus`
--
ALTER TABLE `vtiger_eventstatus`
  ADD PRIMARY KEY (`eventstatusid`);

--
-- Indexes for table `vtiger_expectedresponse`
--
ALTER TABLE `vtiger_expectedresponse`
  ADD PRIMARY KEY (`expectedresponseid`),
  ADD UNIQUE KEY `CampaignExpRes_UK01` (`expectedresponse`);

--
-- Indexes for table `vtiger_extnstore_users`
--
ALTER TABLE `vtiger_extnstore_users`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_faq`
--
ALTER TABLE `vtiger_faq`
  ADD PRIMARY KEY (`id`),
  ADD KEY `faq_id_idx` (`id`);

--
-- Indexes for table `vtiger_faqcategories`
--
ALTER TABLE `vtiger_faqcategories`
  ADD PRIMARY KEY (`faqcategories_id`);

--
-- Indexes for table `vtiger_faqcf`
--
ALTER TABLE `vtiger_faqcf`
  ADD PRIMARY KEY (`faqid`);

--
-- Indexes for table `vtiger_faqcomments`
--
ALTER TABLE `vtiger_faqcomments`
  ADD PRIMARY KEY (`commentid`),
  ADD KEY `faqcomments_faqid_idx` (`faqid`);

--
-- Indexes for table `vtiger_faqstatus`
--
ALTER TABLE `vtiger_faqstatus`
  ADD PRIMARY KEY (`faqstatus_id`);

--
-- Indexes for table `vtiger_field`
--
ALTER TABLE `vtiger_field`
  ADD PRIMARY KEY (`fieldid`),
  ADD KEY `field_tabid_idx` (`tabid`),
  ADD KEY `field_fieldname_idx` (`fieldname`),
  ADD KEY `field_block_idx` (`block`),
  ADD KEY `field_displaytype_idx` (`displaytype`);

--
-- Indexes for table `vtiger_freetagged_objects`
--
ALTER TABLE `vtiger_freetagged_objects`
  ADD PRIMARY KEY (`tag_id`,`tagger_id`,`object_id`),
  ADD KEY `freetagged_objects_tag_id_tagger_id_object_id_idx` (`tag_id`,`tagger_id`,`object_id`);

--
-- Indexes for table `vtiger_freetags`
--
ALTER TABLE `vtiger_freetags`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_gift_status`
--
ALTER TABLE `vtiger_gift_status`
  ADD PRIMARY KEY (`gift_statusid`);

--
-- Indexes for table `vtiger_glacct`
--
ALTER TABLE `vtiger_glacct`
  ADD PRIMARY KEY (`glacctid`),
  ADD UNIQUE KEY `glacct_glacct_idx` (`glacct`);

--
-- Indexes for table `vtiger_gooyagoals`
--
ALTER TABLE `vtiger_gooyagoals`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uq_goal` (`jyear`,`jmonth`,`userid`);

--
-- Indexes for table `vtiger_gooyanotes`
--
ALTER TABLE `vtiger_gooyanotes`
  ADD PRIMARY KEY (`gooyanotesid`);

--
-- Indexes for table `vtiger_gooyanotescf`
--
ALTER TABLE `vtiger_gooyanotescf`
  ADD PRIMARY KEY (`gooyanotesid`);

--
-- Indexes for table `vtiger_grant_status`
--
ALTER TABLE `vtiger_grant_status`
  ADD PRIMARY KEY (`grant_statusid`);

--
-- Indexes for table `vtiger_group2grouprel`
--
ALTER TABLE `vtiger_group2grouprel`
  ADD PRIMARY KEY (`groupid`,`containsgroupid`);

--
-- Indexes for table `vtiger_group2role`
--
ALTER TABLE `vtiger_group2role`
  ADD PRIMARY KEY (`groupid`,`roleid`),
  ADD KEY `fk_2_vtiger_group2role` (`roleid`);

--
-- Indexes for table `vtiger_group2rs`
--
ALTER TABLE `vtiger_group2rs`
  ADD PRIMARY KEY (`groupid`,`roleandsubid`),
  ADD KEY `fk_2_vtiger_group2rs` (`roleandsubid`);

--
-- Indexes for table `vtiger_groups`
--
ALTER TABLE `vtiger_groups`
  ADD PRIMARY KEY (`groupid`),
  ADD UNIQUE KEY `groups_groupname_idx` (`groupname`);

--
-- Indexes for table `vtiger_homedashbd`
--
ALTER TABLE `vtiger_homedashbd`
  ADD PRIMARY KEY (`stuffid`),
  ADD KEY `stuff_stuffid_idx` (`stuffid`);

--
-- Indexes for table `vtiger_homedefault`
--
ALTER TABLE `vtiger_homedefault`
  ADD PRIMARY KEY (`stuffid`),
  ADD KEY `stuff_stuffid_idx` (`stuffid`);

--
-- Indexes for table `vtiger_homemodule`
--
ALTER TABLE `vtiger_homemodule`
  ADD PRIMARY KEY (`stuffid`),
  ADD KEY `stuff_stuffid_idx` (`stuffid`);

--
-- Indexes for table `vtiger_homemoduleflds`
--
ALTER TABLE `vtiger_homemoduleflds`
  ADD KEY `stuff_stuffid_idx` (`stuffid`);

--
-- Indexes for table `vtiger_homereportchart`
--
ALTER TABLE `vtiger_homereportchart`
  ADD PRIMARY KEY (`stuffid`);

--
-- Indexes for table `vtiger_homerss`
--
ALTER TABLE `vtiger_homerss`
  ADD PRIMARY KEY (`stuffid`),
  ADD KEY `stuff_stuffid_idx` (`stuffid`);

--
-- Indexes for table `vtiger_homestuff`
--
ALTER TABLE `vtiger_homestuff`
  ADD PRIMARY KEY (`stuffid`),
  ADD KEY `stuff_stuffid_idx` (`stuffid`),
  ADD KEY `fk_1_vtiger_homestuff` (`userid`);

--
-- Indexes for table `vtiger_home_layout`
--
ALTER TABLE `vtiger_home_layout`
  ADD PRIMARY KEY (`userid`);

--
-- Indexes for table `vtiger_hour_format`
--
ALTER TABLE `vtiger_hour_format`
  ADD PRIMARY KEY (`hour_formatid`);

--
-- Indexes for table `vtiger_import_locks`
--
ALTER TABLE `vtiger_import_locks`
  ADD PRIMARY KEY (`vtiger_import_lock_id`);

--
-- Indexes for table `vtiger_import_maps`
--
ALTER TABLE `vtiger_import_maps`
  ADD PRIMARY KEY (`id`),
  ADD KEY `import_maps_assigned_user_id_module_name_deleted_idx` (`assigned_user_id`,`module`,`name`,`deleted`);

--
-- Indexes for table `vtiger_import_queue`
--
ALTER TABLE `vtiger_import_queue`
  ADD PRIMARY KEY (`importid`);

--
-- Indexes for table `vtiger_industry`
--
ALTER TABLE `vtiger_industry`
  ADD PRIMARY KEY (`industryid`),
  ADD UNIQUE KEY `industry_industry_idx` (`industry`);

--
-- Indexes for table `vtiger_inventorycharges`
--
ALTER TABLE `vtiger_inventorycharges`
  ADD PRIMARY KEY (`chargeid`);

--
-- Indexes for table `vtiger_inventorychargesrel`
--
ALTER TABLE `vtiger_inventorychargesrel`
  ADD KEY `record_idx` (`recordid`);

--
-- Indexes for table `vtiger_inventorynotification`
--
ALTER TABLE `vtiger_inventorynotification`
  ADD PRIMARY KEY (`notificationid`);

--
-- Indexes for table `vtiger_inventoryproductrel`
--
ALTER TABLE `vtiger_inventoryproductrel`
  ADD PRIMARY KEY (`lineitem_id`),
  ADD KEY `inventoryproductrel_id_idx` (`id`),
  ADD KEY `inventoryproductrel_productid_idx` (`productid`),
  ADD KEY `idx_sarv_inventory_record_sequence` (`id`,`sequence_no`,`lineitem_id`);

--
-- Indexes for table `vtiger_inventoryshippingrel`
--
ALTER TABLE `vtiger_inventoryshippingrel`
  ADD KEY `inventoryishippingrel_id_idx` (`id`);

--
-- Indexes for table `vtiger_inventorytaxinfo`
--
ALTER TABLE `vtiger_inventorytaxinfo`
  ADD PRIMARY KEY (`taxid`),
  ADD KEY `inventorytaxinfo_taxname_idx` (`taxname`);

--
-- Indexes for table `vtiger_inventory_tandc`
--
ALTER TABLE `vtiger_inventory_tandc`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_invitees`
--
ALTER TABLE `vtiger_invitees`
  ADD PRIMARY KEY (`activityid`,`inviteeid`);

--
-- Indexes for table `vtiger_invoice`
--
ALTER TABLE `vtiger_invoice`
  ADD PRIMARY KEY (`invoiceid`),
  ADD KEY `invoice_purchaseorderid_idx` (`invoiceid`),
  ADD KEY `fk_2_vtiger_invoice` (`salesorderid`),
  ADD KEY `idx_invoice_account` (`accountid`),
  ADD KEY `idx_invoice_contact` (`contactid`),
  ADD KEY `idx_invoice_potential` (`potential_id`);

--
-- Indexes for table `vtiger_invoicebillads`
--
ALTER TABLE `vtiger_invoicebillads`
  ADD PRIMARY KEY (`invoicebilladdressid`);

--
-- Indexes for table `vtiger_invoicecf`
--
ALTER TABLE `vtiger_invoicecf`
  ADD PRIMARY KEY (`invoiceid`),
  ADD KEY `idx_sarv_invoice_kind` (`cf_invoice_kind`,`invoiceid`);

--
-- Indexes for table `vtiger_invoiceshipads`
--
ALTER TABLE `vtiger_invoiceshipads`
  ADD PRIMARY KEY (`invoiceshipaddressid`);

--
-- Indexes for table `vtiger_invoicestatus`
--
ALTER TABLE `vtiger_invoicestatus`
  ADD PRIMARY KEY (`invoicestatusid`),
  ADD UNIQUE KEY `invoicestatus_invoiestatus_idx` (`invoicestatus`);

--
-- Indexes for table `vtiger_invoicestatushistory`
--
ALTER TABLE `vtiger_invoicestatushistory`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `invoicestatushistory_invoiceid_idx` (`invoiceid`);

--
-- Indexes for table `vtiger_invoice_recurring_info`
--
ALTER TABLE `vtiger_invoice_recurring_info`
  ADD PRIMARY KEY (`salesorderid`);

--
-- Indexes for table `vtiger_language`
--
ALTER TABLE `vtiger_language`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_leadaddress`
--
ALTER TABLE `vtiger_leadaddress`
  ADD PRIMARY KEY (`leadaddressid`);

--
-- Indexes for table `vtiger_leaddetails`
--
ALTER TABLE `vtiger_leaddetails`
  ADD PRIMARY KEY (`leadid`),
  ADD KEY `leaddetails_converted_leadstatus_idx` (`converted`,`leadstatus`),
  ADD KEY `email_idx` (`email`);

--
-- Indexes for table `vtiger_leadscf`
--
ALTER TABLE `vtiger_leadscf`
  ADD PRIMARY KEY (`leadid`);

--
-- Indexes for table `vtiger_leadsource`
--
ALTER TABLE `vtiger_leadsource`
  ADD PRIMARY KEY (`leadsourceid`);

--
-- Indexes for table `vtiger_leadstage`
--
ALTER TABLE `vtiger_leadstage`
  ADD PRIMARY KEY (`leadstageid`),
  ADD UNIQUE KEY `leadstage_stage_idx` (`stage`);

--
-- Indexes for table `vtiger_leadstatus`
--
ALTER TABLE `vtiger_leadstatus`
  ADD PRIMARY KEY (`leadstatusid`);

--
-- Indexes for table `vtiger_leadsubdetails`
--
ALTER TABLE `vtiger_leadsubdetails`
  ADD PRIMARY KEY (`leadsubscriptionid`);

--
-- Indexes for table `vtiger_lead_view`
--
ALTER TABLE `vtiger_lead_view`
  ADD PRIMARY KEY (`lead_viewid`);

--
-- Indexes for table `vtiger_links`
--
ALTER TABLE `vtiger_links`
  ADD PRIMARY KEY (`linkid`),
  ADD KEY `link_tabidtype_idx` (`tabid`,`linktype`);

--
-- Indexes for table `vtiger_list_status`
--
ALTER TABLE `vtiger_list_status`
  ADD PRIMARY KEY (`list_statusid`);

--
-- Indexes for table `vtiger_list_type`
--
ALTER TABLE `vtiger_list_type`
  ADD PRIMARY KEY (`list_typeid`);

--
-- Indexes for table `vtiger_location_status`
--
ALTER TABLE `vtiger_location_status`
  ADD PRIMARY KEY (`location_statusid`);

--
-- Indexes for table `vtiger_location_type`
--
ALTER TABLE `vtiger_location_type`
  ADD PRIMARY KEY (`location_typeid`);

--
-- Indexes for table `vtiger_loginhistory`
--
ALTER TABLE `vtiger_loginhistory`
  ADD PRIMARY KEY (`login_id`);

--
-- Indexes for table `vtiger_mailer_queue`
--
ALTER TABLE `vtiger_mailer_queue`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_mailmanager_mailattachments`
--
ALTER TABLE `vtiger_mailmanager_mailattachments`
  ADD KEY `userid_muid_idx` (`userid`,`muid`);

--
-- Indexes for table `vtiger_mailmanager_mailrecord`
--
ALTER TABLE `vtiger_mailmanager_mailrecord`
  ADD KEY `userid_lastsavedtime_idx` (`userid`,`lastsavedtime`),
  ADD KEY `userid_muid_idx` (`userid`,`muid`);

--
-- Indexes for table `vtiger_mailscanner`
--
ALTER TABLE `vtiger_mailscanner`
  ADD PRIMARY KEY (`scannerid`);

--
-- Indexes for table `vtiger_mailscanner_actions`
--
ALTER TABLE `vtiger_mailscanner_actions`
  ADD PRIMARY KEY (`actionid`);

--
-- Indexes for table `vtiger_mailscanner_folders`
--
ALTER TABLE `vtiger_mailscanner_folders`
  ADD PRIMARY KEY (`folderid`),
  ADD KEY `folderid_idx` (`folderid`);

--
-- Indexes for table `vtiger_mailscanner_ids`
--
ALTER TABLE `vtiger_mailscanner_ids`
  ADD KEY `scanner_message_ids_idx` (`scannerid`,`messageid`),
  ADD KEY `messageids_crmid_idx` (`crmid`);

--
-- Indexes for table `vtiger_mailscanner_rules`
--
ALTER TABLE `vtiger_mailscanner_rules`
  ADD PRIMARY KEY (`ruleid`);

--
-- Indexes for table `vtiger_mail_accounts`
--
ALTER TABLE `vtiger_mail_accounts`
  ADD PRIMARY KEY (`account_id`);

--
-- Indexes for table `vtiger_manufacturer`
--
ALTER TABLE `vtiger_manufacturer`
  ADD PRIMARY KEY (`manufacturerid`),
  ADD UNIQUE KEY `manufacturer_manufacturer_idx` (`manufacturer`);

--
-- Indexes for table `vtiger_mobile_alerts`
--
ALTER TABLE `vtiger_mobile_alerts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_modcomments`
--
ALTER TABLE `vtiger_modcomments`
  ADD KEY `relatedto_idx` (`related_to`),
  ADD KEY `fk_crmid_vtiger_modcomments` (`modcommentsid`);

--
-- Indexes for table `vtiger_modcommentscf`
--
ALTER TABLE `vtiger_modcommentscf`
  ADD PRIMARY KEY (`modcommentsid`);

--
-- Indexes for table `vtiger_modentity_num`
--
ALTER TABLE `vtiger_modentity_num`
  ADD PRIMARY KEY (`num_id`),
  ADD UNIQUE KEY `num_idx` (`num_id`),
  ADD KEY `semodule_active_idx` (`semodule`,`active`);

--
-- Indexes for table `vtiger_modtracker_basic`
--
ALTER TABLE `vtiger_modtracker_basic`
  ADD PRIMARY KEY (`id`),
  ADD KEY `crmidx` (`crmid`),
  ADD KEY `idx` (`id`),
  ADD KEY `idx_modtracker_crm_changed` (`crmid`,`changedon`);

--
-- Indexes for table `vtiger_modtracker_detail`
--
ALTER TABLE `vtiger_modtracker_detail`
  ADD KEY `idx` (`id`);

--
-- Indexes for table `vtiger_modtracker_relations`
--
ALTER TABLE `vtiger_modtracker_relations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_modtracker_tabs`
--
ALTER TABLE `vtiger_modtracker_tabs`
  ADD PRIMARY KEY (`tabid`);

--
-- Indexes for table `vtiger_module_dashboard_widgets`
--
ALTER TABLE `vtiger_module_dashboard_widgets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `dashboardtabid` (`dashboardtabid`);

--
-- Indexes for table `vtiger_notes`
--
ALTER TABLE `vtiger_notes`
  ADD PRIMARY KEY (`notesid`),
  ADD KEY `notes_title_idx` (`title`),
  ADD KEY `notes_notesid_idx` (`notesid`);

--
-- Indexes for table `vtiger_notescf`
--
ALTER TABLE `vtiger_notescf`
  ADD PRIMARY KEY (`notesid`);

--
-- Indexes for table `vtiger_notificationscheduler`
--
ALTER TABLE `vtiger_notificationscheduler`
  ADD PRIMARY KEY (`schedulednotificationid`),
  ADD UNIQUE KEY `notificationscheduler_schedulednotificationname_idx` (`schedulednotificationname`);

--
-- Indexes for table `vtiger_no_of_currency_decimals`
--
ALTER TABLE `vtiger_no_of_currency_decimals`
  ADD PRIMARY KEY (`no_of_currency_decimalsid`);

--
-- Indexes for table `vtiger_opportunitystage`
--
ALTER TABLE `vtiger_opportunitystage`
  ADD PRIMARY KEY (`potstageid`),
  ADD UNIQUE KEY `opportunitystage_stage_idx` (`stage`);

--
-- Indexes for table `vtiger_opportunity_type`
--
ALTER TABLE `vtiger_opportunity_type`
  ADD PRIMARY KEY (`opptypeid`),
  ADD UNIQUE KEY `opportunity_type_opportunity_type_idx` (`opportunity_type`);

--
-- Indexes for table `vtiger_organizationdetails`
--
ALTER TABLE `vtiger_organizationdetails`
  ADD PRIMARY KEY (`organization_id`);

--
-- Indexes for table `vtiger_org_share_action2tab`
--
ALTER TABLE `vtiger_org_share_action2tab`
  ADD PRIMARY KEY (`share_action_id`,`tabid`),
  ADD KEY `fk_2_vtiger_org_share_action2tab` (`tabid`);

--
-- Indexes for table `vtiger_org_share_action_mapping`
--
ALTER TABLE `vtiger_org_share_action_mapping`
  ADD PRIMARY KEY (`share_action_id`);

--
-- Indexes for table `vtiger_othereventduration`
--
ALTER TABLE `vtiger_othereventduration`
  ADD PRIMARY KEY (`othereventdurationid`);

--
-- Indexes for table `vtiger_parenttab`
--
ALTER TABLE `vtiger_parenttab`
  ADD PRIMARY KEY (`parenttabid`),
  ADD KEY `parenttab_parenttabid_parenttabl_label_visible_idx` (`parenttabid`,`parenttab_label`,`visible`);

--
-- Indexes for table `vtiger_parenttabrel`
--
ALTER TABLE `vtiger_parenttabrel`
  ADD KEY `parenttabrel_tabid_parenttabid_idx` (`tabid`,`parenttabid`),
  ADD KEY `fk_2_vtiger_parenttabrel` (`parenttabid`);

--
-- Indexes for table `vtiger_participation_status`
--
ALTER TABLE `vtiger_participation_status`
  ADD PRIMARY KEY (`participation_statusid`);

--
-- Indexes for table `vtiger_participation_type`
--
ALTER TABLE `vtiger_participation_type`
  ADD PRIMARY KEY (`participation_typeid`);

--
-- Indexes for table `vtiger_payment_direction`
--
ALTER TABLE `vtiger_payment_direction`
  ADD PRIMARY KEY (`payment_directionid`);

--
-- Indexes for table `vtiger_payment_method`
--
ALTER TABLE `vtiger_payment_method`
  ADD PRIMARY KEY (`payment_methodid`);

--
-- Indexes for table `vtiger_payment_status`
--
ALTER TABLE `vtiger_payment_status`
  ADD PRIMARY KEY (`payment_statusid`);

--
-- Indexes for table `vtiger_payment_type`
--
ALTER TABLE `vtiger_payment_type`
  ADD PRIMARY KEY (`payment_typeid`);

--
-- Indexes for table `vtiger_pbxmanager`
--
ALTER TABLE `vtiger_pbxmanager`
  ADD PRIMARY KEY (`pbxmanagerid`),
  ADD KEY `index_sourceuuid` (`sourceuuid`),
  ADD KEY `index_pbxmanager_id` (`pbxmanagerid`),
  ADD KEY `idx_pbxmanager_account` (`customer`);

--
-- Indexes for table `vtiger_pbxmanagercf`
--
ALTER TABLE `vtiger_pbxmanagercf`
  ADD PRIMARY KEY (`pbxmanagerid`);

--
-- Indexes for table `vtiger_pbxmanager_gateway`
--
ALTER TABLE `vtiger_pbxmanager_gateway`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_pbxmanager_phonelookup`
--
ALTER TABLE `vtiger_pbxmanager_phonelookup`
  ADD UNIQUE KEY `unique_key` (`crmid`,`setype`,`fieldname`),
  ADD KEY `index_phone_number` (`fnumber`,`rnumber`);

--
-- Indexes for table `vtiger_picklist`
--
ALTER TABLE `vtiger_picklist`
  ADD PRIMARY KEY (`picklistid`),
  ADD UNIQUE KEY `picklist_name_idx` (`name`);

--
-- Indexes for table `vtiger_picklist_dependency`
--
ALTER TABLE `vtiger_picklist_dependency`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_picklist_transitions`
--
ALTER TABLE `vtiger_picklist_transitions`
  ADD PRIMARY KEY (`fieldname`);

--
-- Indexes for table `vtiger_pobillads`
--
ALTER TABLE `vtiger_pobillads`
  ADD PRIMARY KEY (`pobilladdressid`);

--
-- Indexes for table `vtiger_portal`
--
ALTER TABLE `vtiger_portal`
  ADD PRIMARY KEY (`portalid`),
  ADD KEY `portal_portalname_idx` (`portalname`);

--
-- Indexes for table `vtiger_portalinfo`
--
ALTER TABLE `vtiger_portalinfo`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_poshipads`
--
ALTER TABLE `vtiger_poshipads`
  ADD PRIMARY KEY (`poshipaddressid`);

--
-- Indexes for table `vtiger_postatus`
--
ALTER TABLE `vtiger_postatus`
  ADD PRIMARY KEY (`postatusid`),
  ADD UNIQUE KEY `postatus_postatus_idx` (`postatus`);

--
-- Indexes for table `vtiger_postatushistory`
--
ALTER TABLE `vtiger_postatushistory`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `postatushistory_purchaseorderid_idx` (`purchaseorderid`);

--
-- Indexes for table `vtiger_potential`
--
ALTER TABLE `vtiger_potential`
  ADD PRIMARY KEY (`potentialid`),
  ADD KEY `potential_relatedto_idx` (`related_to`),
  ADD KEY `potentail_sales_stage_idx` (`sales_stage`),
  ADD KEY `potentail_sales_stage_amount_idx` (`amount`,`sales_stage`),
  ADD KEY `idx_potential_contact` (`contact_id`);

--
-- Indexes for table `vtiger_potentialscf`
--
ALTER TABLE `vtiger_potentialscf`
  ADD PRIMARY KEY (`potentialid`);

--
-- Indexes for table `vtiger_potstagehistory`
--
ALTER TABLE `vtiger_potstagehistory`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `potstagehistory_potentialid_idx` (`potentialid`);

--
-- Indexes for table `vtiger_pricebook`
--
ALTER TABLE `vtiger_pricebook`
  ADD PRIMARY KEY (`pricebookid`);

--
-- Indexes for table `vtiger_pricebookcf`
--
ALTER TABLE `vtiger_pricebookcf`
  ADD PRIMARY KEY (`pricebookid`);

--
-- Indexes for table `vtiger_pricebookproductrel`
--
ALTER TABLE `vtiger_pricebookproductrel`
  ADD PRIMARY KEY (`pricebookid`,`productid`),
  ADD KEY `pricebookproductrel_pricebookid_idx` (`pricebookid`),
  ADD KEY `pricebookproductrel_productid_idx` (`productid`);

--
-- Indexes for table `vtiger_priority`
--
ALTER TABLE `vtiger_priority`
  ADD PRIMARY KEY (`priorityid`),
  ADD UNIQUE KEY `priority_priority_idx` (`priority`);

--
-- Indexes for table `vtiger_productcategory`
--
ALTER TABLE `vtiger_productcategory`
  ADD PRIMARY KEY (`productcategoryid`),
  ADD UNIQUE KEY `productcategory_productcategory_idx` (`productcategory`);

--
-- Indexes for table `vtiger_productcf`
--
ALTER TABLE `vtiger_productcf`
  ADD PRIMARY KEY (`productid`);

--
-- Indexes for table `vtiger_products`
--
ALTER TABLE `vtiger_products`
  ADD PRIMARY KEY (`productid`);

--
-- Indexes for table `vtiger_producttaxrel`
--
ALTER TABLE `vtiger_producttaxrel`
  ADD KEY `producttaxrel_productid_idx` (`productid`),
  ADD KEY `producttaxrel_taxid_idx` (`taxid`);

--
-- Indexes for table `vtiger_profile`
--
ALTER TABLE `vtiger_profile`
  ADD PRIMARY KEY (`profileid`);

--
-- Indexes for table `vtiger_profile2field`
--
ALTER TABLE `vtiger_profile2field`
  ADD PRIMARY KEY (`profileid`,`fieldid`),
  ADD KEY `profile2field_profileid_tabid_fieldname_idx` (`profileid`,`tabid`),
  ADD KEY `profile2field_tabid_profileid_idx` (`tabid`,`profileid`),
  ADD KEY `profile2field_visible_profileid_idx` (`visible`,`profileid`);

--
-- Indexes for table `vtiger_profile2globalpermissions`
--
ALTER TABLE `vtiger_profile2globalpermissions`
  ADD PRIMARY KEY (`profileid`,`globalactionid`),
  ADD KEY `idx_profile2globalpermissions` (`profileid`,`globalactionid`);

--
-- Indexes for table `vtiger_profile2standardpermissions`
--
ALTER TABLE `vtiger_profile2standardpermissions`
  ADD PRIMARY KEY (`profileid`,`tabid`,`operation`),
  ADD KEY `profile2standardpermissions_profileid_tabid_operation_idx` (`profileid`,`tabid`,`operation`);

--
-- Indexes for table `vtiger_profile2tab`
--
ALTER TABLE `vtiger_profile2tab`
  ADD KEY `profile2tab_profileid_tabid_idx` (`profileid`,`tabid`);

--
-- Indexes for table `vtiger_profile2utility`
--
ALTER TABLE `vtiger_profile2utility`
  ADD PRIMARY KEY (`profileid`,`tabid`,`activityid`),
  ADD KEY `profile2utility_profileid_tabid_activityid_idx` (`profileid`,`tabid`,`activityid`);

--
-- Indexes for table `vtiger_progress`
--
ALTER TABLE `vtiger_progress`
  ADD PRIMARY KEY (`progressid`);

--
-- Indexes for table `vtiger_project`
--
ALTER TABLE `vtiger_project`
  ADD PRIMARY KEY (`projectid`),
  ADD KEY `idx_project_account` (`linktoaccountscontacts`),
  ADD KEY `idx_project_potential` (`potentialid`);

--
-- Indexes for table `vtiger_projectcf`
--
ALTER TABLE `vtiger_projectcf`
  ADD PRIMARY KEY (`projectid`);

--
-- Indexes for table `vtiger_projectmilestone`
--
ALTER TABLE `vtiger_projectmilestone`
  ADD PRIMARY KEY (`projectmilestoneid`);

--
-- Indexes for table `vtiger_projectmilestonecf`
--
ALTER TABLE `vtiger_projectmilestonecf`
  ADD PRIMARY KEY (`projectmilestoneid`);

--
-- Indexes for table `vtiger_projectmilestonetype`
--
ALTER TABLE `vtiger_projectmilestonetype`
  ADD PRIMARY KEY (`projectmilestonetypeid`);

--
-- Indexes for table `vtiger_projectpriority`
--
ALTER TABLE `vtiger_projectpriority`
  ADD PRIMARY KEY (`projectpriorityid`);

--
-- Indexes for table `vtiger_projectstatus`
--
ALTER TABLE `vtiger_projectstatus`
  ADD PRIMARY KEY (`projectstatusid`);

--
-- Indexes for table `vtiger_projecttask`
--
ALTER TABLE `vtiger_projecttask`
  ADD PRIMARY KEY (`projecttaskid`);

--
-- Indexes for table `vtiger_projecttaskcf`
--
ALTER TABLE `vtiger_projecttaskcf`
  ADD PRIMARY KEY (`projecttaskid`);

--
-- Indexes for table `vtiger_projecttaskpriority`
--
ALTER TABLE `vtiger_projecttaskpriority`
  ADD PRIMARY KEY (`projecttaskpriorityid`);

--
-- Indexes for table `vtiger_projecttaskprogress`
--
ALTER TABLE `vtiger_projecttaskprogress`
  ADD PRIMARY KEY (`projecttaskprogressid`);

--
-- Indexes for table `vtiger_projecttaskstatus`
--
ALTER TABLE `vtiger_projecttaskstatus`
  ADD PRIMARY KEY (`projecttaskstatusid`);

--
-- Indexes for table `vtiger_projecttasktype`
--
ALTER TABLE `vtiger_projecttasktype`
  ADD PRIMARY KEY (`projecttasktypeid`);

--
-- Indexes for table `vtiger_projecttask_status_color`
--
ALTER TABLE `vtiger_projecttask_status_color`
  ADD UNIQUE KEY `status` (`status`);

--
-- Indexes for table `vtiger_projecttype`
--
ALTER TABLE `vtiger_projecttype`
  ADD PRIMARY KEY (`projecttypeid`);

--
-- Indexes for table `vtiger_purchaseorder`
--
ALTER TABLE `vtiger_purchaseorder`
  ADD PRIMARY KEY (`purchaseorderid`),
  ADD KEY `purchaseorder_vendorid_idx` (`vendorid`),
  ADD KEY `purchaseorder_quoteid_idx` (`quoteid`),
  ADD KEY `purchaseorder_contactid_idx` (`contactid`),
  ADD KEY `idx_sarv_purchaseorder_account` (`accountid`,`postatus`,`duedate`),
  ADD KEY `idx_sarv_purchaseorder_contact` (`contactid`);

--
-- Indexes for table `vtiger_purchaseordercf`
--
ALTER TABLE `vtiger_purchaseordercf`
  ADD PRIMARY KEY (`purchaseorderid`);

--
-- Indexes for table `vtiger_quotes`
--
ALTER TABLE `vtiger_quotes`
  ADD PRIMARY KEY (`quoteid`),
  ADD KEY `quote_quotestage_idx` (`quotestage`),
  ADD KEY `quotes_potentialid_idx` (`potentialid`),
  ADD KEY `quotes_contactid_idx` (`contactid`),
  ADD KEY `idx_quotes_account` (`accountid`);

--
-- Indexes for table `vtiger_quotesbillads`
--
ALTER TABLE `vtiger_quotesbillads`
  ADD PRIMARY KEY (`quotebilladdressid`);

--
-- Indexes for table `vtiger_quotescf`
--
ALTER TABLE `vtiger_quotescf`
  ADD PRIMARY KEY (`quoteid`);

--
-- Indexes for table `vtiger_quotesshipads`
--
ALTER TABLE `vtiger_quotesshipads`
  ADD PRIMARY KEY (`quoteshipaddressid`);

--
-- Indexes for table `vtiger_quotestage`
--
ALTER TABLE `vtiger_quotestage`
  ADD PRIMARY KEY (`quotestageid`),
  ADD UNIQUE KEY `quotestage_quotestage_idx` (`quotestage`);

--
-- Indexes for table `vtiger_quotestagehistory`
--
ALTER TABLE `vtiger_quotestagehistory`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `quotestagehistory_quoteid_idx` (`quoteid`);

--
-- Indexes for table `vtiger_rating`
--
ALTER TABLE `vtiger_rating`
  ADD PRIMARY KEY (`rating_id`);

--
-- Indexes for table `vtiger_recurringevents`
--
ALTER TABLE `vtiger_recurringevents`
  ADD PRIMARY KEY (`recurringid`),
  ADD KEY `fk_1_vtiger_recurringevents` (`activityid`);

--
-- Indexes for table `vtiger_recurringtype`
--
ALTER TABLE `vtiger_recurringtype`
  ADD PRIMARY KEY (`recurringeventid`),
  ADD UNIQUE KEY `recurringtype_status_idx` (`recurringtype`);

--
-- Indexes for table `vtiger_relatedlists`
--
ALTER TABLE `vtiger_relatedlists`
  ADD PRIMARY KEY (`relation_id`),
  ADD KEY `relatedlists_relation_id_idx` (`relation_id`);

--
-- Indexes for table `vtiger_relcriteria`
--
ALTER TABLE `vtiger_relcriteria`
  ADD PRIMARY KEY (`queryid`,`columnindex`),
  ADD KEY `relcriteria_queryid_idx` (`queryid`);

--
-- Indexes for table `vtiger_relcriteria_grouping`
--
ALTER TABLE `vtiger_relcriteria_grouping`
  ADD PRIMARY KEY (`groupid`,`queryid`);

--
-- Indexes for table `vtiger_reminder_interval`
--
ALTER TABLE `vtiger_reminder_interval`
  ADD PRIMARY KEY (`reminder_intervalid`);

--
-- Indexes for table `vtiger_report`
--
ALTER TABLE `vtiger_report`
  ADD PRIMARY KEY (`reportid`),
  ADD KEY `report_queryid_idx` (`queryid`),
  ADD KEY `report_folderid_idx` (`folderid`);

--
-- Indexes for table `vtiger_reportdatefilter`
--
ALTER TABLE `vtiger_reportdatefilter`
  ADD PRIMARY KEY (`datefilterid`),
  ADD KEY `reportdatefilter_datefilterid_idx` (`datefilterid`);

--
-- Indexes for table `vtiger_reportfolder`
--
ALTER TABLE `vtiger_reportfolder`
  ADD PRIMARY KEY (`folderid`);

--
-- Indexes for table `vtiger_reportgroupbycolumn`
--
ALTER TABLE `vtiger_reportgroupbycolumn`
  ADD KEY `fk_1_vtiger_reportgroupbycolumn` (`reportid`);

--
-- Indexes for table `vtiger_reportmodules`
--
ALTER TABLE `vtiger_reportmodules`
  ADD PRIMARY KEY (`reportmodulesid`);

--
-- Indexes for table `vtiger_reportsortcol`
--
ALTER TABLE `vtiger_reportsortcol`
  ADD PRIMARY KEY (`sortcolid`,`reportid`),
  ADD KEY `fk_1_vtiger_reportsortcol` (`reportid`);

--
-- Indexes for table `vtiger_reportsummary`
--
ALTER TABLE `vtiger_reportsummary`
  ADD PRIMARY KEY (`reportsummaryid`,`summarytype`,`columnname`),
  ADD KEY `reportsummary_reportsummaryid_idx` (`reportsummaryid`);

--
-- Indexes for table `vtiger_reporttype`
--
ALTER TABLE `vtiger_reporttype`
  ADD PRIMARY KEY (`reportid`);

--
-- Indexes for table `vtiger_report_sharegroups`
--
ALTER TABLE `vtiger_report_sharegroups`
  ADD KEY `vtiger_report_sharegroups_ibfk_1` (`reportid`),
  ADD KEY `vtiger_groups_groupid_ibfk_1` (`groupid`);

--
-- Indexes for table `vtiger_report_sharerole`
--
ALTER TABLE `vtiger_report_sharerole`
  ADD KEY `vtiger_report_sharerole_ibfk_1` (`reportid`),
  ADD KEY `vtiger_role_roleid_ibfk_1` (`roleid`);

--
-- Indexes for table `vtiger_report_sharers`
--
ALTER TABLE `vtiger_report_sharers`
  ADD KEY `vtiger_report_sharers_ibfk_1` (`reportid`),
  ADD KEY `vtiger_rolesd_rsid_ibfk_1` (`rsid`);

--
-- Indexes for table `vtiger_report_shareusers`
--
ALTER TABLE `vtiger_report_shareusers`
  ADD KEY `vtiger_report_shareusers_ibfk_1` (`reportid`),
  ADD KEY `vtiger_users_userid_ibfk_1` (`userid`);

--
-- Indexes for table `vtiger_reservation_status`
--
ALTER TABLE `vtiger_reservation_status`
  ADD PRIMARY KEY (`reservation_statusid`);

--
-- Indexes for table `vtiger_response_status`
--
ALTER TABLE `vtiger_response_status`
  ADD PRIMARY KEY (`response_statusid`);

--
-- Indexes for table `vtiger_role`
--
ALTER TABLE `vtiger_role`
  ADD PRIMARY KEY (`roleid`);

--
-- Indexes for table `vtiger_role2picklist`
--
ALTER TABLE `vtiger_role2picklist`
  ADD PRIMARY KEY (`roleid`,`picklistvalueid`,`picklistid`),
  ADD KEY `role2picklist_roleid_picklistid_idx` (`roleid`,`picklistid`,`picklistvalueid`),
  ADD KEY `fk_2_vtiger_role2picklist` (`picklistid`);

--
-- Indexes for table `vtiger_role2profile`
--
ALTER TABLE `vtiger_role2profile`
  ADD PRIMARY KEY (`roleid`,`profileid`),
  ADD KEY `role2profile_roleid_profileid_idx` (`roleid`,`profileid`);

--
-- Indexes for table `vtiger_rollupcomments_settings`
--
ALTER TABLE `vtiger_rollupcomments_settings`
  ADD PRIMARY KEY (`rollupid`);

--
-- Indexes for table `vtiger_rowheight`
--
ALTER TABLE `vtiger_rowheight`
  ADD PRIMARY KEY (`rowheightid`);

--
-- Indexes for table `vtiger_rss`
--
ALTER TABLE `vtiger_rss`
  ADD PRIMARY KEY (`rssid`);

--
-- Indexes for table `vtiger_salesmanactivityrel`
--
ALTER TABLE `vtiger_salesmanactivityrel`
  ADD PRIMARY KEY (`smid`,`activityid`),
  ADD KEY `salesmanactivityrel_activityid_idx` (`activityid`),
  ADD KEY `salesmanactivityrel_smid_idx` (`smid`);

--
-- Indexes for table `vtiger_salesmanattachmentsrel`
--
ALTER TABLE `vtiger_salesmanattachmentsrel`
  ADD PRIMARY KEY (`smid`,`attachmentsid`),
  ADD KEY `salesmanattachmentsrel_smid_idx` (`smid`),
  ADD KEY `salesmanattachmentsrel_attachmentsid_idx` (`attachmentsid`);

--
-- Indexes for table `vtiger_salesmanticketrel`
--
ALTER TABLE `vtiger_salesmanticketrel`
  ADD PRIMARY KEY (`smid`,`id`),
  ADD KEY `salesmanticketrel_smid_idx` (`smid`),
  ADD KEY `salesmanticketrel_id_idx` (`id`);

--
-- Indexes for table `vtiger_salesorder`
--
ALTER TABLE `vtiger_salesorder`
  ADD PRIMARY KEY (`salesorderid`),
  ADD KEY `salesorder_vendorid_idx` (`vendorid`),
  ADD KEY `salesorder_contactid_idx` (`contactid`),
  ADD KEY `idx_salesorder_account` (`accountid`),
  ADD KEY `idx_salesorder_potential` (`potentialid`),
  ADD KEY `idx_salesorder_quote` (`quoteid`);

--
-- Indexes for table `vtiger_salesordercf`
--
ALTER TABLE `vtiger_salesordercf`
  ADD PRIMARY KEY (`salesorderid`);

--
-- Indexes for table `vtiger_sales_channel`
--
ALTER TABLE `vtiger_sales_channel`
  ADD PRIMARY KEY (`sales_channelid`);

--
-- Indexes for table `vtiger_sales_stage`
--
ALTER TABLE `vtiger_sales_stage`
  ADD PRIMARY KEY (`sales_stage_id`);

--
-- Indexes for table `vtiger_salutationtype`
--
ALTER TABLE `vtiger_salutationtype`
  ADD PRIMARY KEY (`salutationid`);

--
-- Indexes for table `vtiger_sample_status`
--
ALTER TABLE `vtiger_sample_status`
  ADD PRIMARY KEY (`sample_statusid`);

--
-- Indexes for table `vtiger_sarvaccessgrants`
--
ALTER TABLE `vtiger_sarvaccessgrants`
  ADD PRIMARY KEY (`sarvaccessgrantsid`),
  ADD UNIQUE KEY `uq_sarvaccessgrants_no` (`grant_no`),
  ADD KEY `idx_sarvgrant_account_group_status` (`accountid`,`groupid`,`grant_status`),
  ADD KEY `idx_sarvgrant_group_effective` (`groupid`,`grant_status`,`valid_from`,`valid_to`,`access_level`);

--
-- Indexes for table `vtiger_sarvaccessgrantscf`
--
ALTER TABLE `vtiger_sarvaccessgrantscf`
  ADD PRIMARY KEY (`sarvaccessgrantsid`);

--
-- Indexes for table `vtiger_sarvbankaccounts`
--
ALTER TABLE `vtiger_sarvbankaccounts`
  ADD PRIMARY KEY (`sarvbankaccountsid`),
  ADD UNIQUE KEY `uq_sarvbankaccounts_no` (`bankaccount_no`),
  ADD UNIQUE KEY `uq_sarvbank_iban_hash` (`iban_hash`),
  ADD KEY `idx_sarvbank_account_status` (`accountid`,`account_status`,`is_primary`);

--
-- Indexes for table `vtiger_sarvbankaccountscf`
--
ALTER TABLE `vtiger_sarvbankaccountscf`
  ADD PRIMARY KEY (`sarvbankaccountsid`);

--
-- Indexes for table `vtiger_sarvbusinesslocations`
--
ALTER TABLE `vtiger_sarvbusinesslocations`
  ADD PRIMARY KEY (`sarvbusinesslocationsid`),
  ADD UNIQUE KEY `uq_sarvbusinesslocations_no` (`location_no`),
  ADD KEY `idx_sarvlocation_account_type_status` (`accountid`,`location_type`,`location_status`),
  ADD KEY `idx_sarvlocation_parent` (`parentlocationid`),
  ADD KEY `idx_sarvlocation_manager` (`managercontactid`),
  ADD KEY `idx_sarvlocation_geo` (`latitude`,`longitude`);

--
-- Indexes for table `vtiger_sarvbusinesslocationscf`
--
ALTER TABLE `vtiger_sarvbusinesslocationscf`
  ADD PRIMARY KEY (`sarvbusinesslocationsid`);

--
-- Indexes for table `vtiger_sarvdeposits`
--
ALTER TABLE `vtiger_sarvdeposits`
  ADD PRIMARY KEY (`sarvdepositsid`),
  ADD UNIQUE KEY `uq_sarvdeposits_no` (`deposit_no`),
  ADD KEY `idx_sarvdeposit_account_status` (`accountid`,`deposit_status`,`expiry_date`),
  ADD KEY `idx_sarvdeposit_payment` (`paymentid`),
  ADD KEY `idx_sarvdeposit_contact` (`contactid`),
  ADD KEY `idx_sarvdeposit_related` (`relatedto`),
  ADD KEY `fk_sarvdeposits_currency` (`currency_id`);

--
-- Indexes for table `vtiger_sarvdepositscf`
--
ALTER TABLE `vtiger_sarvdepositscf`
  ADD PRIMARY KEY (`sarvdepositsid`);

--
-- Indexes for table `vtiger_sarvgifts`
--
ALTER TABLE `vtiger_sarvgifts`
  ADD PRIMARY KEY (`sarvgiftsid`),
  ADD UNIQUE KEY `uq_sarvgifts_no` (`gift_no`),
  ADD KEY `idx_sarvgift_account_status_date` (`accountid`,`gift_status`,`request_date`),
  ADD KEY `idx_sarvgift_contactid` (`contactid`),
  ADD KEY `idx_sarvgift_campaignid` (`campaignid`),
  ADD KEY `idx_sarvgift_productid` (`productid`);

--
-- Indexes for table `vtiger_sarvgiftscf`
--
ALTER TABLE `vtiger_sarvgiftscf`
  ADD PRIMARY KEY (`sarvgiftsid`);

--
-- Indexes for table `vtiger_sarvparticipations`
--
ALTER TABLE `vtiger_sarvparticipations`
  ADD PRIMARY KEY (`sarvparticipationsid`),
  ADD UNIQUE KEY `uq_sarvparticipations_no` (`participation_no`),
  ADD KEY `idx_sarvparticipations_account_status` (`accountid`,`participation_status`,`start_date`),
  ADD KEY `idx_sarvparticipations_contact` (`contactid`);

--
-- Indexes for table `vtiger_sarvparticipationscf`
--
ALTER TABLE `vtiger_sarvparticipationscf`
  ADD PRIMARY KEY (`sarvparticipationsid`);

--
-- Indexes for table `vtiger_sarvpayments`
--
ALTER TABLE `vtiger_sarvpayments`
  ADD PRIMARY KEY (`sarvpaymentsid`),
  ADD UNIQUE KEY `uq_sarvpayments_no` (`payment_no`),
  ADD UNIQUE KEY `idx_sarvpayments_idempotency` (`idempotency_key`),
  ADD UNIQUE KEY `idx_sarvpayments_legacy` (`legacy_source`,`legacy_id`),
  ADD KEY `idx_sarvpayments_account_status_date` (`accountid`,`payment_status`,`payment_date`);

--
-- Indexes for table `vtiger_sarvpaymentscf`
--
ALTER TABLE `vtiger_sarvpaymentscf`
  ADD PRIMARY KEY (`sarvpaymentsid`);

--
-- Indexes for table `vtiger_sarvproductsamples`
--
ALTER TABLE `vtiger_sarvproductsamples`
  ADD PRIMARY KEY (`sarvproductsamplesid`),
  ADD UNIQUE KEY `uq_sarvproductsamples_no` (`sample_no`),
  ADD KEY `idx_sarvsample_account_status_date` (`accountid`,`sample_status`,`request_date`),
  ADD KEY `idx_sarvsample_contactid` (`contactid`),
  ADD KEY `idx_sarvsample_potentialid` (`potentialid`),
  ADD KEY `idx_sarvsample_campaignid` (`campaignid`),
  ADD KEY `idx_sarvsample_productid` (`productid`);

--
-- Indexes for table `vtiger_sarvproductsamplescf`
--
ALTER TABLE `vtiger_sarvproductsamplescf`
  ADD PRIMARY KEY (`sarvproductsamplesid`);

--
-- Indexes for table `vtiger_sarvsalescontracts`
--
ALTER TABLE `vtiger_sarvsalescontracts`
  ADD PRIMARY KEY (`sarvsalescontractsid`),
  ADD UNIQUE KEY `uq_sarvsalescontracts_no` (`contract_no`),
  ADD KEY `idx_sarvsalescontract_account_status` (`accountid`,`contract_status`,`end_date`),
  ADD KEY `idx_sarvsalescontract_contactid` (`contactid`),
  ADD KEY `idx_sarvsalescontract_potentialid` (`potentialid`),
  ADD KEY `idx_sarvsalescontract_quoteid` (`quoteid`),
  ADD KEY `idx_sarvsalescontract_salesorderid` (`salesorderid`);

--
-- Indexes for table `vtiger_sarvsalescontractscf`
--
ALTER TABLE `vtiger_sarvsalescontractscf`
  ADD PRIMARY KEY (`sarvsalescontractsid`);

--
-- Indexes for table `vtiger_sarvsurveyresponses`
--
ALTER TABLE `vtiger_sarvsurveyresponses`
  ADD PRIMARY KEY (`sarvsurveyresponsesid`),
  ADD UNIQUE KEY `uq_sarvsurveyresponses_no` (`response_no`),
  ADD KEY `idx_sarvsurvey_account_status` (`accountid`,`response_status`,`submitted_at`),
  ADD KEY `idx_sarvsurvey_contact` (`contactid`);

--
-- Indexes for table `vtiger_sarvsurveyresponsescf`
--
ALTER TABLE `vtiger_sarvsurveyresponsescf`
  ADD PRIMARY KEY (`sarvsurveyresponsesid`);

--
-- Indexes for table `vtiger_sarvtargetlists`
--
ALTER TABLE `vtiger_sarvtargetlists`
  ADD PRIMARY KEY (`sarvtargetlistsid`),
  ADD UNIQUE KEY `uq_sarvtargetlists_no` (`targetlist_no`),
  ADD KEY `idx_sarvtargetlist_account_status` (`accountid`,`list_status`,`valid_to`);

--
-- Indexes for table `vtiger_sarvtargetlistscf`
--
ALTER TABLE `vtiger_sarvtargetlistscf`
  ADD PRIMARY KEY (`sarvtargetlistsid`);

--
-- Indexes for table `vtiger_sarvtimereservations`
--
ALTER TABLE `vtiger_sarvtimereservations`
  ADD PRIMARY KEY (`sarvtimereservationsid`),
  ADD UNIQUE KEY `uq_sarvtimereservations_no` (`reservation_no`),
  ADD UNIQUE KEY `uq_sarvreservation_confirmation` (`confirmation_code`),
  ADD KEY `idx_sarvreservation_account_status_start` (`accountid`,`reservation_status`,`start_datetime`),
  ADD KEY `idx_sarvreservation_location_status_time` (`locationid`,`reservation_status`,`start_datetime`,`end_datetime`),
  ADD KEY `idx_sarvreservation_contact_start` (`contactid`,`start_datetime`),
  ADD KEY `idx_sarvreservation_service_start` (`serviceid`,`start_datetime`);

--
-- Indexes for table `vtiger_sarvtimereservationscf`
--
ALTER TABLE `vtiger_sarvtimereservationscf`
  ADD PRIMARY KEY (`sarvtimereservationsid`);

--
-- Indexes for table `vtiger_sarv_delivery_format`
--
ALTER TABLE `vtiger_sarv_delivery_format`
  ADD PRIMARY KEY (`sarv_delivery_formatid`);

--
-- Indexes for table `vtiger_sarv_otp`
--
ALTER TABLE `vtiger_sarv_otp`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_mobile` (`mobile`),
  ADD KEY `idx_expires` (`expires_at`),
  ADD KEY `idx_purpose_user` (`purpose`,`userid`,`created_at`),
  ADD KEY `idx_context_hash` (`context_hash`);

--
-- Indexes for table `vtiger_sarv_payment_method`
--
ALTER TABLE `vtiger_sarv_payment_method`
  ADD PRIMARY KEY (`sarv_payment_methodid`);

--
-- Indexes for table `vtiger_sarv_payment_status`
--
ALTER TABLE `vtiger_sarv_payment_status`
  ADD PRIMARY KEY (`sarv_payment_statusid`);

--
-- Indexes for table `vtiger_sarv_po_category`
--
ALTER TABLE `vtiger_sarv_po_category`
  ADD PRIMARY KEY (`sarv_po_categoryid`);

--
-- Indexes for table `vtiger_sarv_print_template`
--
ALTER TABLE `vtiger_sarv_print_template`
  ADD PRIMARY KEY (`sarv_print_templateid`);

--
-- Indexes for table `vtiger_sarv_shipping_method`
--
ALTER TABLE `vtiger_sarv_shipping_method`
  ADD PRIMARY KEY (`sarv_shipping_methodid`);

--
-- Indexes for table `vtiger_sarv_sms_reminder`
--
ALTER TABLE `vtiger_sarv_sms_reminder`
  ADD PRIMARY KEY (`sarv_sms_reminderid`);

--
-- Indexes for table `vtiger_scheduled_reports`
--
ALTER TABLE `vtiger_scheduled_reports`
  ADD PRIMARY KEY (`reportid`);

--
-- Indexes for table `vtiger_seactivityrel`
--
ALTER TABLE `vtiger_seactivityrel`
  ADD PRIMARY KEY (`crmid`,`activityid`),
  ADD KEY `seactivityrel_activityid_idx` (`activityid`),
  ADD KEY `seactivityrel_crmid_idx` (`crmid`);

--
-- Indexes for table `vtiger_seattachmentsrel`
--
ALTER TABLE `vtiger_seattachmentsrel`
  ADD PRIMARY KEY (`crmid`,`attachmentsid`),
  ADD KEY `seattachmentsrel_attachmentsid_idx` (`attachmentsid`),
  ADD KEY `seattachmentsrel_crmid_idx` (`crmid`),
  ADD KEY `seattachmentsrel_attachmentsid_crmid_idx` (`attachmentsid`,`crmid`);

--
-- Indexes for table `vtiger_selectcolumn`
--
ALTER TABLE `vtiger_selectcolumn`
  ADD PRIMARY KEY (`queryid`,`columnindex`),
  ADD KEY `selectcolumn_queryid_idx` (`queryid`);

--
-- Indexes for table `vtiger_selectquery`
--
ALTER TABLE `vtiger_selectquery`
  ADD PRIMARY KEY (`queryid`),
  ADD KEY `selectquery_queryid_idx` (`queryid`);

--
-- Indexes for table `vtiger_senotesrel`
--
ALTER TABLE `vtiger_senotesrel`
  ADD PRIMARY KEY (`crmid`,`notesid`),
  ADD KEY `senotesrel_notesid_idx` (`notesid`),
  ADD KEY `senotesrel_crmid_idx` (`crmid`);

--
-- Indexes for table `vtiger_seproductsrel`
--
ALTER TABLE `vtiger_seproductsrel`
  ADD PRIMARY KEY (`crmid`,`productid`),
  ADD KEY `seproductsrel_productid_idx` (`productid`),
  ADD KEY `seproductrel_crmid_idx` (`crmid`);

--
-- Indexes for table `vtiger_service`
--
ALTER TABLE `vtiger_service`
  ADD PRIMARY KEY (`serviceid`);

--
-- Indexes for table `vtiger_servicecategory`
--
ALTER TABLE `vtiger_servicecategory`
  ADD PRIMARY KEY (`servicecategoryid`);

--
-- Indexes for table `vtiger_servicecf`
--
ALTER TABLE `vtiger_servicecf`
  ADD PRIMARY KEY (`serviceid`);

--
-- Indexes for table `vtiger_servicecontracts`
--
ALTER TABLE `vtiger_servicecontracts`
  ADD KEY `fk_crmid_vtiger_servicecontracts` (`servicecontractsid`),
  ADD KEY `idx_servicecontracts_account` (`sc_related_to`);

--
-- Indexes for table `vtiger_servicecontractscf`
--
ALTER TABLE `vtiger_servicecontractscf`
  ADD PRIMARY KEY (`servicecontractsid`);

--
-- Indexes for table `vtiger_service_usageunit`
--
ALTER TABLE `vtiger_service_usageunit`
  ADD PRIMARY KEY (`service_usageunitid`);

--
-- Indexes for table `vtiger_seticketsrel`
--
ALTER TABLE `vtiger_seticketsrel`
  ADD PRIMARY KEY (`crmid`,`ticketid`),
  ADD KEY `seticketsrel_crmid_idx` (`crmid`),
  ADD KEY `seticketsrel_ticketid_idx` (`ticketid`);

--
-- Indexes for table `vtiger_settings_blocks`
--
ALTER TABLE `vtiger_settings_blocks`
  ADD PRIMARY KEY (`blockid`);

--
-- Indexes for table `vtiger_settings_field`
--
ALTER TABLE `vtiger_settings_field`
  ADD PRIMARY KEY (`fieldid`),
  ADD KEY `fk_1_vtiger_settings_field` (`blockid`);

--
-- Indexes for table `vtiger_sharedcalendar`
--
ALTER TABLE `vtiger_sharedcalendar`
  ADD PRIMARY KEY (`userid`,`sharedid`);

--
-- Indexes for table `vtiger_shippingtaxinfo`
--
ALTER TABLE `vtiger_shippingtaxinfo`
  ADD PRIMARY KEY (`taxid`),
  ADD KEY `shippingtaxinfo_taxname_idx` (`taxname`);

--
-- Indexes for table `vtiger_shorturls`
--
ALTER TABLE `vtiger_shorturls`
  ADD PRIMARY KEY (`id`),
  ADD KEY `uid` (`uid`);

--
-- Indexes for table `vtiger_smsnotifier`
--
ALTER TABLE `vtiger_smsnotifier`
  ADD PRIMARY KEY (`smsnotifierid`);

--
-- Indexes for table `vtiger_smsnotifiercf`
--
ALTER TABLE `vtiger_smsnotifiercf`
  ADD PRIMARY KEY (`smsnotifierid`);

--
-- Indexes for table `vtiger_smsnotifier_servers`
--
ALTER TABLE `vtiger_smsnotifier_servers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_smsnotifier_status`
--
ALTER TABLE `vtiger_smsnotifier_status`
  ADD PRIMARY KEY (`statusid`);

--
-- Indexes for table `vtiger_sms_reminder`
--
ALTER TABLE `vtiger_sms_reminder`
  ADD PRIMARY KEY (`sms_reminderid`);

--
-- Indexes for table `vtiger_sms_remind_invitees`
--
ALTER TABLE `vtiger_sms_remind_invitees`
  ADD PRIMARY KEY (`sms_remind_inviteesid`);

--
-- Indexes for table `vtiger_sms_remind_user`
--
ALTER TABLE `vtiger_sms_remind_user`
  ADD PRIMARY KEY (`sms_remind_userid`);

--
-- Indexes for table `vtiger_sobillads`
--
ALTER TABLE `vtiger_sobillads`
  ADD PRIMARY KEY (`sobilladdressid`);

--
-- Indexes for table `vtiger_soshipads`
--
ALTER TABLE `vtiger_soshipads`
  ADD PRIMARY KEY (`soshipaddressid`);

--
-- Indexes for table `vtiger_sostatus`
--
ALTER TABLE `vtiger_sostatus`
  ADD PRIMARY KEY (`sostatusid`),
  ADD UNIQUE KEY `sostatus_sostatus_idx` (`sostatus`);

--
-- Indexes for table `vtiger_sostatushistory`
--
ALTER TABLE `vtiger_sostatushistory`
  ADD PRIMARY KEY (`historyid`),
  ADD KEY `sostatushistory_salesorderid_idx` (`salesorderid`);

--
-- Indexes for table `vtiger_start_hour`
--
ALTER TABLE `vtiger_start_hour`
  ADD PRIMARY KEY (`start_hourid`);

--
-- Indexes for table `vtiger_status`
--
ALTER TABLE `vtiger_status`
  ADD PRIMARY KEY (`statusid`);

--
-- Indexes for table `vtiger_systems`
--
ALTER TABLE `vtiger_systems`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_tab`
--
ALTER TABLE `vtiger_tab`
  ADD PRIMARY KEY (`tabid`),
  ADD UNIQUE KEY `tab_name_idx` (`name`),
  ADD KEY `tab_modifiedby_idx` (`modifiedby`),
  ADD KEY `tab_tabid_idx` (`tabid`);

--
-- Indexes for table `vtiger_tab_info`
--
ALTER TABLE `vtiger_tab_info`
  ADD KEY `fk_1_vtiger_tab_info` (`tabid`);

--
-- Indexes for table `vtiger_taskpriority`
--
ALTER TABLE `vtiger_taskpriority`
  ADD PRIMARY KEY (`taskpriorityid`);

--
-- Indexes for table `vtiger_taskstatus`
--
ALTER TABLE `vtiger_taskstatus`
  ADD PRIMARY KEY (`taskstatusid`);

--
-- Indexes for table `vtiger_taxclass`
--
ALTER TABLE `vtiger_taxclass`
  ADD PRIMARY KEY (`taxclassid`),
  ADD UNIQUE KEY `taxclass_carrier_idx` (`taxclass`);

--
-- Indexes for table `vtiger_taxregions`
--
ALTER TABLE `vtiger_taxregions`
  ADD PRIMARY KEY (`regionid`);

--
-- Indexes for table `vtiger_ticketcategories`
--
ALTER TABLE `vtiger_ticketcategories`
  ADD PRIMARY KEY (`ticketcategories_id`);

--
-- Indexes for table `vtiger_ticketcf`
--
ALTER TABLE `vtiger_ticketcf`
  ADD PRIMARY KEY (`ticketid`);

--
-- Indexes for table `vtiger_ticketcomments`
--
ALTER TABLE `vtiger_ticketcomments`
  ADD PRIMARY KEY (`commentid`),
  ADD KEY `ticketcomments_ticketid_idx` (`ticketid`);

--
-- Indexes for table `vtiger_ticketpriorities`
--
ALTER TABLE `vtiger_ticketpriorities`
  ADD PRIMARY KEY (`ticketpriorities_id`);

--
-- Indexes for table `vtiger_ticketseverities`
--
ALTER TABLE `vtiger_ticketseverities`
  ADD PRIMARY KEY (`ticketseverities_id`);

--
-- Indexes for table `vtiger_ticketstatus`
--
ALTER TABLE `vtiger_ticketstatus`
  ADD PRIMARY KEY (`ticketstatus_id`);

--
-- Indexes for table `vtiger_time_zone`
--
ALTER TABLE `vtiger_time_zone`
  ADD PRIMARY KEY (`time_zoneid`);

--
-- Indexes for table `vtiger_tmp_read_group_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_group_rel_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`relatedtabid`,`sharedgroupid`),
  ADD KEY `tmp_read_group_rel_sharing_per_userid_sharedgroupid_tabid` (`userid`,`sharedgroupid`,`tabid`);

--
-- Indexes for table `vtiger_tmp_read_group_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_group_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`sharedgroupid`),
  ADD KEY `tmp_read_group_sharing_per_userid_sharedgroupid_idx` (`userid`,`sharedgroupid`);

--
-- Indexes for table `vtiger_tmp_read_user_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_user_rel_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`relatedtabid`,`shareduserid`),
  ADD KEY `tmp_read_user_rel_sharing_per_userid_shared_reltabid_idx` (`userid`,`shareduserid`,`relatedtabid`);

--
-- Indexes for table `vtiger_tmp_read_user_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_user_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`shareduserid`),
  ADD KEY `tmp_read_user_sharing_per_userid_shareduserid_idx` (`userid`,`shareduserid`);

--
-- Indexes for table `vtiger_tmp_write_group_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_group_rel_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`relatedtabid`,`sharedgroupid`),
  ADD KEY `tmp_write_group_rel_sharing_per_userid_sharedgroupid_tabid_idx` (`userid`,`sharedgroupid`,`tabid`);

--
-- Indexes for table `vtiger_tmp_write_group_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_group_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`sharedgroupid`),
  ADD KEY `tmp_write_group_sharing_per_UK1` (`userid`,`sharedgroupid`);

--
-- Indexes for table `vtiger_tmp_write_user_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_user_rel_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`relatedtabid`,`shareduserid`),
  ADD KEY `tmp_write_user_rel_sharing_per_userid_sharduserid_tabid_idx` (`userid`,`shareduserid`,`tabid`);

--
-- Indexes for table `vtiger_tmp_write_user_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_user_sharing_per`
  ADD PRIMARY KEY (`userid`,`tabid`,`shareduserid`),
  ADD KEY `tmp_write_user_sharing_per_userid_shareduserid_idx` (`userid`,`shareduserid`);

--
-- Indexes for table `vtiger_tracker`
--
ALTER TABLE `vtiger_tracker`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_tracking_unit`
--
ALTER TABLE `vtiger_tracking_unit`
  ADD PRIMARY KEY (`tracking_unitid`);

--
-- Indexes for table `vtiger_troubletickets`
--
ALTER TABLE `vtiger_troubletickets`
  ADD PRIMARY KEY (`ticketid`),
  ADD KEY `troubletickets_ticketid_idx` (`ticketid`),
  ADD KEY `troubletickets_status_idx` (`status`),
  ADD KEY `idx_troubletickets_account` (`parent_id`),
  ADD KEY `idx_ticket_contact` (`contact_id`),
  ADD KEY `idx_sarv_ticket_parent_status` (`parent_id`,`status`),
  ADD KEY `idx_sarv_ticket_contact` (`contact_id`);

--
-- Indexes for table `vtiger_usageunit`
--
ALTER TABLE `vtiger_usageunit`
  ADD PRIMARY KEY (`usageunitid`),
  ADD UNIQUE KEY `usageunit_usageunit_idx` (`usageunit`);

--
-- Indexes for table `vtiger_user2mergefields`
--
ALTER TABLE `vtiger_user2mergefields`
  ADD KEY `userid_tabid_idx` (`userid`,`tabid`);

--
-- Indexes for table `vtiger_user2role`
--
ALTER TABLE `vtiger_user2role`
  ADD PRIMARY KEY (`userid`),
  ADD KEY `user2role_roleid_idx` (`roleid`);

--
-- Indexes for table `vtiger_users`
--
ALTER TABLE `vtiger_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_user_name_idx` (`user_name`),
  ADD KEY `user_user_password_idx` (`user_password`);

--
-- Indexes for table `vtiger_users2group`
--
ALTER TABLE `vtiger_users2group`
  ADD PRIMARY KEY (`groupid`,`userid`),
  ADD KEY `users2group_groupname_uerid_idx` (`groupid`,`userid`),
  ADD KEY `fk_2_vtiger_users2group` (`userid`);

--
-- Indexes for table `vtiger_users_last_import`
--
ALTER TABLE `vtiger_users_last_import`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_user_id` (`assigned_user_id`);

--
-- Indexes for table `vtiger_user_module_preferences`
--
ALTER TABLE `vtiger_user_module_preferences`
  ADD PRIMARY KEY (`userid`,`tabid`),
  ADD KEY `fk_2_vtiger_user_module_preferences` (`tabid`);

--
-- Indexes for table `vtiger_vendor`
--
ALTER TABLE `vtiger_vendor`
  ADD PRIMARY KEY (`vendorid`);

--
-- Indexes for table `vtiger_vendorcf`
--
ALTER TABLE `vtiger_vendorcf`
  ADD PRIMARY KEY (`vendorid`);

--
-- Indexes for table `vtiger_vendorcontactrel`
--
ALTER TABLE `vtiger_vendorcontactrel`
  ADD PRIMARY KEY (`vendorid`,`contactid`),
  ADD KEY `vendorcontactrel_vendorid_idx` (`vendorid`),
  ADD KEY `vendorcontactrel_contact_idx` (`contactid`);

--
-- Indexes for table `vtiger_version`
--
ALTER TABLE `vtiger_version`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_visibility`
--
ALTER TABLE `vtiger_visibility`
  ADD PRIMARY KEY (`visibilityid`),
  ADD UNIQUE KEY `visibility_visibility_idx` (`visibility`);

--
-- Indexes for table `vtiger_webforms`
--
ALTER TABLE `vtiger_webforms`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `webformname` (`name`),
  ADD UNIQUE KEY `publicid` (`id`),
  ADD KEY `webforms_webforms_id_idx` (`id`);

--
-- Indexes for table `vtiger_webforms_field`
--
ALTER TABLE `vtiger_webforms_field`
  ADD PRIMARY KEY (`id`),
  ADD KEY `webforms_webforms_field_idx` (`id`),
  ADD KEY `fk_1_vtiger_webforms_field` (`webformid`),
  ADD KEY `fk_2_vtiger_webforms_field` (`fieldname`),
  ADD KEY `fk_4_vtiger_webforms_field` (`fieldid`);

--
-- Indexes for table `vtiger_webform_file_fields`
--
ALTER TABLE `vtiger_webform_file_fields`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_vtiger_webforms` (`webformid`);

--
-- Indexes for table `vtiger_wordtemplates`
--
ALTER TABLE `vtiger_wordtemplates`
  ADD PRIMARY KEY (`templateid`);

--
-- Indexes for table `vtiger_wsapp`
--
ALTER TABLE `vtiger_wsapp`
  ADD PRIMARY KEY (`appid`);

--
-- Indexes for table `vtiger_wsapp_logs_basic`
--
ALTER TABLE `vtiger_wsapp_logs_basic`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_wsapp_logs_details`
--
ALTER TABLE `vtiger_wsapp_logs_details`
  ADD KEY `vtiger_wsapp_logs_basic_ibfk_1` (`id`);

--
-- Indexes for table `vtiger_wsapp_recordmapping`
--
ALTER TABLE `vtiger_wsapp_recordmapping`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_wsapp_sync_state`
--
ALTER TABLE `vtiger_wsapp_sync_state`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_ws_entity`
--
ALTER TABLE `vtiger_ws_entity`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_ws_entity_fieldtype`
--
ALTER TABLE `vtiger_ws_entity_fieldtype`
  ADD PRIMARY KEY (`fieldtypeid`),
  ADD UNIQUE KEY `vtiger_idx_1_tablename_fieldname` (`table_name`,`field_name`);

--
-- Indexes for table `vtiger_ws_entity_name`
--
ALTER TABLE `vtiger_ws_entity_name`
  ADD PRIMARY KEY (`entity_id`);

--
-- Indexes for table `vtiger_ws_entity_referencetype`
--
ALTER TABLE `vtiger_ws_entity_referencetype`
  ADD PRIMARY KEY (`fieldtypeid`,`type`);

--
-- Indexes for table `vtiger_ws_entity_tables`
--
ALTER TABLE `vtiger_ws_entity_tables`
  ADD PRIMARY KEY (`webservice_entity_id`,`table_name`);

--
-- Indexes for table `vtiger_ws_fieldinfo`
--
ALTER TABLE `vtiger_ws_fieldinfo`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vtiger_ws_fieldtype`
--
ALTER TABLE `vtiger_ws_fieldtype`
  ADD PRIMARY KEY (`fieldtypeid`),
  ADD UNIQUE KEY `uitype_idx` (`uitype`);

--
-- Indexes for table `vtiger_ws_operation`
--
ALTER TABLE `vtiger_ws_operation`
  ADD PRIMARY KEY (`operationid`);

--
-- Indexes for table `vtiger_ws_operation_parameters`
--
ALTER TABLE `vtiger_ws_operation_parameters`
  ADD PRIMARY KEY (`operationid`,`name`);

--
-- Indexes for table `vtiger_ws_referencetype`
--
ALTER TABLE `vtiger_ws_referencetype`
  ADD PRIMARY KEY (`fieldtypeid`,`type`);

--
-- Indexes for table `vtiger_ws_userauthtoken`
--
ALTER TABLE `vtiger_ws_userauthtoken`
  ADD PRIMARY KEY (`userid`,`expiretime`),
  ADD UNIQUE KEY `userid_idx` (`userid`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `com_vtiger_workflows`
--
ALTER TABLE `com_vtiger_workflows`
  MODIFY `workflow_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `com_vtiger_workflowtasks`
--
ALTER TABLE `com_vtiger_workflowtasks`
  MODIFY `task_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT for table `com_vtiger_workflowtemplates`
--
ALTER TABLE `com_vtiger_workflowtemplates`
  MODIFY `template_id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_files`
--
ALTER TABLE `gooyaacc_cloud_files`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_folders`
--
ALTER TABLE `gooyaacc_cloud_folders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=285;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_links`
--
ALTER TABLE `gooyaacc_cloud_links`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_log`
--
ALTER TABLE `gooyaacc_cloud_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1213;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_shares`
--
ALTER TABLE `gooyaacc_cloud_shares`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109;

--
-- AUTO_INCREMENT for table `gooyaacc_cloud_versions`
--
ALTER TABLE `gooyaacc_cloud_versions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;

--
-- AUTO_INCREMENT for table `gooyaacc_competitors`
--
ALTER TABLE `gooyaacc_competitors`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_audit_logs`
--
ALTER TABLE `gooyaacc_kpi_audit_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_ceo_priorities`
--
ALTER TABLE `gooyaacc_kpi_ceo_priorities`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_definitions`
--
ALTER TABLE `gooyaacc_kpi_definitions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_evaluations_main`
--
ALTER TABLE `gooyaacc_kpi_evaluations_main`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=188;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_evaluation_scores`
--
ALTER TABLE `gooyaacc_kpi_evaluation_scores`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3431;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_evaluator_weights`
--
ALTER TABLE `gooyaacc_kpi_evaluator_weights`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_factor_weights`
--
ALTER TABLE `gooyaacc_kpi_factor_weights`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_license`
--
ALTER TABLE `gooyaacc_kpi_license`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_license_logs`
--
ALTER TABLE `gooyaacc_kpi_license_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_saved_filters`
--
ALTER TABLE `gooyaacc_kpi_saved_filters`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_supervisor_notes`
--
ALTER TABLE `gooyaacc_kpi_supervisor_notes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_target_evaluators`
--
ALTER TABLE `gooyaacc_kpi_target_evaluators`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_teams`
--
ALTER TABLE `gooyaacc_kpi_teams`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;

--
-- AUTO_INCREMENT for table `gooyaacc_kpi_team_members`
--
ALTER TABLE `gooyaacc_kpi_team_members`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84;

--
-- AUTO_INCREMENT for table `gooyaacc_notes`
--
ALTER TABLE `gooyaacc_notes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `gooyaacc_note_attachments`
--
ALTER TABLE `gooyaacc_note_attachments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooyaacc_pay`
--
ALTER TABLE `gooyaacc_pay`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `gooyaacc_payments`
--
ALTER TABLE `gooyaacc_payments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gooyaacc_pay_alloc`
--
ALTER TABLE `gooyaacc_pay_alloc`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `gooyaacc_pdf_templates`
--
ALTER TABLE `gooyaacc_pdf_templates`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gooya_account_email`
--
ALTER TABLE `gooya_account_email`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `gooya_account_phone`
--
ALTER TABLE `gooya_account_phone`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;

--
-- AUTO_INCREMENT for table `gooya_account_timeline`
--
ALTER TABLE `gooya_account_timeline`
  MODIFY `timeline_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=418;

--
-- AUTO_INCREMENT for table `gooya_contact_account_rel`
--
ALTER TABLE `gooya_contact_account_rel`
  MODIFY `relation_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=98;

--
-- AUTO_INCREMENT for table `gooya_contact_email`
--
ALTER TABLE `gooya_contact_email`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;

--
-- AUTO_INCREMENT for table `gooya_contact_phone`
--
ALTER TABLE `gooya_contact_phone`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;

--
-- AUTO_INCREMENT for table `gooya_lead_email`
--
ALTER TABLE `gooya_lead_email`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=153;

--
-- AUTO_INCREMENT for table `gooya_lead_phone`
--
ALTER TABLE `gooya_lead_phone`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=196;

--
-- AUTO_INCREMENT for table `gouya_topbar_favorites`
--
ALTER TABLE `gouya_topbar_favorites`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `goya_dashboard_widgets`
--
ALTER TABLE `goya_dashboard_widgets`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `goya_onboarding`
--
ALTER TABLE `goya_onboarding`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `sarv_field_acl_audit`
--
ALTER TABLE `sarv_field_acl_audit`
  MODIFY `audit_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `sarv_field_acl_rules`
--
ALTER TABLE `sarv_field_acl_rules`
  MODIFY `rule_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `sarv_geographic_regions`
--
ALTER TABLE `sarv_geographic_regions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=190;

--
-- AUTO_INCREMENT for table `sarv_module_visibility_audit`
--
ALTER TABLE `sarv_module_visibility_audit`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `sarv_password_policy_audit`
--
ALTER TABLE `sarv_password_policy_audit`
  MODIFY `audit_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `sarv_payment_allocation_history`
--
ALTER TABLE `sarv_payment_allocation_history`
  MODIFY `historyid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `sarv_role_audit`
--
ALTER TABLE `sarv_role_audit`
  MODIFY `audit_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76;

--
-- AUTO_INCREMENT for table `sarv_security_group_audit`
--
ALTER TABLE `sarv_security_group_audit`
  MODIFY `audit_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;

--
-- AUTO_INCREMENT for table `sarv_stock_movement_ledger`
--
ALTER TABLE `sarv_stock_movement_ledger`
  MODIFY `movement_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `sarv_subpanel_visibility_audit`
--
ALTER TABLE `sarv_subpanel_visibility_audit`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `sarv_team_audit`
--
ALTER TABLE `sarv_team_audit`
  MODIFY `audit_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `sarv_user_emails`
--
ALTER TABLE `sarv_user_emails`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `sarv_user_phones`
--
ALTER TABLE `sarv_user_phones`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;

--
-- AUTO_INCREMENT for table `sarv_user_profile_audit`
--
ALTER TABLE `sarv_user_profile_audit`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `vtiger_access_level`
--
ALTER TABLE `vtiger_access_level`
  MODIFY `access_levelid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_accountrating`
--
ALTER TABLE `vtiger_accountrating`
  MODIFY `accountratingid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_accounttype`
--
ALTER TABLE `vtiger_accounttype`
  MODIFY `accounttypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `vtiger_account_status`
--
ALTER TABLE `vtiger_account_status`
  MODIFY `account_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_account_type`
--
ALTER TABLE `vtiger_account_type`
  MODIFY `account_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_activitytype`
--
ALTER TABLE `vtiger_activitytype`
  MODIFY `activitytypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_activity_reminder_popup`
--
ALTER TABLE `vtiger_activity_reminder_popup`
  MODIFY `reminderid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `vtiger_activity_view`
--
ALTER TABLE `vtiger_activity_view`
  MODIFY `activity_viewid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_assetstatus`
--
ALTER TABLE `vtiger_assetstatus`
  MODIFY `assetstatusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_attachmentsfolder`
--
ALTER TABLE `vtiger_attachmentsfolder`
  MODIFY `folderid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_calendarsharedtype`
--
ALTER TABLE `vtiger_calendarsharedtype`
  MODIFY `calendarsharedtypeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_callduration`
--
ALTER TABLE `vtiger_callduration`
  MODIFY `calldurationid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_call_direction`
--
ALTER TABLE `vtiger_call_direction`
  MODIFY `call_directionid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_campaignstatus`
--
ALTER TABLE `vtiger_campaignstatus`
  MODIFY `campaignstatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_campaigntype`
--
ALTER TABLE `vtiger_campaigntype`
  MODIFY `campaigntypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `vtiger_carrier`
--
ALTER TABLE `vtiger_carrier`
  MODIFY `carrierid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_cf_credit_source`
--
ALTER TABLE `vtiger_cf_credit_source`
  MODIFY `cf_credit_sourceid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_cf_credit_status`
--
ALTER TABLE `vtiger_cf_credit_status`
  MODIFY `cf_credit_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_cf_credit_type`
--
ALTER TABLE `vtiger_cf_credit_type`
  MODIFY `cf_credit_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_cf_forecast_category`
--
ALTER TABLE `vtiger_cf_forecast_category`
  MODIFY `cf_forecast_categoryid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_cf_grouping1`
--
ALTER TABLE `vtiger_cf_grouping1`
  MODIFY `cf_grouping1id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_cf_grouping2`
--
ALTER TABLE `vtiger_cf_grouping2`
  MODIFY `cf_grouping2id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_cf_invoice_cycles`
--
ALTER TABLE `vtiger_cf_invoice_cycles`
  MODIFY `cf_invoice_cyclesid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_cf_invoice_kind`
--
ALTER TABLE `vtiger_cf_invoice_kind`
  MODIFY `cf_invoice_kindid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_cf_lead_party_type`
--
ALTER TABLE `vtiger_cf_lead_party_type`
  MODIFY `cf_lead_party_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_cf_loss_reason`
--
ALTER TABLE `vtiger_cf_loss_reason`
  MODIFY `cf_loss_reasonid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_cf_opportunity_currency`
--
ALTER TABLE `vtiger_cf_opportunity_currency`
  MODIFY `cf_opportunity_currencyid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_cf_opportunity_priority`
--
ALTER TABLE `vtiger_cf_opportunity_priority`
  MODIFY `cf_opportunity_priorityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_cf_party_type`
--
ALTER TABLE `vtiger_cf_party_type`
  MODIFY `cf_party_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_cf_sales_process`
--
ALTER TABLE `vtiger_cf_sales_process`
  MODIFY `cf_sales_processid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_channel`
--
ALTER TABLE `vtiger_channel`
  MODIFY `channelid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `vtiger_communications_audit`
--
ALTER TABLE `vtiger_communications_audit`
  MODIFY `auditid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_contract_priority`
--
ALTER TABLE `vtiger_contract_priority`
  MODIFY `contract_priorityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_contract_status`
--
ALTER TABLE `vtiger_contract_status`
  MODIFY `contract_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `vtiger_contract_type`
--
ALTER TABLE `vtiger_contract_type`
  MODIFY `contract_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_convertleadmapping`
--
ALTER TABLE `vtiger_convertleadmapping`
  MODIFY `cfmid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;

--
-- AUTO_INCREMENT for table `vtiger_convertpotentialmapping`
--
ALTER TABLE `vtiger_convertpotentialmapping`
  MODIFY `cfmid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_cron_task`
--
ALTER TABLE `vtiger_cron_task`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `vtiger_currencies`
--
ALTER TABLE `vtiger_currencies`
  MODIFY `currencyid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=139;

--
-- AUTO_INCREMENT for table `vtiger_currency`
--
ALTER TABLE `vtiger_currency`
  MODIFY `currencyid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_currency_decimal_separator`
--
ALTER TABLE `vtiger_currency_decimal_separator`
  MODIFY `currency_decimal_separatorid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_currency_grouping_pattern`
--
ALTER TABLE `vtiger_currency_grouping_pattern`
  MODIFY `currency_grouping_patternid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_currency_grouping_separator`
--
ALTER TABLE `vtiger_currency_grouping_separator`
  MODIFY `currency_grouping_separatorid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_currency_info`
--
ALTER TABLE `vtiger_currency_info`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_currency_symbol_placement`
--
ALTER TABLE `vtiger_currency_symbol_placement`
  MODIFY `currency_symbol_placementid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_dashboard_tabs`
--
ALTER TABLE `vtiger_dashboard_tabs`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `vtiger_date_format`
--
ALTER TABLE `vtiger_date_format`
  MODIFY `date_formatid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_dayoftheweek`
--
ALTER TABLE `vtiger_dayoftheweek`
  MODIFY `dayoftheweekid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_defaultactivitytype`
--
ALTER TABLE `vtiger_defaultactivitytype`
  MODIFY `defaultactivitytypeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_defaultcalendarview`
--
ALTER TABLE `vtiger_defaultcalendarview`
  MODIFY `defaultcalendarviewid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_defaulteventstatus`
--
ALTER TABLE `vtiger_defaulteventstatus`
  MODIFY `defaulteventstatusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_defaultlandingpage`
--
ALTER TABLE `vtiger_defaultlandingpage`
  MODIFY `defaultlandingpageid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_default_record_view`
--
ALTER TABLE `vtiger_default_record_view`
  MODIFY `default_record_viewid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_def_org_share`
--
ALTER TABLE `vtiger_def_org_share`
  MODIFY `ruleid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40;

--
-- AUTO_INCREMENT for table `vtiger_deposit_status`
--
ALTER TABLE `vtiger_deposit_status`
  MODIFY `deposit_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_deposit_type`
--
ALTER TABLE `vtiger_deposit_type`
  MODIFY `deposit_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_durationhrs`
--
ALTER TABLE `vtiger_durationhrs`
  MODIFY `hrsid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_durationmins`
--
ALTER TABLE `vtiger_durationmins`
  MODIFY `minsid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_duration_minutes`
--
ALTER TABLE `vtiger_duration_minutes`
  MODIFY `minutesid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_emails_recipientprefs`
--
ALTER TABLE `vtiger_emails_recipientprefs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_emailtemplates`
--
ALTER TABLE `vtiger_emailtemplates`
  MODIFY `templateid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `vtiger_eventhandlers`
--
ALTER TABLE `vtiger_eventhandlers`
  MODIFY `eventhandler_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45;

--
-- AUTO_INCREMENT for table `vtiger_eventhandler_module`
--
ALTER TABLE `vtiger_eventhandler_module`
  MODIFY `eventhandler_module_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `vtiger_eventstatus`
--
ALTER TABLE `vtiger_eventstatus`
  MODIFY `eventstatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_expectedresponse`
--
ALTER TABLE `vtiger_expectedresponse`
  MODIFY `expectedresponseid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_extnstore_users`
--
ALTER TABLE `vtiger_extnstore_users`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_faq`
--
ALTER TABLE `vtiger_faq`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_faqcategories`
--
ALTER TABLE `vtiger_faqcategories`
  MODIFY `faqcategories_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_faqcomments`
--
ALTER TABLE `vtiger_faqcomments`
  MODIFY `commentid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_faqstatus`
--
ALTER TABLE `vtiger_faqstatus`
  MODIFY `faqstatus_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_field`
--
ALTER TABLE `vtiger_field`
  MODIFY `fieldid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1244;

--
-- AUTO_INCREMENT for table `vtiger_gift_status`
--
ALTER TABLE `vtiger_gift_status`
  MODIFY `gift_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_glacct`
--
ALTER TABLE `vtiger_glacct`
  MODIFY `glacctid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `vtiger_gooyagoals`
--
ALTER TABLE `vtiger_gooyagoals`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;

--
-- AUTO_INCREMENT for table `vtiger_grant_status`
--
ALTER TABLE `vtiger_grant_status`
  MODIFY `grant_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_hour_format`
--
ALTER TABLE `vtiger_hour_format`
  MODIFY `hour_formatid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_import_maps`
--
ALTER TABLE `vtiger_import_maps`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_industry`
--
ALTER TABLE `vtiger_industry`
  MODIFY `industryid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;

--
-- AUTO_INCREMENT for table `vtiger_inventorycharges`
--
ALTER TABLE `vtiger_inventorycharges`
  MODIFY `chargeid` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_inventorynotification`
--
ALTER TABLE `vtiger_inventorynotification`
  MODIFY `notificationid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_inventoryproductrel`
--
ALTER TABLE `vtiger_inventoryproductrel`
  MODIFY `lineitem_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=168;

--
-- AUTO_INCREMENT for table `vtiger_invoicestatus`
--
ALTER TABLE `vtiger_invoicestatus`
  MODIFY `invoicestatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_invoicestatushistory`
--
ALTER TABLE `vtiger_invoicestatushistory`
  MODIFY `historyid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_language`
--
ALTER TABLE `vtiger_language`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `vtiger_leadsource`
--
ALTER TABLE `vtiger_leadsource`
  MODIFY `leadsourceid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `vtiger_leadstage`
--
ALTER TABLE `vtiger_leadstage`
  MODIFY `leadstageid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_leadstatus`
--
ALTER TABLE `vtiger_leadstatus`
  MODIFY `leadstatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `vtiger_lead_view`
--
ALTER TABLE `vtiger_lead_view`
  MODIFY `lead_viewid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_list_status`
--
ALTER TABLE `vtiger_list_status`
  MODIFY `list_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_list_type`
--
ALTER TABLE `vtiger_list_type`
  MODIFY `list_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_location_status`
--
ALTER TABLE `vtiger_location_status`
  MODIFY `location_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_location_type`
--
ALTER TABLE `vtiger_location_type`
  MODIFY `location_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_loginhistory`
--
ALTER TABLE `vtiger_loginhistory`
  MODIFY `login_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=88;

--
-- AUTO_INCREMENT for table `vtiger_mailscanner`
--
ALTER TABLE `vtiger_mailscanner`
  MODIFY `scannerid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_mailscanner_actions`
--
ALTER TABLE `vtiger_mailscanner_actions`
  MODIFY `actionid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_mailscanner_folders`
--
ALTER TABLE `vtiger_mailscanner_folders`
  MODIFY `folderid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_mailscanner_rules`
--
ALTER TABLE `vtiger_mailscanner_rules`
  MODIFY `ruleid` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_manufacturer`
--
ALTER TABLE `vtiger_manufacturer`
  MODIFY `manufacturerid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_mobile_alerts`
--
ALTER TABLE `vtiger_mobile_alerts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_module_dashboard_widgets`
--
ALTER TABLE `vtiger_module_dashboard_widgets`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_notificationscheduler`
--
ALTER TABLE `vtiger_notificationscheduler`
  MODIFY `schedulednotificationid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `vtiger_no_of_currency_decimals`
--
ALTER TABLE `vtiger_no_of_currency_decimals`
  MODIFY `no_of_currency_decimalsid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_opportunitystage`
--
ALTER TABLE `vtiger_opportunitystage`
  MODIFY `potstageid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_opportunity_type`
--
ALTER TABLE `vtiger_opportunity_type`
  MODIFY `opptypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_othereventduration`
--
ALTER TABLE `vtiger_othereventduration`
  MODIFY `othereventdurationid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_participation_status`
--
ALTER TABLE `vtiger_participation_status`
  MODIFY `participation_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_participation_type`
--
ALTER TABLE `vtiger_participation_type`
  MODIFY `participation_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_payment_direction`
--
ALTER TABLE `vtiger_payment_direction`
  MODIFY `payment_directionid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_payment_method`
--
ALTER TABLE `vtiger_payment_method`
  MODIFY `payment_methodid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_payment_status`
--
ALTER TABLE `vtiger_payment_status`
  MODIFY `payment_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_payment_type`
--
ALTER TABLE `vtiger_payment_type`
  MODIFY `payment_typeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_pbxmanager`
--
ALTER TABLE `vtiger_pbxmanager`
  MODIFY `pbxmanagerid` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `vtiger_pbxmanager_gateway`
--
ALTER TABLE `vtiger_pbxmanager_gateway`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_picklist`
--
ALTER TABLE `vtiger_picklist`
  MODIFY `picklistid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94;

--
-- AUTO_INCREMENT for table `vtiger_postatus`
--
ALTER TABLE `vtiger_postatus`
  MODIFY `postatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_postatushistory`
--
ALTER TABLE `vtiger_postatushistory`
  MODIFY `historyid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;

--
-- AUTO_INCREMENT for table `vtiger_potstagehistory`
--
ALTER TABLE `vtiger_potstagehistory`
  MODIFY `historyid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_priority`
--
ALTER TABLE `vtiger_priority`
  MODIFY `priorityid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_productcategory`
--
ALTER TABLE `vtiger_productcategory`
  MODIFY `productcategoryid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_profile`
--
ALTER TABLE `vtiger_profile`
  MODIFY `profileid` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;

--
-- AUTO_INCREMENT for table `vtiger_progress`
--
ALTER TABLE `vtiger_progress`
  MODIFY `progressid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `vtiger_projectmilestonetype`
--
ALTER TABLE `vtiger_projectmilestonetype`
  MODIFY `projectmilestonetypeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_projectpriority`
--
ALTER TABLE `vtiger_projectpriority`
  MODIFY `projectpriorityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_projectstatus`
--
ALTER TABLE `vtiger_projectstatus`
  MODIFY `projectstatusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `vtiger_projecttaskpriority`
--
ALTER TABLE `vtiger_projecttaskpriority`
  MODIFY `projecttaskpriorityid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_projecttaskprogress`
--
ALTER TABLE `vtiger_projecttaskprogress`
  MODIFY `projecttaskprogressid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `vtiger_projecttaskstatus`
--
ALTER TABLE `vtiger_projecttaskstatus`
  MODIFY `projecttaskstatusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_projecttasktype`
--
ALTER TABLE `vtiger_projecttasktype`
  MODIFY `projecttasktypeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_projecttype`
--
ALTER TABLE `vtiger_projecttype`
  MODIFY `projecttypeid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_quotestage`
--
ALTER TABLE `vtiger_quotestage`
  MODIFY `quotestageid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `vtiger_quotestagehistory`
--
ALTER TABLE `vtiger_quotestagehistory`
  MODIFY `historyid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_rating`
--
ALTER TABLE `vtiger_rating`
  MODIFY `rating_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `vtiger_recurringevents`
--
ALTER TABLE `vtiger_recurringevents`
  MODIFY `recurringid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_recurringtype`
--
ALTER TABLE `vtiger_recurringtype`
  MODIFY `recurringeventid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_reminder_interval`
--
ALTER TABLE `vtiger_reminder_interval`
  MODIFY `reminder_intervalid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `vtiger_reportfolder`
--
ALTER TABLE `vtiger_reportfolder`
  MODIFY `folderid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `vtiger_reservation_status`
--
ALTER TABLE `vtiger_reservation_status`
  MODIFY `reservation_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_response_status`
--
ALTER TABLE `vtiger_response_status`
  MODIFY `response_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_rollupcomments_settings`
--
ALTER TABLE `vtiger_rollupcomments_settings`
  MODIFY `rollupid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_rowheight`
--
ALTER TABLE `vtiger_rowheight`
  MODIFY `rowheightid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_sales_channel`
--
ALTER TABLE `vtiger_sales_channel`
  MODIFY `sales_channelid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_sales_stage`
--
ALTER TABLE `vtiger_sales_stage`
  MODIFY `sales_stage_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `vtiger_salutationtype`
--
ALTER TABLE `vtiger_salutationtype`
  MODIFY `salutationid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_sample_status`
--
ALTER TABLE `vtiger_sample_status`
  MODIFY `sample_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_sarv_delivery_format`
--
ALTER TABLE `vtiger_sarv_delivery_format`
  MODIFY `sarv_delivery_formatid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_sarv_otp`
--
ALTER TABLE `vtiger_sarv_otp`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=82;

--
-- AUTO_INCREMENT for table `vtiger_sarv_payment_method`
--
ALTER TABLE `vtiger_sarv_payment_method`
  MODIFY `sarv_payment_methodid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_sarv_payment_status`
--
ALTER TABLE `vtiger_sarv_payment_status`
  MODIFY `sarv_payment_statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_sarv_po_category`
--
ALTER TABLE `vtiger_sarv_po_category`
  MODIFY `sarv_po_categoryid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `vtiger_sarv_print_template`
--
ALTER TABLE `vtiger_sarv_print_template`
  MODIFY `sarv_print_templateid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_sarv_shipping_method`
--
ALTER TABLE `vtiger_sarv_shipping_method`
  MODIFY `sarv_shipping_methodid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_sarv_sms_reminder`
--
ALTER TABLE `vtiger_sarv_sms_reminder`
  MODIFY `sarv_sms_reminderid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_servicecategory`
--
ALTER TABLE `vtiger_servicecategory`
  MODIFY `servicecategoryid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_service_usageunit`
--
ALTER TABLE `vtiger_service_usageunit`
  MODIFY `service_usageunitid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_shorturls`
--
ALTER TABLE `vtiger_shorturls`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_smsnotifier_servers`
--
ALTER TABLE `vtiger_smsnotifier_servers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_smsnotifier_status`
--
ALTER TABLE `vtiger_smsnotifier_status`
  MODIFY `statusid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_sms_reminder`
--
ALTER TABLE `vtiger_sms_reminder`
  MODIFY `sms_reminderid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_sms_remind_invitees`
--
ALTER TABLE `vtiger_sms_remind_invitees`
  MODIFY `sms_remind_inviteesid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_sms_remind_user`
--
ALTER TABLE `vtiger_sms_remind_user`
  MODIFY `sms_remind_userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `vtiger_sostatus`
--
ALTER TABLE `vtiger_sostatus`
  MODIFY `sostatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_sostatushistory`
--
ALTER TABLE `vtiger_sostatushistory`
  MODIFY `historyid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_start_hour`
--
ALTER TABLE `vtiger_start_hour`
  MODIFY `start_hourid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `vtiger_status`
--
ALTER TABLE `vtiger_status`
  MODIFY `statusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_taskpriority`
--
ALTER TABLE `vtiger_taskpriority`
  MODIFY `taskpriorityid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_taskstatus`
--
ALTER TABLE `vtiger_taskstatus`
  MODIFY `taskstatusid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `vtiger_taxclass`
--
ALTER TABLE `vtiger_taxclass`
  MODIFY `taxclassid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_taxregions`
--
ALTER TABLE `vtiger_taxregions`
  MODIFY `regionid` int(10) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_ticketcategories`
--
ALTER TABLE `vtiger_ticketcategories`
  MODIFY `ticketcategories_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `vtiger_ticketcomments`
--
ALTER TABLE `vtiger_ticketcomments`
  MODIFY `commentid` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_ticketpriorities`
--
ALTER TABLE `vtiger_ticketpriorities`
  MODIFY `ticketpriorities_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_ticketseverities`
--
ALTER TABLE `vtiger_ticketseverities`
  MODIFY `ticketseverities_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_ticketstatus`
--
ALTER TABLE `vtiger_ticketstatus`
  MODIFY `ticketstatus_id` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_time_zone`
--
ALTER TABLE `vtiger_time_zone`
  MODIFY `time_zoneid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=98;

--
-- AUTO_INCREMENT for table `vtiger_tracker`
--
ALTER TABLE `vtiger_tracker`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `vtiger_tracking_unit`
--
ALTER TABLE `vtiger_tracking_unit`
  MODIFY `tracking_unitid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `vtiger_usageunit`
--
ALTER TABLE `vtiger_usageunit`
  MODIFY `usageunitid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `vtiger_users`
--
ALTER TABLE `vtiger_users`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;

--
-- AUTO_INCREMENT for table `vtiger_users_last_import`
--
ALTER TABLE `vtiger_users_last_import`
  MODIFY `id` int(36) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_version`
--
ALTER TABLE `vtiger_version`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_visibility`
--
ALTER TABLE `vtiger_visibility`
  MODIFY `visibilityid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `vtiger_webforms`
--
ALTER TABLE `vtiger_webforms`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_webforms_field`
--
ALTER TABLE `vtiger_webforms_field`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_webform_file_fields`
--
ALTER TABLE `vtiger_webform_file_fields`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_wsapp`
--
ALTER TABLE `vtiger_wsapp`
  MODIFY `appid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vtiger_wsapp_logs_basic`
--
ALTER TABLE `vtiger_wsapp_logs_basic`
  MODIFY `id` int(25) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_wsapp_recordmapping`
--
ALTER TABLE `vtiger_wsapp_recordmapping`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_wsapp_sync_state`
--
ALTER TABLE `vtiger_wsapp_sync_state`
  MODIFY `id` int(19) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vtiger_ws_entity`
--
ALTER TABLE `vtiger_ws_entity`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;

--
-- AUTO_INCREMENT for table `vtiger_ws_entity_fieldtype`
--
ALTER TABLE `vtiger_ws_entity_fieldtype`
  MODIFY `fieldtypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `vtiger_ws_fieldtype`
--
ALTER TABLE `vtiger_ws_fieldtype`
  MODIFY `fieldtypeid` int(19) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;

--
-- AUTO_INCREMENT for table `vtiger_ws_operation`
--
ALTER TABLE `vtiger_ws_operation`
  MODIFY `operationid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- AUTO_INCREMENT for table `vtiger_ws_operation_parameters`
--
ALTER TABLE `vtiger_ws_operation_parameters`
  MODIFY `operationid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `gooyaacc_kpi_audit_logs`
--
ALTER TABLE `gooyaacc_kpi_audit_logs`
  ADD CONSTRAINT `fk_kpi_audit_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_avatars`
--
ALTER TABLE `gooyaacc_kpi_avatars`
  ADD CONSTRAINT `fk_kpi_avatar_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_evaluations_main`
--
ALTER TABLE `gooyaacc_kpi_evaluations_main`
  ADD CONSTRAINT `fk_kpi_eval_evaluator` FOREIGN KEY (`evaluator_id`) REFERENCES `vtiger_users` (`id`) ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_evaluator_weights`
--
ALTER TABLE `gooyaacc_kpi_evaluator_weights`
  ADD CONSTRAINT `fk_kpi_weight_evaluator_user` FOREIGN KEY (`evaluator_user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  ADD CONSTRAINT `fk_kpi_weight_target_user` FOREIGN KEY (`target_user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_permissions`
--
ALTER TABLE `gooyaacc_kpi_permissions`
  ADD CONSTRAINT `fk_kpi_permission_updater` FOREIGN KEY (`updated_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  ADD CONSTRAINT `fk_kpi_permission_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_saved_filters`
--
ALTER TABLE `gooyaacc_kpi_saved_filters`
  ADD CONSTRAINT `fk_kpi_filter_supervisor` FOREIGN KEY (`supervisor_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_supervisor_notes`
--
ALTER TABLE `gooyaacc_kpi_supervisor_notes`
  ADD CONSTRAINT `fk_kpi_note_supervisor` FOREIGN KEY (`supervisor_id`) REFERENCES `vtiger_users` (`id`) ON UPDATE CASCADE,
  ADD CONSTRAINT `fk_kpi_note_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_teams`
--
ALTER TABLE `gooyaacc_kpi_teams`
  ADD CONSTRAINT `fk_kpi_team_supervisor` FOREIGN KEY (`supervisor_id`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_team_members`
--
ALTER TABLE `gooyaacc_kpi_team_members`
  ADD CONSTRAINT `fk_kpi_member_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON UPDATE CASCADE;

--
-- Constraints for table `gooyaacc_kpi_user_profile`
--
ALTER TABLE `gooyaacc_kpi_user_profile`
  ADD CONSTRAINT `fk_kpi_profile_supervisor` FOREIGN KEY (`supervisor_id`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  ADD CONSTRAINT `fk_kpi_profile_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON UPDATE CASCADE;

--
-- Constraints for table `gooya_account_email`
--
ALTER TABLE `gooya_account_email`
  ADD CONSTRAINT `fk_gooya_account_email_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooya_account_phone`
--
ALTER TABLE `gooya_account_phone`
  ADD CONSTRAINT `fk_gooya_account_phone_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooya_account_timeline`
--
ALTER TABLE `gooya_account_timeline`
  ADD CONSTRAINT `fk_gooya_timeline_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `gooya_contact_account_rel`
--
ALTER TABLE `gooya_contact_account_rel`
  ADD CONSTRAINT `fk_gooya_contact_account_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_gooya_contact_account_contact` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `gooya_lead_email`
--
ALTER TABLE `gooya_lead_email`
  ADD CONSTRAINT `fk_gooya_lead_email_lead` FOREIGN KEY (`leadid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `gooya_lead_phone`
--
ALTER TABLE `gooya_lead_phone`
  ADD CONSTRAINT `fk_gooya_lead_phone_lead` FOREIGN KEY (`leadid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_field_acl_audit`
--
ALTER TABLE `sarv_field_acl_audit`
  ADD CONSTRAINT `fk_sarv_field_acl_audit_rule` FOREIGN KEY (`rule_id`) REFERENCES `sarv_field_acl_rules` (`rule_id`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `sarv_field_acl_rules`
--
ALTER TABLE `sarv_field_acl_rules`
  ADD CONSTRAINT `fk_sarv_field_acl_role` FOREIGN KEY (`role_id`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `sarv_geographic_regions`
--
ALTER TABLE `sarv_geographic_regions`
  ADD CONSTRAINT `fk_sarv_geo_parent` FOREIGN KEY (`parent_id`) REFERENCES `sarv_geographic_regions` (`id`);

--
-- Constraints for table `sarv_module_manager_config`
--
ALTER TABLE `sarv_module_manager_config`
  ADD CONSTRAINT `fk_sarv_module_config_user` FOREIGN KEY (`updated_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `sarv_module_visibility`
--
ALTER TABLE `sarv_module_visibility`
  ADD CONSTRAINT `fk_sarv_module_visibility_tab` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_sarv_module_visibility_user` FOREIGN KEY (`updated_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `sarv_module_visibility_audit`
--
ALTER TABLE `sarv_module_visibility_audit`
  ADD CONSTRAINT `fk_sarv_module_audit_user` FOREIGN KEY (`changed_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `sarv_payment_allocation_history`
--
ALTER TABLE `sarv_payment_allocation_history`
  ADD CONSTRAINT `fk_sarv_alloc_history_invoice` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_invoice` (`invoiceid`),
  ADD CONSTRAINT `fk_sarv_alloc_history_payment` FOREIGN KEY (`paymentid`) REFERENCES `vtiger_sarvpayments` (`sarvpaymentsid`);

--
-- Constraints for table `sarv_payment_allocation_migration_manifest`
--
ALTER TABLE `sarv_payment_allocation_migration_manifest`
  ADD CONSTRAINT `fk_sarv_alloc_manifest_invoice` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_invoice` (`invoiceid`),
  ADD CONSTRAINT `fk_sarv_alloc_manifest_payment` FOREIGN KEY (`paymentid`) REFERENCES `vtiger_sarvpayments` (`sarvpaymentsid`);

--
-- Constraints for table `sarv_payment_invoice_rel`
--
ALTER TABLE `sarv_payment_invoice_rel`
  ADD CONSTRAINT `fk_sarv_alloc_invoice` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_invoice` (`invoiceid`),
  ADD CONSTRAINT `fk_sarv_alloc_payment` FOREIGN KEY (`paymentid`) REFERENCES `vtiger_sarvpayments` (`sarvpaymentsid`);

--
-- Constraints for table `sarv_payment_migration_manifest`
--
ALTER TABLE `sarv_payment_migration_manifest`
  ADD CONSTRAINT `fk_sarv_manifest_payment` FOREIGN KEY (`paymentid`) REFERENCES `vtiger_sarvpayments` (`sarvpaymentsid`);

--
-- Constraints for table `sarv_phase03_sample_manifest`
--
ALTER TABLE `sarv_phase03_sample_manifest`
  ADD CONSTRAINT `fk_phase03_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase04_sample_manifest`
--
ALTER TABLE `sarv_phase04_sample_manifest`
  ADD CONSTRAINT `fk_phase04_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase05_sample_manifest`
--
ALTER TABLE `sarv_phase05_sample_manifest`
  ADD CONSTRAINT `fk_phase05_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase06_sample_manifest`
--
ALTER TABLE `sarv_phase06_sample_manifest`
  ADD CONSTRAINT `fk_phase06_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase07_sample_manifest`
--
ALTER TABLE `sarv_phase07_sample_manifest`
  ADD CONSTRAINT `fk_phase07_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase08_sample_manifest`
--
ALTER TABLE `sarv_phase08_sample_manifest`
  ADD CONSTRAINT `fk_phase08_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase09_sample_manifest`
--
ALTER TABLE `sarv_phase09_sample_manifest`
  ADD CONSTRAINT `fk_phase09_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_phase10_sample_manifest`
--
ALTER TABLE `sarv_phase10_sample_manifest`
  ADD CONSTRAINT `fk_phase10_manifest_entity` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_purchaseorder_stock_ledger`
--
ALTER TABLE `sarv_purchaseorder_stock_ledger`
  ADD CONSTRAINT `fk_sarv_po_stock_order` FOREIGN KEY (`purchaseorderid`) REFERENCES `vtiger_purchaseorder` (`purchaseorderid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_sarv_po_stock_product` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`);

--
-- Constraints for table `sarv_role_audit`
--
ALTER TABLE `sarv_role_audit`
  ADD CONSTRAINT `fk_sarv_role_audit_role` FOREIGN KEY (`role_id`) REFERENCES `vtiger_role` (`roleid`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `sarv_role_meta`
--
ALTER TABLE `sarv_role_meta`
  ADD CONSTRAINT `fk_sarv_role_meta_role` FOREIGN KEY (`role_id`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `sarv_role_permission_override`
--
ALTER TABLE `sarv_role_permission_override`
  ADD CONSTRAINT `fk_sarv_role_permission_role` FOREIGN KEY (`role_id`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `sarv_security_group_audit`
--
ALTER TABLE `sarv_security_group_audit`
  ADD CONSTRAINT `fk_sarv_security_group_audit_group` FOREIGN KEY (`group_id`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE SET NULL ON UPDATE CASCADE;

--
-- Constraints for table `sarv_security_group_meta`
--
ALTER TABLE `sarv_security_group_meta`
  ADD CONSTRAINT `fk_sarv_security_group_meta_group` FOREIGN KEY (`group_id`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `sarv_stock_movement_ledger`
--
ALTER TABLE `sarv_stock_movement_ledger`
  ADD CONSTRAINT `fk_sarv_stock_product` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`),
  ADD CONSTRAINT `fk_sarv_stock_source` FOREIGN KEY (`source_record_id`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_user_emails`
--
ALTER TABLE `sarv_user_emails`
  ADD CONSTRAINT `fk_sarv_user_emails_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_user_module_layout`
--
ALTER TABLE `sarv_user_module_layout`
  ADD CONSTRAINT `fk_sarv_layout_tab` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sarv_layout_updated_by` FOREIGN KEY (`updated_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sarv_layout_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_user_phones`
--
ALTER TABLE `sarv_user_phones`
  ADD CONSTRAINT `fk_sarv_user_phones_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_user_profile`
--
ALTER TABLE `sarv_user_profile`
  ADD CONSTRAINT `fk_sarv_user_profile_geo_region` FOREIGN KEY (`geo_region_id`) REFERENCES `sarv_geographic_regions` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sarv_user_profile_updated_by` FOREIGN KEY (`updated_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sarv_user_profile_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sarv_user_profile_audit`
--
ALTER TABLE `sarv_user_profile_audit`
  ADD CONSTRAINT `fk_sarv_user_audit_by` FOREIGN KEY (`changed_by`) REFERENCES `vtiger_users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sarv_user_audit_user` FOREIGN KEY (`user_id`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_account`
--
ALTER TABLE `vtiger_account`
  ADD CONSTRAINT `fk_1_vtiger_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_accountbillads`
--
ALTER TABLE `vtiger_accountbillads`
  ADD CONSTRAINT `fk_1_vtiger_accountbillads` FOREIGN KEY (`accountaddressid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_accountscf`
--
ALTER TABLE `vtiger_accountscf`
  ADD CONSTRAINT `fk_1_vtiger_accountscf` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_accountshipads`
--
ALTER TABLE `vtiger_accountshipads`
  ADD CONSTRAINT `fk_1_vtiger_accountshipads` FOREIGN KEY (`accountaddressid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_activity`
--
ALTER TABLE `vtiger_activity`
  ADD CONSTRAINT `fk_1_vtiger_activity` FOREIGN KEY (`activityid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_activitycf`
--
ALTER TABLE `vtiger_activitycf`
  ADD CONSTRAINT `fk_activityid_vtiger_activitycf` FOREIGN KEY (`activityid`) REFERENCES `vtiger_activity` (`activityid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_activityproductrel`
--
ALTER TABLE `vtiger_activityproductrel`
  ADD CONSTRAINT `fk_2_vtiger_activityproductrel` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_activity_reminder`
--
ALTER TABLE `vtiger_activity_reminder`
  ADD CONSTRAINT `fk_activityid_vtiger_activity_reminder` FOREIGN KEY (`activity_id`) REFERENCES `vtiger_activity` (`activityid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_app2tab`
--
ALTER TABLE `vtiger_app2tab`
  ADD CONSTRAINT `vtiger_app2tab_fk_tab` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_assets`
--
ALTER TABLE `vtiger_assets`
  ADD CONSTRAINT `fk_1_vtiger_assets` FOREIGN KEY (`assetsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_assetscf`
--
ALTER TABLE `vtiger_assetscf`
  ADD CONSTRAINT `fk_assetsid_vtiger_assetscf` FOREIGN KEY (`assetsid`) REFERENCES `vtiger_assets` (`assetsid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_attachments`
--
ALTER TABLE `vtiger_attachments`
  ADD CONSTRAINT `fk_1_vtiger_attachments` FOREIGN KEY (`attachmentsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_blocks`
--
ALTER TABLE `vtiger_blocks`
  ADD CONSTRAINT `fk_1_vtiger_blocks` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_campaign`
--
ALTER TABLE `vtiger_campaign`
  ADD CONSTRAINT `fk_crmid_vtiger_campaign` FOREIGN KEY (`campaignid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_campaigncontrel`
--
ALTER TABLE `vtiger_campaigncontrel`
  ADD CONSTRAINT `fk_2_vtiger_campaigncontrel` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_campaignleadrel`
--
ALTER TABLE `vtiger_campaignleadrel`
  ADD CONSTRAINT `fk_2_vtiger_campaignleadrel` FOREIGN KEY (`leadid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_campaignscf`
--
ALTER TABLE `vtiger_campaignscf`
  ADD CONSTRAINT `fk_1_vtiger_campaignscf` FOREIGN KEY (`campaignid`) REFERENCES `vtiger_campaign` (`campaignid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cntactivityrel`
--
ALTER TABLE `vtiger_cntactivityrel`
  ADD CONSTRAINT `fk_2_vtiger_cntactivityrel` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_contactaddress`
--
ALTER TABLE `vtiger_contactaddress`
  ADD CONSTRAINT `fk_1_vtiger_contactaddress` FOREIGN KEY (`contactaddressid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_contactdetails`
--
ALTER TABLE `vtiger_contactdetails`
  ADD CONSTRAINT `fk_1_vtiger_contactdetails` FOREIGN KEY (`contactid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_contactscf`
--
ALTER TABLE `vtiger_contactscf`
  ADD CONSTRAINT `fk_1_vtiger_contactscf` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_contactsubdetails`
--
ALTER TABLE `vtiger_contactsubdetails`
  ADD CONSTRAINT `fk_1_vtiger_contactsubdetails` FOREIGN KEY (`contactsubscriptionid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_contpotentialrel`
--
ALTER TABLE `vtiger_contpotentialrel`
  ADD CONSTRAINT `fk_2_vtiger_contpotentialrel` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_potential` (`potentialid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_crmentity_user_field`
--
ALTER TABLE `vtiger_crmentity_user_field`
  ADD CONSTRAINT `fk_vtiger_crmentity_user_field_recordid` FOREIGN KEY (`recordid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_customaction`
--
ALTER TABLE `vtiger_customaction`
  ADD CONSTRAINT `fk_1_vtiger_customaction` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_customerdetails`
--
ALTER TABLE `vtiger_customerdetails`
  ADD CONSTRAINT `fk_1_vtiger_customerdetails` FOREIGN KEY (`customerid`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_customview`
--
ALTER TABLE `vtiger_customview`
  ADD CONSTRAINT `fk_1_vtiger_customview` FOREIGN KEY (`entitytype`) REFERENCES `vtiger_tab` (`name`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cv2group`
--
ALTER TABLE `vtiger_cv2group`
  ADD CONSTRAINT `vtiger_customview_ibfk_2` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_groups_ibfk_1` FOREIGN KEY (`groupid`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cv2role`
--
ALTER TABLE `vtiger_cv2role`
  ADD CONSTRAINT `vtiger_customview_ibfk_3` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_role_ibfk_1` FOREIGN KEY (`roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cv2rs`
--
ALTER TABLE `vtiger_cv2rs`
  ADD CONSTRAINT `vtiger_customview_ibfk_4` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_rolesd_ibfk_1` FOREIGN KEY (`rsid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cv2users`
--
ALTER TABLE `vtiger_cv2users`
  ADD CONSTRAINT `vtiger_customview_ibfk_1` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_users_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cvadvfilter`
--
ALTER TABLE `vtiger_cvadvfilter`
  ADD CONSTRAINT `fk_1_vtiger_cvadvfilter` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cvcolumnlist`
--
ALTER TABLE `vtiger_cvcolumnlist`
  ADD CONSTRAINT `fk_1_vtiger_cvcolumnlist` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_cvstdfilter`
--
ALTER TABLE `vtiger_cvstdfilter`
  ADD CONSTRAINT `fk_1_vtiger_cvstdfilter` FOREIGN KEY (`cvid`) REFERENCES `vtiger_customview` (`cvid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_dashboard_tabs`
--
ALTER TABLE `vtiger_dashboard_tabs`
  ADD CONSTRAINT `vtiger_dashboard_tabs_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_grp2grp`
--
ALTER TABLE `vtiger_datashare_grp2grp`
  ADD CONSTRAINT `fk_3_vtiger_datashare_grp2grp` FOREIGN KEY (`to_groupid`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_grp2role`
--
ALTER TABLE `vtiger_datashare_grp2role`
  ADD CONSTRAINT `fk_3_vtiger_datashare_grp2role` FOREIGN KEY (`to_roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_grp2rs`
--
ALTER TABLE `vtiger_datashare_grp2rs`
  ADD CONSTRAINT `fk_3_vtiger_datashare_grp2rs` FOREIGN KEY (`to_roleandsubid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_module_rel`
--
ALTER TABLE `vtiger_datashare_module_rel`
  ADD CONSTRAINT `fk_1_vtiger_datashare_module_rel` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_relatedmodules`
--
ALTER TABLE `vtiger_datashare_relatedmodules`
  ADD CONSTRAINT `fk_2_vtiger_datashare_relatedmodules` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_role2group`
--
ALTER TABLE `vtiger_datashare_role2group`
  ADD CONSTRAINT `fk_3_vtiger_datashare_role2group` FOREIGN KEY (`share_roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_role2role`
--
ALTER TABLE `vtiger_datashare_role2role`
  ADD CONSTRAINT `fk_3_vtiger_datashare_role2role` FOREIGN KEY (`to_roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_role2rs`
--
ALTER TABLE `vtiger_datashare_role2rs`
  ADD CONSTRAINT `fk_3_vtiger_datashare_role2rs` FOREIGN KEY (`to_roleandsubid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_rs2grp`
--
ALTER TABLE `vtiger_datashare_rs2grp`
  ADD CONSTRAINT `fk_3_vtiger_datashare_rs2grp` FOREIGN KEY (`share_roleandsubid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_rs2role`
--
ALTER TABLE `vtiger_datashare_rs2role`
  ADD CONSTRAINT `fk_3_vtiger_datashare_rs2role` FOREIGN KEY (`to_roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_datashare_rs2rs`
--
ALTER TABLE `vtiger_datashare_rs2rs`
  ADD CONSTRAINT `fk_3_vtiger_datashare_rs2rs` FOREIGN KEY (`to_roleandsubid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_defaultcv`
--
ALTER TABLE `vtiger_defaultcv`
  ADD CONSTRAINT `fk_1_vtiger_defaultcv` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_def_org_share`
--
ALTER TABLE `vtiger_def_org_share`
  ADD CONSTRAINT `fk_1_vtiger_def_org_share` FOREIGN KEY (`permission`) REFERENCES `vtiger_org_share_action_mapping` (`share_action_id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_emailslookup`
--
ALTER TABLE `vtiger_emailslookup`
  ADD CONSTRAINT `emailslookup_crmid_fk` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_entityname`
--
ALTER TABLE `vtiger_entityname`
  ADD CONSTRAINT `fk_1_vtiger_entityname` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_faq`
--
ALTER TABLE `vtiger_faq`
  ADD CONSTRAINT `fk_1_vtiger_faq` FOREIGN KEY (`id`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_faqcf`
--
ALTER TABLE `vtiger_faqcf`
  ADD CONSTRAINT `fk_1_vtiger_faqcf` FOREIGN KEY (`faqid`) REFERENCES `vtiger_faq` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_faqcomments`
--
ALTER TABLE `vtiger_faqcomments`
  ADD CONSTRAINT `fk_1_vtiger_faqcomments` FOREIGN KEY (`faqid`) REFERENCES `vtiger_faq` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_field`
--
ALTER TABLE `vtiger_field`
  ADD CONSTRAINT `fk_1_vtiger_field` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_group2grouprel`
--
ALTER TABLE `vtiger_group2grouprel`
  ADD CONSTRAINT `fk_2_vtiger_group2grouprel` FOREIGN KEY (`groupid`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `vtiger_group2role`
--
ALTER TABLE `vtiger_group2role`
  ADD CONSTRAINT `fk_2_vtiger_group2role` FOREIGN KEY (`roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_group2rs`
--
ALTER TABLE `vtiger_group2rs`
  ADD CONSTRAINT `fk_2_vtiger_group2rs` FOREIGN KEY (`roleandsubid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homedashbd`
--
ALTER TABLE `vtiger_homedashbd`
  ADD CONSTRAINT `fk_1_vtiger_homedashbd` FOREIGN KEY (`stuffid`) REFERENCES `vtiger_homestuff` (`stuffid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homedefault`
--
ALTER TABLE `vtiger_homedefault`
  ADD CONSTRAINT `fk_1_vtiger_homedefault` FOREIGN KEY (`stuffid`) REFERENCES `vtiger_homestuff` (`stuffid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homemodule`
--
ALTER TABLE `vtiger_homemodule`
  ADD CONSTRAINT `fk_1_vtiger_homemodule` FOREIGN KEY (`stuffid`) REFERENCES `vtiger_homestuff` (`stuffid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homemoduleflds`
--
ALTER TABLE `vtiger_homemoduleflds`
  ADD CONSTRAINT `fk_1_vtiger_homemoduleflds` FOREIGN KEY (`stuffid`) REFERENCES `vtiger_homemodule` (`stuffid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homerss`
--
ALTER TABLE `vtiger_homerss`
  ADD CONSTRAINT `fk_1_vtiger_homerss` FOREIGN KEY (`stuffid`) REFERENCES `vtiger_homestuff` (`stuffid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_homestuff`
--
ALTER TABLE `vtiger_homestuff`
  ADD CONSTRAINT `fk_1_vtiger_homestuff` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_inventoryproductrel`
--
ALTER TABLE `vtiger_inventoryproductrel`
  ADD CONSTRAINT `fk_crmid_vtiger_inventoryproductrel` FOREIGN KEY (`id`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoice`
--
ALTER TABLE `vtiger_invoice`
  ADD CONSTRAINT `fk_2_vtiger_invoice` FOREIGN KEY (`salesorderid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_crmid_vtiger_invoice` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoicebillads`
--
ALTER TABLE `vtiger_invoicebillads`
  ADD CONSTRAINT `fk_1_vtiger_invoicebillads` FOREIGN KEY (`invoicebilladdressid`) REFERENCES `vtiger_invoice` (`invoiceid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoicecf`
--
ALTER TABLE `vtiger_invoicecf`
  ADD CONSTRAINT `fk_1_vtiger_invoicecf` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_invoice` (`invoiceid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoiceshipads`
--
ALTER TABLE `vtiger_invoiceshipads`
  ADD CONSTRAINT `fk_1_vtiger_invoiceshipads` FOREIGN KEY (`invoiceshipaddressid`) REFERENCES `vtiger_invoice` (`invoiceid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoicestatushistory`
--
ALTER TABLE `vtiger_invoicestatushistory`
  ADD CONSTRAINT `fk_1_vtiger_invoicestatushistory` FOREIGN KEY (`invoiceid`) REFERENCES `vtiger_invoice` (`invoiceid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_invoice_recurring_info`
--
ALTER TABLE `vtiger_invoice_recurring_info`
  ADD CONSTRAINT `fk_salesorderid_vtiger_invoice_recurring_info` FOREIGN KEY (`salesorderid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_leadaddress`
--
ALTER TABLE `vtiger_leadaddress`
  ADD CONSTRAINT `fk_1_vtiger_leadaddress` FOREIGN KEY (`leadaddressid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_leaddetails`
--
ALTER TABLE `vtiger_leaddetails`
  ADD CONSTRAINT `fk_1_vtiger_leaddetails` FOREIGN KEY (`leadid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_leadscf`
--
ALTER TABLE `vtiger_leadscf`
  ADD CONSTRAINT `fk_1_vtiger_leadscf` FOREIGN KEY (`leadid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_leadsubdetails`
--
ALTER TABLE `vtiger_leadsubdetails`
  ADD CONSTRAINT `fk_1_vtiger_leadsubdetails` FOREIGN KEY (`leadsubscriptionid`) REFERENCES `vtiger_leaddetails` (`leadid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_modcomments`
--
ALTER TABLE `vtiger_modcomments`
  ADD CONSTRAINT `fk_crmid_vtiger_modcomments` FOREIGN KEY (`modcommentsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_modcommentscf`
--
ALTER TABLE `vtiger_modcommentscf`
  ADD CONSTRAINT `fk_modcommentsid_vtiger_modcommentscf` FOREIGN KEY (`modcommentsid`) REFERENCES `vtiger_modcomments` (`modcommentsid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_module_dashboard_widgets`
--
ALTER TABLE `vtiger_module_dashboard_widgets`
  ADD CONSTRAINT `vtiger_module_dashboard_widgets_ibfk_1` FOREIGN KEY (`dashboardtabid`) REFERENCES `vtiger_dashboard_tabs` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_notes`
--
ALTER TABLE `vtiger_notes`
  ADD CONSTRAINT `fk_1_vtiger_notes` FOREIGN KEY (`notesid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_notescf`
--
ALTER TABLE `vtiger_notescf`
  ADD CONSTRAINT `fk_notesid_vtiger_notescf` FOREIGN KEY (`notesid`) REFERENCES `vtiger_notes` (`notesid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_org_share_action2tab`
--
ALTER TABLE `vtiger_org_share_action2tab`
  ADD CONSTRAINT `fk_2_vtiger_org_share_action2tab` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_parenttabrel`
--
ALTER TABLE `vtiger_parenttabrel`
  ADD CONSTRAINT `fk_1_vtiger_parenttabrel` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_2_vtiger_parenttabrel` FOREIGN KEY (`parenttabid`) REFERENCES `vtiger_parenttab` (`parenttabid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pbxmanager`
--
ALTER TABLE `vtiger_pbxmanager`
  ADD CONSTRAINT `fk_crmid_vtiger_pbxmanager` FOREIGN KEY (`pbxmanagerid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pbxmanagercf`
--
ALTER TABLE `vtiger_pbxmanagercf`
  ADD CONSTRAINT `fk_pbxmanagerid_vtiger_pbxmanagercf` FOREIGN KEY (`pbxmanagerid`) REFERENCES `vtiger_pbxmanager` (`pbxmanagerid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pbxmanager_phonelookup`
--
ALTER TABLE `vtiger_pbxmanager_phonelookup`
  ADD CONSTRAINT `vtiger_pbxmanager_phonelookup_ibfk_1` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pobillads`
--
ALTER TABLE `vtiger_pobillads`
  ADD CONSTRAINT `fk_1_vtiger_pobillads` FOREIGN KEY (`pobilladdressid`) REFERENCES `vtiger_purchaseorder` (`purchaseorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_portalinfo`
--
ALTER TABLE `vtiger_portalinfo`
  ADD CONSTRAINT `fk_1_vtiger_portalinfo` FOREIGN KEY (`id`) REFERENCES `vtiger_contactdetails` (`contactid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_poshipads`
--
ALTER TABLE `vtiger_poshipads`
  ADD CONSTRAINT `fk_1_vtiger_poshipads` FOREIGN KEY (`poshipaddressid`) REFERENCES `vtiger_purchaseorder` (`purchaseorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_postatushistory`
--
ALTER TABLE `vtiger_postatushistory`
  ADD CONSTRAINT `fk_1_vtiger_postatushistory` FOREIGN KEY (`purchaseorderid`) REFERENCES `vtiger_purchaseorder` (`purchaseorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_potential`
--
ALTER TABLE `vtiger_potential`
  ADD CONSTRAINT `fk_1_vtiger_potential` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_potentialscf`
--
ALTER TABLE `vtiger_potentialscf`
  ADD CONSTRAINT `fk_1_vtiger_potentialscf` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_potential` (`potentialid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_potstagehistory`
--
ALTER TABLE `vtiger_potstagehistory`
  ADD CONSTRAINT `fk_1_vtiger_potstagehistory` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_potential` (`potentialid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pricebook`
--
ALTER TABLE `vtiger_pricebook`
  ADD CONSTRAINT `fk_1_vtiger_pricebook` FOREIGN KEY (`pricebookid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pricebookcf`
--
ALTER TABLE `vtiger_pricebookcf`
  ADD CONSTRAINT `fk_1_vtiger_pricebookcf` FOREIGN KEY (`pricebookid`) REFERENCES `vtiger_pricebook` (`pricebookid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_pricebookproductrel`
--
ALTER TABLE `vtiger_pricebookproductrel`
  ADD CONSTRAINT `fk_1_vtiger_pricebookproductrel` FOREIGN KEY (`pricebookid`) REFERENCES `vtiger_pricebook` (`pricebookid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_productcf`
--
ALTER TABLE `vtiger_productcf`
  ADD CONSTRAINT `fk_1_vtiger_productcf` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_products`
--
ALTER TABLE `vtiger_products`
  ADD CONSTRAINT `fk_1_vtiger_products` FOREIGN KEY (`productid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_producttaxrel`
--
ALTER TABLE `vtiger_producttaxrel`
  ADD CONSTRAINT `fk_crmid_vtiger_producttaxrel` FOREIGN KEY (`productid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_profile2globalpermissions`
--
ALTER TABLE `vtiger_profile2globalpermissions`
  ADD CONSTRAINT `fk_1_vtiger_profile2globalpermissions` FOREIGN KEY (`profileid`) REFERENCES `vtiger_profile` (`profileid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_project`
--
ALTER TABLE `vtiger_project`
  ADD CONSTRAINT `fk_crmid_vtiger_project` FOREIGN KEY (`projectid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_projectcf`
--
ALTER TABLE `vtiger_projectcf`
  ADD CONSTRAINT `fk_projectid_vtiger_projectcf` FOREIGN KEY (`projectid`) REFERENCES `vtiger_project` (`projectid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_projectmilestone`
--
ALTER TABLE `vtiger_projectmilestone`
  ADD CONSTRAINT `fk_crmid_vtiger_projectmilestone` FOREIGN KEY (`projectmilestoneid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_projectmilestonecf`
--
ALTER TABLE `vtiger_projectmilestonecf`
  ADD CONSTRAINT `fk_projectmilestoneid_vtiger_projectmilestonecf` FOREIGN KEY (`projectmilestoneid`) REFERENCES `vtiger_projectmilestone` (`projectmilestoneid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_projecttask`
--
ALTER TABLE `vtiger_projecttask`
  ADD CONSTRAINT `fk_crmid_vtiger_projecttask` FOREIGN KEY (`projecttaskid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_projecttaskcf`
--
ALTER TABLE `vtiger_projecttaskcf`
  ADD CONSTRAINT `fk_projecttaskid_vtiger_projecttaskcf` FOREIGN KEY (`projecttaskid`) REFERENCES `vtiger_projecttask` (`projecttaskid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_purchaseorder`
--
ALTER TABLE `vtiger_purchaseorder`
  ADD CONSTRAINT `fk_4_vtiger_purchaseorder` FOREIGN KEY (`vendorid`) REFERENCES `vtiger_vendor` (`vendorid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_crmid_vtiger_purchaseorder` FOREIGN KEY (`purchaseorderid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_sarv_purchaseorder_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`) ON DELETE SET NULL;

--
-- Constraints for table `vtiger_purchaseordercf`
--
ALTER TABLE `vtiger_purchaseordercf`
  ADD CONSTRAINT `fk_1_vtiger_purchaseordercf` FOREIGN KEY (`purchaseorderid`) REFERENCES `vtiger_purchaseorder` (`purchaseorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_quotes`
--
ALTER TABLE `vtiger_quotes`
  ADD CONSTRAINT `fk_3_vtiger_quotes` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_potential` (`potentialid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_crmid_vtiger_quotes` FOREIGN KEY (`quoteid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_quotesbillads`
--
ALTER TABLE `vtiger_quotesbillads`
  ADD CONSTRAINT `fk_1_vtiger_quotesbillads` FOREIGN KEY (`quotebilladdressid`) REFERENCES `vtiger_quotes` (`quoteid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_quotescf`
--
ALTER TABLE `vtiger_quotescf`
  ADD CONSTRAINT `fk_1_vtiger_quotescf` FOREIGN KEY (`quoteid`) REFERENCES `vtiger_quotes` (`quoteid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_quotesshipads`
--
ALTER TABLE `vtiger_quotesshipads`
  ADD CONSTRAINT `fk_1_vtiger_quotesshipads` FOREIGN KEY (`quoteshipaddressid`) REFERENCES `vtiger_quotes` (`quoteid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_quotestagehistory`
--
ALTER TABLE `vtiger_quotestagehistory`
  ADD CONSTRAINT `fk_1_vtiger_quotestagehistory` FOREIGN KEY (`quoteid`) REFERENCES `vtiger_quotes` (`quoteid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_recurringevents`
--
ALTER TABLE `vtiger_recurringevents`
  ADD CONSTRAINT `fk_1_vtiger_recurringevents` FOREIGN KEY (`activityid`) REFERENCES `vtiger_activity` (`activityid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_relcriteria`
--
ALTER TABLE `vtiger_relcriteria`
  ADD CONSTRAINT `fk_1_vtiger_relcriteria` FOREIGN KEY (`queryid`) REFERENCES `vtiger_selectquery` (`queryid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_report`
--
ALTER TABLE `vtiger_report`
  ADD CONSTRAINT `fk_2_vtiger_report` FOREIGN KEY (`queryid`) REFERENCES `vtiger_selectquery` (`queryid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reportdatefilter`
--
ALTER TABLE `vtiger_reportdatefilter`
  ADD CONSTRAINT `fk_1_vtiger_reportdatefilter` FOREIGN KEY (`datefilterid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reportgroupbycolumn`
--
ALTER TABLE `vtiger_reportgroupbycolumn`
  ADD CONSTRAINT `fk_1_vtiger_reportgroupbycolumn` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reportmodules`
--
ALTER TABLE `vtiger_reportmodules`
  ADD CONSTRAINT `fk_1_vtiger_reportmodules` FOREIGN KEY (`reportmodulesid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reportsortcol`
--
ALTER TABLE `vtiger_reportsortcol`
  ADD CONSTRAINT `fk_1_vtiger_reportsortcol` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reportsummary`
--
ALTER TABLE `vtiger_reportsummary`
  ADD CONSTRAINT `fk_1_vtiger_reportsummary` FOREIGN KEY (`reportsummaryid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_reporttype`
--
ALTER TABLE `vtiger_reporttype`
  ADD CONSTRAINT `fk_1_vtiger_reporttype` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_report_sharegroups`
--
ALTER TABLE `vtiger_report_sharegroups`
  ADD CONSTRAINT `vtiger_groups_groupid_ibfk_1` FOREIGN KEY (`groupid`) REFERENCES `vtiger_groups` (`groupid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_report_reportid_ibfk_2` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_report_sharerole`
--
ALTER TABLE `vtiger_report_sharerole`
  ADD CONSTRAINT `vtiger_report_reportid_ibfk_3` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_role_roleid_ibfk_1` FOREIGN KEY (`roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_report_sharers`
--
ALTER TABLE `vtiger_report_sharers`
  ADD CONSTRAINT `vtiger_report_reportid_ibfk_4` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_rolesd_rsid_ibfk_1` FOREIGN KEY (`rsid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_report_shareusers`
--
ALTER TABLE `vtiger_report_shareusers`
  ADD CONSTRAINT `vtiger_reports_reportid_ibfk_1` FOREIGN KEY (`reportid`) REFERENCES `vtiger_report` (`reportid`) ON DELETE CASCADE,
  ADD CONSTRAINT `vtiger_users_userid_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_role2picklist`
--
ALTER TABLE `vtiger_role2picklist`
  ADD CONSTRAINT `fk_1_vtiger_role2picklist` FOREIGN KEY (`roleid`) REFERENCES `vtiger_role` (`roleid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_2_vtiger_role2picklist` FOREIGN KEY (`picklistid`) REFERENCES `vtiger_picklist` (`picklistid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_salesmanactivityrel`
--
ALTER TABLE `vtiger_salesmanactivityrel`
  ADD CONSTRAINT `fk_2_vtiger_salesmanactivityrel` FOREIGN KEY (`smid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_salesmanattachmentsrel`
--
ALTER TABLE `vtiger_salesmanattachmentsrel`
  ADD CONSTRAINT `fk_2_vtiger_salesmanattachmentsrel` FOREIGN KEY (`attachmentsid`) REFERENCES `vtiger_attachments` (`attachmentsid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_salesmanticketrel`
--
ALTER TABLE `vtiger_salesmanticketrel`
  ADD CONSTRAINT `fk_2_vtiger_salesmanticketrel` FOREIGN KEY (`smid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_salesorder`
--
ALTER TABLE `vtiger_salesorder`
  ADD CONSTRAINT `fk_3_vtiger_salesorder` FOREIGN KEY (`vendorid`) REFERENCES `vtiger_vendor` (`vendorid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_crmid_vtiger_salesorder` FOREIGN KEY (`salesorderid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_salesordercf`
--
ALTER TABLE `vtiger_salesordercf`
  ADD CONSTRAINT `fk_1_vtiger_salesordercf` FOREIGN KEY (`salesorderid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvaccessgrants`
--
ALTER TABLE `vtiger_sarvaccessgrants`
  ADD CONSTRAINT `fk_sarvaccessgrant_group` FOREIGN KEY (`groupid`) REFERENCES `vtiger_groups` (`groupid`),
  ADD CONSTRAINT `fk_sarvaccessgrants_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvaccessgrants_entity` FOREIGN KEY (`sarvaccessgrantsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvbankaccounts`
--
ALTER TABLE `vtiger_sarvbankaccounts`
  ADD CONSTRAINT `fk_sarvbankaccounts_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvbankaccounts_entity` FOREIGN KEY (`sarvbankaccountsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvbusinesslocations`
--
ALTER TABLE `vtiger_sarvbusinesslocations`
  ADD CONSTRAINT `fk_sarvbusinesslocations_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvbusinesslocations_entity` FOREIGN KEY (`sarvbusinesslocationsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_sarvlocation_manager` FOREIGN KEY (`managercontactid`) REFERENCES `vtiger_contactdetails` (`contactid`),
  ADD CONSTRAINT `fk_sarvlocation_parent` FOREIGN KEY (`parentlocationid`) REFERENCES `vtiger_sarvbusinesslocations` (`sarvbusinesslocationsid`);

--
-- Constraints for table `vtiger_sarvdeposits`
--
ALTER TABLE `vtiger_sarvdeposits`
  ADD CONSTRAINT `fk_sarvdeposits_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvdeposits_currency` FOREIGN KEY (`currency_id`) REFERENCES `vtiger_currency_info` (`id`),
  ADD CONSTRAINT `fk_sarvdeposits_entity` FOREIGN KEY (`sarvdepositsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvgifts`
--
ALTER TABLE `vtiger_sarvgifts`
  ADD CONSTRAINT `fk_sarvgift_campaign` FOREIGN KEY (`campaignid`) REFERENCES `vtiger_campaign` (`campaignid`),
  ADD CONSTRAINT `fk_sarvgift_contact` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`),
  ADD CONSTRAINT `fk_sarvgift_product` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`),
  ADD CONSTRAINT `fk_sarvgifts_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvgifts_entity` FOREIGN KEY (`sarvgiftsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvparticipations`
--
ALTER TABLE `vtiger_sarvparticipations`
  ADD CONSTRAINT `fk_sarvparticipations_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvparticipations_entity` FOREIGN KEY (`sarvparticipationsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvproductsamples`
--
ALTER TABLE `vtiger_sarvproductsamples`
  ADD CONSTRAINT `fk_sarvproductsamples_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvproductsamples_entity` FOREIGN KEY (`sarvproductsamplesid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_sarvsample_campaign` FOREIGN KEY (`campaignid`) REFERENCES `vtiger_campaign` (`campaignid`),
  ADD CONSTRAINT `fk_sarvsample_contact` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`),
  ADD CONSTRAINT `fk_sarvsample_potential` FOREIGN KEY (`potentialid`) REFERENCES `vtiger_potential` (`potentialid`),
  ADD CONSTRAINT `fk_sarvsample_product` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`);

--
-- Constraints for table `vtiger_sarvsalescontracts`
--
ALTER TABLE `vtiger_sarvsalescontracts`
  ADD CONSTRAINT `fk_sarvsalescontracts_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvsalescontracts_entity` FOREIGN KEY (`sarvsalescontractsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvsurveyresponses`
--
ALTER TABLE `vtiger_sarvsurveyresponses`
  ADD CONSTRAINT `fk_sarvsurveyresponses_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvsurveyresponses_entity` FOREIGN KEY (`sarvsurveyresponsesid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvtargetlists`
--
ALTER TABLE `vtiger_sarvtargetlists`
  ADD CONSTRAINT `fk_sarvtargetlists_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvtargetlists_entity` FOREIGN KEY (`sarvtargetlistsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sarvtimereservations`
--
ALTER TABLE `vtiger_sarvtimereservations`
  ADD CONSTRAINT `fk_sarvreservation_contact` FOREIGN KEY (`contactid`) REFERENCES `vtiger_contactdetails` (`contactid`),
  ADD CONSTRAINT `fk_sarvreservation_location` FOREIGN KEY (`locationid`) REFERENCES `vtiger_sarvbusinesslocations` (`sarvbusinesslocationsid`),
  ADD CONSTRAINT `fk_sarvreservation_service` FOREIGN KEY (`serviceid`) REFERENCES `vtiger_service` (`serviceid`),
  ADD CONSTRAINT `fk_sarvtimereservations_account` FOREIGN KEY (`accountid`) REFERENCES `vtiger_account` (`accountid`),
  ADD CONSTRAINT `fk_sarvtimereservations_entity` FOREIGN KEY (`sarvtimereservationsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_seactivityrel`
--
ALTER TABLE `vtiger_seactivityrel`
  ADD CONSTRAINT `fk_2_vtiger_seactivityrel` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_seattachmentsrel`
--
ALTER TABLE `vtiger_seattachmentsrel`
  ADD CONSTRAINT `fk_2_vtiger_seattachmentsrel` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_selectcolumn`
--
ALTER TABLE `vtiger_selectcolumn`
  ADD CONSTRAINT `fk_1_vtiger_selectcolumn` FOREIGN KEY (`queryid`) REFERENCES `vtiger_selectquery` (`queryid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_senotesrel`
--
ALTER TABLE `vtiger_senotesrel`
  ADD CONSTRAINT `fk1_crmid` FOREIGN KEY (`crmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_2_vtiger_senotesrel` FOREIGN KEY (`notesid`) REFERENCES `vtiger_notes` (`notesid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_seproductsrel`
--
ALTER TABLE `vtiger_seproductsrel`
  ADD CONSTRAINT `fk_2_vtiger_seproductsrel` FOREIGN KEY (`productid`) REFERENCES `vtiger_products` (`productid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_service`
--
ALTER TABLE `vtiger_service`
  ADD CONSTRAINT `fk_1_vtiger_service` FOREIGN KEY (`serviceid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_servicecf`
--
ALTER TABLE `vtiger_servicecf`
  ADD CONSTRAINT `fk_serviceid_vtiger_servicecf` FOREIGN KEY (`serviceid`) REFERENCES `vtiger_service` (`serviceid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_servicecontracts`
--
ALTER TABLE `vtiger_servicecontracts`
  ADD CONSTRAINT `fk_crmid_vtiger_servicecontracts` FOREIGN KEY (`servicecontractsid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_servicecontractscf`
--
ALTER TABLE `vtiger_servicecontractscf`
  ADD CONSTRAINT `fk_servicecontractsid_vtiger_servicecontractscf` FOREIGN KEY (`servicecontractsid`) REFERENCES `vtiger_servicecontracts` (`servicecontractsid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_seticketsrel`
--
ALTER TABLE `vtiger_seticketsrel`
  ADD CONSTRAINT `fk_2_vtiger_seticketsrel` FOREIGN KEY (`ticketid`) REFERENCES `vtiger_troubletickets` (`ticketid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_settings_field`
--
ALTER TABLE `vtiger_settings_field`
  ADD CONSTRAINT `fk_1_vtiger_settings_field` FOREIGN KEY (`blockid`) REFERENCES `vtiger_settings_blocks` (`blockid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_smsnotifier`
--
ALTER TABLE `vtiger_smsnotifier`
  ADD CONSTRAINT `fk_crmid_vtiger_smsnotifier` FOREIGN KEY (`smsnotifierid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_smsnotifiercf`
--
ALTER TABLE `vtiger_smsnotifiercf`
  ADD CONSTRAINT `fk_smsnotifierid_vtiger_smsnotifiercf` FOREIGN KEY (`smsnotifierid`) REFERENCES `vtiger_smsnotifier` (`smsnotifierid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sobillads`
--
ALTER TABLE `vtiger_sobillads`
  ADD CONSTRAINT `fk_1_vtiger_sobillads` FOREIGN KEY (`sobilladdressid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_soshipads`
--
ALTER TABLE `vtiger_soshipads`
  ADD CONSTRAINT `fk_1_vtiger_soshipads` FOREIGN KEY (`soshipaddressid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_sostatushistory`
--
ALTER TABLE `vtiger_sostatushistory`
  ADD CONSTRAINT `fk_1_vtiger_sostatushistory` FOREIGN KEY (`salesorderid`) REFERENCES `vtiger_salesorder` (`salesorderid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tab_info`
--
ALTER TABLE `vtiger_tab_info`
  ADD CONSTRAINT `fk_1_vtiger_tab_info` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `vtiger_ticketcf`
--
ALTER TABLE `vtiger_ticketcf`
  ADD CONSTRAINT `fk_1_vtiger_ticketcf` FOREIGN KEY (`ticketid`) REFERENCES `vtiger_troubletickets` (`ticketid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_ticketcomments`
--
ALTER TABLE `vtiger_ticketcomments`
  ADD CONSTRAINT `fk_1_vtiger_ticketcomments` FOREIGN KEY (`ticketid`) REFERENCES `vtiger_troubletickets` (`ticketid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_read_group_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_group_rel_sharing_per`
  ADD CONSTRAINT `fk_4_vtiger_tmp_read_group_rel_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_read_group_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_group_sharing_per`
  ADD CONSTRAINT `fk_3_vtiger_tmp_read_group_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_read_user_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_user_rel_sharing_per`
  ADD CONSTRAINT `fk_4_vtiger_tmp_read_user_rel_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_read_user_sharing_per`
--
ALTER TABLE `vtiger_tmp_read_user_sharing_per`
  ADD CONSTRAINT `fk_3_vtiger_tmp_read_user_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_write_group_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_group_rel_sharing_per`
  ADD CONSTRAINT `fk_4_vtiger_tmp_write_group_rel_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_write_group_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_group_sharing_per`
  ADD CONSTRAINT `fk_3_vtiger_tmp_write_group_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_write_user_rel_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_user_rel_sharing_per`
  ADD CONSTRAINT `fk_4_vtiger_tmp_write_user_rel_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_tmp_write_user_sharing_per`
--
ALTER TABLE `vtiger_tmp_write_user_sharing_per`
  ADD CONSTRAINT `fk_3_vtiger_tmp_write_user_sharing_per` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_troubletickets`
--
ALTER TABLE `vtiger_troubletickets`
  ADD CONSTRAINT `fk_1_vtiger_troubletickets` FOREIGN KEY (`ticketid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_user2role`
--
ALTER TABLE `vtiger_user2role`
  ADD CONSTRAINT `fk_2_vtiger_user2role` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_users2group`
--
ALTER TABLE `vtiger_users2group`
  ADD CONSTRAINT `fk_2_vtiger_users2group` FOREIGN KEY (`userid`) REFERENCES `vtiger_users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_user_module_preferences`
--
ALTER TABLE `vtiger_user_module_preferences`
  ADD CONSTRAINT `fk_2_vtiger_user_module_preferences` FOREIGN KEY (`tabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE ON UPDATE CASCADE;

--
-- Constraints for table `vtiger_vendor`
--
ALTER TABLE `vtiger_vendor`
  ADD CONSTRAINT `fk_1_vtiger_vendor` FOREIGN KEY (`vendorid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_vendorcf`
--
ALTER TABLE `vtiger_vendorcf`
  ADD CONSTRAINT `fk_1_vtiger_vendorcf` FOREIGN KEY (`vendorid`) REFERENCES `vtiger_vendor` (`vendorid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_vendorcontactrel`
--
ALTER TABLE `vtiger_vendorcontactrel`
  ADD CONSTRAINT `fk_2_vtiger_vendorcontactrel` FOREIGN KEY (`vendorid`) REFERENCES `vtiger_vendor` (`vendorid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_webforms_field`
--
ALTER TABLE `vtiger_webforms_field`
  ADD CONSTRAINT `fk_1_vtiger_webforms_field` FOREIGN KEY (`webformid`) REFERENCES `vtiger_webforms` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_4_vtiger_webforms_field` FOREIGN KEY (`fieldid`) REFERENCES `vtiger_field` (`fieldid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_webform_file_fields`
--
ALTER TABLE `vtiger_webform_file_fields`
  ADD CONSTRAINT `fk_vtiger_webforms` FOREIGN KEY (`webformid`) REFERENCES `vtiger_webforms` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_wsapp_logs_details`
--
ALTER TABLE `vtiger_wsapp_logs_details`
  ADD CONSTRAINT `vtiger_wsapp_logs_basic_ibfk_1` FOREIGN KEY (`id`) REFERENCES `vtiger_wsapp_logs_basic` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_ws_entity_referencetype`
--
ALTER TABLE `vtiger_ws_entity_referencetype`
  ADD CONSTRAINT `vtiger_fk_1_actors_referencetype` FOREIGN KEY (`fieldtypeid`) REFERENCES `vtiger_ws_entity_fieldtype` (`fieldtypeid`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_ws_entity_tables`
--
ALTER TABLE `vtiger_ws_entity_tables`
  ADD CONSTRAINT `fk_1_vtiger_ws_actor_tables` FOREIGN KEY (`webservice_entity_id`) REFERENCES `vtiger_ws_entity` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vtiger_ws_referencetype`
--
ALTER TABLE `vtiger_ws_referencetype`
  ADD CONSTRAINT `fk_1_vtiger_referencetype` FOREIGN KEY (`fieldtypeid`) REFERENCES `vtiger_ws_fieldtype` (`fieldtypeid`) ON DELETE CASCADE;
SET FOREIGN_KEY_CHECKS=1;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
