-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Nov 06, 2025 at 11:06 AM
-- Server version: 10.11.14-MariaDB
-- PHP Version: 8.4.11

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: `mxdrivemimeld_mxdrive`
--

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

--
-- Table structure for table `adhocs`
--

CREATE TABLE `adhocs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `adhoc_users`
--

CREATE TABLE `adhoc_users` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `name` varchar(50) NOT NULL,
  `email` varchar(150) DEFAULT NULL,
  `mobile` varchar(14) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `admin_details`
--

CREATE TABLE `admin_details` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `first_name` varchar(191) NOT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `pincode` int(11) DEFAULT NULL,
  `email` varchar(150) NOT NULL,
  `mobile` varchar(14) NOT NULL,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `category_type` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `admin_details`
--

INSERT INTO `admin_details` (`id`, `user_id`, `service_location_id`, `first_name`, `last_name`, `address`, `country`, `state`, `city`, `active`, `pincode`, `email`, `mobile`, `created_by`, `category_type`, `created_at`, `updated_at`, `deleted_at`) VALUES
('25b1fe5c-5c8e-4c93-b4d5-3083719195bb', 42, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'test', NULL, 'test', 102, 'test', 'test', 1, 123456, 'employee1@demo.com', '9898989898', 1, NULL, '2025-10-17 05:58:15', '2025-10-17 05:58:15', NULL),
('54c6c8bc-954d-4dae-9f06-e7ab8b29afce', 73, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Admin Demo', NULL, 'Global', 102, 'Maharashtra', 'Mumbai', 1, 443211, 'admin@demo.com', '9876345654', 1, NULL, '2025-11-06 07:25:34', '2025-11-06 07:25:34', NULL),
('7d4eb738-d5f0-456a-aac7-1cf469b2522c', 1, NULL, 'admin', NULL, NULL, NULL, NULL, NULL, 0, NULL, 'admin@admin.com', '9999999999', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('b13fe789-e3b5-4f80-bebc-2933026bcbf2', 16, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'dispatcher', NULL, 'Mumbai, Maharashtra', 102, 'Maharashtra', 'Mumbai', 1, 4000051, 'dispatcher@demo.com', '1234567890', 1, NULL, '2025-09-26 10:28:18', '2025-09-26 10:29:45', NULL),
('b29ff996-831c-432b-861a-b0ce590e42a6', 9, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'employee', NULL, 'Apartment complex in Mumbai, Maharashtra', 102, 'Maharashtra', 'Mumbai', 1, 4000051, 'employee@demo.com', '1231234567', 1, NULL, '2025-09-26 10:22:14', '2025-09-29 06:38:31', NULL),
('dcb03e51-6f34-4383-8af9-1a0a25158e23', 22, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Dispatcher 1', NULL, 'Global', 237, 'New York', 'New York', 1, 123456, 'dispatcher1@demo.com', '9876543210', 1, NULL, '2025-09-29 06:31:30', '2025-09-29 06:31:30', NULL);

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

--
-- Table structure for table `admin_notifications`
--

CREATE TABLE `admin_notifications` (
  `id` char(36) NOT NULL,
  `title` varchar(191) NOT NULL,
  `url` varchar(191) NOT NULL,
  `notification_type` varchar(191) NOT NULL,
  `is_read` tinyint(1) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `airports`
--

CREATE TABLE `airports` (
  `id` char(36) NOT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `coordinates` multipolygon DEFAULT NULL,
  `lat` double(15,8) DEFAULT NULL,
  `lng` double(15,8) DEFAULT NULL,
  `airport_surge_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `company_key` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `airports`
--

INSERT INTO `airports` (`id`, `service_location_id`, `name`, `coordinates`, `lat`, `lng`, `airport_surge_fee`, `company_key`, `active`, `created_at`, `updated_at`) VALUES
('56811cab-0a2a-44b6-bd41-96fad69b0418', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Global', 0xe610000001060000000100000001030000000100000005000000a8d25fb45fd25940132f997dc45853402564015d02ad2dc0cf14123c47323840ee4d7fd17eb93540bd3b7e33c2d93dc054e92fda2ff163408cfad9ae9b0c4f40a8d25fb45fd25940132f997dc4585340, 77.38699284, 103.28709134, 0.00, NULL, 1, '2025-09-26 11:05:51', '2025-09-26 11:05:51'),
('6af067f4-4d81-43dd-9c52-c3486454af09', '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'Chhatrapati Shivaji Maharaj International Airport', 0xe61000000106000000010000000103000000010000000c0000001d3326bbe6ff3340508338a465c03fc0c699b38932b028c081c90899e7bd38408f19935df3f345406e72a9713bf43e40459631d935ff08406932cb80501e47408f19935df32343406d7bcc1237ac5140c78cc9aef977544073d24409810e51409a8dc9aef98d5c40d872b56667855240cdc664d7fc7b6540bec41727c54f5140cdc664d7fc166140c946976fbafe48409a8dc9aef9bd5940a19ecd6f0e4821408f19935df3cb4f4081c90899e7bd38401d3326bbe6ff3340508338a465c03fc0, -31.75155093, 19.99961443, 0.00, NULL, 1, '2025-10-16 09:14:51', '2025-10-16 09:14:51');

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

--
-- Table structure for table `banner_images`
--

CREATE TABLE `banner_images` (
  `id` char(36) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `banner_images`
--

INSERT INTO `banner_images` (`id`, `image`, `active`, `created_at`, `updated_at`) VALUES
('79fd2043-296c-4b59-9823-6972ff51d04f', 'n6nxJTjlGBvmNcCbwMZZVQYvyAbomlprpbQDJUnk.png', 1, '2025-09-26 10:46:36', '2025-09-26 10:49:06');

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

--
-- Table structure for table `cancellation_reasons`
--

CREATE TABLE `cancellation_reasons` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `user_type` enum('user','driver') NOT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `payment_type` enum('free','compensate') NOT NULL,
  `arrival_status` enum('before','after') NOT NULL,
  `reason` text NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `compensate_from` enum('compensate_from_user','compensate_from_driver') DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cancellation_reasons`
--

INSERT INTO `cancellation_reasons` (`id`, `company_key`, `user_type`, `transport_type`, `payment_type`, `arrival_status`, `reason`, `translation_dataset`, `compensate_from`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('0abe98f2-f2b3-4240-bddd-5cc480269184', NULL, 'user', 'delivery', 'compensate', 'after', 'Driver Took too much time', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver Took too much time\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('0ef91c42-248f-4a84-b35b-fbbb1c3a9994', NULL, 'driver', 'delivery', 'free', 'before', 'Cancel for User', '{\"en\":{\"locale\":\"en\",\"name\":\"Cancel for User\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('137e9eb0-28f6-4c09-901f-a52321c13e34', NULL, 'user', 'taxi', 'free', 'before', 'Driver taking too long', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver taking too long\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('329b130c-fc62-420f-9c15-08e962635f86', NULL, 'driver', 'taxi', 'compensate', 'after', 'User Under Influence', '{\"en\":{\"locale\":\"en\",\"name\":\"User Under Influence\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('3d7cdc3e-62f8-4087-aadf-b113b99bdd44', NULL, 'driver', 'delivery', 'free', 'after', 'User Not Responsive', '{\"en\":{\"locale\":\"en\",\"name\":\"User Not Responsive\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('417d0107-ed7c-4d3c-a611-9b788d75e66c', NULL, 'user', 'delivery', 'free', 'before', 'Driver taking too long to arrive', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver taking too long to arrive\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('49a15bff-2443-40e0-96ad-d35dd76e1054', NULL, 'driver', 'delivery', 'compensate', 'before', 'Do not want to say', '{\"en\":{\"locale\":\"en\",\"name\":\"Do not want to say\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('4b0a0043-97a4-4160-9ce5-dcf17c034d0a', NULL, 'driver', 'delivery', 'compensate', 'after', 'User Took too much time', '{\"en\":{\"locale\":\"en\",\"name\":\"User Took too much time\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('867a120d-8bab-40be-bad8-f4fe832ccabd', NULL, 'driver', 'taxi', 'free', 'before', 'Cancel for User', '{\"en\":{\"locale\":\"en\",\"name\":\"Cancel for User\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('915f4de9-d3e7-4b07-b59f-721ef554a98c', NULL, 'user', 'taxi', 'free', 'after', 'Driver Under Influence', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver Under Influence\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('a636f783-0374-4497-a719-9acdeda43471', NULL, 'user', 'delivery', 'free', 'after', 'Driver Under Influence', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver Under Influence\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('b9f0f682-3925-47c4-9791-d8a0e958892c', NULL, 'driver', 'taxi', 'compensate', 'before', 'Do not want to say', '{\"en\":{\"locale\":\"en\",\"name\":\"Do not want to say\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('ced0f99b-5ce0-446d-b362-c1bd6c7bd7ed', NULL, 'user', 'taxi', 'compensate', 'before', 'Do not want to say', '{\"en\":{\"locale\":\"en\",\"name\":\"Do not want to say\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, 'driver', 'taxi', 'free', 'after', 'User Not Responsive', '{\"en\":{\"locale\":\"en\",\"name\":\"User Not Responsive\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('edc70c0d-8624-40ea-a793-f9d42fb66838', NULL, 'user', 'delivery', 'compensate', 'before', 'Do not want to say', '{\"en\":{\"locale\":\"en\",\"name\":\"Do not want to say\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL),
('fd5620c0-042e-447b-b20e-381b6b26dfb0', NULL, 'user', 'taxi', 'compensate', 'after', 'Driver Took too much time', '{\"en\":{\"locale\":\"en\",\"name\":\"Driver Took too much time\"}}', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10', NULL);

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

--
-- Table structure for table `cancellation_reason_translations`
--

CREATE TABLE `cancellation_reason_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `cancellation_reason_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cancellation_reason_translations`
--

INSERT INTO `cancellation_reason_translations` (`id`, `cancellation_reason_id`, `name`, `locale`, `created_at`, `updated_at`) VALUES
(1, '137e9eb0-28f6-4c09-901f-a52321c13e34', 'Driver taking too long', 'en', NULL, NULL),
(2, '915f4de9-d3e7-4b07-b59f-721ef554a98c', 'Driver Under Influence', 'en', NULL, NULL),
(3, 'fd5620c0-042e-447b-b20e-381b6b26dfb0', 'Driver Took too much time', 'en', NULL, NULL),
(4, 'ced0f99b-5ce0-446d-b362-c1bd6c7bd7ed', 'Do not want to say', 'en', NULL, NULL),
(5, '867a120d-8bab-40be-bad8-f4fe832ccabd', 'Cancel for User', 'en', NULL, NULL),
(6, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', 'User Not Responsive', 'en', NULL, NULL),
(7, 'b9f0f682-3925-47c4-9791-d8a0e958892c', 'Do not want to say', 'en', NULL, NULL),
(8, '329b130c-fc62-420f-9c15-08e962635f86', 'User Under Influence', 'en', NULL, NULL),
(9, '417d0107-ed7c-4d3c-a611-9b788d75e66c', 'Driver taking too long to arrive', 'en', NULL, NULL),
(10, 'a636f783-0374-4497-a719-9acdeda43471', 'Driver Under Influence', 'en', NULL, NULL),
(11, '0abe98f2-f2b3-4240-bddd-5cc480269184', 'Driver Took too much time', 'en', NULL, NULL),
(12, 'edc70c0d-8624-40ea-a793-f9d42fb66838', 'Do not want to say', 'en', NULL, NULL),
(13, '0ef91c42-248f-4a84-b35b-fbbb1c3a9994', 'Cancel for User', 'en', NULL, NULL),
(14, '3d7cdc3e-62f8-4087-aadf-b113b99bdd44', 'User Not Responsive', 'en', NULL, NULL),
(15, '49a15bff-2443-40e0-96ad-d35dd76e1054', 'Do not want to say', 'en', NULL, NULL),
(16, '4b0a0043-97a4-4160-9ce5-dcf17c034d0a', 'User Took too much time', 'en', NULL, NULL);

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

--
-- Table structure for table `card_info`
--

CREATE TABLE `card_info` (
  `id` char(36) NOT NULL,
  `customer_id` varchar(191) NOT NULL,
  `merchant_id` varchar(191) NOT NULL,
  `card_token` varchar(191) NOT NULL,
  `valid_through` varchar(191) NOT NULL,
  `last_number` int(11) NOT NULL,
  `card_type` varchar(191) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `user_role` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `car_makes`
--

CREATE TABLE `car_makes` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `vehicle_make_for` enum('taxi','motor_bike','truck') DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `car_models`
--

CREATE TABLE `car_models` (
  `id` int(10) UNSIGNED NOT NULL,
  `make_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `chat`
--

CREATE TABLE `chat` (
  `id` char(36) NOT NULL,
  `user_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `chats`
--

CREATE TABLE `chats` (
  `id` char(36) NOT NULL,
  `message` varchar(191) NOT NULL,
  `from_type` int(11) NOT NULL COMMENT '1:user,2:driver',
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `delivered` tinyint(1) NOT NULL DEFAULT 0,
  `seen` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

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

CREATE TABLE `chat_messages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `chat_id` char(36) NOT NULL,
  `from_id` int(11) NOT NULL,
  `to_id` int(11) NOT NULL,
  `message` text DEFAULT NULL,
  `image_status` int(11) NOT NULL DEFAULT 0,
  `image_url` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`image_url`)),
  `audio_url` varchar(191) DEFAULT NULL,
  `type` enum('text','image','audio') NOT NULL DEFAULT 'text',
  `unseen_count` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `cities`
--

CREATE TABLE `cities` (
  `id` char(36) NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `alias` varchar(50) DEFAULT NULL,
  `display_order` int(10) UNSIGNED DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `state_id` char(36) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `companies`
--

CREATE TABLE `companies` (
  `id` char(36) NOT NULL,
  `admin_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `owner_name` varchar(191) NOT NULL,
  `vat_number` varchar(191) DEFAULT NULL,
  `mobile` varchar(191) NOT NULL,
  `landline` varchar(14) DEFAULT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `postal_code` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `complaints`
--

CREATE TABLE `complaints` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `complaint_type` varchar(191) NOT NULL DEFAULT 'general',
  `complaint_title_id` char(36) NOT NULL,
  `description` longtext NOT NULL,
  `status` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `complaint_titles`
--

CREATE TABLE `complaint_titles` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `user_type` enum('user','driver','owner') NOT NULL,
  `complaint_type` varchar(191) NOT NULL DEFAULT 'dispute',
  `title` text NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `complaint_title_translations`
--

CREATE TABLE `complaint_title_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `complaint_title_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `conversations`
--

CREATE TABLE `conversations` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `admin_id` char(36) DEFAULT NULL,
  `subject` varchar(191) DEFAULT NULL,
  `is_closed` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `conversations`
--

INSERT INTO `conversations` (`id`, `user_id`, `admin_id`, `subject`, `is_closed`, `created_at`, `updated_at`) VALUES
('4fa5b816-e7a0-43c6-865b-e527b601ff31', 3, NULL, 'Jhon Doe', 1, '2025-10-01 11:53:23', '2025-10-17 04:22:35'),
('5a8c061e-b7ba-4beb-b269-046db5459e9e', 20, NULL, 'shubhkar', 0, '2025-09-30 11:09:29', '2025-09-30 11:09:29'),
('bb003040-37b5-4a8f-84fa-0c79ae5d6fe1', 2, NULL, 'User', 1, '2025-10-09 10:19:53', '2025-10-17 04:41:31'),
('fb13093d-c05d-44fe-a569-30f483cd3c29', 26, NULL, 'Driver', 1, '2025-10-08 05:14:33', '2025-10-17 04:18:34');

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

--
-- Table structure for table `countries`
--

CREATE TABLE `countries` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `dial_code` varchar(255) NOT NULL,
  `dial_min_length` int(11) NOT NULL DEFAULT 0,
  `dial_max_length` int(11) NOT NULL DEFAULT 0,
  `code` varchar(255) DEFAULT NULL,
  `currency_name` varchar(191) DEFAULT NULL,
  `currency_code` varchar(191) DEFAULT NULL,
  `currency_symbol` varchar(191) DEFAULT NULL,
  `flag` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `countries`
--

INSERT INTO `countries` (`id`, `name`, `dial_code`, `dial_min_length`, `dial_max_length`, `code`, `currency_name`, `currency_code`, `currency_symbol`, `flag`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Afghanistan', '+93', 7, 14, 'AF', 'afghani', 'AFN', '؋', 'AF.png', 1, NULL, NULL),
(2, 'Albania', '+355', 7, 14, 'AL', 'lek', 'ALL', 'Lek', 'AL.png', 1, NULL, NULL),
(3, 'Antarctica', '+672', 7, 14, 'AQ', '', '', '', 'AQ.png', 1, NULL, NULL),
(4, 'Algeria', '+213', 7, 14, 'DZ', 'Algerian dinar', 'DZD', 'DZD', 'DZ.png', 1, NULL, NULL),
(5, 'American Samoa', '+1', 7, 14, 'AS', 'US dollar', 'USD', '$', 'AS.png', 1, NULL, NULL),
(6, 'Andorra', '+376', 7, 14, 'AD', 'euro', 'EUR', '€', 'AD.png', 1, NULL, NULL),
(7, 'Angola', '+244', 7, 14, 'AO', 'kwanza', 'AOA', 'Kz', 'AO.png', 1, NULL, NULL),
(8, 'Antigua and Barbuda', '+1', 7, 14, 'AG', 'East Caribbean dollar', 'XCD', '$', 'AG.png', 1, NULL, NULL),
(9, 'Azerbaijan', '+994', 7, 14, 'AZ', 'Azerbaijani manat', 'AZN', 'ман', 'AZ.png', 1, NULL, NULL),
(10, 'Argentina', '+54', 7, 14, 'AR', 'Argentine peso', 'ARS', '$', 'AR.png', 1, NULL, NULL),
(11, 'Australia', '+61', 7, 14, 'AU', 'Australian dollar', 'AUD', '$', 'AU.png', 1, NULL, NULL),
(12, 'Austria', '+43', 7, 14, 'AT', 'euro', 'EUR', '€', 'AT.png', 1, NULL, NULL),
(13, 'Bahamas', '+1', 7, 14, 'BS', 'Bahamian dollar', 'BSD', '$', 'BS.png', 1, NULL, NULL),
(14, 'Bahrain', '+973', 7, 14, 'BH', 'Bahraini dinar', 'BHD', 'BHD', 'BH.png', 1, NULL, NULL),
(15, 'Bangladesh', '+880', 7, 14, 'BD', 'taka (inv.)', 'BDT', 'BDT', 'BD.png', 1, NULL, NULL),
(16, 'Armenia', '+374', 7, 14, 'AM', 'dram (inv.)', 'AMD', 'AMD', 'AM.png', 1, NULL, NULL),
(17, 'Barbados', '+1', 7, 14, 'BB', 'Barbados dollar', 'BBD', '$', 'BB.png', 1, NULL, NULL),
(18, 'Belgium', '+32', 7, 14, 'BE', 'euro', 'EUR', '€', 'BE.png', 1, NULL, NULL),
(19, 'Bermuda', '+1', 7, 14, 'BM', 'Bermuda dollar', 'BMD', '$', 'BM.png', 1, NULL, NULL),
(20, 'Bhutan', '+975', 7, 14, 'BT', 'ngultrum (inv.)', 'BTN', 'BTN', 'BT.png', 1, NULL, NULL),
(21, 'Bolivia, Plurinational State of', '+591', 7, 14, 'BO', 'boliviano', 'BOB', '$b', 'BO.png', 1, NULL, NULL),
(22, 'Bosnia and Herzegovina', '+387', 7, 14, 'BA', 'convertible mark', 'BAM', 'KM', 'BA.png', 1, NULL, NULL),
(23, 'Botswana', '+267', 7, 14, 'BW', 'pula (inv.)', 'BWP', 'P', 'BW.png', 1, NULL, NULL),
(24, 'Bouvet Island', '+47', 7, 14, 'BV', '', '', 'kr', 'BV.png', 1, NULL, NULL),
(25, 'Brazil', '+55', 7, 14, 'BR', 'real (pl. reais)', 'BRL', 'R$', 'BR.png', 1, NULL, NULL),
(26, 'Belize', '+501', 7, 14, 'BZ', 'Belize dollar', 'BZD', 'BZ$', 'BZ.png', 1, NULL, NULL),
(27, 'British Indian Ocean Territory', '+246', 7, 14, 'IO', 'US dollar', 'USD', '$', 'IO.png', 1, NULL, NULL),
(28, 'Solomon Islands', '+677', 7, 14, 'SB', 'Solomon Islands dollar', 'SBD', '$', 'SB.png', 1, NULL, NULL),
(29, 'Virgin Islands, British', '+1', 7, 14, 'VG', 'US dollar', 'USD', '$', 'VG.png', 1, NULL, NULL),
(30, 'Brunei Darussalam', '+673', 7, 14, 'BN', 'Brunei dollar', 'BND', '$', 'BN.png', 1, NULL, NULL),
(31, 'Bulgaria', '+359', 7, 14, 'BG', 'lev (pl. leva)', 'BGN', 'лв', 'BG.png', 1, NULL, NULL),
(32, 'Myanmar', '+95', 7, 14, 'MM', 'kyat', 'MMK', 'K', 'MM.png', 1, NULL, NULL),
(33, 'Burundi', '+257', 7, 14, 'BI', 'Burundi franc', 'BIF', 'BIF', 'BI.png', 1, NULL, NULL),
(34, 'Belarus', '+375', 7, 14, 'BY', 'Belarusian rouble', 'BYR', 'p.', 'BY.png', 1, NULL, NULL),
(35, 'Cambodia', '+855', 7, 14, 'KH', 'riel', 'KHR', '៛', 'KH.png', 1, NULL, NULL),
(36, 'Cameroon', '+237', 7, 14, 'CM', 'CFA franc (BEAC)', 'XAF', 'FCF', 'CM.png', 1, NULL, NULL),
(37, 'Canada', '+1', 7, 14, 'CA', 'Canadian dollar', 'CAD', '$', 'CA.png', 1, NULL, NULL),
(38, 'Cape Verde', '+238', 7, 14, 'CV', 'Cape Verde escudo', 'CVE', 'CVE', 'CV.png', 1, NULL, NULL),
(39, 'Cayman Islands', '+1', 7, 14, 'KY', 'Cayman Islands dollar', 'KYD', '$', 'KY.png', 1, NULL, NULL),
(40, 'Central African Republic', '+236', 7, 14, 'CF', 'CFA franc (BEAC)', 'XAF', 'CFA', 'CF.png', 1, NULL, NULL),
(41, 'Sri Lanka', '+94', 7, 14, 'LK', 'Sri Lankan rupee', 'LKR', '₨', 'LK.png', 1, NULL, NULL),
(42, 'Chad', '+235', 7, 14, 'TD', 'CFA franc (BEAC)', 'XAF', 'XAF', 'TD.png', 1, NULL, NULL),
(43, 'Chile', '+56', 7, 14, 'CL', 'Chilean peso', 'CLP', 'CLP', 'CL.png', 1, NULL, NULL),
(44, 'China', '+86', 7, 14, 'CN', 'renminbi-yuan (inv.)', 'CNY', '¥', 'CN.png', 1, NULL, NULL),
(45, 'Taiwan, Province of China', '+886', 7, 14, 'TW', 'new Taiwan dollar', 'TWD', 'NT$', 'TW.png', 1, NULL, NULL),
(46, 'Christmas Island', '+61', 7, 14, 'CX', 'Australian dollar', 'AUD', '$', 'CX.png', 1, NULL, NULL),
(47, 'Cocos (Keeling) Islands', '+61', 7, 14, 'CC', 'Australian dollar', 'AUD', '$', 'CC.png', 1, NULL, NULL),
(48, 'Colombia', '+57', 7, 14, 'CO', 'Colombian peso', 'COP', '$', 'CO.png', 1, NULL, NULL),
(49, 'Comoros', '+269', 7, 14, 'KM', 'Comorian franc', 'KMF', 'KMF', 'KM.png', 1, NULL, NULL),
(50, 'Mayotte', '+262', 7, 14, 'YT', 'euro', 'EUR', '€', 'YT.png', 1, NULL, NULL),
(51, 'Congo', '+242', 7, 14, 'CG', 'CFA franc (BEAC)', 'XAF', 'FCF', 'CG.png', 1, NULL, NULL),
(52, 'Congo, the Democratic Republic of the Congo', '+243', 7, 14, 'CD', 'Congolese franc', 'CDF', 'CDF', 'CD.png', 1, NULL, NULL),
(53, 'Cook Islands', '+682', 7, 14, 'CK', 'New Zealand dollar', 'NZD', '$', 'CK.png', 1, NULL, NULL),
(54, 'Costa Rica', '+506', 7, 14, 'CR', 'Costa Rican colón (pl. colones)', 'CRC', '₡', 'CR.png', 1, NULL, NULL),
(55, 'Croatia', '+385', 7, 14, 'HR', 'kuna (inv.)', 'HRK', 'kn', 'HR.png', 1, NULL, NULL),
(56, 'Cuba', '+53', 7, 14, 'CU', 'Cuban peso', 'CUP', '₱', 'CU.png', 1, NULL, NULL),
(57, 'Cyprus', '+357', 7, 14, 'CY', 'euro', 'EUR', 'CYP', 'CY.png', 1, NULL, NULL),
(58, 'Czech Republic', '+420', 7, 14, 'CZ', 'Czech koruna (pl. koruny)', 'CZK', 'Kč', 'CZ.png', 1, NULL, NULL),
(59, 'Benin', '+229', 7, 14, 'BJ', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'BJ.png', 1, NULL, NULL),
(60, 'Denmark', '+45', 7, 14, 'DK', 'Danish krone', 'DKK', 'kr', 'DK.png', 1, NULL, NULL),
(61, 'Dominica', '+1', 7, 14, 'DM', 'East Caribbean dollar', 'XCD', '$', 'DM.png', 1, NULL, NULL),
(62, 'Dominican Republic', '+1', 7, 14, 'DO', 'Dominican peso', 'DOP', 'RD$', 'DO.png', 1, NULL, NULL),
(63, 'Ecuador', '+593', 7, 14, 'EC', 'US dollar', 'USD', '$', 'EC.png', 1, NULL, NULL),
(64, 'El Salvador', '+503', 7, 14, 'SV', 'Salvadorian colón (pl. colones)', 'SVC', '$', 'SV.png', 1, NULL, NULL),
(65, 'Equatorial Guinea', '+240', 7, 14, 'GQ', 'CFA franc (BEAC)', 'XAF', 'FCF', 'GQ.png', 1, NULL, NULL),
(66, 'Ethiopia', '+251', 7, 14, 'ET', 'birr (inv.)', 'ETB', 'ETB', 'ET.png', 1, NULL, NULL),
(67, 'Eritrea', '+291', 7, 14, 'ER', 'nakfa', 'ERN', 'Nfk', 'ER.png', 1, NULL, NULL),
(68, 'Estonia', '+372', 7, 14, 'EE', 'euro', 'EUR', 'kr', 'EE.png', 1, NULL, NULL),
(69, 'Faroe Islands', '+298', 7, 14, 'FO', 'Danish krone', 'DKK', 'kr', 'FO.png', 1, NULL, NULL),
(70, 'Falkland Islands (Malvinas)', '+500', 7, 14, 'FK', 'Falkland Islands pound', 'FKP', '£', 'FK.png', 1, NULL, NULL),
(71, 'South Georgia and the South Sandwich Islands', '+44', 7, 14, 'GS', '', '', '£', 'GS.png', 1, NULL, NULL),
(72, 'Fiji', '+679', 7, 14, 'FJ', 'Fiji dollar', 'FJD', '$', 'FJ.png', 1, NULL, NULL),
(73, 'Finland', '+358', 7, 14, 'FI', 'euro', 'EUR', '€', 'FI.png', 1, NULL, NULL),
(74, 'France', '+33', 7, 14, 'FR', 'euro', 'EUR', '€', 'FR.png', 1, NULL, NULL),
(75, 'French Guiana', '+594', 7, 14, 'GF', 'euro', 'EUR', '€', 'GF.png', 1, NULL, NULL),
(76, 'French Polynesia', '+689', 7, 14, 'PF', 'CFP franc', 'XPF', 'XPF', 'PF.png', 1, NULL, NULL),
(77, 'French Southern Territories', '+33', 7, 14, 'TF', 'euro', 'EUR', '€', 'TF.png', 1, NULL, NULL),
(78, 'Djibouti', '+253', 7, 14, 'DJ', 'Djibouti franc', 'DJF', 'DJF', 'DJ.png', 1, NULL, NULL),
(79, 'Gabon', '+241', 7, 14, 'GA', 'CFA franc (BEAC)', 'XAF', 'FCF', 'GA.png', 1, NULL, NULL),
(80, 'Georgia', '+995', 7, 14, 'GE', 'lari', 'GEL', 'GEL', 'GE.png', 1, NULL, NULL),
(81, 'Gambia', '+220', 7, 14, 'GM', 'dalasi (inv.)', 'GMD', 'D', 'GM.png', 1, NULL, NULL),
(82, 'Palestinian Territory, Occupied', '+970', 7, 14, 'PS', NULL, NULL, '₪', 'PS.png', 1, NULL, NULL),
(83, 'Germany', '+49', 7, 14, 'DE', 'euro', 'EUR', '€', 'DE.png', 1, NULL, NULL),
(84, 'Ghana', '+233', 7, 14, 'GH', 'Ghana cedi', 'GHS', '¢', 'GH.png', 1, NULL, NULL),
(85, 'Gibraltar', '+350', 7, 14, 'GI', 'Gibraltar pound', 'GIP', '£', 'GI.png', 1, NULL, NULL),
(86, 'Kiribati', '+686', 7, 14, 'KI', 'Australian dollar', 'AUD', '$', 'KI.png', 1, NULL, NULL),
(87, 'Greece', '+30', 7, 14, 'GR', 'euro', 'EUR', '€', 'GR.png', 1, NULL, NULL),
(88, 'Greenland', '+299', 7, 14, 'GL', 'Danish krone', 'DKK', 'kr', 'GL.png', 1, NULL, NULL),
(89, 'Grenada', '+1', 7, 14, 'GD', 'East Caribbean dollar', 'XCD', '$', 'GD.png', 1, NULL, NULL),
(90, 'Guadeloupe', '+590', 7, 14, 'GP', 'euro', 'EUR ', '€', 'GP.png', 1, NULL, NULL),
(91, 'Guam', '+1', 7, 14, 'GU', 'US dollar', 'USD', '$', 'GU.png', 1, NULL, NULL),
(92, 'Guatemala', '+502', 7, 14, 'GT', 'quetzal (pl. quetzales)', 'GTQ', 'Q', 'GT.png', 1, NULL, NULL),
(93, 'Guinea', '+224', 7, 14, 'GN', 'Guinean franc', 'GNF', 'GNF', 'GN.png', 1, NULL, NULL),
(94, 'Guyana', '+592', 7, 14, 'GY', 'Guyana dollar', 'GYD', '$', 'GY.png', 1, NULL, NULL),
(95, 'Haiti', '+509', 7, 14, 'HT', 'gourde', 'HTG', 'G', 'HT.png', 1, NULL, NULL),
(96, 'Heard Island and McDonald Islands', '+61', 7, 14, 'HM', '', '', '$', 'HM.png', 1, NULL, NULL),
(97, 'Holy See (Vatican City State)', '+39', 7, 14, 'VA', 'euro', 'EUR', '€', 'VA.png', 1, NULL, NULL),
(98, 'Honduras', '+504', 7, 14, 'HN', 'lempira', 'HNL', 'L', 'HN.png', 1, NULL, NULL),
(99, 'Hong Kong', '+852', 7, 14, 'HK', 'Hong Kong dollar', 'HKD', '$', 'HK.png', 1, NULL, NULL),
(100, 'Hungary', '+36', 7, 14, 'HU', 'forint (inv.)', 'HUF', 'Ft', 'HU.png', 1, NULL, NULL),
(101, 'Iceland', '+354', 7, 14, 'IS', 'króna (pl. krónur)', 'ISK', 'kr', 'IS.png', 1, NULL, NULL),
(102, 'India', '+91', 7, 14, 'IN', 'Indian rupee', 'INR', '₹', 'IN.png', 1, NULL, NULL),
(103, 'Indonesia', '+62', 7, 14, 'ID', 'Indonesian rupiah (inv.)', 'IDR', 'Rp', 'ID.png', 1, NULL, NULL),
(104, 'Iran, Islamic Republic of', '+98', 7, 14, 'IR', 'Iranian rial', 'IRR', '﷼', 'IR.png', 1, NULL, NULL),
(105, 'Iraq', '+964', 7, 14, 'IQ', 'Iraqi dinar', 'IQD', 'IQD', 'IQ.png', 1, NULL, NULL),
(106, 'Ireland', '+353', 7, 14, 'IE', 'euro', 'EUR', '€', 'IE.png', 1, NULL, NULL),
(107, 'Israel', '+972', 7, 14, 'IL', 'shekel', 'ILS', '₪', 'IL.png', 1, NULL, NULL),
(108, 'Italy', '+39', 7, 14, 'IT', 'euro', 'EUR', '€', 'IT.png', 1, NULL, NULL),
(109, 'Côte d\'Ivoire', '+225', 7, 14, 'CI', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'CI.png', 1, NULL, NULL),
(110, 'Jamaica', '+1', 7, 14, 'JM', 'Jamaica dollar', 'JMD', '$', 'JM.png', 1, NULL, NULL),
(111, 'Japan', '+81', 7, 14, 'JP', 'yen (inv.)', 'JPY', '¥', 'JP.png', 1, NULL, NULL),
(112, 'Kazakhstan', '+7', 7, 14, 'KZ', 'tenge (inv.)', 'KZT', 'лв', 'KZ.png', 1, NULL, NULL),
(113, 'Jordan', '+962', 7, 14, 'JO', 'Jordanian dinar', 'JOD', 'JOD', 'JO.png', 1, NULL, NULL),
(114, 'Kenya', '+254', 7, 14, 'KE', 'Kenyan shilling', 'KES', 'KES', 'KE.png', 1, NULL, NULL),
(115, 'Korea, Democratic People\'s Republic of', '+850', 7, 14, 'KP', 'North Korean won (inv.)', 'KPW', '₩', 'KP.png', 1, NULL, NULL),
(116, 'Korea, Republic of', '+82', 7, 14, 'KR', 'South Korean won (inv.)', 'KRW', '₩', 'KR.png', 1, NULL, NULL),
(117, 'Kuwait', '+965', 7, 14, 'KW', 'Kuwaiti dinar', 'KWD', 'KWD', 'KW.png', 1, NULL, NULL),
(118, 'Kyrgyzstan', '+996', 7, 14, 'KG', 'som', 'KGS', 'лв', 'KG.png', 1, NULL, NULL),
(119, 'Lao People\'s Democratic Republic', '+856', 7, 14, 'LA', 'kip (inv.)', 'LAK', '₭', 'LA.png', 1, NULL, NULL),
(120, 'Lebanon', '+961', 7, 14, 'LB', 'Lebanese pound', 'LBP', '£', 'LB.png', 1, NULL, NULL),
(121, 'Lesotho', '+266', 7, 14, 'LS', 'loti (pl. maloti)', 'LSL', 'L', 'LS.png', 1, NULL, NULL),
(122, 'Latvia', '+371', 7, 14, 'LV', 'euro', 'EUR', 'Ls', 'LV.png', 1, NULL, NULL),
(123, 'Liberia', '+231', 7, 14, 'LR', 'Liberian dollar', 'LRD', '$', 'LR.png', 1, NULL, NULL),
(124, 'Libya', '+218', 7, 14, 'LY', 'Libyan dinar', 'LYD', 'LYD', 'LY.png', 1, NULL, NULL),
(125, 'Liechtenstein', '+423', 7, 14, 'LI', 'Swiss franc', 'CHF', 'CHF', 'LI.png', 1, NULL, NULL),
(126, 'Lithuania', '+370', 7, 14, 'LT', 'euro', 'EUR', 'Lt', 'LT.png', 1, NULL, NULL),
(127, 'Luxembourg', '+352', 7, 14, 'LU', 'euro', 'EUR', '€', 'LU.png', 1, NULL, NULL),
(128, 'Macao', '+853', 7, 14, 'MO', 'pataca', 'MOP', 'MOP', 'MO.png', 1, NULL, NULL),
(129, 'Madagascar', '+261', 7, 14, 'MG', 'ariary', 'MGA', 'MGA', 'MG.png', 1, NULL, NULL),
(130, 'Malawi', '+265', 7, 14, 'MW', 'Malawian kwacha (inv.)', 'MWK', 'MK', 'MW.png', 1, NULL, NULL),
(131, 'Malaysia', '+60', 7, 14, 'MY', 'ringgit (inv.)', 'MYR', 'RM', 'MY.png', 1, NULL, NULL),
(132, 'Maldives', '+960', 7, 14, 'MV', 'rufiyaa', 'MVR', 'Rf', 'MV.png', 1, NULL, NULL),
(133, 'Mali', '+223', 7, 14, 'ML', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'ML.png', 1, NULL, NULL),
(134, 'Malta', '+356', 7, 14, 'MT', 'euro', 'EUR', 'MTL', 'MT.png', 1, NULL, NULL),
(135, 'Martinique', '+596', 7, 14, 'MQ', 'euro', 'EUR', '€', 'MQ.png', 1, NULL, NULL),
(136, 'Mauritania', '+222', 7, 14, 'MR', 'ouguiya', 'MRO', 'UM', 'MR.png', 1, NULL, NULL),
(137, 'Mauritius', '+230', 7, 14, 'MU', 'Mauritian rupee', 'MUR', '₨', 'MU.png', 1, NULL, NULL),
(138, 'Mexico', '+52', 7, 14, 'MX', 'Mexican peso', 'MXN', '$', 'MX.png', 1, NULL, NULL),
(139, 'Monaco', '+377', 7, 14, 'MC', 'euro', 'EUR', '€', 'MC.png', 1, NULL, NULL),
(140, 'Mongolia', '+976', 7, 14, 'MN', 'tugrik', 'MNT', '₮', 'MN.png', 1, NULL, NULL),
(141, 'Moldova, Republic of', '+373', 7, 14, 'MD', 'Moldovan leu (pl. lei)', 'MDL', 'MDL', 'MD.png', 1, NULL, NULL),
(142, 'Montenegro', '+382', 7, 14, 'ME', 'euro', 'EUR', '€', 'ME.png', 1, NULL, NULL),
(143, 'Montserrat', '+1', 7, 14, 'MS', 'East Caribbean dollar', 'XCD', '$', 'MS.png', 1, NULL, NULL),
(144, 'Morocco', '+212', 7, 14, 'MA', 'Moroccan dirham', 'MAD', 'MAD', 'MA.png', 1, NULL, NULL),
(145, 'Mozambique', '+258', 7, 14, 'MZ', 'metical', 'MZN', 'MT', 'MZ.png', 1, NULL, NULL),
(146, 'Oman', '+968', 7, 14, 'OM', 'Omani rial', 'OMR', '﷼', 'OM.png', 1, NULL, NULL),
(147, 'Namibia', '+264', 7, 14, 'NA', 'Namibian dollar', 'NAD', '$', 'NA.png', 1, NULL, NULL),
(148, 'Nauru', '+674', 7, 14, 'NR', 'Australian dollar', 'AUD', '$', 'NR.png', 1, NULL, NULL),
(149, 'Nepal', '+977', 7, 14, 'NP', 'Nepalese rupee', 'NPR', '₨', 'NP.png', 1, NULL, NULL),
(150, 'Netherlands', '+31', 7, 14, 'NL', 'euro', 'EUR', '€', 'NL.png', 1, NULL, NULL),
(151, 'Curaçao', '+599', 7, 14, 'CW', 'Netherlands Antillean guilder (CW1)', 'ANG', 'CG', 'Ccc.png', 1, NULL, NULL),
(152, 'Aruba', '+297', 7, 14, 'AW', 'Aruban guilder', 'AWG', 'ƒ', 'AW.png', 1, NULL, NULL),
(153, 'New Caledonia', '+687', 7, 14, 'NC', 'CFP franc', 'XPF', 'XPF', 'NC.png', 1, NULL, NULL),
(154, 'Vanuatu', '+678', 7, 14, 'VU', 'vatu (inv.)', 'VUV', 'Vt', 'VU.png', 1, NULL, NULL),
(155, 'New Zealand', '+64', 7, 14, 'NZ', 'New Zealand dollar', 'NZD', '$', 'NZ.png', 1, NULL, NULL),
(156, 'Nicaragua', '+505', 7, 14, 'NI', 'córdoba oro', 'NIO', 'C$', 'NI.png', 1, NULL, NULL),
(157, 'Niger', '+227', 7, 14, 'NE', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'NE.png', 1, NULL, NULL),
(158, 'Nigeria', '+234', 7, 14, 'NG', 'naira (inv.)', 'NGN', '₦', 'NG.png', 1, NULL, NULL),
(159, 'Niue', '+683', 7, 14, 'NU', 'New Zealand dollar', 'NZD', '$', 'NU.png', 1, NULL, NULL),
(160, 'Norfolk Island', '+672', 7, 14, 'NF', 'Australian dollar', 'AUD', '$', 'NF.png', 1, NULL, NULL),
(161, 'Norway', '+47', 7, 14, 'NO', 'Norwegian krone (pl. kroner)', 'NOK', 'kr', 'NO.png', 1, NULL, NULL),
(162, 'Northern Mariana Islands', '+1', 7, 14, 'MP', 'US dollar', 'USD', '$', 'MP.png', 1, NULL, NULL),
(163, 'United States Minor Outlying Islands', '+1', 7, 14, 'UM', 'US dollar', 'USD', '$', 'UM.png', 1, NULL, NULL),
(164, 'Micronesia, Federated States of Micronesia', '+691', 7, 14, 'FM', 'US dollar', 'USD', '$', 'FM.png', 1, NULL, NULL),
(165, 'Marshall Islands', '+692', 7, 14, 'MH', 'US dollar', 'USD', '$', 'MH.png', 1, NULL, NULL),
(166, 'Palau', '+680', 7, 14, 'PW', 'US dollar', 'USD', '$', 'PW.png', 1, NULL, NULL),
(167, 'Pakistan', '+92', 7, 14, 'PK', 'Pakistani rupee', 'PKR', '₨', 'PK.png', 1, NULL, NULL),
(168, 'Panama', '+507', 7, 14, 'PA', 'balboa', 'PAB', 'B/.', 'PA.png', 1, NULL, NULL),
(169, 'Papua New Guinea', '+675', 7, 14, 'PG', 'kina (inv.)', 'PGK', 'PGK', 'PG.png', 1, NULL, NULL),
(170, 'Paraguay', '+595', 7, 14, 'PY', 'guaraní', 'PYG', 'Gs', 'PY.png', 1, NULL, NULL),
(171, 'Peru', '+51', 7, 14, 'PE', 'new sol', 'PEN', 'S/.', 'PE.png', 1, NULL, NULL),
(172, 'Philippines', '+63', 7, 14, 'PH', 'Philippine peso', 'PHP', 'Php', 'PH.png', 1, NULL, NULL),
(173, 'Pitcairn', '+649', 7, 14, 'PN', 'New Zealand dollar', 'NZD', '$', 'PN.png', 1, NULL, NULL),
(174, 'Poland', '+48', 7, 14, 'PL', 'zloty', 'PLN', 'zł', 'PL.png', 1, NULL, NULL),
(175, 'Portugal', '+351', 7, 14, 'PT', 'euro', 'EUR', '€', 'PT.png', 1, NULL, NULL),
(176, 'Guinea-Bissau', '+245', 7, 14, 'GW', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'GW.png', 1, NULL, NULL),
(177, 'Timor-Leste', '+670', 7, 14, 'TL', 'US dollar', 'USD', '$', 'TL.png', 1, NULL, NULL),
(178, 'Puerto Rico', '+1', 7, 14, 'PR', 'US dollar', 'USD', '$', 'PR.png', 1, NULL, NULL),
(179, 'Qatar', '+974', 7, 14, 'QA', 'Qatari riyal', 'QAR', '﷼', 'QA.png', 1, NULL, NULL),
(180, 'Reunion', '+262', 7, 14, 'RE', 'euro', 'EUR', '€', 'RE.png', 1, NULL, NULL),
(181, 'Romania', '+40', 7, 14, 'RO', 'Romanian leu (pl. lei)', 'RON', 'lei', 'RO.png', 1, NULL, NULL),
(182, 'Russian Federation', '+7', 7, 14, 'RU', 'Russian rouble', 'RUB', 'руб', 'RU.png', 1, NULL, NULL),
(183, 'Rwanda', '+250', 7, 14, 'RW', 'Rwandese franc', 'RWF', 'RWF', 'RW.png', 1, NULL, NULL),
(184, 'Saint Barthelemy', '+590', 7, 14, 'BL', 'euro', 'EUR', '€', 'SAB.png', 1, NULL, NULL),
(185, 'Saint Helena, Ascension and Tristan da Cunha', '+290', 7, 14, 'SH', 'Saint Helena pound', 'SHP', '£', 'SH.png', 1, NULL, NULL),
(186, 'Saint Kitts and Nevis', '+1', 7, 14, 'KN', 'East Caribbean dollar', 'XCD', '$', 'KN.png', 1, NULL, NULL),
(187, 'Anguilla', '+1', 7, 14, 'AI', 'East Caribbean dollar', 'XCD', '$', 'AI.png', 1, NULL, NULL),
(188, 'Saint Lucia', '+1', 7, 14, 'LC', 'East Caribbean dollar', 'XCD', '$', 'LC.png', 1, NULL, NULL),
(189, 'Saint Martin (French part)', '+590', 7, 14, 'MF', 'euro', 'EUR', '€', 'SMF.png', 1, NULL, NULL),
(190, 'Saint Pierre and Miquelon', '+508', 7, 14, 'PM', 'euro', 'EUR', '€', 'PM.png', 1, NULL, NULL),
(191, 'Saint Vincent and the Grenadines', '+1', 7, 14, 'VC', 'East Caribbean dollar', 'XCD', '$', 'VC.png', 1, NULL, NULL),
(192, 'San Marino', '+378', 7, 14, 'SM', 'euro', 'EUR ', '€', 'SM.png', 1, NULL, NULL),
(193, 'Sao Tome and Principe', '+239', 7, 14, 'ST', 'dobra', 'STD', 'Db', 'ST.png', 1, NULL, NULL),
(194, 'Saudi Arabia', '+966', 7, 14, 'SA', 'riyal', 'SAR', '﷼', 'SA.png', 1, NULL, NULL),
(195, 'Senegal', '+221', 7, 14, 'SN', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'SN.png', 1, NULL, NULL),
(196, 'Serbia', '+381', 7, 14, 'RS', 'Serbian dinar', 'RSD', 'РСД', 'Seb.png', 1, NULL, NULL),
(197, 'Seychelles', '+248', 7, 14, 'SC', 'Seychelles rupee', 'SCR', '₨', 'SC.png', 1, NULL, NULL),
(198, 'Sierra Leone', '+232', 7, 14, 'SL', 'leone', 'SLL', 'Le', 'SL.png', 1, NULL, NULL),
(199, 'Singapore', '+65', 7, 14, 'SG', 'Singapore dollar', 'SGD', '$', 'SG.png', 1, NULL, NULL),
(200, 'Slovakia', '+421', 7, 14, 'SK', 'euro', 'EUR', 'Sk', 'SK.png', 1, NULL, NULL),
(201, 'VietNam', '+84', 7, 14, 'VN', 'dong', 'VND', '₫', 'VN.png', 1, NULL, NULL),
(202, 'Slovenia', '+386', 7, 14, 'SI', 'euro', 'EUR', '€', 'SI.png', 1, NULL, NULL),
(203, 'Somalia', '+252', 7, 14, 'SO', 'Somali shilling', 'SOS', 'S', 'SO.png', 1, NULL, NULL),
(204, 'South Africa', '+27', 7, 14, 'ZA', 'rand', 'ZAR', 'R', 'ZA.png', 1, NULL, NULL),
(205, 'Zimbabwe', '+263', 7, 14, 'ZW', 'Zimbabwe dollar (ZW1)', 'ZWL', 'Z$', 'ZW.png', 1, NULL, NULL),
(206, 'Spain', '+34', 7, 14, 'ES', 'euro', 'EUR', '€', 'ES.png', 1, NULL, NULL),
(207, 'South Sudan', '+211', 7, 14, 'SS', 'South Sudanese pound', 'SSP', NULL, 'SD.png', 1, NULL, NULL),
(208, 'Sudan', '+249', 7, 14, 'SD', 'Sudanese pound', 'SDG', NULL, 'SD.png', 1, NULL, NULL),
(209, 'Western Sahara', '+212', 7, 14, 'EH', 'Moroccan dirham', 'MAD', 'MAD', 'EH.png', 1, NULL, NULL),
(210, 'Suriname', '+597', 7, 14, 'SR', 'Surinamese dollar', 'SRD', '$', 'SR.png', 1, NULL, NULL),
(211, 'Svalbard and Jan Mayen', '+47', 7, 14, 'SJ', 'Norwegian krone (pl. kroner)', 'NOK', 'kr', 'SJ.png', 1, NULL, NULL),
(212, 'Swaziland', '+268', 7, 14, 'SZ', 'lilangeni', 'SZL', 'SZL', 'SZ.png', 1, NULL, NULL),
(213, 'Sweden', '+46', 7, 14, 'SE', 'krona (pl. kronor)', 'SEK', 'kr', 'SE.png', 1, NULL, NULL),
(214, 'Switzerland', '+41', 7, 14, 'CH', 'Swiss franc', 'CHF', 'CHF', 'CH.png', 1, NULL, NULL),
(215, 'Syrian Arab Republic', '+963', 7, 14, 'SY', 'Syrian pound', 'SYP', '£', 'SY.png', 1, NULL, NULL),
(216, 'Tajikistan', '+992', 7, 14, 'TJ', 'somoni', 'TJS', 'TJS', 'TJ.png', 1, NULL, NULL),
(217, 'Thailand', '+66', 7, 14, 'TH', 'baht (inv.)', 'THB', '฿', 'TH.png', 1, NULL, NULL),
(218, 'Togo', '+228', 7, 14, 'TG', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'TG.png', 1, NULL, NULL),
(219, 'Tokelau', '+690', 7, 14, 'TK', 'New Zealand dollar', 'NZD', '$', 'TK.png', 1, NULL, NULL),
(220, 'Tonga', '+676', 7, 14, 'TO', 'pa’anga (inv.)', 'TOP', 'T$', 'TO.png', 1, NULL, NULL),
(221, 'Trinidad and Tobago', '+1', 7, 14, 'TT', 'Trinidad and Tobago dollar', 'TTD', 'TT$', 'TT.png', 1, NULL, NULL),
(222, 'United Arab Emirates', '+971', 7, 14, 'AE', 'UAE dirham', 'AED', 'AED', 'AE.png', 1, NULL, NULL),
(223, 'Tunisia', '+216', 7, 14, 'TN', 'Tunisian dinar', 'TND', 'TND', 'TN.png', 1, NULL, NULL),
(224, 'Turkey', '+90', 7, 14, 'TR', 'Turkish lira (inv.)', 'TRY', '₺', 'TR.png', 1, NULL, NULL),
(225, 'Turkmenistan', '+993', 7, 14, 'TM', 'Turkmen manat (inv.)', 'TMT', 'm', 'TM.png', 1, NULL, NULL),
(226, 'Turks and Caicos Islands', '+1', 7, 14, 'TC', 'US dollar', 'USD', '$', 'TC.png', 1, NULL, NULL),
(227, 'Tuvalu', '+688', 7, 14, 'TV', 'Australian dollar', 'AUD', '$', 'TV.png', 1, NULL, NULL),
(228, 'Uganda', '+256', 7, 14, 'UG', 'Uganda shilling', 'UGX', 'UGX', 'UG.png', 1, NULL, NULL),
(229, 'Ukraine', '+380', 7, 14, 'UA', 'hryvnia', 'UAH', '₴', 'UA.png', 1, NULL, NULL),
(230, 'Macedonia, the former Yugoslav Republic of', '+389', 7, 14, 'MK', 'denar (pl. denars)', 'MKD', 'ден', 'MK.png', 1, NULL, NULL),
(231, 'Egypt', '+20', 7, 14, 'EG', 'Egyptian pound', 'EGP', '£', 'EG.png', 1, NULL, NULL),
(232, 'United Kingdom', '+44', 7, 14, 'GB', 'pound sterling', 'GBP', '£', 'GB.png', 1, NULL, NULL),
(233, 'Guernsey', '+44', 7, 14, 'GG', 'Guernsey pound (GG2)', 'GGP (GG2)', '£', 'Gup.png', 1, NULL, NULL),
(234, 'Jersey', '+44', 7, 14, 'JE', 'Jersey pound (JE2)', 'JEP (JE2)', '£', 'Jr.png', 1, NULL, NULL),
(235, 'Isle of Man', '+44', 7, 14, 'IM', 'Manx pound (IM2)', 'IMP (IM2)', '£', 'Iom.png', 1, NULL, NULL),
(236, 'Tanzania, United Republic of', '+255', 7, 14, 'TZ', 'Tanzanian shilling', 'TZS', 'TZS', 'TZ.png', 1, NULL, NULL),
(237, 'United States', '+1', 7, 14, 'US', 'US dollar', 'USD', '$', 'US.png', 1, NULL, NULL),
(238, 'Virgin Islands, U.S.', '+1', 7, 14, 'VI', 'US dollar', 'USD', '$', 'VI.png', 1, NULL, NULL),
(239, 'Burkina Faso', '+226', 7, 14, 'BF', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'BF.png', 1, NULL, NULL),
(240, 'Uruguay', '+598', 7, 14, 'UY', 'Uruguayan peso', 'UYU', '$U', 'UY.png', 1, NULL, NULL),
(241, 'Uzbekistan', '+998', 7, 14, 'UZ', 'sum (inv.)', 'UZS', 'лв', 'UZ.png', 1, NULL, NULL),
(242, 'Venezuela, Bolivarian Republic of', '+58', 7, 14, 'VE', 'bolívar fuerte (pl. bolívares fuertes)', 'VEF', 'Bs', 'VE.png', 1, NULL, NULL),
(243, 'Wallis and Futuna', '+681', 7, 14, 'WF', 'CFP franc', 'XPF', 'XPF', 'WF.png', 1, NULL, NULL),
(244, 'Samoa', '+685', 7, 14, 'WS', 'tala (inv.)', 'WST', 'WS$', 'WS.png', 1, NULL, NULL),
(245, 'Yemen', '+967', 7, 14, 'YE', 'Yemeni rial', 'YER', '﷼', 'YE.png', 1, NULL, NULL),
(246, 'Zambia', '+260', 7, 14, 'ZM', 'Zambian kwacha (inv.)', 'ZMW', 'ZK', 'ZM.png', 1, NULL, NULL);

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

--
-- Table structure for table `developers`
--

CREATE TABLE `developers` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `first_name` varchar(191) NOT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `pincode` int(11) NOT NULL,
  `email` varchar(150) NOT NULL,
  `mobile` varchar(14) NOT NULL,
  `team` enum('android','ios','designing','server','testing') NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `dispatcher_location`
--

CREATE TABLE `dispatcher_location` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `place_id` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `is_airport` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `distance_matrixes`
--

CREATE TABLE `distance_matrixes` (
  `id` int(10) UNSIGNED NOT NULL,
  `origin_addresses` varchar(191) NOT NULL,
  `origin_lat` double(15,8) NOT NULL DEFAULT 0.00000000,
  `origin_lng` double(15,8) NOT NULL DEFAULT 0.00000000,
  `destination_addresses` varchar(191) NOT NULL,
  `destination_lat` double(15,8) NOT NULL DEFAULT 0.00000000,
  `destination_lng` double(15,8) NOT NULL DEFAULT 0.00000000,
  `distance` varchar(191) NOT NULL,
  `duration` varchar(191) NOT NULL,
  `json_result` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `drivers`
--

CREATE TABLE `drivers` (
  `id` int(10) UNSIGNED NOT NULL,
  `uuid` char(36) DEFAULT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `mobile` varchar(191) NOT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `postal_code` varchar(191) DEFAULT NULL,
  `gender` varchar(191) DEFAULT NULL,
  `vehicle_type` char(36) DEFAULT NULL,
  `is_subscribed` tinyint(1) NOT NULL DEFAULT 0,
  `subscription_detail_id` char(36) DEFAULT NULL,
  `route_coordinates` linestring DEFAULT NULL,
  `my_route_address` varchar(191) DEFAULT NULL,
  `my_route_lat` double(15,8) DEFAULT NULL,
  `my_route_lng` double(15,8) DEFAULT NULL,
  `enable_my_route_booking` tinyint(1) NOT NULL DEFAULT 0,
  `vehicle_year` int(11) DEFAULT NULL,
  `fleet_id` char(36) DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `car_make` int(10) UNSIGNED DEFAULT NULL,
  `custom_make` varchar(191) DEFAULT NULL,
  `car_model` int(10) UNSIGNED DEFAULT NULL,
  `custom_model` varchar(191) DEFAULT NULL,
  `car_color` varchar(191) DEFAULT NULL,
  `car_number` varchar(191) DEFAULT NULL,
  `today_trip_count` int(11) NOT NULL DEFAULT 0,
  `total_accept` int(11) NOT NULL DEFAULT 0,
  `total_reject` int(11) NOT NULL DEFAULT 0,
  `acceptance_ratio` int(11) NOT NULL DEFAULT 0,
  `last_trip_date` timestamp NULL DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `available` tinyint(1) NOT NULL DEFAULT 0,
  `reason` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `driver_level_up_id` char(36) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `drivers`
--

INSERT INTO `drivers` (`id`, `uuid`, `user_id`, `owner_id`, `service_location_id`, `name`, `mobile`, `email`, `address`, `state`, `city`, `country`, `postal_code`, `gender`, `vehicle_type`, `is_subscribed`, `subscription_detail_id`, `route_coordinates`, `my_route_address`, `my_route_lat`, `my_route_lng`, `enable_my_route_booking`, `vehicle_year`, `fleet_id`, `transport_type`, `car_make`, `custom_make`, `car_model`, `custom_model`, `car_color`, `car_number`, `today_trip_count`, `total_accept`, `total_reject`, `acceptance_ratio`, `last_trip_date`, `active`, `price_per_distance`, `approve`, `available`, `reason`, `created_at`, `updated_at`, `deleted_at`, `driver_level_up_id`) VALUES
(1, NULL, 3, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Jhon Doe', '9999999999', 'driver@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'taxi', NULL, 'Sedan', NULL, 'Sedan', 'Black', '100010', 0, 0, 0, 0, NULL, 1, 0.00, 1, 1, NULL, '2025-09-26 10:04:59', '2025-11-06 10:46:45', NULL, NULL),
(2, NULL, 4, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Russel', '8989898787', 'driver1@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'both', NULL, 'BMW', NULL, 'BMW', 'Blue', '200202', 0, 0, 0, 0, NULL, 0, 0.00, 1, 1, NULL, '2025-09-26 10:08:02', '2025-10-16 08:47:41', '2025-10-16 08:47:41', NULL),
(3, NULL, 5, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Aman', '8998788767', 'driver2@demo.com', NULL, NULL, NULL, 102, NULL, 'male', 'c1aa88e5-67da-4b3d-98e4-802a0221db73', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'both', NULL, 'Premier', NULL, 'Premier', 'Black', '300212', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-09-26 10:11:33', '2025-09-26 10:20:23', NULL, NULL),
(4, NULL, 6, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Johnson', '7889098767', 'driver3@demo.com', NULL, NULL, NULL, 102, NULL, 'female', '94fef07a-87c3-4777-830d-9a05d11eea3a', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'both', NULL, 'Creta', NULL, 'Creta', 'White', '4321', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-09-26 10:13:30', '2025-09-26 10:20:16', NULL, NULL),
(5, NULL, 7, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Camila', '9889988990', 'driver4@demo.com', NULL, NULL, NULL, 102, NULL, 'female', '342279b9-db34-4b1f-971f-ffc8a07e9b7c', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'both', NULL, 'Wagon R', NULL, 'Wagon R', 'Red', '3245', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-09-26 10:15:59', '2025-09-26 10:20:04', NULL, NULL),
(6, NULL, 8, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Amir', '9090909090', 'driver5@demo.com', NULL, NULL, NULL, 102, NULL, 'male', 'b599844f-9f87-4e56-8501-60b9a2a17a80', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'both', NULL, 'Auto', NULL, 'Auto', 'Black', '3456', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-09-26 10:18:56', '2025-09-26 10:19:32', NULL, NULL),
(7, NULL, 18, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Martin', '9876543210', 'driver6@demo.com', NULL, NULL, NULL, 102, NULL, 'male', '65af1c75-a4c1-45ac-a450-9c89ca4a3155', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'delivery', NULL, 'Bolero', NULL, 'Bolero', 'white', '1234', 0, 0, 0, 0, NULL, 1, 0.00, 0, 0, NULL, '2025-09-26 10:32:49', '2025-09-26 10:32:49', NULL, NULL),
(8, NULL, 19, '68ad3f48-fa97-47f4-962c-737b78865822', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'fleetdriver', '123456789', 'fleerdriver@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-09-26 10:37:33', '2025-09-26 10:37:33', NULL, NULL),
(9, 'ryNgKwtS5K', 26, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Driver', '8780161809', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 2025, NULL, 'both', NULL, 'abc', NULL, 'dsf', 'Red', 'GJ011111', 0, 0, 0, 0, NULL, 1, 0.00, 1, 1, NULL, '2025-10-06 09:42:37', '2025-11-05 12:05:33', NULL, NULL),
(10, 'YgFw3S17uv', 30, NULL, NULL, 'fbfb', '7654321890', 'gdfhdfhd@gmail.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-10-13 12:04:36', '2025-10-13 12:04:36', NULL, NULL),
(11, NULL, 31, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'test', '1234554321', 'test@demo1.com', NULL, NULL, NULL, 102, NULL, 'male', '31f0cbbc-27a8-4cde-ac48-93a8dd52254d', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'taxi', NULL, 'test', NULL, 'test', 'test', '232323', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-10-16 10:24:36', '2025-11-06 07:08:47', NULL, NULL),
(12, NULL, 32, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'teste', '1234543215', 'test@jahds.com', NULL, NULL, NULL, 102, NULL, 'female', '342279b9-db34-4b1f-971f-ffc8a07e9b7c', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'taxi', NULL, 'testset', NULL, 'tetest', 'testest', 'tetest', 0, 0, 0, 0, NULL, 1, 0.00, 0, 0, NULL, '2025-10-17 05:24:17', '2025-10-17 05:24:17', NULL, NULL),
(13, NULL, 33, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'testet', '123454321', 'test@jshdfjdomo.com', NULL, NULL, NULL, 102, NULL, 'male', 'fc9eb79a-f121-4342-a155-4229cfeceac6', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'delivery', NULL, 'tests', NULL, 'teste', 'teste', 'test', 0, 0, 0, 0, NULL, 1, 0.00, 0, 0, NULL, '2025-10-17 05:25:33', '2025-11-06 07:35:29', '2025-11-06 07:35:29', NULL),
(14, NULL, 34, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'test', '1234554320', 'test@sfiod.com', NULL, NULL, NULL, 102, NULL, 'male', 'fc9eb79a-f121-4342-a155-4229cfeceac6', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'taxi', NULL, 'test', NULL, 'test', 'testse', 'teste', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-10-17 05:26:34', '2025-11-06 07:10:33', NULL, NULL),
(15, NULL, 35, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'test', '1234567897', 'test@ushdfdc.om', NULL, NULL, NULL, 102, NULL, 'female', 'fc9eb79a-f121-4342-a155-4229cfeceac6', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'delivery', NULL, 'teteste', NULL, 'testest', 'tetest', 'etset', 0, 0, 0, 0, NULL, 1, 0.00, 1, 0, NULL, '2025-10-17 05:27:24', '2025-11-06 07:09:54', NULL, NULL),
(16, NULL, 36, NULL, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'fdfdsfd', '1234554312', 'fefse@jdsfk.omc', NULL, NULL, NULL, 102, NULL, 'male', 'fc9eb79a-f121-4342-a155-4229cfeceac6', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'delivery', NULL, 'test', NULL, 'tests', 'test', 'tetse', 0, 0, 0, 0, NULL, 1, 0.00, 0, 0, NULL, '2025-10-17 05:28:08', '2025-11-06 07:35:21', '2025-11-06 07:35:21', NULL),
(17, NULL, 47, '68ad3f48-fa97-47f4-962c-737b78865822', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'test', '1234567894', 'driver1@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-10-17 10:19:11', '2025-10-17 10:19:11', NULL, NULL),
(18, NULL, 49, '68ad3f48-fa97-47f4-962c-737b78865822', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'test', '1234567896', 'driver11@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-10-17 10:38:04', '2025-10-17 10:38:04', NULL, NULL),
(19, NULL, 58, '68ad3f48-fa97-47f4-962c-737b78865822', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'test', '4556785687', 'driver22@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-10-17 12:05:44', '2025-10-17 12:05:44', NULL, NULL),
(20, NULL, 59, '68ad3f48-fa97-47f4-962c-737b78865822', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'test', '3434343434', 'driver13@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-10-17 12:11:54', '2025-10-17 12:11:54', NULL, NULL),
(21, 'lJwlh9FvnH', 61, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:27:23', '2025-11-06 08:22:01', '2025-11-06 08:22:01', NULL),
(22, 'TvaTRuqbnW', 62, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:27:42', '2025-11-06 08:22:14', '2025-11-06 08:22:14', NULL),
(23, 'WM4j55et6p', 63, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:28:14', '2025-11-06 08:22:27', '2025-11-06 08:22:27', NULL),
(24, 'yLwJtNWt6Y', 64, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:28:45', '2025-11-06 08:22:36', '2025-11-06 08:22:36', NULL),
(25, 'ou5MDIyWGx', 65, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:28:47', '2025-11-06 08:22:45', '2025-11-06 08:22:45', NULL),
(26, '06THbzp8YU', 66, NULL, NULL, 'Robert', '9874561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL, 0, 0.00, 0, 0, NULL, '2025-11-05 10:29:18', '2025-11-06 08:22:56', '2025-11-06 08:22:56', NULL),
(27, '0QR5KahepB', 67, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Robert', '7894561230', '', NULL, NULL, NULL, 102, NULL, 'male', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 2025, NULL, 'both', NULL, 'Vehicle', NULL, 'Pulsar', 'red', 'GJ-3456', 0, 0, 0, 0, NULL, 1, 0.00, 0, 1, NULL, '2025-11-05 10:29:39', '2025-11-05 10:41:24', NULL, NULL);

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

--
-- Table structure for table `drivers_imported`
--

CREATE TABLE `drivers_imported` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `valid_file` tinyint(1) NOT NULL DEFAULT 0,
  `invalid_file` tinyint(1) NOT NULL DEFAULT 0,
  `invalid_file_path` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_availabilities`
--

CREATE TABLE `driver_availabilities` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `is_online` tinyint(1) NOT NULL,
  `online_at` timestamp NULL DEFAULT NULL,
  `offline_at` timestamp NULL DEFAULT NULL,
  `duration` double(8,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_availabilities`
--

INSERT INTO `driver_availabilities` (`id`, `driver_id`, `is_online`, `online_at`, `offline_at`, `duration`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2025-09-30 11:33:31', NULL, 0.00, '2025-09-30 11:33:31', '2025-09-30 11:33:31'),
(2, 1, 1, '2025-09-30 11:33:37', NULL, 0.00, '2025-09-30 11:33:37', '2025-09-30 11:33:37'),
(3, 1, 1, '2025-09-30 11:34:19', NULL, 0.00, '2025-09-30 11:34:19', '2025-09-30 11:34:19'),
(4, 1, 1, '2025-09-30 11:34:49', NULL, 0.00, '2025-09-30 11:34:49', '2025-09-30 11:34:49'),
(5, 1, 1, '2025-09-30 11:35:29', NULL, 0.00, '2025-09-30 11:35:29', '2025-09-30 11:35:29'),
(6, 1, 1, '2025-09-30 11:36:35', '2025-09-30 12:06:35', 30.00, '2025-09-30 11:36:35', '2025-10-01 08:23:35'),
(7, 1, 0, '2025-10-01 07:53:35', '2025-10-01 07:23:35', 29.00, '2025-10-01 08:23:35', '2025-10-01 08:23:35'),
(8, 1, 1, '2025-10-01 08:29:34', NULL, 0.00, '2025-10-01 08:29:34', '2025-10-01 08:29:34'),
(9, 1, 1, '2025-10-01 12:46:39', NULL, 0.00, '2025-10-01 12:46:39', '2025-10-01 12:46:39'),
(10, 1, 1, '2025-10-01 12:52:44', NULL, 0.00, '2025-10-01 12:52:44', '2025-10-01 12:52:44'),
(11, 1, 1, '2025-10-01 12:57:17', '2025-10-01 13:27:17', 30.00, '2025-10-01 12:57:17', '2025-10-06 08:03:52'),
(12, 1, 0, '2025-10-06 07:33:52', '2025-10-06 07:03:52', 29.00, '2025-10-06 08:03:52', '2025-10-06 08:03:52'),
(13, 1, 1, '2025-10-06 08:09:54', NULL, 0.00, '2025-10-06 08:09:54', '2025-10-06 08:09:54'),
(14, 1, 1, '2025-10-06 08:13:02', NULL, 0.00, '2025-10-06 08:13:02', '2025-10-06 08:13:02'),
(15, 1, 1, '2025-10-06 08:16:04', NULL, 0.00, '2025-10-06 08:16:04', '2025-10-06 08:16:04'),
(16, 1, 1, '2025-10-06 08:18:36', NULL, 0.00, '2025-10-06 08:18:36', '2025-10-06 08:18:36'),
(17, 1, 1, '2025-10-06 08:22:29', NULL, 0.00, '2025-10-06 08:22:29', '2025-10-06 08:22:29'),
(18, 1, 1, '2025-10-06 08:24:46', NULL, 0.00, '2025-10-06 08:24:46', '2025-10-06 08:24:46'),
(19, 1, 1, '2025-10-06 08:27:46', NULL, 0.00, '2025-10-06 08:27:46', '2025-10-06 08:27:46'),
(20, 1, 1, '2025-10-06 08:50:08', NULL, 0.00, '2025-10-06 08:50:08', '2025-10-06 08:50:08'),
(21, 1, 1, '2025-10-06 08:54:18', NULL, 0.00, '2025-10-06 08:54:18', '2025-10-06 08:54:18'),
(22, 1, 1, '2025-10-06 08:58:15', NULL, 0.00, '2025-10-06 08:58:15', '2025-10-06 08:58:15'),
(23, 1, 1, '2025-10-06 09:01:12', NULL, 0.00, '2025-10-06 09:01:12', '2025-10-06 09:01:12'),
(24, 1, 1, '2025-10-06 09:03:40', NULL, 0.00, '2025-10-06 09:03:40', '2025-10-06 09:03:40'),
(25, 1, 1, '2025-10-06 09:06:32', NULL, 0.00, '2025-10-06 09:06:32', '2025-10-06 09:06:32'),
(26, 1, 1, '2025-10-06 09:09:26', NULL, 0.00, '2025-10-06 09:09:26', '2025-10-06 09:09:26'),
(27, 1, 1, '2025-10-06 09:11:16', NULL, 0.00, '2025-10-06 09:11:16', '2025-10-06 09:11:16'),
(28, 1, 1, '2025-10-06 09:12:28', NULL, 0.00, '2025-10-06 09:12:28', '2025-10-06 09:12:28'),
(29, 1, 1, '2025-10-06 09:15:54', NULL, 0.00, '2025-10-06 09:15:54', '2025-10-06 09:15:54'),
(30, 1, 1, '2025-10-06 09:23:49', NULL, 0.00, '2025-10-06 09:23:49', '2025-10-06 09:23:49'),
(31, 1, 1, '2025-10-06 09:24:04', NULL, 0.00, '2025-10-06 09:24:04', '2025-10-06 09:24:04'),
(32, 1, 1, '2025-10-06 09:24:42', NULL, 0.00, '2025-10-06 09:24:42', '2025-10-06 09:24:42'),
(33, 1, 1, '2025-10-06 09:27:37', NULL, 0.00, '2025-10-06 09:27:37', '2025-10-06 09:27:37'),
(34, 1, 1, '2025-10-06 09:30:34', NULL, 0.00, '2025-10-06 09:30:34', '2025-10-06 09:30:34'),
(35, 9, 1, '2025-10-06 09:45:53', NULL, 0.00, '2025-10-06 09:45:53', '2025-10-06 09:45:53'),
(36, 9, 1, '2025-10-06 09:47:17', NULL, 0.00, '2025-10-06 09:47:17', '2025-10-06 09:47:17'),
(37, 9, 1, '2025-10-06 09:53:11', NULL, 0.00, '2025-10-06 09:53:11', '2025-10-06 09:53:11'),
(38, 9, 1, '2025-10-06 09:57:20', NULL, 0.00, '2025-10-06 09:57:20', '2025-10-06 09:57:20'),
(39, 9, 1, '2025-10-06 09:58:30', NULL, 0.00, '2025-10-06 09:58:30', '2025-10-06 09:58:30'),
(40, 9, 1, '2025-10-06 10:00:04', NULL, 0.00, '2025-10-06 10:00:04', '2025-10-06 10:00:04'),
(41, 9, 1, '2025-10-06 10:01:11', NULL, 0.00, '2025-10-06 10:01:11', '2025-10-06 10:01:11'),
(42, 9, 1, '2025-10-06 10:06:05', NULL, 0.00, '2025-10-06 10:06:05', '2025-10-06 10:06:05'),
(43, 9, 1, '2025-10-06 10:08:29', NULL, 0.00, '2025-10-06 10:08:29', '2025-10-06 10:08:29'),
(44, 9, 1, '2025-10-06 10:13:56', NULL, 0.00, '2025-10-06 10:13:56', '2025-10-06 10:13:56'),
(45, 9, 1, '2025-10-06 10:32:20', NULL, 0.00, '2025-10-06 10:32:20', '2025-10-06 10:32:20'),
(46, 9, 1, '2025-10-06 10:33:06', NULL, 0.00, '2025-10-06 10:33:06', '2025-10-06 10:33:06'),
(47, 9, 1, '2025-10-06 10:34:14', NULL, 0.00, '2025-10-06 10:34:14', '2025-10-06 10:34:14'),
(48, 9, 1, '2025-10-06 10:39:11', NULL, 0.00, '2025-10-06 10:39:11', '2025-10-06 10:39:11'),
(49, 9, 1, '2025-10-06 10:42:18', NULL, 0.00, '2025-10-06 10:42:18', '2025-10-06 10:42:18'),
(50, 9, 1, '2025-10-06 10:50:31', NULL, 0.00, '2025-10-06 10:50:31', '2025-10-06 10:50:31'),
(51, 9, 1, '2025-10-06 11:02:45', NULL, 0.00, '2025-10-06 11:02:45', '2025-10-06 11:02:45'),
(52, 9, 1, '2025-10-06 11:03:12', NULL, 0.00, '2025-10-06 11:03:12', '2025-10-06 11:03:12'),
(53, 9, 1, '2025-10-06 11:04:31', NULL, 0.00, '2025-10-06 11:04:31', '2025-10-06 11:04:31'),
(54, 9, 1, '2025-10-06 11:04:37', NULL, 0.00, '2025-10-06 11:04:37', '2025-10-06 11:04:37'),
(55, 9, 1, '2025-10-06 11:05:40', NULL, 0.00, '2025-10-06 11:05:40', '2025-10-06 11:05:40'),
(56, 9, 1, '2025-10-06 11:06:47', NULL, 0.00, '2025-10-06 11:06:47', '2025-10-06 11:06:47'),
(57, 9, 1, '2025-10-06 11:07:34', NULL, 0.00, '2025-10-06 11:07:34', '2025-10-06 11:07:34'),
(58, 9, 1, '2025-10-06 11:07:58', NULL, 0.00, '2025-10-06 11:07:58', '2025-10-06 11:07:58'),
(59, 9, 1, '2025-10-06 11:09:07', NULL, 0.00, '2025-10-06 11:09:07', '2025-10-06 11:09:07'),
(60, 9, 1, '2025-10-06 11:09:23', NULL, 0.00, '2025-10-06 11:09:23', '2025-10-06 11:09:23'),
(61, 9, 1, '2025-10-06 11:09:55', NULL, 0.00, '2025-10-06 11:09:55', '2025-10-06 11:09:55'),
(62, 9, 1, '2025-10-06 11:10:16', NULL, 0.00, '2025-10-06 11:10:16', '2025-10-06 11:10:16'),
(63, 9, 1, '2025-10-06 11:17:31', NULL, 0.00, '2025-10-06 11:17:31', '2025-10-06 11:17:31'),
(64, 9, 1, '2025-10-06 11:18:01', NULL, 0.00, '2025-10-06 11:18:01', '2025-10-06 11:18:01'),
(65, 9, 1, '2025-10-06 11:22:23', NULL, 0.00, '2025-10-06 11:22:23', '2025-10-06 11:22:23'),
(66, 9, 1, '2025-10-06 11:24:20', NULL, 0.00, '2025-10-06 11:24:20', '2025-10-06 11:24:20'),
(67, 9, 1, '2025-10-06 11:25:01', NULL, 0.00, '2025-10-06 11:25:01', '2025-10-06 11:25:01'),
(68, 9, 1, '2025-10-06 11:26:33', NULL, 0.00, '2025-10-06 11:26:33', '2025-10-06 11:26:33'),
(69, 9, 1, '2025-10-06 11:27:23', NULL, 0.00, '2025-10-06 11:27:23', '2025-10-06 11:27:23'),
(70, 9, 1, '2025-10-06 11:35:22', NULL, 0.00, '2025-10-06 11:35:22', '2025-10-06 11:35:22'),
(71, 9, 1, '2025-10-06 11:36:12', NULL, 0.00, '2025-10-06 11:36:12', '2025-10-06 11:36:12'),
(72, 9, 1, '2025-10-06 11:37:55', NULL, 0.00, '2025-10-06 11:37:55', '2025-10-06 11:37:55'),
(73, 9, 1, '2025-10-06 11:38:48', NULL, 0.00, '2025-10-06 11:38:48', '2025-10-06 11:38:48'),
(74, 9, 1, '2025-10-06 11:39:31', NULL, 0.00, '2025-10-06 11:39:31', '2025-10-06 11:39:31'),
(75, 9, 1, '2025-10-06 11:40:46', NULL, 0.00, '2025-10-06 11:40:46', '2025-10-06 11:40:46'),
(76, 9, 1, '2025-10-06 11:47:36', NULL, 0.00, '2025-10-06 11:47:36', '2025-10-06 11:47:36'),
(77, 9, 1, '2025-10-06 11:50:09', NULL, 0.00, '2025-10-06 11:50:09', '2025-10-06 11:50:09'),
(78, 9, 1, '2025-10-06 11:50:24', NULL, 0.00, '2025-10-06 11:50:24', '2025-10-06 11:50:24'),
(79, 9, 1, '2025-10-06 11:51:07', NULL, 0.00, '2025-10-06 11:51:07', '2025-10-06 11:51:07'),
(80, 9, 1, '2025-10-06 11:51:24', '2025-10-06 12:21:24', 30.00, '2025-10-06 11:51:24', '2025-10-07 09:07:55'),
(81, 9, 0, '2025-10-07 08:37:55', '2025-10-07 08:07:55', 29.00, '2025-10-07 09:07:55', '2025-10-07 09:07:55'),
(82, 9, 1, '2025-10-07 09:08:25', NULL, 0.00, '2025-10-07 09:08:25', '2025-10-07 09:08:25'),
(83, 9, 1, '2025-10-07 09:36:33', NULL, 0.00, '2025-10-07 09:36:33', '2025-10-07 09:36:33'),
(84, 9, 1, '2025-10-07 09:49:05', NULL, 0.00, '2025-10-07 09:49:05', '2025-10-07 09:49:05'),
(85, 9, 1, '2025-10-07 09:54:58', NULL, 0.00, '2025-10-07 09:54:58', '2025-10-07 09:54:58'),
(86, 9, 1, '2025-10-07 10:06:59', NULL, 0.00, '2025-10-07 10:06:59', '2025-10-07 10:06:59'),
(87, 9, 1, '2025-10-07 10:29:07', NULL, 0.00, '2025-10-07 10:29:07', '2025-10-07 10:29:07'),
(88, 9, 1, '2025-10-07 11:29:02', NULL, 0.00, '2025-10-07 11:29:02', '2025-10-07 11:29:02'),
(89, 9, 1, '2025-10-07 13:20:56', NULL, 0.00, '2025-10-07 13:20:56', '2025-10-07 13:20:56'),
(90, 9, 1, '2025-10-07 13:55:41', NULL, 0.00, '2025-10-07 13:55:41', '2025-10-07 13:55:41'),
(91, 9, 1, '2025-10-07 13:57:15', NULL, 0.00, '2025-10-07 13:57:15', '2025-10-07 13:57:15'),
(92, 9, 1, '2025-10-07 13:58:17', NULL, 0.00, '2025-10-07 13:58:17', '2025-10-07 13:58:17'),
(93, 9, 1, '2025-10-07 14:00:28', NULL, 0.00, '2025-10-07 14:00:28', '2025-10-07 14:00:28'),
(94, 9, 1, '2025-10-07 14:21:32', NULL, 0.00, '2025-10-07 14:21:32', '2025-10-07 14:21:32'),
(95, 9, 1, '2025-10-07 14:25:08', NULL, 0.00, '2025-10-07 14:25:08', '2025-10-07 14:25:08'),
(96, 9, 1, '2025-10-07 14:27:53', NULL, 0.00, '2025-10-07 14:27:53', '2025-10-07 14:27:53'),
(97, 9, 1, '2025-10-07 14:32:21', NULL, 0.00, '2025-10-07 14:32:21', '2025-10-07 14:32:21'),
(98, 9, 1, '2025-10-07 14:34:36', NULL, 0.00, '2025-10-07 14:34:36', '2025-10-07 14:34:36'),
(99, 9, 1, '2025-10-07 14:42:50', NULL, 0.00, '2025-10-07 14:42:50', '2025-10-07 14:42:50'),
(100, 9, 1, '2025-10-07 14:45:10', NULL, 0.00, '2025-10-07 14:45:10', '2025-10-07 14:45:10'),
(101, 9, 1, '2025-10-07 14:52:58', NULL, 0.00, '2025-10-07 14:52:58', '2025-10-07 14:52:58'),
(102, 9, 1, '2025-10-07 14:55:53', NULL, 0.00, '2025-10-07 14:55:53', '2025-10-07 14:55:53'),
(103, 9, 1, '2025-10-07 15:37:36', NULL, 0.00, '2025-10-07 15:37:36', '2025-10-07 15:37:36'),
(104, 9, 1, '2025-10-07 15:40:28', NULL, 0.00, '2025-10-07 15:40:28', '2025-10-07 15:40:28'),
(105, 9, 1, '2025-10-07 15:43:44', NULL, 0.00, '2025-10-07 15:43:44', '2025-10-07 15:43:44'),
(106, 9, 1, '2025-10-07 15:48:20', NULL, 0.00, '2025-10-07 15:48:20', '2025-10-07 15:48:20'),
(107, 9, 1, '2025-10-07 15:53:03', NULL, 0.00, '2025-10-07 15:53:03', '2025-10-07 15:53:03'),
(108, 9, 1, '2025-10-07 15:58:57', NULL, 0.00, '2025-10-07 15:58:57', '2025-10-07 15:58:57'),
(109, 9, 1, '2025-10-07 16:01:31', NULL, 0.00, '2025-10-07 16:01:31', '2025-10-07 16:01:31'),
(110, 9, 1, '2025-10-07 16:06:00', NULL, 0.00, '2025-10-07 16:06:00', '2025-10-07 16:06:00'),
(111, 9, 1, '2025-10-07 16:07:01', NULL, 0.00, '2025-10-07 16:07:01', '2025-10-07 16:07:01'),
(112, 9, 1, '2025-10-07 16:09:45', '2025-10-07 16:39:45', 30.00, '2025-10-07 16:09:45', '2025-10-08 05:21:55'),
(113, 9, 0, '2025-10-08 04:51:55', '2025-10-08 04:21:55', 29.00, '2025-10-08 05:21:55', '2025-10-08 05:21:55'),
(114, 9, 1, '2025-10-08 05:21:58', NULL, 0.00, '2025-10-08 05:21:58', '2025-10-08 05:21:58'),
(115, 9, 1, '2025-10-08 08:08:19', NULL, 0.00, '2025-10-08 08:08:19', '2025-10-08 08:08:19'),
(116, 9, 1, '2025-10-08 08:08:28', NULL, 0.00, '2025-10-08 08:08:28', '2025-10-08 08:08:28'),
(117, 9, 1, '2025-10-08 08:15:27', NULL, 0.00, '2025-10-08 08:15:27', '2025-10-08 08:15:27'),
(118, 9, 1, '2025-10-08 08:47:54', NULL, 0.00, '2025-10-08 08:47:54', '2025-10-08 08:47:54'),
(119, 9, 1, '2025-10-08 09:19:42', NULL, 0.00, '2025-10-08 09:19:42', '2025-10-08 09:19:42'),
(120, 9, 1, '2025-10-08 09:21:17', NULL, 0.00, '2025-10-08 09:21:17', '2025-10-08 09:21:17'),
(121, 9, 1, '2025-10-08 09:21:41', NULL, 0.00, '2025-10-08 09:21:41', '2025-10-08 09:21:41'),
(122, 9, 1, '2025-10-08 09:21:48', NULL, 0.00, '2025-10-08 09:21:48', '2025-10-08 09:21:48'),
(123, 9, 1, '2025-10-08 09:57:35', NULL, 0.00, '2025-10-08 09:57:35', '2025-10-08 09:57:35'),
(124, 1, 1, '2025-10-10 09:00:21', NULL, 0.00, '2025-10-10 09:00:21', '2025-10-10 09:00:21'),
(125, 1, 1, '2025-10-10 09:01:50', NULL, 0.00, '2025-10-10 09:01:50', '2025-10-10 09:01:50'),
(126, 1, 1, '2025-10-10 10:29:50', '2025-10-10 10:59:50', 30.00, '2025-10-10 10:29:50', '2025-10-13 04:25:25'),
(127, 9, 1, '2025-10-12 05:43:08', '2025-10-12 06:13:08', 30.00, '2025-10-12 05:43:08', '2025-10-13 11:14:29'),
(128, 1, 0, '2025-10-13 03:55:25', '2025-10-13 03:25:25', 29.00, '2025-10-13 04:25:25', '2025-10-13 04:25:25'),
(129, 1, 1, '2025-10-13 04:50:29', '2025-10-13 05:20:29', 30.00, '2025-10-13 04:50:29', '2025-11-06 10:06:20'),
(130, 9, 0, '2025-10-13 10:44:29', '2025-10-13 10:14:29', 29.00, '2025-10-13 11:14:29', '2025-10-13 11:14:29'),
(131, 9, 1, '2025-10-13 13:04:14', NULL, 0.00, '2025-10-13 13:04:14', '2025-10-13 13:04:14'),
(132, 9, 1, '2025-10-13 13:04:40', NULL, 0.00, '2025-10-13 13:04:40', '2025-10-13 13:04:40'),
(133, 9, 1, '2025-11-03 11:55:04', '2025-11-03 12:25:04', 30.00, '2025-11-03 11:55:05', '2025-11-05 11:10:24'),
(134, 27, 1, '2025-11-05 10:41:24', NULL, 0.00, '2025-11-05 10:41:24', '2025-11-05 10:41:24'),
(135, 9, 0, '2025-11-05 10:40:24', '2025-11-05 10:10:24', 29.00, '2025-11-05 11:10:24', '2025-11-05 11:10:24'),
(136, 9, 1, '2025-11-05 11:11:01', NULL, 0.00, '2025-11-05 11:11:01', '2025-11-05 11:11:01'),
(137, 1, 0, '2025-11-06 09:36:20', '2025-11-06 09:06:20', 29.00, '2025-11-06 10:06:20', '2025-11-06 10:06:20'),
(138, 1, 1, '2025-11-06 10:06:22', NULL, 0.00, '2025-11-06 10:06:22', '2025-11-06 10:06:22'),
(139, 1, 1, '2025-11-06 10:30:32', NULL, 0.00, '2025-11-06 10:30:32', '2025-11-06 10:30:32');

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

--
-- Table structure for table `driver_bank_infos`
--

CREATE TABLE `driver_bank_infos` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `method_id` int(10) UNSIGNED NOT NULL,
  `field_id` int(10) UNSIGNED NOT NULL,
  `value` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_details`
--

CREATE TABLE `driver_details` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `bearing` double(15,2) DEFAULT NULL,
  `is_socket_connected` tinyint(1) NOT NULL DEFAULT 0,
  `current_zone` char(36) DEFAULT NULL,
  `rating` double(10,2) NOT NULL DEFAULT 0.00,
  `rated_by` int(11) NOT NULL DEFAULT 0,
  `is_company_driver` tinyint(1) NOT NULL DEFAULT 0,
  `company` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_documents`
--

CREATE TABLE `driver_documents` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `image` varchar(191) NOT NULL,
  `back_image` varchar(191) DEFAULT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_documents`
--

INSERT INTO `driver_documents` (`id`, `driver_id`, `document_id`, `image`, `back_image`, `identify_number`, `expiry_date`, `comment`, `document_status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('3f3977ef-533f-4a20-847c-270f9ff33b51', 15, 1, 'dW02292dsCDZT21Q7h6LYcEjxj6bysIGj5tGFAjT.png', NULL, NULL, '2025-11-25', NULL, 1, '2025-11-06 07:09:49', '2025-11-06 07:09:54', NULL),
('6771df83-70ae-4f71-afc9-90aeb4ac378d', 14, 1, 'pC9qDwdz8hQ3uutYABy1zzTedVMrSJWZjyL4lgHU.png', NULL, NULL, '2025-11-22', NULL, 1, '2025-11-06 07:10:30', '2025-11-06 07:10:33', NULL),
('766e31e5-27fc-4e87-997a-209162923ed2', 1, 1, 'oCIgX9VH42bLpXcXe2C85NzQysRF5GP4yqASjIsf.jpg', NULL, NULL, '2039-10-13', NULL, 1, '2025-10-13 08:43:23', '2025-11-06 07:36:29', NULL),
('8741f392-d2dd-42d5-98ff-235bdc3cb1cf', 9, 1, 'ozhcvdhdILbhABE0LtGfQTMX4hWYUXfPcAMuFvYX.jpg', NULL, NULL, '2025-12-31', NULL, 1, '2025-10-06 09:45:06', '2025-10-06 09:45:36', NULL),
('925f1f22-4a96-44dd-b3c7-bd094736bd2d', 11, 1, 'lfhqCNOomBf7npfrSN6inlP88ahtWnlFGdak7wRP.png', NULL, NULL, '2025-11-24', NULL, 1, '2025-11-06 07:08:43', '2025-11-06 07:08:47', NULL);

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

--
-- Table structure for table `driver_enabled_routes`
--

CREATE TABLE `driver_enabled_routes` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `current_lat` double DEFAULT NULL,
  `current_lng` double DEFAULT NULL,
  `current_address` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_incentive_histories`
--

CREATE TABLE `driver_incentive_histories` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `ride_count` int(11) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `mode` enum('daily','weekly') NOT NULL DEFAULT 'daily',
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_level_details`
--

CREATE TABLE `driver_level_details` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `level_id` char(36) NOT NULL,
  `level` int(10) UNSIGNED NOT NULL,
  `amount_rewarded` tinyint(1) NOT NULL DEFAULT 0,
  `ride_rewarded` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_level_ups`
--

CREATE TABLE `driver_level_ups` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) DEFAULT NULL,
  `level` int(11) NOT NULL,
  `name` varchar(191) NOT NULL,
  `reward_type` varchar(191) DEFAULT NULL,
  `reward` double(10,2) NOT NULL DEFAULT 0.00,
  `is_min_ride_complete` tinyint(1) NOT NULL DEFAULT 0,
  `min_ride_count` int(11) DEFAULT NULL,
  `ride_points` double(10,2) NOT NULL DEFAULT 0.00,
  `is_min_ride_amount_complete` tinyint(1) NOT NULL DEFAULT 0,
  `min_ride_amount` int(11) DEFAULT NULL,
  `amount_points` double(10,2) NOT NULL DEFAULT 0.00,
  `image` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_needed_documents`
--

CREATE TABLE `driver_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `document_name_front` varchar(191) DEFAULT NULL,
  `document_name_back` varchar(191) DEFAULT NULL,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `account_type` enum('individual','fleet_driver','both') DEFAULT NULL,
  `image_type` varchar(191) DEFAULT NULL,
  `is_editable` tinyint(1) NOT NULL DEFAULT 1,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `is_required` tinyint(1) NOT NULL DEFAULT 1,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_needed_documents`
--

INSERT INTO `driver_needed_documents` (`id`, `name`, `document_name_front`, `document_name_back`, `doc_type`, `has_identify_number`, `identify_number_locale_key`, `account_type`, `image_type`, `is_editable`, `has_expiry_date`, `is_required`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Driving License', NULL, NULL, 'image', 0, NULL, 'both', 'front', 0, 1, 0, 1, '2025-10-06 09:35:41', '2025-10-06 09:35:41');

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

--
-- Table structure for table `driver_preferences`
--

CREATE TABLE `driver_preferences` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `preference_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_privileged_vehicles`
--

CREATE TABLE `driver_privileged_vehicles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `fleet_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_rejected_requests`
--

CREATE TABLE `driver_rejected_requests` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `is_after_accept` tinyint(1) NOT NULL DEFAULT 0,
  `reason` char(36) DEFAULT NULL,
  `custom_reason` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_rejected_requests`
--

INSERT INTO `driver_rejected_requests` (`id`, `request_id`, `driver_id`, `is_after_accept`, `reason`, `custom_reason`, `created_at`, `updated_at`) VALUES
(1, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', 9, 1, 'b9f0f682-3925-47c4-9791-d8a0e958892c', NULL, '2025-10-07 13:28:34', '2025-10-07 13:28:34'),
(2, '316679ff-9aab-4db8-a5f3-bf47c26041ae', 9, 0, NULL, NULL, '2025-10-07 14:37:59', '2025-10-07 14:37:59'),
(3, 'ec0c6146-ef53-4400-b1f2-8a2a4c6699cb', 9, 0, NULL, NULL, '2025-10-07 14:52:03', '2025-10-07 14:52:03'),
(4, '10e4cd40-1b72-41ea-8720-b076da8207f8', 9, 0, NULL, NULL, '2025-10-07 15:43:00', '2025-10-07 15:43:00'),
(5, '06aaa489-3528-4f15-86bb-3305569d505e', 9, 0, NULL, NULL, '2025-10-07 15:49:33', '2025-10-07 15:49:33'),
(6, '93439cdd-d084-4f7a-b468-dee4a59ae1bd', 1, 0, NULL, NULL, '2025-10-10 09:03:52', '2025-10-10 09:03:52'),
(7, '9386e7d5-af45-4d55-b173-5cbdb026364a', 1, 1, 'b9f0f682-3925-47c4-9791-d8a0e958892c', NULL, '2025-10-10 10:06:33', '2025-10-10 10:06:33'),
(8, 'a5a4c085-8ebe-492d-90d4-45095f7e16e8', 1, 1, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, '2025-10-10 10:19:26', '2025-10-10 10:19:26'),
(9, '396c4a35-3b21-4a72-a02a-40afa7848fc9', 9, 0, NULL, NULL, '2025-10-13 11:11:48', '2025-10-13 11:11:48'),
(10, '03693f51-5e3f-4a21-bee7-bfb74731ab2c', 1, 1, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, '2025-11-06 08:47:33', '2025-11-06 08:47:33'),
(11, 'a42ef3e4-10e9-4810-8c3f-bef0e5440c93', 1, 1, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, '2025-11-06 08:53:14', '2025-11-06 08:53:14'),
(12, 'f95268c9-7ad7-490b-83ef-75dcad6b186b', 1, 1, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, '2025-11-06 08:58:50', '2025-11-06 08:58:50'),
(13, '7fd96122-aa76-4ab1-9ccf-f4cfd36c2c8b', 1, 1, 'deddbbe3-6571-4e48-8f12-6c9887937c0a', NULL, '2025-11-06 09:13:44', '2025-11-06 09:13:44'),
(14, 'b476b4e4-8381-40ae-9931-ab85fcb69b10', 1, 1, 'b9f0f682-3925-47c4-9791-d8a0e958892c', NULL, '2025-11-06 09:13:52', '2025-11-06 09:13:52'),
(15, 'b79cc7c1-e560-47a2-b475-a952b84c5b44', 1, 1, NULL, 'other', '2025-11-06 10:03:09', '2025-11-06 10:03:09'),
(16, '76530f8d-9d9f-4f5a-b3b6-69c66f314be5', 1, 0, NULL, NULL, '2025-11-06 10:05:01', '2025-11-06 10:05:01'),
(17, 'd16ea42d-aab5-41f2-9dd4-d9226d39ac60', 1, 0, NULL, NULL, '2025-11-06 10:05:07', '2025-11-06 10:05:07');

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

--
-- Table structure for table `driver_subscriptions`
--

CREATE TABLE `driver_subscriptions` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `transaction_id` varchar(191) NOT NULL,
  `subscription_type` enum('monthly','yearly') NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `paid_amount` double NOT NULL,
  `expired_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `driver_vehicle_types`
--

CREATE TABLE `driver_vehicle_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `vehicle_type` char(36) DEFAULT NULL,
  `signed_vehicle` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_vehicle_types`
--

INSERT INTO `driver_vehicle_types` (`id`, `driver_id`, `vehicle_type`, `signed_vehicle`, `created_at`, `updated_at`) VALUES
(1, 1, 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, '2025-09-26 10:04:59', '2025-09-26 10:04:59'),
(2, 2, 'c655f0c0-07eb-4647-b810-75166abdcf31', 1, '2025-09-26 10:08:02', '2025-09-26 10:08:02'),
(3, 3, 'c1aa88e5-67da-4b3d-98e4-802a0221db73', 1, '2025-09-26 10:11:33', '2025-09-26 10:11:33'),
(4, 4, '94fef07a-87c3-4777-830d-9a05d11eea3a', 1, '2025-09-26 10:13:30', '2025-09-26 10:13:30'),
(5, 5, '342279b9-db34-4b1f-971f-ffc8a07e9b7c', 1, '2025-09-26 10:15:59', '2025-09-26 10:15:59'),
(6, 6, 'b599844f-9f87-4e56-8501-60b9a2a17a80', 1, '2025-09-26 10:18:56', '2025-09-26 10:18:56'),
(7, 7, '65af1c75-a4c1-45ac-a450-9c89ca4a3155', 1, '2025-09-26 10:32:49', '2025-09-26 10:32:49'),
(8, 9, '54613ea2-2cae-4654-b6a3-646c192ee4bb', 1, '2025-10-06 09:43:17', '2025-10-16 08:36:06'),
(9, 11, '31f0cbbc-27a8-4cde-ac48-93a8dd52254d', 1, '2025-10-16 10:24:36', '2025-10-16 10:24:36'),
(10, 12, '342279b9-db34-4b1f-971f-ffc8a07e9b7c', 1, '2025-10-17 05:24:17', '2025-10-17 05:24:17'),
(11, 13, 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, '2025-10-17 05:25:33', '2025-10-17 05:25:33'),
(12, 14, 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, '2025-10-17 05:26:34', '2025-10-17 05:26:34'),
(13, 15, 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, '2025-10-17 05:27:24', '2025-10-17 05:27:24'),
(14, 16, 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, '2025-10-17 05:28:08', '2025-10-17 05:28:08'),
(15, 27, '54613ea2-2cae-4654-b6a3-646c192ee4bb', 1, '2025-11-05 10:31:48', '2025-11-05 10:31:48');

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

--
-- Table structure for table `driver_wallet`
--

CREATE TABLE `driver_wallet` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_wallet`
--

INSERT INTO `driver_wallet` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`) VALUES
('079eb349-1071-45dc-be8e-196d34cd0e69', 22, 0.00, 0.00, 0.00, '2025-11-05 10:27:42', '2025-11-05 10:27:42'),
('0df63c71-6435-42b2-a6c3-f261ad576518', 8, 0.00, 0.00, 0.00, '2025-09-26 10:37:33', '2025-09-26 10:37:33'),
('10aaa750-07d7-483c-b973-518765e9dd32', 4, 0.00, 0.00, 0.00, '2025-09-26 10:13:30', '2025-09-26 10:13:30'),
('14e2b434-5234-4f94-976a-7a8b8c9923e9', 11, 0.00, 0.00, 0.00, '2025-10-16 10:24:36', '2025-10-16 10:24:36'),
('1b2d2952-9349-4594-830a-b49e449d81d1', 9, 0.00, -181.25, 181.25, '2025-10-06 09:42:37', '2025-11-05 12:03:08'),
('1e6a25a1-5a34-46fd-90fc-d501794ba015', 16, 0.00, 0.00, 0.00, '2025-10-17 05:28:08', '2025-10-17 05:28:08'),
('21224bbc-0348-4581-ad8d-45a08c075043', 26, 0.00, 0.00, 0.00, '2025-11-05 10:29:18', '2025-11-05 10:29:18'),
('37f63f96-dda9-4f5b-a29a-9afbd71aa2fd', 19, 0.00, 0.00, 0.00, '2025-10-17 12:05:44', '2025-10-17 12:05:44'),
('3f183d67-5d79-4fcd-9987-d0564c7c6762', 24, 0.00, 0.00, 0.00, '2025-11-05 10:28:45', '2025-11-05 10:28:45'),
('4db3a177-8e79-4966-b195-1bd92f4eeb51', 10, 0.00, 0.00, 0.00, '2025-10-13 12:04:36', '2025-10-13 12:04:36'),
('5f08918a-3ea2-41e0-bfe0-6418c9ba7247', 27, 0.00, 0.00, 0.00, '2025-11-05 10:29:39', '2025-11-05 10:29:39'),
('68603ee6-ab3f-440c-9b8f-1b51a4a34fef', 23, 0.00, 0.00, 0.00, '2025-11-05 10:28:14', '2025-11-05 10:28:14'),
('6cb831ad-54be-44ac-ab0b-c54ab822af86', 25, 0.00, 0.00, 0.00, '2025-11-05 10:28:47', '2025-11-05 10:28:47'),
('7156dee5-7232-4473-9577-a1503f3a763c', 6, 0.00, 0.00, 0.00, '2025-09-26 10:18:56', '2025-09-26 10:18:56'),
('79986f93-ed2f-4ec4-a44c-f00c2284e667', 18, 0.00, 0.00, 0.00, '2025-10-17 10:38:04', '2025-10-17 10:38:04'),
('7a10bd65-3ba1-404d-b973-8516e432557b', 17, 0.00, 0.00, 0.00, '2025-10-17 10:19:11', '2025-10-17 10:19:11'),
('8014456a-ea2b-4a40-9495-867cbb09d975', 21, 0.00, 0.00, 0.00, '2025-11-05 10:27:23', '2025-11-05 10:27:23'),
('884f3dd7-943c-44fb-8af5-0a080758f2ad', 1, 0.00, -204.50, 204.50, '2025-09-26 10:04:59', '2025-11-06 10:47:00'),
('b4cc5dbf-5cbd-4d32-b0db-0c4e2b043235', 2, 0.00, 0.00, 0.00, '2025-09-26 10:08:02', '2025-09-26 10:08:02'),
('c664fe76-f881-46a7-9731-ef8503c21721', 15, 0.00, 0.00, 0.00, '2025-10-17 05:27:24', '2025-10-17 05:27:24'),
('d224e9a4-5647-4ebd-bb29-f9f099db989e', 13, 0.00, 0.00, 0.00, '2025-10-17 05:25:33', '2025-10-17 05:25:33'),
('d86bc68f-bb1b-418b-911f-f0310d0e2135', 12, 0.00, 0.00, 0.00, '2025-10-17 05:24:17', '2025-10-17 05:24:17'),
('d86dd39e-75ae-4bac-9db8-3b78a762f3d5', 20, 0.00, 0.00, 0.00, '2025-10-17 12:11:54', '2025-10-17 12:11:54'),
('eb296da6-38ed-460a-b19a-f26d9e124482', 5, 0.00, 0.00, 0.00, '2025-09-26 10:15:59', '2025-09-26 10:15:59'),
('f44ca276-4b6f-42f5-a0d5-bcbd67fedaa6', 3, 0.00, 0.00, 0.00, '2025-09-26 10:11:33', '2025-09-26 10:11:33'),
('f6875cc0-a755-47f5-9f60-5dae8abb3e95', 14, 0.00, 0.00, 0.00, '2025-10-17 05:26:34', '2025-10-17 05:26:34'),
('fe2ec08b-013d-499b-a0ef-c88f9be4b911', 7, 0.00, 0.00, 0.00, '2025-09-26 10:32:49', '2025-09-26 10:32:49');

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

--
-- Table structure for table `driver_wallet_history`
--

CREATE TABLE `driver_wallet_history` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_wallet_history`
--

INSERT INTO `driver_wallet_history` (`id`, `user_id`, `card_id`, `request_id`, `refferal_code`, `transaction_id`, `amount`, `conversion`, `merchant`, `remarks`, `is_credit`, `admin_id`, `created_at`, `updated_at`) VALUES
('0177de0c-5b7e-4d9d-85ae-17fda6226532', 1, NULL, NULL, NULL, 'qYWIH9', 17.70, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 11:29:58', '2025-10-10 11:29:58'),
('0bd1270d-8661-497e-a0a4-29cce5d84811', 9, NULL, NULL, NULL, 'UuJbiE', 5.75, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-05 12:03:08', '2025-11-05 12:03:08'),
('0ee094f2-7cc4-4585-b4db-434d3fbe60c8', 1, NULL, NULL, NULL, 'i6tQp3', 14.30, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-06 09:01:21', '2025-11-06 09:01:21'),
('147f760a-b086-415b-b7c6-951f674f6ed7', 9, NULL, NULL, NULL, 'qp76J1', 5.55, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-03 12:17:01', '2025-11-03 12:17:01'),
('16a42c49-ace2-4960-965a-7e4a0190065e', 1, NULL, NULL, NULL, 'qXHSle', 14.60, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 10:37:46', '2025-10-10 10:37:46'),
('1fe8847d-0297-48fb-9b32-62ba27d689fc', 9, NULL, NULL, NULL, 'hfoefr', 5.45, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 15:55:22', '2025-10-07 15:55:22'),
('23bc1b7b-c918-4133-b00e-d60f0b0142b4', 9, NULL, NULL, NULL, 'AFX6T6', 5.25, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-08 09:10:42', '2025-10-08 09:10:42'),
('33ad4ffb-e78c-4db9-84d3-1b593e426da4', 1, NULL, NULL, NULL, 'Aiiw9L', 14.60, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 11:09:53', '2025-10-10 11:09:53'),
('45807e34-9f93-4a77-8881-10416d8c0264', 9, NULL, NULL, NULL, 'fHHKAG', 5.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-08 08:12:33', '2025-10-08 08:12:33'),
('496e27fe-cf34-4861-b8d4-37bec94577b1', 9, NULL, NULL, NULL, 'wBKbRM', 5.25, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 11:42:46', '2025-10-07 11:42:46'),
('49a5c510-0140-4259-b9b1-c2c971bf9267', 9, NULL, NULL, NULL, '7ABWxG', 44.10, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-08 10:05:20', '2025-10-08 10:05:20'),
('4d83db34-9285-4aa7-a7f7-8b413e0b661c', 1, NULL, NULL, NULL, 'oPNfH1', 20.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-13 05:38:09', '2025-10-13 05:38:09'),
('4f5ccfd4-d467-4e6f-8b39-27aef3786bf2', 9, NULL, NULL, NULL, 'yMHJhN', 5.50, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-13 10:44:17', '2025-10-13 10:44:17'),
('50058316-afbc-4a02-8266-c4eb6062e594', 9, NULL, NULL, NULL, '1xHp0K', 5.15, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-03 12:13:57', '2025-11-03 12:13:57'),
('54a7ce3a-aad6-45c7-8c27-7ae1e9f88a58', 9, NULL, NULL, NULL, 'uQAnjQ', 5.35, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 09:57:06', '2025-10-07 09:57:06'),
('5d972c2c-600c-415f-8cc2-52d2639ed629', 9, NULL, NULL, NULL, 'geIRiM', 5.15, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-08 08:26:37', '2025-10-08 08:26:37'),
('5e4ae2f2-bffb-491d-995a-63c52d8f3b8b', 1, NULL, NULL, NULL, 'ZlrfPV', 17.10, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-06 08:49:44', '2025-11-06 08:49:44'),
('642d8091-4777-45eb-a233-8b026289b10d', 9, NULL, NULL, NULL, 'Lw0yHP', 5.50, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 10:18:10', '2025-10-07 10:18:10'),
('719f61de-3ff2-4459-86b9-d3957d4a43fe', 9, NULL, NULL, NULL, 'R0ID8Q', 5.15, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-05 11:36:04', '2025-11-05 11:36:04'),
('7440bf47-c3d1-4bd0-8cca-6494c6c4ac9a', 1, NULL, NULL, NULL, '5bcD6W', 15.00, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 10:25:26', '2025-10-10 10:25:26'),
('79998dfa-76b7-4703-a58c-e72b6ae267b0', 9, NULL, NULL, NULL, 'lC65VT', 5.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 09:54:29', '2025-10-07 09:54:29'),
('7eb18722-4e32-4518-8762-3dcae8a4a6e6', 9, NULL, NULL, NULL, '6xytAX', 5.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 09:46:04', '2025-10-07 09:46:04'),
('7fefcec5-2e07-447b-b84d-17f9828e32fe', 9, NULL, NULL, NULL, '8de8kJ', 5.80, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-13 13:08:31', '2025-10-13 13:08:31'),
('81767edd-e977-4096-bd17-2e6636843ad4', 9, NULL, NULL, NULL, 'IE60Sw', 5.60, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-13 10:20:30', '2025-10-13 10:20:30'),
('9c5da44f-42d6-4cd3-934c-90c1b2c2a1fb', 9, NULL, NULL, NULL, 'nbT3wE', 5.80, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-05 11:57:51', '2025-11-05 11:57:51'),
('9e490a67-d804-4594-94b7-149025741754', 9, NULL, NULL, NULL, 'c5NINU', 5.15, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-05 11:31:23', '2025-11-05 11:31:23'),
('a433f2a8-563c-4891-80d5-78cbb563a243', 1, NULL, NULL, NULL, 's3L3jp', 20.60, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 10:03:53', '2025-10-10 10:03:53'),
('a6c33daa-6be6-4a4c-9a5f-210967b2cf6c', 9, NULL, NULL, NULL, 'EQKFzS', 8.35, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 11:09:52', '2025-10-07 11:09:52'),
('a8aeda07-e7ec-477b-b0f6-f3edcff736b5', 1, NULL, NULL, NULL, 'E6smYO', 20.50, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-06 10:30:17', '2025-11-06 10:30:17'),
('b9be140f-61e6-48f0-8225-66af7e65481c', 9, NULL, NULL, NULL, 'J1GvFe', 5.45, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-13 10:16:12', '2025-10-13 10:16:12'),
('bc00d915-204d-4c9b-913a-eb2360dcb20a', 9, NULL, NULL, NULL, '6Pt9Gr', 5.45, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 16:00:57', '2025-10-07 16:00:57'),
('dbb1deed-9ecd-485c-ba05-2460789fe782', 1, NULL, NULL, NULL, 'ObRMKR', 20.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-11-06 10:47:00', '2025-11-06 10:47:00'),
('ecaabb2a-fa06-45c9-a3c0-b150503b0ae8', 1, NULL, NULL, NULL, 'sawwGA', 11.70, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 11:47:23', '2025-10-10 11:47:23'),
('efa68429-e0e5-46da-bad9-fd22fc56dca1', 1, NULL, NULL, NULL, 'E2ysso', 17.60, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-10 11:07:27', '2025-10-10 11:07:27'),
('f2b9279c-7eb2-40bb-9bd9-8c4b05ce5add', 9, NULL, NULL, NULL, 'FUXAzx', 5.45, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-06 11:34:53', '2025-10-06 11:34:53'),
('f4bf704a-7163-4164-861c-9c2b96f6ca08', 9, NULL, NULL, NULL, '0EhiLy', 9.45, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-07 15:47:55', '2025-10-07 15:47:55'),
('ff89c6ae-2680-4eee-b9e0-1ad47acc796c', 9, NULL, NULL, NULL, 'dJkhE4', 5.40, NULL, NULL, 'admin_commission_for_trip', 0, NULL, '2025-10-12 05:45:30', '2025-10-12 05:45:30');

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

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

CREATE TABLE `emails` (
  `id` char(36) NOT NULL,
  `email_subject` text DEFAULT NULL,
  `logo_img` longtext DEFAULT NULL,
  `mail_body` longtext DEFAULT NULL,
  `button_name` text DEFAULT NULL,
  `button_url` text DEFAULT NULL,
  `banner_img` longtext DEFAULT NULL,
  `footer` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `uuid` char(36) NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `faqs`
--

CREATE TABLE `faqs` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `question` longtext NOT NULL,
  `answer` longtext NOT NULL,
  `user_type` enum('user','driver','owner','all') NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `favorite_places`
--

CREATE TABLE `favorite_places` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `place_id` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `favourite_locations`
--

CREATE TABLE `favourite_locations` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `pick_lat` double(15,8) DEFAULT NULL,
  `pick_lng` double(15,8) DEFAULT NULL,
  `drop_lat` double(15,8) DEFAULT NULL,
  `drop_lng` double(15,8) DEFAULT NULL,
  `pick_address` text DEFAULT NULL,
  `drop_address` text DEFAULT NULL,
  `address_name` varchar(191) DEFAULT NULL,
  `landmark` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `favourite_locations`
--

INSERT INTO `favourite_locations` (`id`, `user_id`, `pick_lat`, `pick_lng`, `drop_lat`, `drop_lng`, `pick_address`, `drop_address`, `address_name`, `landmark`, `created_at`, `updated_at`) VALUES
(2, 20, 37.42199819, -122.08399985, NULL, NULL, 'Google Building 40, 1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', NULL, 'Home', NULL, '2025-09-30 10:52:27', '2025-09-30 10:52:27'),
(3, 20, 37.42199819, -122.08399985, NULL, NULL, 'Google Building 40, 1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', NULL, 'Work', NULL, '2025-09-30 11:03:12', '2025-09-30 11:03:12'),
(8, 2, 19.26631772, 76.76113799, NULL, NULL, 'Dnyanopasak  Jintur Rd, Masoom Colony, Parbhani, Maharashtra 431401, India', NULL, 'Home', NULL, '2025-10-13 09:09:39', '2025-10-13 09:09:39'),
(9, 2, 19.15994721, 72.81675786, NULL, NULL, 'Mumbai, Maharashtra 400061, India', NULL, 'Work', NULL, '2025-10-13 09:10:15', '2025-10-13 09:10:15'),
(10, 2, 21.23000488, 72.90089674, NULL, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', NULL, 'User', NULL, '2025-11-03 11:26:54', '2025-11-03 11:26:54'),
(11, 2, 21.22597141, 72.90004078, NULL, NULL, '2, Bhagavan Nagar Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, 'My loc', NULL, '2025-11-03 11:27:19', '2025-11-03 11:27:19'),
(12, 72, 21.22606204, 72.89999250, NULL, NULL, '2, Bhagavan Nagar Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, 'my loc', NULL, '2025-11-06 08:51:03', '2025-11-06 08:51:03');

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

--
-- Table structure for table `fields`
--

CREATE TABLE `fields` (
  `id` int(10) UNSIGNED NOT NULL,
  `method_id` int(10) UNSIGNED NOT NULL,
  `input_field_name` varchar(191) NOT NULL,
  `placeholder` varchar(191) DEFAULT NULL,
  `is_required` tinyint(1) NOT NULL DEFAULT 0,
  `input_field_type` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `fields`
--

INSERT INTO `fields` (`id`, `method_id`, `input_field_name`, `placeholder`, `is_required`, `input_field_type`, `created_at`, `updated_at`) VALUES
(1, 1, 'test', 'test', 0, 'text', '2025-10-16 08:51:29', '2025-10-16 08:51:29');

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

--
-- Table structure for table `fleets`
--

CREATE TABLE `fleets` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `fleet_id` varchar(191) DEFAULT NULL,
  `qr_image` text DEFAULT NULL,
  `owner_id` int(10) UNSIGNED NOT NULL,
  `brand` int(10) UNSIGNED DEFAULT NULL,
  `custom_make` varchar(191) DEFAULT NULL,
  `model` int(10) UNSIGNED DEFAULT NULL,
  `custom_model` varchar(191) DEFAULT NULL,
  `license_number` varchar(191) DEFAULT NULL,
  `permission_number` varchar(191) DEFAULT NULL,
  `vehicle_type` char(36) NOT NULL,
  `car_color` varchar(191) DEFAULT NULL,
  `class_one` tinyint(1) NOT NULL DEFAULT 0,
  `class_two` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `status` varchar(191) NOT NULL DEFAULT '2',
  `reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fleet_documents`
--

CREATE TABLE `fleet_documents` (
  `id` char(36) NOT NULL,
  `fleet_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `image` varchar(191) NOT NULL,
  `back_image` varchar(191) DEFAULT NULL,
  `expiry_date` timestamp NULL DEFAULT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `comment` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fleet_needed_documents`
--

CREATE TABLE `fleet_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `document_name_front` varchar(191) DEFAULT NULL,
  `document_name_back` varchar(191) DEFAULT NULL,
  `image_type` varchar(191) DEFAULT NULL,
  `is_editable` tinyint(1) NOT NULL DEFAULT 1,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `is_required` tinyint(1) NOT NULL DEFAULT 1,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `goods_types`
--

CREATE TABLE `goods_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `goods_type_name` varchar(191) NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `goods_types_for` enum('truck','motor_bike','both') DEFAULT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `goods_types`
--

INSERT INTO `goods_types` (`id`, `goods_type_name`, `translation_dataset`, `goods_types_for`, `company_key`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Timber/Plywood/Laminate', '{\"en\":{\"locale\":\"en\",\"name\":\"Timber\\/Plywood\\/Laminate\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(2, 'Electrical/Electronics/Home Appliances', '{\"en\":{\"locale\":\"en\",\"name\":\"Electrical\\/Electronics\\/Home Appliances\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(3, 'Building/Construction', '{\"en\":{\"locale\":\"en\",\"name\":\"Building\\/Construction\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(4, 'Catering/Restaurant/Event Management', '{\"en\":{\"locale\":\"en\",\"name\":\"Catering\\/Restaurant\\/Event Management\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(5, 'Machines/Equipments/Spare Parts/Metals', '{\"en\":{\"locale\":\"en\",\"name\":\"Machines\\/Equipments\\/Spare Parts\\/Metals\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(6, 'Textile/Garments/Fashion Accessories', '{\"en\":{\"locale\":\"en\",\"name\":\"Textile\\/Garments\\/Fashion Accessories\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(7, 'Furniture/Home Furnishing', '{\"en\":{\"locale\":\"en\",\"name\":\"Furniture\\/Home Furnishing\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(8, 'House Shifting', '{\"en\":{\"locale\":\"en\",\"name\":\"House Shifting\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(9, 'Ceramics/Sanitaryware/HardWare', '{\"en\":{\"locale\":\"en\",\"name\":\"Ceramics\\/Sanitaryware\\/HardWare\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(10, 'Paper/Packaging/Printed Material', '{\"en\":{\"locale\":\"en\",\"name\":\"Paper\\/Packaging\\/Printed Material\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(11, 'Chemicals/Paints', '{\"en\":{\"locale\":\"en\",\"name\":\"Chemicals\\/Paints\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(12, 'Logistics service provider/Packers and Movers', '{\"en\":{\"locale\":\"en\",\"name\":\"Logistics service provider\\/Packers and Movers\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(13, 'Perishable Food Items', '{\"en\":{\"locale\":\"en\",\"name\":\"Perishable Food Items\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(14, 'Pharmacy/Medical?Healthcare/Fitness Equipment', '{\"en\":{\"locale\":\"en\",\"name\":\"Pharmacy\\/Medical?Healthcare\\/Fitness Equipment\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(15, 'FMCG/Food Products', '{\"en\":{\"locale\":\"en\",\"name\":\"FMCG\\/Food Products\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(16, 'Jewelry/Watches', '{\"en\":{\"locale\":\"en\",\"name\":\"Jewelry\\/Watches\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(17, 'Plastic/Rubber', '{\"en\":{\"locale\":\"en\",\"name\":\"Plastic\\/Rubber\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(18, 'Books/Stationery/Toys/Gifts', '{\"en\":{\"locale\":\"en\",\"name\":\"Books\\/Stationery\\/Toys\\/Gifts\"}}', 'both', NULL, 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

--
-- Table structure for table `goods_type_translations`
--

CREATE TABLE `goods_type_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `goods_type_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `goods_type_translations`
--

INSERT INTO `goods_type_translations` (`id`, `goods_type_id`, `name`, `locale`, `created_at`, `updated_at`) VALUES
(1, 1, 'Timber/Plywood/Laminate', 'en', NULL, NULL),
(2, 2, 'Electrical/Electronics/Home Appliances', 'en', NULL, NULL),
(3, 3, 'Building/Construction', 'en', NULL, NULL),
(4, 4, 'Catering/Restaurant/Event Management', 'en', NULL, NULL),
(5, 5, 'Machines/Equipments/Spare Parts/Metals', 'en', NULL, NULL),
(6, 6, 'Textile/Garments/Fashion Accessories', 'en', NULL, NULL),
(7, 7, 'Furniture/Home Furnishing', 'en', NULL, NULL),
(8, 8, 'House Shifting', 'en', NULL, NULL),
(9, 9, 'Ceramics/Sanitaryware/HardWare', 'en', NULL, NULL),
(10, 10, 'Paper/Packaging/Printed Material', 'en', NULL, NULL),
(11, 11, 'Chemicals/Paints', 'en', NULL, NULL),
(12, 12, 'Logistics service provider/Packers and Movers', 'en', NULL, NULL),
(13, 13, 'Perishable Food Items', 'en', NULL, NULL),
(14, 14, 'Pharmacy/Medical?Healthcare/Fitness Equipment', 'en', NULL, NULL),
(15, 15, 'FMCG/Food Products', 'en', NULL, NULL),
(16, 16, 'Jewelry/Watches', 'en', NULL, NULL),
(17, 17, 'Plastic/Rubber', 'en', NULL, NULL),
(18, 18, 'Books/Stationery/Toys/Gifts', 'en', NULL, NULL);

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

--
-- Table structure for table `incentives`
--

CREATE TABLE `incentives` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) DEFAULT NULL,
  `ride_count` int(11) NOT NULL,
  `amount` double NOT NULL,
  `mode` enum('daily','weekly') NOT NULL DEFAULT 'daily',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `invoice_configurations`
--

CREATE TABLE `invoice_configurations` (
  `id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `value` varchar(191) DEFAULT NULL,
  `module` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `invoice_configurations`
--

INSERT INTO `invoice_configurations` (`id`, `name`, `value`, `module`, `created_at`, `updated_at`) VALUES
('0819662c-9333-479c-a6f7-93543be0502b', 'invoice_logo', 'rest.png', 'invoice_configuration', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('8634fcae-39d0-49e2-8a07-a0b7d1a5082c', 'invoice_email', 'dilip@mxdrive.com', 'invoice_configuration', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('8b247fb5-f392-460e-9dfe-0bae07dbe9eb', 'privacy_policy_link', 'Test', 'invoice_configuration', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('b43e9ba3-cb7d-4bda-af6f-743ec3eef7b2', 'terms_and_conditions_link', 'https://mxdrive.mimeld.com/terms', 'invoice_configuration', '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

--
-- Table structure for table `jobs`
--

CREATE TABLE `jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `queue` varchar(191) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `landingpagecms`
--

CREATE TABLE `landingpagecms` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `tabfaviconfile` text NOT NULL,
  `faviconfile` text NOT NULL,
  `bannerimage` text NOT NULL,
  `description` text NOT NULL,
  `playstoreicon1` text NOT NULL,
  `playstoreicon2` text NOT NULL,
  `firstrowimage1` text NOT NULL,
  `firstrowheadtext1` text NOT NULL,
  `firstrowsubtext1` text NOT NULL,
  `firstrowimage2` text NOT NULL,
  `firstrowheadtext2` text NOT NULL,
  `firstrowsubtext2` text NOT NULL,
  `firstrowimage3` text NOT NULL,
  `firstrowheadtext3` text NOT NULL,
  `firstrowsubtext3` text NOT NULL,
  `secondrowimage1` text NOT NULL,
  `secondrowheadtext1` text NOT NULL,
  `secondrowimage2` text NOT NULL,
  `secondrowheadtext2` text NOT NULL,
  `secondrowimage3` text NOT NULL,
  `secondrowheadtext3` text NOT NULL,
  `footertextsub` text NOT NULL,
  `footercopytextsub` text NOT NULL,
  `footerlogo` text NOT NULL,
  `footerinstagramlink` text NOT NULL,
  `footerfacebooklink` text NOT NULL,
  `safety` text NOT NULL,
  `safetytext` longtext NOT NULL,
  `serviceheadtext` text NOT NULL,
  `servicesubtext` text NOT NULL,
  `serviceimage` longtext NOT NULL,
  `privacy` longtext NOT NULL,
  `dmv` longtext NOT NULL,
  `complaince` longtext NOT NULL,
  `terms` longtext NOT NULL,
  `frimage` text NOT NULL,
  `frtext` longtext NOT NULL,
  `srimage` text NOT NULL,
  `srtext` longtext NOT NULL,
  `trimage` text NOT NULL,
  `trtext` longtext NOT NULL,
  `afrimage` text NOT NULL,
  `afrhtext` text NOT NULL,
  `afrstext` text NOT NULL,
  `asrtext` text NOT NULL,
  `asrimage1` text NOT NULL,
  `asrhtext1` text NOT NULL,
  `asrstext1` text NOT NULL,
  `asrimage2` text NOT NULL,
  `asrhtext2` text NOT NULL,
  `asrstext2` text NOT NULL,
  `asrimage3` text NOT NULL,
  `asrhtext3` text NOT NULL,
  `asrstext3` text NOT NULL,
  `atrhtext` text NOT NULL,
  `atrthtext1` text NOT NULL,
  `atrtimage1` text NOT NULL,
  `atrtstext1` text NOT NULL,
  `atrthtext2` text NOT NULL,
  `atrtimage2` text NOT NULL,
  `atrtstext2` text NOT NULL,
  `atrthtext3` text NOT NULL,
  `atrtimage3` text NOT NULL,
  `atrtstext3` text NOT NULL,
  `afrbimage` text NOT NULL,
  `afrlimage` text NOT NULL,
  `afrheadtext` text NOT NULL,
  `afrstext1` text NOT NULL,
  `afrstext2` text NOT NULL,
  `afrstext3` text NOT NULL,
  `afrstext4` text NOT NULL,
  `howbannerimage` text NOT NULL,
  `hfrht1` text NOT NULL,
  `hfrcimage1` text NOT NULL,
  `hfrht2` text NOT NULL,
  `hsrht1` text NOT NULL,
  `hsrcimage1` text NOT NULL,
  `hsrht2` text NOT NULL,
  `htrht1` text NOT NULL,
  `htrcimage1` text NOT NULL,
  `htrht2` text NOT NULL,
  `hforht1` text NOT NULL,
  `hforcimage1` text NOT NULL,
  `hforht2` text NOT NULL,
  `hfirht1` text NOT NULL,
  `hfircimage1` text NOT NULL,
  `hfirht2` text NOT NULL,
  `hsirht1` text NOT NULL,
  `hsircimage1` text NOT NULL,
  `hsirht2` text NOT NULL,
  `hserht1` text NOT NULL,
  `hsercimage1` text NOT NULL,
  `hserht2` text NOT NULL,
  `created_at` date NOT NULL,
  `updated_at` date NOT NULL,
  `contactbanner` text NOT NULL,
  `contacttext` longtext NOT NULL,
  `contactmap` longtext NOT NULL,
  `driverioslink` text NOT NULL,
  `driverandroidlink` text NOT NULL,
  `userioslink` text NOT NULL,
  `userandroidlink` text NOT NULL,
  `menucolor` text NOT NULL,
  `menutextcolor` text NOT NULL,
  `menutexthover` text NOT NULL,
  `firstrowbgcolor` text NOT NULL,
  `hdriverdownloadcolor` text NOT NULL,
  `hownumberbgcolor` text NOT NULL,
  `footerbgcolor` text NOT NULL,
  `web_booking_logo` text DEFAULT NULL,
  `web_booking_taxi` text DEFAULT NULL,
  `web_booking_rental` text DEFAULT NULL,
  `web_booking_delivery` text DEFAULT NULL,
  `web_booking_history` text DEFAULT NULL,
  `web_booking_track` text DEFAULT NULL,
  `invoice_logo` text DEFAULT NULL,
  `privacy_policy_link` text DEFAULT NULL,
  `terms_and_conditions_link` text DEFAULT NULL,
  `invoice_email` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `landing_abouts`
--

CREATE TABLE `landing_abouts` (
  `id` char(36) NOT NULL,
  `hero_title` text DEFAULT NULL,
  `about_heading` text DEFAULT NULL,
  `about_title` longtext DEFAULT NULL,
  `about_para` longtext DEFAULT NULL,
  `about_lists` text DEFAULT NULL,
  `about_img` longtext DEFAULT NULL,
  `ceo_name` text DEFAULT NULL,
  `ceo_title` text DEFAULT NULL,
  `signature` text DEFAULT NULL,
  `ceo_para` longtext DEFAULT NULL,
  `ceo_img` text DEFAULT NULL,
  `vision_mision_heading` text DEFAULT NULL,
  `vision_title` longtext DEFAULT NULL,
  `vision_para` longtext DEFAULT NULL,
  `mission_title` text DEFAULT NULL,
  `mission_para` longtext DEFAULT NULL,
  `team_title` text DEFAULT NULL,
  `team_para` longtext DEFAULT NULL,
  `team_members` text DEFAULT NULL,
  `testimonial_heading` text DEFAULT NULL,
  `testimonial_content` text DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_abouts`
--

INSERT INTO `landing_abouts` (`id`, `hero_title`, `about_heading`, `about_title`, `about_para`, `about_lists`, `about_img`, `ceo_name`, `ceo_title`, `signature`, `ceo_para`, `ceo_img`, `vision_mision_heading`, `vision_title`, `vision_para`, `mission_title`, `mission_para`, `team_title`, `team_para`, `team_members`, `testimonial_heading`, `testimonial_content`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('158c3b41-2a4f-4efb-8d89-e21f776ed93e', 'À propos de nous', 'À propos', 'L\'entreprise', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'Membres d\'équipe dédiés, Services exceptionnels, Support client, Assurance qualité', 'company.png', 'Le CEO', 'CEO', 'signatures.png', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'avatar-4.jpg', 'Vision et Mission de notre entreprise', 'Vision', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'Mission', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'Notre équipe', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', '[{\"team_member_name\":\"Nancy Mart\",\"team_member_posision\":\"Conducteur\",\"team_member_image\":\"avatar-2.jpg\"},{\"team_member_name\":\"John Doe\",\"team_member_posision\":\"Conducteur\",\"team_member_image\":\"avatar-1.jpg\"},{\"team_member_name\":\"Jane Smith\",\"team_member_posision\":\"Conducteur\",\"team_member_image\":\"avatar-3.jpg\"},{\"team_member_name\":\"Nancy Mart\",\"team_member_posision\":\"Conducteur\",\"team_member_image\":\"avatar-4.jpg\"}]', 'Section Témoignages', '[{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"gregoriusus\",\"testimonial_title_2\":\"exemple\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"gregoriusus\",\"testimonial_title_2\":\"exemple\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"gregoriusus\",\"testimonial_title_2\":\"exemple\"}]', 'fr', 'French', 'ltr', NULL, NULL),
('52a9b61d-67be-41fd-a267-67185dd85fa4', 'من نحن', 'عن الشركة', 'الشركة', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'أعضاء فريق مخلصين، خدمات رائعة، دعم العملاء، ضمان الجودة', 'company.png', 'المدير التنفيذي', 'الرئيس التنفيذي', 'signatures.png', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'avatar-4.jpg', 'رؤية ومهمة شركتنا', 'الرؤية', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'المهمة', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'فريقنا', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', '[{\"team_member_name\":\"\\u0646\\u0627\\u0646\\u0633\\u064a \\u0645\\u0627\\u0631\\u062a\",\"team_member_posision\":\"\\u0633\\u0627\\u0626\\u0642\",\"team_member_image\":\"avatar-2.jpg\"},{\"team_member_name\":\"\\u062c\\u0648\\u0646 \\u062f\\u0648\",\"team_member_posision\":\"\\u0633\\u0627\\u0626\\u0642\",\"team_member_image\":\"avatar-1.jpg\"},{\"team_member_name\":\"\\u062c\\u064a\\u0646 \\u0633\\u0645\\u064a\\u062b\",\"team_member_posision\":\"\\u0633\\u0627\\u0626\\u0642\",\"team_member_image\":\"avatar-3.jpg\"},{\"team_member_name\":\"\\u0646\\u0627\\u0646\\u0633\\u064a \\u0645\\u0627\\u0631\\u062a\",\"team_member_posision\":\"\\u0633\\u0627\\u0626\\u0642\",\"team_member_image\":\"avatar-4.jpg\"}]', 'قسم التوصيات', '[{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"\\u063a\\u0631\\u064a\\u063a\\u0648\\u0631\\u064a\\u0648\\u0633\",\"testimonial_title_2\":\"\\u0646\\u0645\\u0648\\u0630\\u062c\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"\\u063a\\u0631\\u064a\\u063a\\u0648\\u0631\\u064a\\u0648\\u0633\",\"testimonial_title_2\":\"\\u0646\\u0645\\u0648\\u0630\\u062c\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"\\u063a\\u0631\\u064a\\u063a\\u0648\\u0631\\u064a\\u0648\\u0633\",\"testimonial_title_2\":\"\\u0646\\u0645\\u0648\\u0630\\u062c\"}]', 'ar', 'Arabic', 'rtl', NULL, NULL),
('596d2d13-5dcf-49fa-882f-6fcdac04680f', 'Sobre Nosotros', 'Sobre la Compañía', 'Compañía', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'Miembros del equipo dedicados, Servicios excepcionales, Soporte al cliente, Garantía de calidad', 'company.png', 'El CEO', 'CEO', 'signatures.png', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'avatar-4.jpg', 'Visión y Misión de nuestra empresa', 'Visión', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'Misión', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here making it look like readable English', 'Nuestro Equipo', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less.', '[{\"team_member_name\":\"Nancy Mart\",\"team_member_posision\":\"Conductor\",\"team_member_image\":\"avatar-2.jpg\"},{\"team_member_name\":\"John Doe\",\"team_member_posision\":\"Conductor\",\"team_member_image\":\"avatar-1.jpg\"},{\"team_member_name\":\"Jane Smith\",\"team_member_posision\":\"Conductor\",\"team_member_image\":\"avatar-3.jpg\"},{\"team_member_name\":\"Nancy Mart\",\"team_member_posision\":\"Conductor\",\"team_member_image\":\"avatar-4.jpg\"}]', 'Sección de Testimonios', '[{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"Gregorius\",\"testimonial_title_2\":\"ejemplo\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"Gregorius\",\"testimonial_title_2\":\"ejemplo\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"Gregorius\",\"testimonial_title_2\":\"ejemplo\"}]', 'es', 'Spanish', 'ltr', NULL, NULL),
('dd8ec66b-d9c6-45c5-a73d-3fd3ae33cd62', 'About Us', 'About', 'The Company', '<p>MXDrive is an innovative platform offering seamless ride-hailing and delivery services, designed to cater to the dynamic needs of urban commuters and businesses. With a user-friendly app and website, MXDrive connects riders and delivery partners efficiently, ensuring timely and reliable transportation and logistics solutions.</p>', '<p>Dedicated Team Members,</p><p>Awesome Services,</p><p>Customer Support,</p><p>Quality Assurance</p>', 'Qgr3KqaPczWZOVJPvXJfxUd57e64G8ohAhyuxX6S.png', 'Safety First', 'Your peace of mind is our priority.', 'CZXTJXLWRXFUyAVLi2x8FRfpOMNvHG4RHAIBaCgp.svg', '<p>At MXDrive, we go the extra mile to ensure every ride is safe and secure. All drivers are verified, vehicles are inspected, and real-time GPS tracking keeps your loved ones in the loop. With two-way ratings, 24/7 support, and an emergency SOS button, we’ve got your back—every trip, every time. Ride with confidence, knowing that safety is always in the driver’s seat.<br>&nbsp;</p>', 'QisuIOC1QNmnXlvSNPkgYTjHwOOcGEYkSe3pP7Rq.svg', 'Our Company’s Vision and Mission', 'Vision', '<p>At MXDrive, our vision is to revolutionize urban transportation and delivery services by providing fast, reliable, and eco-friendly solutions. We strive to connect people and businesses effortlessly, enhancing convenience and sustainability in every ride and delivery.</p>', 'Mission', '<p>Our mission at MXDrive is to deliver seamless, efficient, and affordable ride-hailing and delivery experiences that meet the evolving needs of our customers. We aim to empower communities by offering reliable transportation solutions while prioritizing safety, innovation, and sustainability.</p>', 'Mobility', '<p>Ride or drive, shop or deliver, send or receive – one app for all fair deals</p>', '[{\"team_member_name\":\"City Rides\",\"team_member_posision\":\"Choose a driver and offer your fare for a ride\",\"team_member_image\":\"Td1qbyhzcfFKcPzGyvBO2vX2XSgt5nB7eE0fFkxS.svg\"},{\"team_member_name\":\"Courier Delivery\",\"team_member_posision\":\"Choose a courier for the price you choose\",\"team_member_image\":\"5qlJhZiygB1YkYvW8V7bRQp1kspPA9wRwRknfebp.svg\"},{\"team_member_name\":\"Freight Delivery\",\"team_member_posision\":\"Cargo transportation for your price\",\"team_member_image\":\"ysReCZJumF2GoGejrKYxH6DAnBYNkxDPKwoXvxlN.svg\"},{\"team_member_name\":\"City to City\",\"team_member_posision\":\"City to City\",\"team_member_image\":\"ZrCNKeSRsVxVmMRyvGaN2ydTGDESbVIZPF4BZYDD.svg\"}]', 'Testimonial Section', '[{\"testimonial_para\":\"<p>\\u201cMXDrive has been a game-changer for my business! Their reliable delivery services help me get products to my customers faster, and the app is incredibly easy to use. I trust MXDrive to handle my logistics needs so I can focus on growing my business.\\u201d&nbsp;<\\/p>\",\"testimonial_title_1\":\"John Doe\",\"testimonial_title_2\":\"Entrepreneur\"},{\"testimonial_para\":\"<p>\\u201cI\\u2019ve been using MXDrive for my daily commute, and I couldn\'t be happier with the service. The rides are always punctual, the drivers are friendly, and the app is so convenient. It\\u2019s the best ride-hailing service I\\u2019ve used so far!\\u201d&nbsp;<\\/p>\",\"testimonial_title_1\":\"Sara Smith\",\"testimonial_title_2\":\"Commuter\"},{\"testimonial_para\":\"<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed perspiciatis commodi voluptas possimus rerum alias eum necessitatibus reiciendis dolorum praesentium aliquid deserunt, consequatur autem delectus eligendi doloribus, eius quos doloremque.<\\/p>\",\"testimonial_title_1\":\"David Lee\",\"testimonial_title_2\":\"Operations Manager\"}]', 'En', 'English', 'ltr', NULL, '2025-09-26 09:11:37');

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

--
-- Table structure for table `landing_contacts`
--

CREATE TABLE `landing_contacts` (
  `id` char(36) NOT NULL,
  `hero_title` text DEFAULT NULL,
  `contact_heading` text DEFAULT NULL,
  `contact_para` longtext DEFAULT NULL,
  `contact_address_title` text DEFAULT NULL,
  `contact_address` longtext DEFAULT NULL,
  `contact_phone_title` text DEFAULT NULL,
  `contact_phone` text DEFAULT NULL,
  `contact_mail_title` text DEFAULT NULL,
  `contact_mail` text DEFAULT NULL,
  `contact_web_title` text DEFAULT NULL,
  `contact_web` text DEFAULT NULL,
  `form_name` text DEFAULT NULL,
  `form_mail` text DEFAULT NULL,
  `form_subject` text DEFAULT NULL,
  `form_message` text DEFAULT NULL,
  `form_btn` text DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_contacts`
--

INSERT INTO `landing_contacts` (`id`, `hero_title`, `contact_heading`, `contact_para`, `contact_address_title`, `contact_address`, `contact_phone_title`, `contact_phone`, `contact_mail_title`, `contact_mail`, `contact_web_title`, `contact_web`, `form_name`, `form_mail`, `form_subject`, `form_message`, `form_btn`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('189a83a5-ea4d-4cf8-833f-bfadf549733d', 'Contacto', 'Póngase en contacto', '¿Tienes una It is a long established fact that a reader will be distracted by the readableido y envíenos un mensaje. Haremos todo lo posible para responder rápidamente.', 'DIRECCIÓN DE LA OFICINA', 'Mobility IntelligenceIt is a long established fact that a reader will be distracted by the readableTamil Nadu 641035', 'MÓVIL', '+91-9876543210', 'CORREO ELECTRÓNICO', 'dilip@mxdrive.com', 'SITIO WEB', 'https://mxdrive.in/', 'Nombre', 'Correo electrónico', 'Asunto', 'Mensaje', 'Enviar mensaje', 'es', 'Spanish', 'ltr', NULL, NULL),
('1c20f52d-1fa6-4e97-b1cc-3bc486aaaa9f', 'Contact', 'Contactez-nous', 'Vous avezIt is a long established fact that a reader will be distracted by the readable envoyer un message. Nous ferons tout notre possible pour répondre rapidement.', 'ADRESSE DU BUREAU', 'Mobility It is a long established fact that a reader will be distracted by the readable Nadu 641035', 'TÉLÉPHONE', '+91-9876543210', 'MAIL', 'dilip@mxdrive.com', 'SITE WEB', 'https://mxdrive.in/', 'Nom', 'Email', 'Sujet', 'Message', 'Envoyer le message', 'fr', 'French', 'ltr', NULL, NULL),
('58ee071a-ec62-407d-8cfb-2d0f43299f50', 'اتصل', 'تواصل معنا', 'هل لديك سؤال أو استفسار أو تعليق؟ لا It is a long established fact that a reader will be distracted by the readable', 'عنوان المكتب', 'البرمجيات الذكية للتنقل، الطابق الثاني، 37A11، طريIt is a long established fact that a reader will be distracted by the readable41035', 'الجوال', '+91-9876543210', 'البريد الإلكتروني', 'dilip@mxdrive.com', 'الموقع الإلكتروني', 'https://mxdrive.in/', 'الاسم', 'البريد الإلكتروني', 'الموضوع', 'الرسالة', 'إرسال الرسالة', 'ar', 'Arabic', 'rtl', NULL, NULL),
('8ffe3ea6-4593-4441-b40c-a839bed05095', 'Contact', 'Get In Touch', 'Have a question,It is a long established fact that a reader will be distracted by the readable.', 'OFFICE ADDRESS', '<p>Global</p>', 'MOBILE', '+15162023950', 'MAIL', 'dilip@mxdrive.com', 'WEBSITE', 'https://mxdrivex.atharvatek.com/', 'Name', 'Email', 'Subject', 'Message', 'Send Message', 'En', 'English', 'ltr', NULL, '2025-10-09 09:57:11');

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

--
-- Table structure for table `landing_drivers`
--

CREATE TABLE `landing_drivers` (
  `id` char(36) NOT NULL,
  `hero_title` text DEFAULT NULL,
  `driver_heading_1` text DEFAULT NULL,
  `driver_para` longtext DEFAULT NULL,
  `driver_img_1` text DEFAULT NULL,
  `driver_title_1` text DEFAULT NULL,
  `driver_para_1` longtext DEFAULT NULL,
  `driver_img_2` text DEFAULT NULL,
  `driver_title_2` text DEFAULT NULL,
  `driver_para_2` longtext DEFAULT NULL,
  `driver_img_3` text DEFAULT NULL,
  `driver_title_3` text DEFAULT NULL,
  `driver_para_3` longtext DEFAULT NULL,
  `how_it_work_heading` text DEFAULT NULL,
  `how_it_work_title_1` text DEFAULT NULL,
  `how_it_work_para_1` longtext DEFAULT NULL,
  `how_it_work_img_1` text DEFAULT NULL,
  `how_it_work_title_2` text DEFAULT NULL,
  `how_it_work_para_2` longtext DEFAULT NULL,
  `how_it_work_img_2` text DEFAULT NULL,
  `how_it_work_title_3` text DEFAULT NULL,
  `how_it_work_para_3` longtext DEFAULT NULL,
  `how_it_work_img_3` text DEFAULT NULL,
  `how_it_work_title_4` text DEFAULT NULL,
  `how_it_work_para_4` longtext DEFAULT NULL,
  `how_it_work_img_4` text DEFAULT NULL,
  `how_it_work_title_5` text DEFAULT NULL,
  `how_it_work_para_5` longtext DEFAULT NULL,
  `how_it_work_img_5` text DEFAULT NULL,
  `how_it_work_title_6` text DEFAULT NULL,
  `how_it_work_para_6` longtext DEFAULT NULL,
  `how_it_work_img_6` text DEFAULT NULL,
  `how_it_work_title_7` text DEFAULT NULL,
  `how_it_work_para_7` longtext DEFAULT NULL,
  `how_it_work_img_7` text DEFAULT NULL,
  `req_heading` text DEFAULT NULL,
  `req_title` text DEFAULT NULL,
  `req_lists` longtext DEFAULT NULL,
  `req_img` text DEFAULT NULL,
  `vechile_req_title` text DEFAULT NULL,
  `vechile_req_lists` longtext DEFAULT NULL,
  `vechile_req_img` text DEFAULT NULL,
  `doc_req_title` text DEFAULT NULL,
  `doc_req_lists` longtext DEFAULT NULL,
  `doc_req_img` text DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_drivers`
--

INSERT INTO `landing_drivers` (`id`, `hero_title`, `driver_heading_1`, `driver_para`, `driver_img_1`, `driver_title_1`, `driver_para_1`, `driver_img_2`, `driver_title_2`, `driver_para_2`, `driver_img_3`, `driver_title_3`, `driver_para_3`, `how_it_work_heading`, `how_it_work_title_1`, `how_it_work_para_1`, `how_it_work_img_1`, `how_it_work_title_2`, `how_it_work_para_2`, `how_it_work_img_2`, `how_it_work_title_3`, `how_it_work_para_3`, `how_it_work_img_3`, `how_it_work_title_4`, `how_it_work_para_4`, `how_it_work_img_4`, `how_it_work_title_5`, `how_it_work_para_5`, `how_it_work_img_5`, `how_it_work_title_6`, `how_it_work_para_6`, `how_it_work_img_6`, `how_it_work_title_7`, `how_it_work_para_7`, `how_it_work_img_7`, `req_heading`, `req_title`, `req_lists`, `req_img`, `vechile_req_title`, `vechile_req_lists`, `vechile_req_img`, `doc_req_title`, `doc_req_lists`, `doc_req_img`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('cef3ffe0-ea51-47f9-b5cd-454de4daea87', 'سائق', 'كن رئيس نفسك', 'الساعات مرنة Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  نهاية الأسبوع.', 'app-download.png', 'تحميل', 'قم بتحميل تطبيContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  الذكي.', 'upload.png', 'تحميل المستندات', 'قم بتحميل Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  على الموافقة.', 'drive.png', 'القيادة', 'قُد واربح بقدContrary to popular belief, Lorem Ipsum is not simply random text. It has roots الإكراميات.', 'كيف تعمل', 'احصل على التطبيق', 'احصل علىContrary to popular belief, Lorem Ipsum is not simply random text. It has roots Google Play', 'd1.png', 'التقديم للقيادة', 'يمكنك Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  السائق.', 'd2.png', 'الحصول على الموافقة', 'بعد تحميل المستنداتContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  في الكسب.', 'd3.png', 'افتح التطبيق', 'افتح Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  السائق.', 'd4.png', 'قبول', 'قبولContrary to popular belief, Lorem Ipsum is not simply random text. It has roots راكب.', 'd5.png', 'استلام', 'قم Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  موقعه.', 'd6.png', 'التوصيل', 'قم Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  وجهته.', 'd7.png', 'متطلبات القيادة', 'ما ستحتاجه للتقديم معنا', 'يجب أن Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  ولايات أخرى.,\n                                يجContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  أكثر.,\n                                يجب أن يكوContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  السيارة.,\n                                موافقتك على فحص الخلفية.,\n                                يجب أن تمتلك هاتفًا ذكيًا (iPhone أو Android) يمكنه تحميل وتشغيل التطبيق.', 'drive-apply.png', 'متطلبات المركبة', '2008 Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots نيع حسب المنطقة', 'taxi-req.png', 'متطلبات المستندات', 'صورة الملف الشContrary to popular belief, Lorem Ipsum is not simply random text. It has roots السيارة', 'document.png', 'ar', 'Arabic', 'rtl', NULL, NULL),
('e5f0d0f6-4bb0-4bad-968e-8b123f181023', 'Conducteur', 'Soyez votre propre patron', 'LES HEURES SONT Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  EN SEMAINE OU LE WEEK-END.', 'app-download.png', 'Télécharger', 'TéléchargezContrary to popular belief, Lorem Ipsum is not simply random text. It has roots otre smartphone.', 'upload.png', 'Télécharger', 'Téléchargez vos Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  une approbation.', 'drive.png', 'Conduire', 'Conduisez et Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots pour le temps et la distance d\'un trajet plus les pourboires.', 'Comment ça fonctionne', 'Obtenez l\'application', 'Obtenez Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  Play', 'd1.png', 'Postulez pour conduire', 'Vous pouvez remplir Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots conducteur', 'd2.png', 'Obtenez une approbation', 'Après Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots vous êtes prêt à prendre la route et à commencer à gagner.', 'd3.png', 'Ouvrez l\'application', 'Ouvrez l\'application et activez le mode conducteur', 'd4.png', 'Acceptez', 'Acceptez Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots passager.', 'd5.png', 'Récupérez', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots ', 'd6.png', 'Déposez', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots ', 'd7.png', 'Exigences pour conduire', 'Ce dont vous aurez besoin pour postuler chez nous', 'Vous devez avoir Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots oraires ou d\'autres États sont également acceptables.,\n                                Vous Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots s pour conduire.,\n                                Vous devez avoir un dossier de conduite propre avec une assurance automobile.,\n                                CContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  It has roots ,\n                                Vous devez posséder un smartphone iPhone ou Android pouvant télécharger et exécuter l\'application.', 'drive-apply.png', 'Exigences du véhicule', '2008 ou plus Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  y compris le siège du conducteur,Véhicule enregistré,*L\'année du véhicule peut varier selon la région', 'taxi-req.png', 'Exigences en matière de documents', 'Photo deContrary to popular belief, Lorem Ipsum is not simply random text. It has roots du véhicule', 'document.png', 'fr', 'French', 'ltr', NULL, NULL),
('e61b0626-c726-46a4-9d3c-8187260e2e21', 'Conductor', 'Sé tu propio jefe', 'LAS HORAS SON Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  SEMANA O LOS FINES DE SEMANA.', 'app-download.png', 'Descargar', 'Descarga la Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  inteligente.', 'upload.png', 'Subir', 'Sube tusContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  la aprobación.', 'drive.png', 'Conducir', 'Conduce y Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots del viaje, más propinas.', 'Cómo funciona', 'Obtén la app', 'Obtén la Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  Play', 'd1.png', 'Solicitar para conducir', 'Puedes Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  conductores.', 'd2.png', 'Obtener la aprobación', 'Después de Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots estarás listo para salir y empezar a ganar.', 'd3.png', 'Abrir la app', 'Abre laContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  conductor.', 'd4.png', 'Aceptar', 'Acepta Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots  pasajero.', 'd5.png', 'Recoger', 'RecogeContrary to popular belief, Lorem Ipsum is not simply random text. It has roots  ubicación.', 'd6.png', 'Dejar', 'Deja ato popular belief, Lorem Ipsum is not simply random text. It has rootsino.', 'd7.png', 'Requisitos para conducir', 'Lo que necesitarás para aplicar con nosotros', 'Debes tener una to popular belief, Lorem Ipsum is not simply random text. It has rootso de otro estado., \n                                Debes tto popular belief, Lorem Ipsum is not simply random text. It has roots., \n                                Debes tener un to popular belief, Lorem Ipsum is not simply random text. It has roots automóvil., \n                                Aceptas nuestra revisión de antecedentes., \n                                Debes to popular belief, Lorem Ipsum is not simply random text. It has rootsejecutar la aplicación.', 'drive-apply.png', 'Requisitos del vehículo', '2008 o más to popular belief, Lorem Ipsum is not simply random text. It has roots, vehículo registrado, *El año del vehículo puede variar según la región.', 'taxi-req.png', 'Requisitos de documentos', 'Foto de perfil delto popular belief, Lorem Ipsum is not simply random text. It has roots vehículo', 'document.png', 'es', 'Spanish', 'ltr', NULL, NULL),
('f1b57669-486f-4627-aa35-be0c6c9b3d91', 'Driver', 'Be your own boss', '<p>With MXDrive, you have the opportunity to be your own boss by becoming a driver or delivery partner. Enjoy flexible hours, earn at your own pace, and take control of your work-life balance while providing essential services to your community.</p>', 'app-download.png', 'Download', '<p>Download the MXDrive app today and experience seamless ride-hailing and delivery services at your fingertips.</p>', 'upload.png', 'Upload', '<p>Upload your documents or items easily with MXDrive, and we\'ll take care of the rest with reliable delivery services.</p>', 'drive.png', 'Drive', '<p>Drive with MXDrive and enjoy the freedom of flexible hours, great earnings, and the satisfaction of serving your community.</p>', 'How It Works', 'Get the App', '<p>Get the MXDrive app now and unlock fast, reliable ride-hailing and delivery services right at your fingertips.&nbsp;</p>', '3WfxlABr2Ksho9H2ogrTK7y6DDNEFhkrrUVCVoIW.png', 'Apply to drive', '<p>Apply to drive with MXDrive today and start earning by offering reliable rides and delivery services in your area.</p>', 'Fd8dlOlDmKOZbISq5AmBnPaM769mrJ6mVqQR1bFV.png', 'Get Approved', '<p>Get approved quickly with MXDrive and start earning by providing top-notch rides and delivery services in no time.</p>', 'WUgp4T44xqJliUOnqsGqde1w8vb7gtYlmYeWMFRu.png', 'Open App', '<p>Open the MXDrive app and unlock a world of seamless rides and hassle-free deliveries at your fingertips.&nbsp;</p>', 'CDErb2D6STQDFxG3sVAo5CrECmEQRAy04OpWG0Ze.png', 'Accept', '<p>Accept ride or delivery requests with ease on the MXDrive app and start earning instantly.</p>', 'zvW3bajSkHrzEFGKjZXxcy9EW0IpgQHbWJiXGtUX.png', 'Pickup', '<p>Pick up your passengers or deliveries with confidence, knowing MXDrive ensures a smooth and efficient experience every time.</p>', 'p8VzpaWZlWL8dOL1Y1GwfuNORfDT8LBvetPqsB2l.png', 'Drop off', '<p>Drop off passengers or deliveries quickly and safely, ensuring a seamless experience with MXDrive.</p>', 'ZB1s4iKTRmd8t6cJGnXfEVH85c67nOBv0BuGtWFp.png', 'Requirements for Drive', 'What you will need to apply with us', '<p>Driver\'s license,<br>A reliable vehicle,</p><p>Proof of insurance,</p><p>A smartphone with the MXDrive app,</p><p>And a clean driving record.</p><p>&nbsp;</p>', 'drive-apply.png', 'Vehicle Requirements', '<p>Good condition,</p><p>Have four doors,</p><p>Pass a vehicle inspection,</p><p>Be registered,</p><p>And have valid insurance.</p>', 'taxi-req.png', 'Document requirements', '<p>Valid driver\'s license,</p><p>Proof of vehicle registration,</p><p>Proof of insurance,</p><p>Background check consent,</p><p>And recent vehicle inspection report.</p>', 'document.png', 'en', 'English', 'ltr', NULL, '2025-09-26 09:16:16');

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

--
-- Table structure for table `landing_email`
--

CREATE TABLE `landing_email` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` text DEFAULT NULL,
  `mail` text DEFAULT NULL,
  `subject` text DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `landing_headers`
--

CREATE TABLE `landing_headers` (
  `id` char(36) NOT NULL,
  `header_logo` text DEFAULT NULL,
  `home` text DEFAULT NULL,
  `aboutus` text DEFAULT NULL,
  `driver` text DEFAULT NULL,
  `user` text DEFAULT NULL,
  `contact` text DEFAULT NULL,
  `book_now_btn` text DEFAULT NULL,
  `footer_logo` text DEFAULT NULL,
  `footer_para` longtext DEFAULT NULL,
  `quick_links` text DEFAULT NULL,
  `compliance` text DEFAULT NULL,
  `privacy` text DEFAULT NULL,
  `terms` text DEFAULT NULL,
  `dmv` text DEFAULT NULL,
  `user_app` text DEFAULT NULL,
  `user_play` text DEFAULT NULL,
  `user_play_link` text DEFAULT NULL,
  `user_apple` text DEFAULT NULL,
  `user_apple_link` text DEFAULT NULL,
  `driver_app` text DEFAULT NULL,
  `driver_play` text DEFAULT NULL,
  `driver_play_link` text DEFAULT NULL,
  `driver_apple` text DEFAULT NULL,
  `driver_apple_link` text DEFAULT NULL,
  `copy_rights` text DEFAULT NULL,
  `fb_link` text DEFAULT NULL,
  `linkdin_link` text DEFAULT NULL,
  `x_link` text DEFAULT NULL,
  `insta_link` text DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_headers`
--

INSERT INTO `landing_headers` (`id`, `header_logo`, `home`, `aboutus`, `driver`, `user`, `contact`, `book_now_btn`, `footer_logo`, `footer_para`, `quick_links`, `compliance`, `privacy`, `terms`, `dmv`, `user_app`, `user_play`, `user_play_link`, `user_apple`, `user_apple_link`, `driver_app`, `driver_play`, `driver_play_link`, `driver_apple`, `driver_apple_link`, `copy_rights`, `fb_link`, `linkdin_link`, `x_link`, `insta_link`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('36283e5b-d9cb-45d0-bbec-68c6917957bc', 'PqCOoQwbxdZbVdbrz1NC9GPQQ44e6b0H5xpbptKl.png', 'الصفحة الرئيسية', 'معلومات عنا', 'السائق', 'المستخدم', 'اتصل بنا', 'احجز الآن', 'VWAIS0YbOCgAG3w0OzLxlxCVcDra4kULjPHN3xyp.png', '<p>MXDrive is your all-in-one platform for smart ride-hailing and reliable delivery services.We connect people and packages with speed, safety, and simplicity—anytime, anywhere.</p>', 'روابط سريعة', 'الامتثال', 'سياسة الخصوصية', 'الشروط والأحكام', 'فحص DMV', 'تطبيقات المستخدم', 'متجر Play', 'https://play.google.com/store/apps/', 'متجر Apple', 'https://apps.apple.com/in/app/', 'تطبيقات السائق', 'متجر Play', 'https://play.google.com/store/apps/', 'متجر Apple', 'https://apps.apple.com/in/app/', '2025-2026 @ MXDrive', 'https://www.facebook.com/', 'https://in.linkedin.com/', 'https://x.com/', 'https://www.instagram.com/', 'Ar', 'Arabic', 'rtl', NULL, '2025-09-26 12:30:31'),
('4676b356-93e1-4e76-8e80-941efc056ac4', 'Pc8Xz0QX4A5s7hOfT7Z3mz7rYQXnRKk6Mt9AjS4J.png', 'Inicio', 'Sobre Nosotros', 'Conductor', 'Usuario', 'Contacto', 'Reservar Ahora', 'Ek8cqkSw62DCiRjLiSGadNqiDrvsfvUUu8zoDvQT.png', '<p>MXDrive is your all-in-one platform for smart ride-hailing and reliable delivery services.We connect people and packages with speed, safety, and simplicity—anytime, anywhere.</p>', 'Enlaces Rápidos', 'Cumplimiento', 'Política de Privacidad', 'Términos y Condiciones', 'Verificación DMV', 'Aplicaciones de Usuario', 'Google Play', 'https://play.google.com/store/apps/', 'App Store', 'https://apps.apple.com/in/app/', 'Aplicaciones de Conductor', 'Google Play', 'https://play.google.com/store/apps/', 'App Store', 'https://apps.apple.com/in/app/', '2025-2026 @ MXDrive', 'https://www.facebook.com/', 'https://in.linkedin.com/', 'https://x.com/', 'https://www.instagram.com/', 'Es', 'Spanish', 'ltr', NULL, '2025-09-26 12:30:12'),
('b1223507-a5f3-48b2-b76a-3cf3be52ad13', 'Y9rXQ6GH32cSyfzVaeu3ZmG9NtqxO8xPkGcJZoRy.png', 'Accueil', 'À Propos', 'Chauffeur', 'Utilisateur', 'Contact', 'Réservez Maintenant', 'rRS4tGqtHIRm09OxjP0puU5fAJkbOTndpZSSfkOc.png', '<p>MXDrive is your all-in-one platform for smart ride-hailing and reliable delivery services.We connect people and packages with speed, safety, and simplicity—anytime, anywhere.</p>', 'Liens Rapides', 'Conformité', 'Politique de Confidentialité', 'Conditions Générales', 'Vérification DMV', 'Applications Utilisateurs', 'Play Store', 'https://play.google.com/store/apps/', 'App Store', 'https://apps.apple.com/in/app/', 'Applications Chauffeur', 'Play Store', 'https://play.google.com/store/apps/', 'App Store', 'https://apps.apple.com/in/app/', '2025-2026 @ MXDrive', 'https://www.facebook.com/', 'https://in.linkedin.com/', 'https://x.com/', 'https://www.instagram.com/', 'Fr', 'French', 'ltr', NULL, '2025-09-26 12:29:38'),
('f66be613-78bf-4dad-9bd9-2447ebaed33c', 'm0gBpxFPcwjmO2WUWJrvjvzxybg4VfkKbcxuXd9h.png', 'Home', 'About Us', 'Driver', 'User', 'Contact', 'Book Now', 'eZLL7SLisoW5Hh59rmSB46gHEeHWWcR305cOkH5q.png', '<p>MXDrive is your all-in-one platform for smart ride-hailing and reliable delivery services.We connect people and packages with speed, safety, and simplicity—anytime, anywhere.</p>', 'Quick Links', 'Compliance', 'Privacy Policy', 'Terms & Conditions', 'DMV Check', 'User Apps', 'Play Store', 'https://play.google.com/store/apps/', 'Apple Store', 'https://apps.apple.com/in/app/', 'Driver Apps', 'Play Store', 'https://play.google.com/store/apps/', 'Apple Store', 'https://apps.apple.com/in/app/', '2025-2026 @ MXDrive', 'https://www.facebook.com/', 'https://in.linkedin.com/', 'https://x.com/', 'https://www.instagram.com/', 'En', 'English', 'ltr', NULL, '2025-11-06 03:40:55');

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

--
-- Table structure for table `landing_homes`
--

CREATE TABLE `landing_homes` (
  `id` char(36) NOT NULL,
  `hero_title` longtext DEFAULT NULL,
  `hero_user_link_android` text DEFAULT NULL,
  `hero_user_link_apple` text DEFAULT NULL,
  `hero_driver_link_android` text DEFAULT NULL,
  `hero_driver_link_apple` text DEFAULT NULL,
  `feature_heading` text DEFAULT NULL,
  `feature_para` longtext DEFAULT NULL,
  `feature_sub_heading_1` text DEFAULT NULL,
  `feature_sub_para_1` longtext DEFAULT NULL,
  `feature_sub_heading_2` text DEFAULT NULL,
  `feature_sub_para_2` longtext DEFAULT NULL,
  `feature_sub_heading_3` text DEFAULT NULL,
  `feature_sub_para_3` longtext DEFAULT NULL,
  `feature_sub_heading_4` text DEFAULT NULL,
  `feature_sub_para_4` longtext DEFAULT NULL,
  `service_heading_1` text DEFAULT NULL,
  `service_heading_2` text DEFAULT NULL,
  `service_para` longtext DEFAULT NULL,
  `services` text DEFAULT NULL,
  `service_img` text DEFAULT NULL,
  `about_title_1` text DEFAULT NULL,
  `about_title_2` text DEFAULT NULL,
  `about_img` text DEFAULT NULL,
  `about_para` longtext DEFAULT NULL,
  `about_lists` text DEFAULT NULL,
  `box_img_1` text DEFAULT NULL,
  `box_para_1` longtext DEFAULT NULL,
  `box_img_2` text DEFAULT NULL,
  `box_para_2` longtext DEFAULT NULL,
  `box_img_3` text DEFAULT NULL,
  `box_para_3` longtext DEFAULT NULL,
  `drive_heading` text DEFAULT NULL,
  `drive_title_1` text DEFAULT NULL,
  `drive_para_1` longtext DEFAULT NULL,
  `drive_title_2` text DEFAULT NULL,
  `drive_para_2` longtext DEFAULT NULL,
  `drive_title_3` text DEFAULT NULL,
  `drive_para_3` longtext DEFAULT NULL,
  `service_area_img` text DEFAULT NULL,
  `service_area_title` text DEFAULT NULL,
  `service_area_para` longtext DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_homes`
--

INSERT INTO `landing_homes` (`id`, `hero_title`, `hero_user_link_android`, `hero_user_link_apple`, `hero_driver_link_android`, `hero_driver_link_apple`, `feature_heading`, `feature_para`, `feature_sub_heading_1`, `feature_sub_para_1`, `feature_sub_heading_2`, `feature_sub_para_2`, `feature_sub_heading_3`, `feature_sub_para_3`, `feature_sub_heading_4`, `feature_sub_para_4`, `service_heading_1`, `service_heading_2`, `service_para`, `services`, `service_img`, `about_title_1`, `about_title_2`, `about_img`, `about_para`, `about_lists`, `box_img_1`, `box_para_1`, `box_img_2`, `box_para_2`, `box_img_3`, `box_para_3`, `drive_heading`, `drive_title_1`, `drive_para_1`, `drive_title_2`, `drive_para_2`, `drive_title_3`, `drive_para_3`, `service_area_img`, `service_area_title`, `service_area_para`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('53a8e107-aaab-4931-aa64-3548f420c242', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'Beneficios de nuestras aplicaciones', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable.', 'Presiona un botón, consigue un viaje', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Siempre disponible', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Viaja y paga', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Evalúa, escuchamos', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Servicios digitales', 'Una solución integral para tu servicio de taxi.', 'reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.', 'Protección de datos,Atención al cliente,Aseguramiento de calidad,Servicios impresionantes', 'service.png', 'Sobre', 'la empresa', 'company.png', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'Equipo dedicado,Servicios impresionantes,Atención al cliente,Aseguramiento de calidad', '1.png', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots ', '2.jpg', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical ', '3.jpg', 'Contrary to popular belief, Lorem Ipsum is not simply random text', '¡Por qué conducir con MXDrive!', 'Quiénes somos', 'Una plataforma de viajes compartidos que conecta pasajeros con conductores con solo un botón.', 'Nuestra misión', 'Crear un entorno laboral inclusivo y flexible que refleje la diversidad de las ciudades que servimos.', 'Nuestro compromiso', 'Proveer la tecnología y el apoyo necesarios para que seas tu propio jefe.', 'locations.png', 'Áreas de servicio', 'The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested.', 'es', 'Spanish', 'ltr', NULL, NULL),
('dc53ec68-4783-4dbe-bed1-a4c2bb9d3184', 'MXDrive – Your Smart Ride & Delivery, Delivered with Precision', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'Advantage of using our Apps', '<p>Experience faster bookings, real-time tracking, and seamless rides—all at your fingertips with MXDrive.</p>', 'Tap a button, get a ride', '<p>Tap a button, get a ride—quick, reliable, and right when you need it with MXDrive.</p>', 'Always on, always available', '<p>Always on, always available. Day or night, MXDrive is ready when you are.</p>', 'Ride and Pay', '<p>Ride comfortably and pay effortlessly—all in one smooth, seamless experience with MXDrive.</p>', 'You rate, we listen', '<p>You rate, we listen—every ride helps us drive better for you.</p>', 'DIGITAL SERVICES', 'A complete solution for your Taxi Service.', 'reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.', 'Data Protection,Customer Support,Quality Assurance,Awesome Services', '78d526gxpkcdWwP7elc1OQjbwLa2NZOaV5adegOR.webp', 'ABOUT', 'The Company', '0WRmnnjSIXPVo2bp0WwRdVdOHhBIXt42vSSSlGcc.jpg', '<p>MXDrive is your all-in-one digital platform designed to simplify urban mobility and last-mile delivery. Whether you need a quick, comfortable ride across town or want to send a package securely, MXDrive brings everything to your fingertips.</p>', '<p>Smart ride &amp; delivery services,</p><p>Seamless connectivity,</p><p>Dedicated Team Members,<br>Awesome Services</p>', '95pLAXNL4KRcidXc7e5cHm9pTE3A9lQIJtRslX67.svg', '<p>Daily &amp; Rental Rides</p>', 'iawslzZx1vVD0e9qsFWcHeGFDp19AWVm1ZjZm4kE.svg', '<p>OutStation Rides</p>', '6LVSGU0v55akGy7tlVcfN4IGe3xevF8vN5AQ70qu.svg', '<p>Couriers delivery</p>', 'Why Drive with MXDrive!', 'About Us', '<p>MXDrive is your all-in-one digital platform designed to simplify urban mobility and last-mile delivery. Whether you need a quick, comfortable ride across town or want to send a package securely, MXDrive brings everything to your fingertips.</p>', 'Our Mission', '<p>At MXDrive, our mission is to revolutionize urban transportation and delivery by combining technology, convenience, and trust. We aim to create a seamless platform that empowers individuals and businesses to move people and goods effortlessly, safely, and efficiently.</p>', 'Driver Commitment', '<p>At MXDrive, our drivers are at the heart of everything we do. We are committed to creating a platform that supports their growth, values their time, and ensures fair and timely earnings.</p>', 'locations.png', 'Service Locations', '<p>MXDrive proudly operates across multiple cities and countries, offering reliable ride-hailing and delivery services to communities around the world. With an expanding global footprint, we’re dedicated to bringing smart mobility solutions to every corner of the map.</p>', 'en', 'English', 'ltr', NULL, '2025-09-26 10:24:30'),
('eff534d1-2c0b-4adb-8ebb-cef3620b7dfa', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout!', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'Avantages de nos applications', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable.', 'Appuyez sur un bouton, obtenez un trajet', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Toujours disponible', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Roulez et payez', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Évaluez, nous écoutons', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'Services numériques', 'Une solution complète pour votre service de taxi.', 'reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.', 'Protection des données,Soutien client,Assurance qualité,Services impressionnants', 'service.png', 'À propos', 'L\'entreprise', 'company.png', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'Équipe dédiée,Services impressionnants,Soutien client,Assurance qualité', '1.png', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots ', '2.jpg', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical ', '3.jpg', 'Contrary to popular belief, Lorem Ipsum is not simply random text', 'Pourquoi conduire avec MXDrive!', 'À propos de nous', 'Une plateforme de covoiturage facilitant le transport avec un bouton.', 'Notre mission', 'Créer un environnement de travail inclusif et flexible.', 'Engagement conducteur', 'Fournir les technologies et le soutien nécessaires pour réussir.', 'locations.png', 'Zones de service', 'The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested.', 'fr', 'French', 'ltr', NULL, NULL),
('f2159780-9d10-4354-be8f-9db86f95d242', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'https://play.google.com/store/apps/', 'https://apps.apple.com/in/app/', 'مزايا استخدام تطبيقاتنا', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which dont look even slightly believable.', 'اضغط زرًا، واحصل على رحلة', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'متوفر دائمًا', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.', 'اركب وادفع', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'قيم رحلتك، نحن نستمع', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old', 'الخدمات الرقمية', 'حل شامل لخدمة التاكسي الخاصة بك.', 'reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.', 'حماية البيانات,دعم العملاء,ضمان الجودة,خدمات رائعة', 'service.png', 'حول', 'الشركة', 'company.png', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage,', 'فريق متميز,خدمات رائعة,دعم العملاء,ضمان الجودة', '1.png', '<p>Contrary to popular belief, It has roots</p>', '2.jpg', '<p>Contrary to popular belief, It has roots in a piece of classical</p>', '3.jpg', '<p>Contrary to popular belief.</p>', 'لماذا القيادة مع MXDrive!', 'من نحن', 'منصة تشارك الرحلات تربط الركاب بالسائقين بسهولة بضغطة زر.', 'مهمتنا', 'نهدف إلى توفير بيئة عمل مرنة وشاملة تعكس تنوع المدن التي نخدمها.', 'التزامنا', 'نعد بتوفير التكنولوجيا والدعم الذي يمكّنك من أن تكون مدير نفسك.', 'locations.png', 'مواقع الخدمة', '<p>The standard chunk is reproduced below for those interested.</p>', 'ar', 'Arabic', 'rtl', NULL, '2025-09-26 12:31:42');

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

--
-- Table structure for table `landing_quicklinks`
--

CREATE TABLE `landing_quicklinks` (
  `id` char(36) NOT NULL,
  `privacy_title` text DEFAULT NULL,
  `privacy` longtext DEFAULT NULL,
  `terms_title` text DEFAULT NULL,
  `terms` longtext DEFAULT NULL,
  `compliance_title` text DEFAULT NULL,
  `compliance` longtext DEFAULT NULL,
  `dmv_title` text DEFAULT NULL,
  `dmv` longtext DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_quicklinks`
--

INSERT INTO `landing_quicklinks` (`id`, `privacy_title`, `privacy`, `terms_title`, `terms`, `compliance_title`, `compliance`, `dmv_title`, `dmv`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('54a744d4-3127-4f9e-9087-0570b0fcefb4', 'Política de privacidad', '<h2>Política de Privacidad</h2>\n\n                <p>El alcance de esta política</p>\n                \n                <p>Esta política se aplica a todos los usuarios de MXDrive, incluidos los pasajeros y conductores (incluidos los solicitantes de controladores), y a todas las plataformas y servicios de MXDrive, incluidas nuestras aplicaciones, sitios web, funciones y otros servicios (colectivamente, la “Plataforma MXDrive”). ”). Recuerde que su uso de la plataforma MXDrive también está sujeto a nuestros Términos de servicio.</p>\n                \n                <p>La información que recopilamos</p>\n                \n                <p>Cuando utiliza la plataforma MXDrive, recopilamos la información que usted proporciona, información de uso e información sobre su dispositivo. También recopilamos información sobre usted de otras fuentes, como servicios de terceros y programas opcionales en los que participa, que podemos combinar con otra información que tenemos sobre usted. Estos son los tipos de información que recopilamos sobre usted:</p>\n                \n                <p>A. Información que usted nos proporciona</p>\n                \n                <p>Registro de cuenta. Cuando crea una cuenta con MXDrive, recopilamos la información que nos proporciona, como su nombre, dirección de correo electrónico, número de teléfono e información de pago. Puede optar por compartir información adicional con nosotros para su perfil de Usuario, como su foto o direcciones guardadas (por ejemplo, casa o trabajo), y configurar otras preferencias (como sus pronombres preferidos).<br />\n                <br />\n                <strong>Información del conductor.</strong> Si solicita ser conductor, recopilaremos la información que proporcione en su solicitud, incluido su nombre, dirección de correo electrónico, número de teléfono, fecha de nacimiento, foto de perfil, dirección física, identificación gubernamental. número (como el número de seguro social), información de la licencia de conducir, información del vehículo e información del seguro del automóvil. Recopilamos la información de pago que usted nos proporciona, incluidos los números de ruta bancaria y la información fiscal. Dependiendo de dónde desee conducir, también podemos solicitarle información adicional sobre licencias o permisos comerciales u otra información para administrar la conducción y los programas relevantes para esa ubicación. Es posible que necesitemos información adicional suya en algún momento después de que se convierta en Conductor, incluida información para confirmar su identidad (como una foto).<br />\n                <br />\n                <strong>Información de contacto SOS</strong> Recopilaremos el permiso de la lista de contactos para enumerar los contactos mientras agregamos los contactos sos para la aplicación de usuario y conductor<br />\n                <br />\n                <strong>Calificaciones y comentarios.</strong> Cuando usted califica y proporciona comentarios sobre los Pasajeros o Conductores, recopilamos toda la información que usted proporciona en sus comentarios.<br />\n                <br />\n                <strong>Comunicaciones.</strong> Cuando usted se comunica con nosotros o nosotros nos comunicamos con usted, recopilamos cualquier información que usted proporcione, incluido el contenido de los mensajes o archivos adjuntos que nos envía.</p>\n                \n                <p>B. Información que recopilamos cuando utiliza la plataforma MXDrive</p>\n                \n                <p><strong>Información de ubicación.</strong> Los grandes viajes comienzan con una recogida fácil y precisa. La plataforma MXDrive recopila información de ubicación (incluidos datos de GPS y WiFi) de manera diferente según la configuración de la aplicación MXDrive y los permisos del dispositivo, así como si está utilizando la plataforma como pasajero o conductor:</p>\n                \n                <ul>\n                <li>Pasajeadores: recopilamos la ubicación precisa de su dispositivo cuando abre y usa la aplicación MXDrive, incluso mientras la aplicación se ejecuta en segundo plano desde el momento en que solicita un viaje hasta que finaliza. MXDrive también rastrea la ubicación precisa de scooters y bicicletas eléctricas en todo momento.</li>\n                <li>Controladores: recopilamos la ubicación precisa de su dispositivo cuando abre y usa la aplicación, incluso mientras la aplicación se ejecuta en segundo plano cuando está en modo de controlador. También recopilamos la ubicación precisa durante un tiempo limitado después de que usted sale del modo de conductor para detectar incidentes en el viaje y continuamos recogiéndola hasta que un incidente reportado o detectado ya no esté activo.</li>\n                </ul>\n                \n                <p><strong>Información de uso.</strong> Recopilamos información sobre su uso de la plataforma MXDrive, incluida información del viaje como fecha, hora, destino, distancia, ruta, pago y si utilizó una promoción o referencia. código. También recopilamos información sobre sus interacciones con la Plataforma MXDrive, como nuestras aplicaciones y sitios web, incluidas las páginas y el contenido que ve y las fechas y horas de su uso.<br />\n                <br />\n                <strong>Información del dispositivo.</strong> Recopilamos información sobre los dispositivos que utiliza para acceder a la plataforma MXDrive, incluido el modelo del dispositivo, la dirección IP, el tipo de navegador, la versión del sistema operativo, la identidad del proveedor y fabricante, el tipo de radio ( como 4G), preferencias y configuraciones (como el idioma preferido), instalaciones de aplicaciones, identificadores de dispositivos, identificadores de publicidad y tokens de notificaciones push. Si es conductor, también recopilamos datos de sensores móviles de su dispositivo (como velocidad, dirección, altura, aceleración, desaceleración y otros datos técnicos).<br />\n                <br />\n                <strong>Comunicaciones entre pasajeros y conductores.</strong> Trabajamos con un tercero para facilitar las llamadas telefónicas y los mensajes de texto entre pasajeros y conductores sin compartir el número de teléfono real de ninguna de las partes con la otra. Pero mientras utilizamos un tercero para proporcionar el servicio de comunicación, recopilamos información sobre estas comunicaciones, incluidos los números de teléfono de los participantes, la fecha y hora, y el contenido de los mensajes SMS. Por motivos de seguridad, también podemos monitorear o registrar el contenido de las llamadas telefónicas realizadas a través de la Plataforma MXDrive, pero siempre le informaremos que estamos a punto de hacerlo antes de que comience la llamada.<br />\n                <br />\n                <strong>Contactos de la libreta de direcciones.</strong> Puede configurar los permisos de su dispositivo para otorgar acceso a MXDrive a sus listas de contactos y dirigir a MXDrive para que acceda a su lista de contactos, por ejemplo, para ayudarlo a recomendar MXDrive a sus amigos. Si hace esto, accederemos y almacenaremos los nombres y la información de contacto de las personas en su libreta de direcciones.<br />\n                <br />\n                <strong>Cookies, análisis y tecnologías de terceros.</strong> Recopilamos información mediante el uso de \"cookies\", píxeles de seguimiento, herramientas de análisis de datos como Google Analytics, SDK y otras tecnologías de terceros para comprender cómo usted navegue a través de la plataforma MXDrive e interactúe con los anuncios de MXDrive para hacer su experiencia con MXDrive más segura, para saber qué contenido es popular, para mejorar su experiencia en el sitio, para ofrecerle mejores anuncios en otros sitios y para guardar sus preferencias. Las cookies son pequeños archivos de texto que los servidores web colocan en su dispositivo; están diseñados para almacenar información básica y ayudar a los sitios web y aplicaciones a reconocer su navegador. Podemos utilizar tanto cookies de sesión como cookies persistentes. Una cookie de sesión desaparece después de cerrar su navegador. Una cookie persistente permanece después de cerrar su navegador y se puede acceder a ella cada vez que utiliza la Plataforma MXDrive. Debe consultar su(s) navegador(es) web para modificar la configuración de cookies. Tenga en cuenta que si elimina o elige no aceptar nuestras cookies, puede perderse ciertas funciones de MXDrive Platform.</p>\n                \n                <p>C. Información que recopilamos de terceros</p>\n                \n                <p><strong>Servicios de terceros.</strong> Los servicios de terceros nos brindan la información necesaria para aspectos centrales de la plataforma MXDrive, así como para servicios, programas, beneficios de lealtad y promociones adicionales que pueden mejorar Tu experiencia con MXDrive. Estos servicios de terceros incluyen proveedores de verificación de antecedentes, socios de seguros, proveedores de servicios financieros, proveedores de marketing y otras empresas. Obtenemos la siguiente información sobre usted a partir de estos servicios de terceros:</p>\n                \n                <ul>\n                <li>Información para hacer que MXDrive Platform sea más segura, como información de verificación de antecedentes para los conductores;</li>\n                <li>Información sobre su participación en programas de terceros que brindan cosas como cobertura de seguro e instrumentos financieros, como información sobre seguros, pagos, transacciones y detección de fraude;</li>\n                <li>Información para poner en funcionamiento programas o aplicaciones, servicios o funciones promocionales y de fidelización que usted elija conectar o vincular a su cuenta de MXDrive, como información sobre su uso de dichos programas, aplicaciones, servicios o funciones; y</li>\n                <li>Información sobre usted proporcionada por servicios específicos, como información demográfica y de segmento de mercado.</li>\n                </ul>\n                \n                <p><strong>Programas empresariales.</strong> Si utiliza MXDrive a través de su empleador u otra organización que participa en uno de nuestros programas empresariales MXDrive Business, recopilaremos información sobre usted de esas partes, como su nombre. e información de contacto.<br />\n                <br />\n                <strong>Servicio de conserjería.</strong> A veces, otra empresa o entidad puede solicitarle un viaje de MXDrive. Si una organización ha solicitado un viaje para usted utilizando nuestro servicio de Concierge, nos proporcionarán su información de contacto y el lugar de recogida y devolución de su viaje.<br />\n                <br />\n                <strong>Programas de recomendación.</strong> Los amigos ayudan a sus amigos a utilizar la plataforma MXDrive. Si alguien lo refiere a MXDrive, recopilaremos información sobre usted a partir de esa referencia, incluido su nombre e información de contacto.<br />\n                <br />\n                <strong>Otros usuarios y fuentes.</strong> Otros usuarios o fuentes públicas o de terceros, como autoridades policiales, aseguradoras, medios de comunicación o peatones, pueden proporcionarnos información sobre usted, por ejemplo, como parte de una investigación sobre un incidente o para brindarle soporte.</p>\n                \n                <p>Cómo utilizamos su información</p>\n                \n                <p>Utilizamos su información personal para:</p>\n                \n                <ul>\n                <li>Proporcionar la plataforma MXDrive;</li>\n                <li>Mantener la seguridad de la Plataforma MXDrive y sus usuarios;</li>\n                <li>Crear y mantener la comunidad MXDrive;</li>\n                <li>Proporcionar soporte al cliente;</li>\n                <li>Mejorar la plataforma MXDrive; y</li>\n                <li>Responder a procedimientos y obligaciones legales.</li>\n                </ul>\n                \n                <p><strong>Proporcionar la plataforma MXDrive.</strong> Usamos su información personal para brindarle una experiencia intuitiva, útil, eficiente y valiosa en nuestra plataforma. Para ello, utilizamos su información personal para:</p>\n                \n                <ul>\n                <li>Verificar su identidad y mantener su cuenta, configuración y preferencias;</li>\n                <li>Conectarte con tus recorridos y realizar un seguimiento de su progreso;</li>\n                <li>Calcular precios y procesar pagos;</li>\n                <li>Permitir que los pasajeros y los conductores se conecten con respecto a su viaje y elijan compartir su ubicación con otros;</li>\n                <li>Comunicarnos con usted sobre sus viajes y su experiencia;</li>\n                <li>Recopilar comentarios sobre su experiencia;</li>\n                <li>Facilitar servicios y programas adicionales con terceros; y</li>\n                <li>Operar concursos, sorteos y otras promociones.</li>\n                </ul>\n                \n                <p><strong>Mantener la seguridad de la plataforma MXDrive y sus usuarios.</strong> Brindarle una experiencia segura es el motor de nuestra plataforma, tanto en la carretera como en nuestras aplicaciones. Para ello, utilizamos su información personal para:</p>\n                \n                <ul>\n                <li>Autenticar usuarios;</li>\n                <li>Verificar que los conductores y sus vehículos cumplan con los requisitos de seguridad;</li>\n                <li>Investigar y resolver incidentes, accidentes y reclamaciones de seguros;</li>\n                <li>Fomentar un comportamiento de conducción seguro y evitar actividades inseguras;</li>\n                <li>Encontrar y prevenir fraudes; y</li>\n                <li>Bloquear y eliminar usuarios inseguros o fraudulentos de MXDrive Platform.</li>\n                </ul>\n                \n                <p><strong>Construcción y mantenimiento de la comunidad MXDrive.</strong> MXDrive trabaja para ser una parte positiva de la comunidad. Usamos su información personal para:</p>\n                \n                <ul>\n                <li>Comunicarnos con usted sobre eventos, promociones, elecciones y campañas;</li>\n                <li>Personalizar y proporcionar contenido, experiencias, comunicaciones y publicidad para promover y hacer crecer la Plataforma MXDrive; y</li>\n                <li>Ayude a facilitar las donaciones que elija realizar a través de la plataforma MXDrive.</li>\n                </ul>\n                \n                <p><strong>Brindar atención al cliente.</strong> Trabajamos arduamente para brindar la mejor experiencia posible, incluido el soporte cuando lo necesita. Para ello, utilizamos su información personal para:</p>\n                \n                <ul>\n                <li>Investigar y ayudarlo a resolver preguntas o problemas que tenga con respecto a la Plataforma MXDrive; y</li>\n                <li>Brindarle apoyo o responderle.</li>\n                </ul>\n                \n                <p><strong>Mejorando la plataforma MXDrive</strong>. Siempre estamos trabajando para mejorar su experiencia y brindarle funciones nuevas y útiles. Para ello, utilizamos su información personal para:</p>\n                \n                <ul>\n                <li>Realizar investigaciones, pruebas y análisis;</li>\n                <li>Desarrollar nuevos productos, funciones, asociaciones y servicios;</li>\n                <li>Prevenir, encontrar y resolver errores y problemas de software o hardware; y</li>\n                <li>Supervisar y mejorar nuestras operaciones y procesos, incluidas prácticas de seguridad, algoritmos y otros modelos.</li>\n                </ul>\n                \n                <p><strong>Respuesta a Procedimientos y Requisitos Legales.</strong> A veces la ley, las entidades gubernamentales u otros organismos reguladores nos imponen demandas y obligaciones con respecto a los servicios que buscamos brindar. En tal circunstancia, podemos utilizar su información personal para responder a esas demandas u obligaciones.</p>\n                \n                <p>Cómo compartimos su información</p>\n                \n                <p>No vendemos su información personal. Para que la Plataforma MXDrive funcione, es posible que necesitemos compartir su información personal con otros usuarios, terceros y proveedores de servicios. Esta sección explica cuándo y por qué compartimos su información.</p>\n                \n                <p>A. Compartir entre usuarios de MXDrive</p>\n                \n                <p>Pasajeros y conductores.<br />\n                <br />\n                <strong>Información del pasajero compartida con el conductor:</strong> Al recibir una solicitud de viaje, compartimos con el conductor la ubicación de recogida del pasajero, el nombre, la foto de perfil, la calificación y las estadísticas del pasajero (como el número aproximado de viajes y años como pasajero). e información que el ciclista incluye en su perfil de ciclista (como pronombres preferidos). Al momento de la recogida y durante el viaje, compartimos con el conductor el destino del pasajero y cualquier parada adicional que el pasajero ingrese en la aplicación MXDrive. Una vez finalizado el viaje, también compartimos la calificación y los comentarios del pasajero con el conductor. (Eliminamos la identidad del Usuario asociada con calificaciones y comentarios cuando la compartimos con los Conductores, pero un Conductor puede identificar al Usuario que proporcionó la calificación o los comentarios).<br />\n                <br />\n                <strong>Información del conductor compartida con el pasajero:</strong> cuando un conductor acepta un viaje solicitado, compartiremos con el conductor el nombre del conductor, la foto de perfil, los pronombres preferidos, la calificación, la ubicación en tiempo real y la marca y modelo del vehículo. , color y matrícula, así como otra información en el perfil de MXDrive del conductor, como información que los conductores eligen agregar (como la bandera del país y por qué conduce) y estadísticas del conductor (como el número aproximado de viajes y años como conductor). .<br />\n                <br />\n                Aunque ayudamos a los Pasajeros y Conductores a comunicarse entre sí para concertar una recogida, no compartimos su número de teléfono real ni otra información de contacto con otros usuarios. Si nos informa sobre un artículo perdido o encontrado, intentaremos conectarlo con el Pasajero o Conductor correspondiente, incluso compartiremos información de contacto real con su consentimiento.<br />\n                <br />\n                <strong>Usuarios de viajes compartidos.</strong> Cuando los pasajeros utilizan un viaje compartido de MXDrive, compartimos el nombre y la foto de perfil de cada pasajero para garantizar la seguridad. Los pasajeros también pueden ver los lugares de partida y regreso de los demás como parte de conocer la ruta mientras comparten el viaje.<br />\n                <br />\n                <strong>Viajes solicitados o pagados por otros.</strong> Es posible que otros soliciten o paguen algunos viajes que usted realice. Si realiza uno de esos viajes utilizando su cuenta de perfil comercial de MXDrive, un código o cupón, un programa subsidiado (por ejemplo, tránsito o gobierno) o una tarjeta de crédito corporativa vinculada a otra cuenta, u otro usuario solicita o paga de otro modo un viaje para usted, podemos compartir algunos o todos los detalles de su viaje con esa otra parte, incluida la fecha, hora, cargo, calificación otorgada, región del viaje y lugar de recogida y devolución de su viaje.<br />\n                <br />\n                <strong>Programas de recomendación.</strong> Si recomienda a alguien a la plataforma MXDrive, le haremos saber que usted generó la recomendación. Si otro usuario lo recomendó, podemos compartir información sobre su uso de la Plataforma MXDrive con ese usuario. Por ejemplo, una fuente de referencia puede recibir una bonificación cuando se une a la plataforma MXDrive o completa una cierta cantidad de viajes y recibiría dicha información.</p>\n                \n                <p>B. Compartir con proveedores de servicios externos con fines comerciales</p>\n                \n                <p>Dependiendo de si usted es un Pasajero o un Conductor, MXDrive puede compartir las siguientes categorías de su información personal con fines comerciales para brindarle una variedad de funciones y servicios de la Plataforma MXDrive:</p>\n                \n                <ul>\n                <li>Identificadores personales, como su nombre, dirección, dirección de correo electrónico, número de teléfono, fecha de nacimiento, número de identificación gubernamental (como el número de seguro social), información de la licencia de conducir, información del vehículo e información del seguro del automóvil;</li>\n                <li>Información financiera, como números de ruta bancaria, información fiscal y cualquier otra información de pago que nos proporcione;</li>\n                <li>Información comercial, como información de viajes, estadísticas y comentarios del conductor/pasajero e historial de transacciones del conductor/pasajero;</li>\n                <li>Información de actividad de Internet u otra red electrónica, como su dirección IP, tipo de navegador, versión del sistema operativo, operador y/o fabricante, identificadores de dispositivo e identificadores de publicidad móvil; y</li>\n                <li>Datos de ubicación.</li>\n                </ul>\n                \n                <p>Revelamos esas categorías de información personal a proveedores de servicios para cumplir con los siguientes fines comerciales:</p>\n                \n                <ul>\n                <li>Mantener y dar servicio a su cuenta de MXDrive;</li>\n                <li>Procesar o realizar viajes;</li>\n                <li>Brindarle servicio al cliente;</li>\n                <li>Procesamiento de transacciones Rider;</li>\n                <li>Procesamiento de solicitudes y pagos de conductores;</li>\n                <li>Verificar la identidad de los usuarios;</li>\n                <li>Detección y prevención del fraude;</li>\n                <li>Procesamiento de reclamaciones de seguros;</li>\n                <li>Ofrecer programas promocionales y de fidelización de conductores;</li>\n                <li>Proporcionar servicios de marketing y publicidad a MXDrive;</li>\n                <li>Proporcionar financiación;</li>\n                <li>Proporcionar servicios de emergencia solicitados;</li>\n                <li>Proporcionar servicios de análisis a MXDrive; y</li>\n                <li>Realizar una investigación interna para desarrollar la plataforma MXDrive.</li>\n                </ul>\n                \n                <p>C. Por razones legales y para proteger la plataforma MXDrive</p>\n                \n                <ul>\n                <li>Cumplir con cualquier ley o regulación federal, estatal o local aplicable, investigación civil, penal o regulatoria, investigación o proceso legal, o solicitud gubernamental ejecutable;</li>\n                <li>Responder a un proceso legal (como una orden de registro, citación, citación u orden judicial);</li>\n                <li>Hacer cumplir nuestros Términos de servicio;</li>\n                <li>Cooperar con las agencias de aplicación de la ley en relación con conductas o actividades que razonablemente y de buena fe creemos que pueden violar las leyes federales, estatales o locales; o</li>\n                <li>Ejercer o defender reclamaciones legales, proteger contra daños a nuestros derechos, propiedad, intereses o seguridad o los derechos, propiedad, intereses o seguridad de usted, terceros o el público según lo requiera o permita la ley.</ li>\n                </ul>\n                \n                <p>D. En relación con la venta o fusión</p>\n                \n                <p>Podemos compartir su información personal mientras negociamos o en relación con un cambio de control corporativo, como una reestructuración, fusión o venta de nuestros activos.</p>\n                \n                <p>E. Según sus indicaciones</p>\n                \n                <p>Con su permiso o según sus indicaciones, podemos divulgar su información personal para interactuar con un tercero o para otros fines.</p>\n                \n                <p>Cómo almacenamos y protegemos su información</p>\n                \n                <p>Conservamos su información durante el tiempo que sea necesario para proporcionarle a usted y a nuestros demás usuarios la plataforma MXDrive. Esto significa que mantenemos la información de su perfil mientras mantenga una cuenta. Conservamos información transaccional, como viajes y pagos, durante al menos siete años para garantizar que podamos realizar funciones comerciales legítimas, como la contabilidad de obligaciones fiscales. Si solicita la eliminación de su cuenta, eliminaremos su información como se establece en la sección \"Eliminación de su cuenta\" a continuación. Tomamos medidas razonables y apropiadas diseñadas para proteger su información personal. Pero ninguna medida de seguridad puede ser 100% efectiva y no podemos garantizar la seguridad de su información, incluso contra intrusiones no autorizadas o actos de terceros.</p>\n                \n                <p>Sus derechos y opciones con respecto a sus datos</p>\n                \n                <p>MXDrive le proporciona formas de acceder y eliminar su información personal, así como de ejercer otros derechos sobre datos que le brindan cierto control sobre su información personal.</p>\n                \n                <p>A. Todos los usuarios</p>\n                \n                <p>Suscripciones por correo electrónico. Siempre puedes darte de baja de nuestros correos electrónicos comerciales o promocionales haciendo clic en cancelar suscripción en esos mensajes. Seguiremos enviándole correos electrónicos transaccionales y relacionales sobre su uso de la Plataforma MXDrive.<br />\n                <br />\n                <strong>Mensajes de texto.</strong> Puede optar por no recibir mensajes de texto comerciales o promocionales. También puede optar por no recibir todos los mensajes de texto de MXDrive (incluidos los mensajes transaccionales o relacionales). Tenga en cuenta que optar por no recibir todos los mensajes de texto puede afectar su uso de la plataforma MXDrive. Los conductores también pueden optar por no recibir mensajes específicos del conductor enviando un mensaje de texto con la palabra STOP. en respuesta a un SMS del conductor Para volver a habilitar los mensajes de texto, puede enviar un mensaje de texto a INICIO en respuesta a un SMS de confirmación de cancelación de suscripción.<br />\n                <br />\n                <strong>Notificaciones push.</strong> Puede optar por no recibir notificaciones push a través de la configuración de su dispositivo. Tenga en cuenta que optar por no recibir notificaciones automáticas puede afectar su uso de la plataforma MXDrive (como recibir una notificación de que su viaje ha llegado).<br />\n                <br />\n                <strong>Información del perfil</strong>. Puede revisar y editar cierta información de la cuenta que ha elegido agregar a su perfil iniciando sesión en la configuración y el perfil de su cuenta.<br />\n                <br />\n                <strong>Información de ubicación.</strong> Puede evitar que su dispositivo comparta información de ubicación a través de la configuración del sistema de su dispositivo. Pero si lo hace, esto puede afectar la capacidad de MXDrive para brindarle nuestra gama completa de funciones y servicios.<br />\n                <br />\n                <strong>Seguimiento de cookies.</strong> Puede modificar la configuración de cookies en su navegador, pero si elimina o elige no aceptar nuestras cookies, es posible que se esté perdiendo ciertas funciones de la plataforma MXDrive.<br />\n                <br />\n                <strong>No rastrear.</strong> Su navegador puede ofrecerle la opción “No rastrear”, que le permite indicar a los operadores de sitios web y aplicaciones y servicios web que no desea que rastreen sus actividades en línea. La plataforma MXDrive no admite actualmente solicitudes de No seguimiento en este momento.<br />\n                <br />\n                <strong>Eliminar su cuenta.</strong> Si desea eliminar su cuenta de MXDrive, visite nuestra página de inicio de privacidad. En algunos casos, no podremos eliminar su cuenta, por ejemplo, si hay un problema con su cuenta relacionado con la confianza, la seguridad o el fraude. Cuando eliminamos su cuenta, podemos conservar cierta información para fines comerciales legítimos o para cumplir con obligaciones legales o reglamentarias. Por ejemplo, podemos conservar su información para resolver reclamaciones de seguros abiertas, o podemos estar obligados a conservar su información como parte de una reclamación legal abierta. Cuando conservamos dichos datos, lo hacemos de manera diseñada para evitar su uso para otros fines.<br />\n                <br />\n                <strong>Derecho a saber.</strong> Tiene derecho a saber y ver qué datos hemos recopilado, incluidos:</p>\n                \n                <ul>\n                <li>Las categorías de información personal que hemos recopilado sobre usted;</li>\n                <li>Las categorías de fuentes de las que se recopila la información personal;</li>\n                <li>El propósito comercial o empresarial para recopilar su información personal;</li>\n                <li>Las categorías de terceros con quienes hemos compartido su información personal; y</li>\n                <li>Los datos personales específicos que hemos recopilado sobre usted.</li>\n                </ul>\n                \n                <p><strong>Derecho a eliminar.</strong> Tiene derecho a solicitar que eliminemos la información personal que hemos recopilado de usted (y solicitar a nuestros proveedores de servicios que hagan lo mismo). Sin embargo, existen una serie de excepciones que incluyen, entre otras, cuando la información es necesaria para que nosotros o un tercero realice cualquiera de las siguientes acciones:</p>\n                \n                <ul>\n                <li>Completa tu transacción;</li>\n                <li>Proporcionarle un bien o servicio;</li>\n                <li>Ejecutar un contrato entre nosotros y usted;</li>\n                <li>Proteger su seguridad y procesar a los responsables de violarla;</li>\n                <li>Reparar nuestro sistema en caso de error;</li>\n                <li>Proteger los derechos de libertad de expresión suyos o de otros usuarios;</li>\n                <li>Participar en investigaciones científicas, históricas o estadísticas públicas o revisadas por pares en interés público que cumplan con todas las demás leyes de ética y privacidad aplicables;</li>\n                <li>Cumplir con una obligación legal; o</li>\n                <li>Hacer otros usos internos y legales de la información que sean compatibles con el contexto en el que la proporcionó.</li>\n                </ul>\n                \n                <p><strong>Otros derechos.</strong> Puede solicitar cierta información sobre nuestra divulgación de información personal a terceros para sus propios fines de marketing directo durante el año calendario anterior. Esta solicitud es gratuita y podrá realizarse una vez al año. También tiene derecho a no ser discriminado por ejercer cualquiera de los derechos enumerados anteriormente.<br />\n                <br />\n                <strong>Sitio web:</strong> Puede visitar nuestra página de inicio de privacidad para autenticarse y ejercer sus derechos a través de nuestro sitio web.<br />\n                <br />\n                <strong>Formulario web por correo electrónico:</strong> Puede escribirnos para ejercer sus derechos. Para responder a algunos derechos necesitaremos verificar su solicitud, ya sea pidiéndole que inicie sesión y autentique su cuenta o de otro modo verifique su identidad proporcionando información sobre usted o su cuenta. Los agentes autorizados pueden realizar una solicitud en su nombre si les ha otorgado un poder legal o si se nos proporciona prueba de permiso firmado, verificación de su identidad y confirmación de que usted le dio permiso al agente para enviar la solicitud. Tiempo y formato de respuesta. Nuestro objetivo es responder a la solicitud de acceso o eliminación de un consumidor dentro de los 45 días posteriores a la recepción de esa solicitud. Si requerimos más tiempo, le informaremos el motivo y el período de extensión por escrito.</p>\n                \n                <p>Datos de los niños</p>\n                \n                <p>MXDrive no está dirigido a niños y no recopilamos intencionadamente información personal de niños menores de 13 años. Si descubrimos que un niño menor de 13 años nos ha proporcionado información personal, tomaremos medidas para eliminarla. información. Si cree que un niño menor de 13 años nos ha proporcionado información personal, póngase en contacto con nosotros</p>\n                \n                <p>Enlaces a sitios web de terceros</p>\n                \n                <p>La Plataforma MXDrive puede contener enlaces a sitios web de terceros. Esos sitios web pueden tener políticas de privacidad diferentes a las nuestras. No somos responsables de esos sitios web y le recomendamos que revise sus políticas. Comuníquese directamente con esos sitios web si tiene alguna pregunta sobre sus políticas de privacidad.</p>\n                \n                <p>Cambios en esta política de privacidad</p>\n                \n                <p>Podemos actualizar esta política de vez en cuando a medida que la Plataforma MXDrive cambia y la ley de privacidad evoluciona. Si lo actualizamos, lo haremos en línea, y si realizamos cambios materiales, se lo haremos saber a través de la Plataforma MXDrive o mediante algún otro método de comunicación como el correo electrónico. Cuando utilizas MXDrive, aceptas los términos más recientes de esta política.</p>\n                \n                <p>Contáctenos</p>\n                \n                <p>Si tiene alguna pregunta o inquietud sobre su privacidad o cualquier aspecto de esta política, incluso si necesita acceder a esta política en un formato alternativo, le recomendamos que se comunique con nosotros.</p>', 'Términos y condiciones', '<h2><strong>Términos y condiciones</strong></h2>\n\n                <p>ACUERDO DE LICENCIA DE USUARIO FINAL</p>\n\n                <p>Última actualización 16 de mayo de 2021</p>\n\n                <p>MXDrive,LLC tiene licencia para usted (usuario final) otorgada por MXDrive, LLC, ubicada en 6255 Towncenter Drive Ste 819, Clemmons, Carolina del Norte 27012, Estados Unidos (en adelante: Licenciante), para su uso únicamente según los términos de este Acuerdo de Licencia.<br />\n                <br />\n                Al descargar la Aplicación de Apple AppStore y Google Play, y cualquier actualización de la misma (según lo permita este Acuerdo de licencia), usted indica que acepta estar sujeto a todos los términos y condiciones de este Acuerdo de licencia, y que acepta este Acuerdo de licencia.<br />\n                <br />\n                Las partes de este Acuerdo de licencia reconocen que Apple y/o Google Play no son Partes de este Acuerdo de licencia y no están sujetos a ninguna disposición u obligación con respecto a la Aplicación, como garantía, responsabilidad, mantenimiento y soporte de la misma. MXDrive, LLC, no Apple ni Google Play, es el único responsable de la Aplicación con licencia y su contenido.<br />\n                <br />\n                Es posible que este Acuerdo de licencia no establezca reglas de uso para la Aplicación que entren en conflicto con los Términos de servicio más recientes de la App Store. MXDrive, LLC reconoce que tuvo la oportunidad de revisar dichos términos y que este Acuerdo de licencia no entra en conflicto con ellos.<br />\n                <br />\n                Todos los derechos que no se le otorgan expresamente están reservados.</p>\n\n                <p>1. LA APLICACIÓN</p>\n\n                <p>MXDrive (en adelante: Aplicación) es un software que es una plataforma de viajes compartidos y está personalizado para dispositivos móviles Apple y Android. Se utiliza para conectar pasajeros con conductores para llegar del punto A al B con solo presionar un botón.<br />\n                <br />\n                La Aplicación no está diseñada para cumplir con regulaciones específicas de la industria (Ley de Responsabilidad y Portabilidad de Seguros Médicos (HIPAA), Ley Federal de Gestión de Seguridad de la Información (FISMA), etc.), por lo que si sus interacciones estuvieran sujetas a dichas leyes, no podrá utilice esta aplicación. No puede utilizar la Aplicación de una manera que viole la Ley Gramm-Leach-Bliley (GLBA).</p>\n\n                <p>2. ALCANCE DE LA LICENCIA</p>\n\n                <p>2.1 Se le otorga una licencia intransferible, no exclusiva y que no se puede sublicenciar para instalar y utilizar la Aplicación con licencia en cualquier Producto de la marca Apple o de Google que Usted (Usuario final) posea o controle y según lo permita el Reglas de uso establecidas en esta sección y en los Términos de servicio de la App Store, con la excepción de que otras cuentas asociadas con usted (Usuario final, El Comprador) pueden acceder a dicha Aplicación con licencia y utilizarla a través de Family Sharing o por volumen. compra.<br />\n                <br />\n                2.2 Esta licencia también regirá cualquier actualización de la Aplicación proporcionada por el Licenciante que reemplace, repare y/o complemente la primera Aplicación, a menos que se proporcione una licencia separada para dicha actualización, en cuyo caso regirán los términos de esa nueva licencia.<br />\n                <br />\n                2.3 No puede compartir ni poner la Aplicación a disposición de terceros (a menos que en la medida permitida por los Términos y condiciones de Apple y con el consentimiento previo por escrito de MXDrive, LLC), vender, alquilar, prestar, arrendar o redistribuir de otro modo la Aplicación. <br />\n                <br />\n                2.4 No puede realizar ingeniería inversa, traducir, desensamblar, integrar, descompilar, integrar, eliminar, modificar, combinar, crear trabajos derivados o actualizaciones, adaptar o intentar derivar el código fuente de la Aplicación, o cualquier parte de la misma (excepto con consentimiento previo por escrito de MXDrive, LLC).<br />\n                <br />\n                2.5 No puede copiar (excepto cuando lo autorice expresamente esta licencia y las Reglas de uso) ni alterar la Aplicación o partes de la misma. Puede crear y almacenar copias solo en dispositivos que posee o controla para mantener copias de seguridad según los términos de esta licencia, los Términos de servicio de la App Store y cualquier otro término y condición que se aplique al dispositivo o software utilizado. No puede eliminar ningún aviso de propiedad intelectual. Usted reconoce que ningún tercero no autorizado puede obtener acceso a estas copias en cualquier momento. <Br />\n                <br />\n                2.6 Las violaciones de las obligaciones mencionadas anteriormente, así como el intento de dicha infracción, pueden estar sujetas a enjuiciamiento y daños. <Br />\n                <br />\n                2.7 El licenciatura se reserva el derecho de modificar los términos y condiciones de licencia. <Br />\n                <br />\n                2.8 Nada en esta licencia debe interpretarse para restringir los términos de terceros. Cuando use la aplicación, debe asegurarse de cumplir con los términos y condiciones de terceros aplicables. </p>\n\n                <p> 3. Requisitos técnicos </p>\n\n                <p> 3.1 El licenciatura intenta mantener la aplicación actualizada para que cumpla con versiones modificadas/nuevas del firmware y el nuevo hardware. No se le otorgan derechos para reclamar dicha actualización. <Br />\n                <br />\n                3.2 Usted reconoce que es su responsabilidad confirmar y determinar que el dispositivo de usuario final de la aplicación en el que tiene la intención de usar la aplicación satisface las especificaciones técnicas mencionadas anteriormente. <Br />\n                <br />\n                3.3 El licenciatura se reserva el derecho de modificar las especificaciones técnicas como lo ve apropiado en cualquier momento. </p>\n\n                <p> 4. Mantenimiento y soporte </p>\n\n                <p> 4.1 El licenciatura es el único responsable de proporcionar servicios de mantenimiento y soporte para esta aplicación licenciada. Puede comunicarse con el licenciante en la dirección de correo electrónico que figura en la App Store o la descripción general de Google Play para esta aplicación con licencia. <Br />\n                <br />\n                4.2 MXDrive, LLC y el usuario final reconocen que Apple y Google Play no tienen ninguna obligación de proporcionar ningún servicio de mantenimiento y soporte con respecto a la aplicación con licencia. </p>\n\n                <p> 5. Uso de datos </p>\n\n                <p> Usted reconoce que el licenciatura podrá acceder y ajustar su contenido de aplicación con licencia descargada y su información personal, y que el uso del licenciatura de dicho material e información está sujeto a sus acuerdos legales con la Política de privacidad del licenciatura y el licenciante: https://mxdrivex.atharvatek.com/privacy. </p>\n\n                <p> 6. Contribuciones generadas por el usuario </p>\n\n                <p> La aplicación puede invitarlo a chatear, contribuir o participar en blogs, tableros de mensajes, foros en línea y otra funcionalidad, y puede brindarle la oportunidad de crear, enviar, publicar, mostrar, transmitir, realizar, publicar , distribuir o transmitir contenido y materiales para nosotros o en la aplicación, incluidos, entre otros, texto, escritos, video, audio, fotografías, gráficos, comentarios, sugerencias o información personal u otro material (colectivamente, \"contribuciones\"). Otros usuarios de la aplicación y a través de sitios web o aplicaciones de terceros. Como tal, cualquier contribución que transmita puede tratarse como no confidencial y no propietario. Cuando crea o ponga a disposición cualquier contribución, usted representa y garantiza que: <Br />\n                <br />\n                1. o derechos morales de un tercero. <Br />\n                <br />\n                2. Usted es el creador y propietario de o tiene las licencias, derechos, consentimientos, lanzamientos y permisos necesarios para usar y autorizarnos, la aplicación y otros usuarios de la aplicación para usar sus contribuciones de cualquier manera contemplada por la aplicación y estos términos de uso. <Br />\n                <br />\n                3. Usted tiene el consentimiento, liberación y/o permiso por escrito de cada persona individual identificable en sus contribuciones para usar el nombre o la semejanza o cada persona individual identificable para permitir la inclusión y el uso de sus contribuciones de cualquier manera contemplada por la aplicación y estos Términos de uso. <Br />\n                <br />\n                4. Tus contribuciones no son falsas, inexactas o engañosas. <Br />\n                <br />\n                5. Sus contribuciones no son publicidad no solicitada o no autorizada, materiales promocionales, esquemas piramidales, cartas de cadena, spam, correos masivos u otras formas de solicitud. <Br />\n                <br />\n                6. Sus contribuciones no son obscenas, lascadas, lascivas, sucias, violentas, acosadoras, difamatorias, calumnias o de otra manera objetables (según lo determine nosotros). <Br />\n                <br />\n                7. Tus contribuciones no ridiculizan, se burlan, menosprecian, intimidan o abusan a nadie. <Br />\n                <br />\n                8. Sus contribuciones no se usan para acosar o amenazar (en el sentido legal de esos términos) a ninguna otra persona y para promover la violencia contra una persona o clase específica de personas. <Br />\n                <br />\n                9. Sus contribuciones no violen ninguna ley, regulación o regla aplicable. <Br />\n                <br />\n                10. Sus contribuciones no violan los derechos de privacidad o publicidad de ningún tercero. <Br />\n                <br />\n                11. Sus contribuciones no contienen ningún material que solicite información personal de cualquier persona menor de 18 años o explote a las personas menores de 18 años de manera sexual o violenta. <Br />\n                <br />\n                12. Sus contribuciones no violan ninguna ley aplicable con respecto a la pornografía infantil, o de otra manera destinada a proteger la salud o el bienestar de los menores. <Br />\n                <br />\n                13. Sus contribuciones no incluyen ningún comentario ofensivo que esté conectado a la raza, el origen nacional, el género, la preferencia sexual o la discapacidad física. <Br />\n                <br />\n                14. Sus contribuciones no violan de otra manera, ni se vinculan con el material que viola, cualquier disposición de estos Términos de uso, o cualquier ley o regulación aplicable. <Br />\n                <br />\n                Cualquier uso de la aplicación en violación de lo anterior viola estos Términos de uso y puede dar lugar, entre otras cosas, la terminación o la suspensión de sus derechos para usar la aplicación. </p>\n\n                <p> 7. Licencia de contribución </p>\n\n                <p> Al publicar sus contribuciones a cualquier parte de la aplicación o hacer que las contribuciones sean accesibles para la aplicación vinculando su cuenta de la aplicación a cualquiera de sus cuentas de redes sociales, usted otorga automáticamente y representa y garantiza que tiene derecho a concesión, para nosotros, un derecho sin restricciones, ilimitado, irrevocable, perpetuo, no exclusivo, transferible, libre de regalías, totalmente pagado, derecho mundial y licencia para alojar, usar copiar, reproducir, revelar, vender, revender, publicar, emitir un yeso amplio , Retitar, archivar, almacenar, caché, exhibir públicamente, reformatear, traducir, transmitir, extracto (en su totalidad o en parte) y distribuir dichas contribuciones (incluidas, entre otros, su imagen y voz) para cualquier propósito, publicidad comercial o de otra manera. , y para preparar obras derivadas o incorporar en otras obras, como contribuciones, y otorgar y autorizar sublicenses de lo anterior. El uso y la distribución pueden ocurrir en cualquier formato de medios y a través de cualquier canal de medios. <Br />\n                <br />\n                Esta licencia se aplicará a cualquier formulario, medios o tecnología ahora conocido o en adelante desarrollado, e incluye nuestro uso de su nombre, nombre de la empresa y nombre de la franquicia, según corresponda, y cualquiera de las marcas comerciales, marcas de servicio, nombres comerciales, logotipos, logotipos, e imágenes personales y comerciales que proporciona. No renuncia a todos los derechos morales en sus contribuciones, y garantiza que los derechos morales no se han afirmado en sus contribuciones. <Br />\n                <br />\n                No afirmamos ninguna propiedad sobre sus contribuciones. Retiene la propiedad total de todas sus contribuciones y cualquier derecho de propiedad intelectual u otros derechos de propiedad asociados con sus contribuciones. No somos responsables de ninguna declaración o representación en sus contribuciones proporcionadas por usted en cualquier área de la solicitud. Usted es el único responsable de sus contribuciones a la solicitud y acepta expresamente exonerarnos de cualquier responsabilidad y abstenerse de cualquier acción legal contra nosotros con respecto a sus contribuciones. <Br />\n                <br />\n                Tenemos el derecho, a nuestra sola y absoluta discreción, (1) para editar, redactar o cambiar cualquier contribución; (2) volver a clasificar cualquier contribución para colocarlos en ubicaciones más apropiadas en la aplicación; y (3) previamente o eliminar cualquier contribución en cualquier momento y por cualquier motivo, sin previo aviso. No tenemos la obligación de monitorear sus contribuciones. </p>\n\n                <p> 8. Responsabilidad </p>\n\n                <p> 8.1 La responsabilidad del licenciante en el caso de violación de las obligaciones y el agravio se limitará a la intención y la grave negligencia. Solo en el caso de un incumplimiento de los deberes contractuales esenciales (obligaciones cardinales), el licenciante también será responsable en caso de ligera negligencia. En cualquier caso, la responsabilidad se limitará a los daños previsibles y contractualmente típicos. La limitación mencionada anteriormente no se aplica a las lesiones a la vida, a las extremidades o una salud. <Br />\n                <br />\n                8.2 El licenciatura no toma responsabilidad ni responsabilidad por los daños causados ​​por un incumplimiento de los deberes de acuerdo con la Sección 2 de este Acuerdo. Para evitar la pérdida de datos, debe utilizar funciones de respaldo de la aplicación en la medida permitida por los términos y condiciones de uso de terceros aplicables. Usted es consciente de que en caso de alteraciones o manipulaciones de la aplicación, no tendrá acceso a la aplicación con licencia. </p>\n\n                <p> 9. Garantía </p>\n\n                <p> 9.1 El licenciatura garantiza que la aplicación está libre de spyware, caballos troyanos, virus o cualquier otro malware al momento de su descarga. El licenciatura garantiza que la aplicación funciona como se describe en la documentación del usuario. <Br />\n                <br />\n                9.2 No se proporciona garantía para la aplicación que no se puede ejecutar en el dispositivo, que se ha modificado, manejado de manera inapropiada no autorizada de manera inapropiada o definitiva, combinada o instalada con hardware o software inapropiado, utilizado con accesorios inapropiados, independientemente de si es por terceros, por terceros, o si hay alguna otra razón fuera de los software de MI, la esfera de influencia de LLC que afecta la ejecución de la aplicación. <Br />\n                <br />\n                9.3 Debe inspeccionar la aplicación inmediatamente después de instalarla y notificar a MXDrive, LLC sobre los problemas descubiertos sin demora por correo electrónico proporcionado en las reclamaciones de productos. El informe del defecto se tendrá en cuenta e investigará más a fondo si se ha enviado por correo dentro de un período de noventa (90) días después del descubrimiento. <Br />\n                <br />\n                9.4 Si confirmamos que la aplicación es defectuosa, MXDrive, LLC se reserva una opción para remediar la situación, ya sea por medio de la entrega del defecto o sustituto. <Br />\n                <br />\n                9.5 En caso de que cualquier falla de la solicitud se ajuste a cualquier garantía aplicable, puede notificar al operador de la tienda de aplicaciones y el precio de la compra de su solicitud se le reembolsará. En la medida máxima permitida por la ley aplicable, el operador de la tienda de aplicaciones no tendrá otra obligación de garantía con respecto a la aplicación, y cualquier otra pérdida, reclamo, daños, pasivos, gastos y costos atribuibles a cualquier negligencia para cumplir con cualquier Garantía. <Br />\n                <br />\n                9.6 Si el usuario es un emprendedor, cualquier reclamo basado en fallas expira después de un período legal de limitación que asciende a doce (12) meses después de que la aplicación se puso a disposición del usuario. Los períodos legales de limitación dados por la ley se aplican a los usuarios que son consumidores. </p>\n\n                <p> 10. Reclamaciones de productos </p>\n\n                <p> MXDrive, LLC y el usuario final reconocen que MXDrive, LLC, y no Apple, es responsable de abordar cualquier reclamo del usuario final o cualquier tercero relacionado con la solicitud con licencia o la posesión del usuario final y la posesión del usuario final /o el uso de esa aplicación con licencia, que incluye, entre otros: <Br />\n                <br />\n                (i) reclamos de responsabilidad del producto; <Br />\n                <br />\n                (ii) cualquier reclamo de que la solicitud con licencia no se ajuste a ningún requisito legal o reglamentario aplicable; y <Br />\n                <br />\n                (iii) Reclamaciones que surgen bajo protección del consumidor, privacidad o legislación similar, incluso en relación con el uso de su aplicación con licencia. </p>\n\n                <p> 11. Cumplimiento legal </p>\n\n                <p> usted representa y garantiza que no se encuentra en un país que está sujeto a un embargo del gobierno de los EE. UU., o que ha sido designado por el gobierno de los Estados Unidos como un país de \"apoyo terrorista\"; y que no figura en ninguna lista del gobierno de los EE. UU. De partes prohibidas o restringidas. </p>\n\n                <p> 12. Información de contacto </p>\n\n                <p> Para consultas generales, quejas, preguntas o reclamos sobre la solicitud con licencia, comuníquese con: <Br />\n                <br />\n                <strong> MXDrive, LLC <Br />\n                6255 TownCenter Drive Ste 819 <Br />\n                Clemmons, NC 27012 <Br />\n                Estados Unidos <Br />\n                biz@miracuves.com </strong> </p>\n\n                <p> 13. Terminación </p>\n\n                <p> La licencia es válida hasta que MXDrive, LLC o por usted. Sus derechos bajo esta licencia terminarán automáticamente y sin previo aviso de MXDrive, LLC, si no se adhiere a ningún término de esta licencia. Tras la terminación de la licencia, detendrá todo el uso de la solicitud y destruirá todas las copias, completas o parciales de la aplicación. </p>\n\n                <p> 14. Términos de acuerdos y beneficiarios de terceros </p>\n\n                <p> MXDrive, LLC representa y garantiza que MXDrive, LLC cumplirá con los términos de acuerdo de terceros aplicables cuando se use la aplicación con licencia. <Br />\n                <br />\n                De acuerdo con la Sección 9 de \"Instrucciones para términos mínimos del acuerdo de licencia de usuario final del desarrollador\", las subsidiarias de Apple y Apple serán beneficiarios de este acuerdo de licencia del usuario final y, al aceptar los términos y condiciones de esta licencia Acuerdo, Apple tendrá el derecho (y se considerará que ha aceptado el derecho) para hacer cumplir este acuerdo de licencia de usuario final contra usted como un tercero beneficiario de la misma. </p>.\n\n                <p> 15. Derechos de propiedad intelectual </p>\n\n                <p> MXDrive, LLC y el usuario final reconocen que, en el caso de cualquier reclamo de terceros, la solicitud con licencia o la posesión del usuario final y el uso de esa solicitud con licencia infringen los derechos de propiedad intelectual del tercero, MXDrive, LLC, y no Apple, será el único responsable de la investigación, defensa, liquidación y alta o cualquier reclamación de infracción de propiedad intelectual. </p>\n\n                <p> 16. Ley aplicable </p>\n\n                <p> Este acuerdo de licencia se rige por las leyes del estado de Carolina del Norte, excluyendo sus reglas de conflictos de derecho. </p>.\n\n                <p> 17. Varios </p>\n\n                <p> 17.1 Si alguno de los términos de este Acuerdo debe ser o inválido, la validez de las disposiciones restantes no se verá afectada. Los términos no válidos serán reemplazados por los válidos formulados de una manera que alcance el propósito principal. <Br />\n                <br />\n                17.2 Acuerdos, cambios y enmiendas colaterales solo son válidos si se establecen por escrito. La cláusula anterior solo se puede renunciar por escrito. </p> ', 'cumplimiento', '<h3> <strong> Oportunidad de empleo igual y política de no discriminación </strong> </h3>\n\n                <h3> i. Descripción general y alcance </h3>\n\n                <p> MXDrive, LLC de 6255 Towncenter Drive Ste 819, Clemmons, Carolina del Norte 27012, ha establecido una política de no discriminación e igualdad de oportunidades de empleo (\"EEO\"). Esta política de EEO se aplica a todos los aspectos de la relación entre MXDrive, LLC y sus empleados, incluidos, entre otras, empleo, reclutamiento, anuncios para el empleo, contratación y despido, compensación, asignación, clasificación de empleados, terminación, mejora, mejoramiento, Promociones, transferencia, capacitación, condiciones de trabajo, salarios y administración salarial, y los beneficios de los empleados y la aplicación de políticas. Estas políticas se aplican a contratistas independientes, empleados temporales, todo el personal que trabaja en las instalaciones y cualquier otra persona o empresa que haga negocios para o con MXDrive, LLC. Cualquier usuario que haya violado esta prohibición perderá acceso a la plataforma MXDrive, LLC. Las leyes aplicables en ciertas jurisdicciones pueden requerir y/o permitir la provisión de servicios por el beneficio de una categoría específica de personas. En tales jurisdicciones, los servicios proporcionados de conformidad con estas leyes y los términos aplicables correspondientes están permitidos según esta política. </p>\n\n                <H3> II. Políticas </h3>\n\n                <p>1. Discriminación. </p>\n\n                <p> MXDrive, LLC no tolerará, bajo ninguna circunstancia, sin excepción, ninguna forma de discriminación basada en la raza, el credo, la religión, el color, la edad, la discapacidad, el embarazo, el estado civil, el estado de los padres, la orientación sexual, la expresión de género, Identidad de género, estatus veterano, estatus militar, estatus de víctima de violencia doméstica, origen nacional, afiliación política, sexo, características genéticas predisponentes o ubicación geográfica y cualquier otro estado protegido por la ley. Esta lista no es exhaustiva. Para las personas calificadas con discapacidades, MXDrive, LLC hará todo lo posible para proporcionar adaptaciones razonables en el lugar de trabajo que cumplan con las leyes aplicables. </p>\n\n                <p> La discriminación en el proporcionar servicios de transporte está estrictamente prohibido </p>\n\n                <p> Los conductores y empleados asociados deben conocer las prohibiciones no discriminatorias. MXDrive, LLC no tolerará la alojamiento público, que incluye servicios de taxi -Taxicab Práctica discriminatoria para negar, directa o indirectamente, a ninguna persona el disfrute completo e igual de los bienes, servicios, instalaciones, privilegios, ventajas y alojamientos de cualquier lugar de alojamiento público (incluidos los servicios de taxis) de total o parcialmente por una razón discriminatoria basada en el lugar de residencia o negocios. </p>\n\n                <p> Conducta discriminatoria prohibida: </p>\n\n                <p> MXDrive, LLC reconoce que los impulsores asociados nunca deben discriminar a ciertos clientes al no recogerlos, no llevarlos a donde desean ir o tratarlos con menos respeto en función de las características o rasgos protegidos mencionados anteriormente. Ejemplos específicos de conducta discriminatoria, incluyen lo siguiente: <Br />\n                <br />\n                No recoger a un pasajero sobre la base de ninguna característica o rasgo protegido, incluso no recoger a un pasajero con un animal de servicio · solicitando que un pasajero salga de un taxi en base a una característica o rasgo protegido · utilizando lenguaje despectivo o de acoso Sobre la base de una característica o rasgo protegido · Rechazando una camioneta en un área geográfica específica. </p>\n\n                <p> Discriminación geográfica: </p>\n\n                <p> MXDrive, LLC no tolera la discriminación geográfica y reconoce lo importante que es llevar al cliente al destino solicitado sin discriminar a ese cliente en función de dónde desea ir. Todos los impulsores asociados, empleados, gerentes, partes interesadas y agentes de MXDrive, LLC cumplirán con estas políticas contra la discriminación. En algunos casos, las leyes y regulaciones locales pueden proporcionar mayores protecciones que las descritas en esta política. </p>\n\n                <p> 2. Acoso </p>\n\n                <p> MXDrive, LLC se compromete a proporcionar un entorno de trabajo libre de acoso. Cualquier comportamiento que no sea deseado y ofensivo para el destinatario, que crea un ambiente de trabajo intimidante, hostil o humillante para esa persona viola la política de MI, LLC. El acoso puede ocurrir entre los miembros del sexo opuesto o el mismo sexo. El acoso, verbal o no verbal, explícito o implícito, basado en el sexo, la raza, el origen étnico, el origen nacional, la edad, la religión de un individuo o cualquier otra característica legalmente protegida no se tolerará. Todos los empleados, incluidos los supervisores, otro personal de gestión y contratistas independientes, deben cumplir con esta política. Ninguna persona se verá afectada negativamente en el empleo con MXDrive, LLC como resultado de presentar quejas de acoso. </p>\n\n                <p> 3. Acoso sexual </p>\n\n                <p> Los avances sexuales no deseados, las solicitudes de favores sexuales y otra conducta verbal o física de una naturaleza sexual constituyen acoso cuando (1) la sumisión a dicha conducta se realiza explícita o implícitamente un término o condición de empleo; (2) la sumisión o rechazo de dicha conducta por parte de un individuo se utiliza como base para las decisiones de empleo, promoción, transferencia, selección para capacitación, evaluaciones de desempeño, beneficios u otros términos y condiciones de empleo; o (3) dicha conducta tiene el propósito o efecto de crear un entorno de trabajo intimidante, hostil u ofensivo o interfiere sustancialmente con el desempeño laboral de un empleado. MXDrive, LLC prohíbe una conducta inapropiada que es de naturaleza sexual en el trabajo, en negocios de la empresa o en eventos patrocinados por la compañía, incluidos los siguientes: comentarios, bromas, lenguaje degradante, objetos sexualmente sugerentes, libros o cualquier forma de medios electrónicos o en Formulario de impresión. El acoso sexual está prohibido si se trata entre miembros del sexo opuesto o miembros del mismo sexo. </p>\n\n                <p> 4. Declaración sobre acción afirmativa </p>\n\n                <p> Se ha desarrollado un programa de acción afirmativa donde MXDrive, LLC busca aumentar la representación y participación de las minorías </p>\n\n                <p> 5. Informar discriminación y acoso </p>\n\n                <p> Si un empleado siente que ha sido hostigado como se describe en esta política, debe presentar inmediatamente la queja con: departamento de quejas, 6255 Towncenter Drive, Ste 819, Clemmons NC 27012, o por correo electrónico en cumplimiento de Softwares. a nosotros. Una vez que se haya informado el asunto, se investigará rápidamente y se tomará cualquier acción correctiva cuando se considere apropiado. Todas las quejas o acoso ilegal bajo esta política o de otra manera se manejarán de la manera más confidencial posible. Se alienta a los informes oportunos a evitar la recurrencia o abordar el comportamiento que viola esta política o ley. Los retrasos al informar una queja pueden limitar el tipo de efectividad de una respuesta por parte de MXDrive, LLC. El procedimiento para informar incidentes de comportamiento discriminatorio o de acoso no está destinado a evitar el derecho de ningún empleado a buscar un remedio bajo la ley estatal o federal disponible informando inmediatamente el asunto a la agencia estatal o federal apropiada. </p>.\n\n                <p> 6. Retaliación </p>\n\n                <p> Retaliación contra cualquier persona asociada con MXDrive, LLC, quien informa que los casos de acoso, ya sea que él o ella estén directa o indirectamente involucrados, violan las políticas de MXDrive, LLC. Se supone que todos los incidentes informados se realizan de buena fe. Cualquier acusación que se demuestre que se tratará como un asunto grave. </p>\n\n                <p> 7. Medidas disciplinarias para el acoso </p>\n\n                <p> Cualquier empleado que participe en el comportamiento que viole esta política estará sujeto a medidas disciplinarias, incluida la posible terminación del empleo, ya sea que se haya violado o no una ley real. </p>.\n\n                <p> 8. Remedios </p>\n\n                <p> remedios para cualquier caso de discriminación del empleo verificada, ya sea causada intencionalmente o por acciones que tengan un efecto discriminatorio, pueden incluir salario posterior, contratación, promoción, restablecimiento, pago frontal, acomodación razonable u otras acciones consideradas apropiadas por los software de MI, LLC. Los recursos también pueden incluir el pago de los honorarios de abogados, honorarios de testigos expertos, costos judiciales y otros honorarios legales aplicables. </p>.\n\n                <p> 9. Implementación de políticas </p>\n\n                <p> mi CEO de Softwares, Lynn Graham, apoya plenamente la implementación de esta política efectiva a partir del 19 de abril de 2021. </p> ', 'check dmv', '<h2> <strong> dmv verificación y consentimiento de verificación de antecedentes </strong> </h2>\n\n                <p> </p>\n\n                <p> Consentimiento para solicitar un registro de conducción </p>\n\n                <P> Entiendo que MXDrive, LLC. (\"Compañía\") utilizará Checkr. (\"Checkr, Inc.\") para obtener un registro de vehículos de motor como parte del proceso de solicitud para ser un conductor en la plataforma SoftWares MI (un \"conductor\"). También entiendo que si se acepta como conductor, en la medida permitida por la ley, la compañía puede obtener más informes de Checkr Inc. para actualizar, renovar o extender mi estado como conductor. Por la presente, doy permiso a MXDrive para obtener mi registro de conducción estatal (también conocido como mi registro de vehículos motorizados o MVR) de acuerdo con la Ley de Protección de Privacidad Federal del Conductor (\"DPPA\") y la ley estatal aplicable. Reconozco y entiendo que mi registro de conducción es un informe del consumidor que contiene información de registros públicos. Autorizo, sin reserva, cualquier parte o agencia contactada por Company o Checkr Inc. para proporcionar a la compañía una copia de mi historial de manejo del estado. Esta autorización permanecerá en el archivo de la compañía durante la duración de mi tiempo como conductor, y servirá como autorización continua para que la compañía obtenga mi registro de conducción de estado en cualquier momento mientras yo soy un conductor. </p>\n\n                <p> Consentimiento para solicitar el informe del consumidor o la información del informe del consumidor de investigación </p>\n\n                <P> Entiendo que MXDrive, LLC. (\"Compañía\") utilizará Checkr Inc., </p>\n\n                <p> 1 Montgomery St, Ste 2000, San Francisco, CA 94104 </p>\n\n                <p> Para obtener un informe del consumidor o un informe de consumo de investigación como parte del proceso de solicitud para ser un impulsor en la plataforma MXDrive (un \"controlador\"). También entiendo que si se acepta como conductor, en la medida permitida por la ley, la compañía puede obtener más informes de la verificación para actualizar, renovar o extender mi estado como conductor. </p>\n\n                <p> Entiendo la investigación de Checkr, Inc (\"Checkr\") puede incluir la obtención de información sobre mis antecedentes penales, sujeto a cualquier limitaciones impuestas por la ley federal y estatal aplicable. Entiendo que dicha información se puede obtener a través del contacto directo o indirecto con agencias públicas u otras personas que puedan tener dicho conocimiento. </p>.\n\n                <p> La naturaleza y el alcance de la investigación solicitada incluirán una verificación de antecedentes penales y SSN Trace. </p>\n\n                <P> Reconozco la recepción del resumen adjunto de mis derechos bajo la Ley de Informe de Crédito Justo y, según lo exige la ley, cualquier resumen del Estado relacionado de los derechos (colectivamente \"Resúmenes de los derechos\"). </p>.\n\n                <p> Este consentimiento no afectará mi capacidad de cuestionar o disputar la precisión de cualquier información contenida en un informe. Entiendo que si la compañía toma una decisión condicional de descalificarme basada en todo o en parte en mi informe, me proporcionarán una copia del informe y otra copia de los resúmenes de los derechos, y si no estoy de acuerdo con la precisión de la supuesta descalificación Información En el informe, debo notificar a la compañía dentro de los cinco días hábiles posteriores a la recepción del informe de que estoy desafiando la precisión de dicha información con Checkr. </p>\n\n                <p> Por la presente, consentiré esta investigación y autorizo ​​a la compañía a obtener un informe sobre mis antecedentes. </p>\n\n                <p> Para verificar mi identidad a los efectos de la preparación de los informes, estoy lanzando voluntariamente mi fecha de nacimiento, número de seguro social y la otra información y comprendo completamente que todas las decisiones se basan en razones legítimas no discriminatorias. </P >\n\n                <p> El nombre, la dirección y el número de teléfono de la unidad más cercana de la Agencia de Informes del Consumidor designado para manejar consultas con respecto al Informe del Consumidor de Investigación es: </p>\n\n                <p> <strong> checkr, Inc. <r />\n                1 Montgomery St, Ste 2000, San Francisco, CA 94104 <Br />\n                844-824-3257 </strong> <r />\n                <br />\n                <strong> California, Maine, Massachusetts, Minnesota, Nueva Jersey y Oklahoma Solicitantes: </strong> Tengo el derecho de solicitar una copia de cualquier informe obtenido por la compañía de la verificación revisando la casilla. (Verifique solo si desea recibir una copia) </p>\n\n                <p> Solo solicitantes de Nueva York </p>\n\n                <p> También reconozco que he recibido la copia adjunta del Artículo 23A de la Ley de Corrección de Nueva York. Además, entiendo que puedo solicitar una copia de cualquier informe de consumo de investigación contactando a Checkr. Además, entiendo que se me aconsejará si se solicitan más cheques y proporcionan el nombre y la dirección de la Agencia de Informes del Consumidor. </p>\n\n                <p> Solicitantes y residentes de California </p>\n\n                <p> Si estoy solicitando en California o resido en California, entiendo que tengo el derecho de inspeccionar visualmente los archivos sobre mí mantenidos por una agencia de informes de consumidores de investigación durante el horario comercial normal y con un aviso razonable. La inspección se puede hacer en persona y, si parezco en persona y proporciono la identificación adecuada; Tengo derecho a una copia del archivo por una tarifa para no exceder los costos reales de duplicación. Tengo derecho a ir acompañado por una persona de mi elección, que proporcionará una identificación razonable. La inspección también se puede realizar a través del correo certificado si hago una solicitud por escrito, con una identificación adecuada, para que se envíen copias a un destinatario especificado. También puedo solicitar un resumen de la información que se proporcionará por teléfono si hago una solicitud por escrito, con una identificación adecuada para la divulgación del teléfono, y el cargo de peaje, si lo hay, para la llamada telefónica, se me cobra o se me cobra directamente. Además, entiendo que la Agencia de Informes de Consumidores de Investigación proporcionará personal capacitado para explicarme cualquiera de la información proporcionada para mí; Recibiré de la Agencia de Informes de Consumidores de Investigación una explicación por escrito de cualquier información codificada contenida en archivos mantenidos en mí. La \"identificación adecuada\" como se usa en este párrafo significa que la información generalmente se considera suficiente para identificar a una persona, incluidos documentos como una licencia de conducir válida, número de cuenta de seguro social, tarjeta de identificación militar y tarjetas de crédito. Entiendo que puedo acceder al siguiente sitio web CheckR.com privacidad para ver las prácticas de privacidad de la verificación, incluida la información con respecto a la preparación y el procesamiento de la verificación de los informes y la orientación de los consumidores de investigación sobre si mi información personal se enviará fuera de los Estados Unidos o sus territorios .</p>\n\n                <p> Un resumen de sus derechos bajo la Ley de Informes de Crédito Justo </p>\n\n                <p> La Ley de Informes de Crédito Federal Federal (FCRA) promueve la precisión, la equidad y la privacidad de la información en los archivos de las agencias de informes del consumidor. Existen muchos tipos de agencias de informes del consumidor, incluidas agencias de crédito y agencias especializadas (como agencias que venden información sobre historiales de emisión de cheques, registros médicos y registros de historial de alquiler). Aquí hay un resumen de sus principales derechos bajo la FCRA. <strong> Para obtener más información, incluida la información sobre derechos adicionales, visite www.consumerfinance.gov/learnmore o escriba a: </strong> </p>\n\n                <p> Oficina de protección financiera del consumidor <Br />\n                1700 G Street NW, Washington, DC 20552 </p>\n\n                <p> </p>\n\n                <ul>\n                <li> Debe decirle si la información en su archivo se ha utilizado en su contra. Cualquier persona que use un informe de crédito u otro tipo de informe del consumidor para negar su solicitud de crédito, seguro o empleo, o para tomar otra acción adversa en su contra, debe decirle y debe darle el nombre, la dirección y el número de teléfono del número de teléfono. la agencia que proporcionó la información. </li>\n                <li> Tienes derecho a saber qué hay en tu archivo. Puede solicitar y obtener toda la información sobre usted en los archivos de una agencia de informes del consumidor (su \"divulgación de archivos\"). Se le pedirá que proporcione una identificación adecuada, que puede incluir su número de Seguro Social. En muchos casos, la divulgación será gratuita. Tiene derecho a una divulgación gratuita de su expediente si:\n                <ol>\n                <li> Una persona ha tomado medidas adversas contra usted debido a la información en su informe de crédito; </li>\n                <li> Eres víctima del robo de identidad y coloca una alerta de fraude en tu archivo; </li>\n                <li> Su archivo contiene información inexacta como resultado de fraude; </li>\n                <li> Estás en asistencia pública; </li>\n                <li> Está desempleado pero espera solicitar empleo dentro de los 60 días. </li>\n                </ol>\n                Además, todos los consumidores tienen derecho a una divulgación gratuita cada 12 meses previa solicitud de cada agencia de crédito a nivel nacional y de agencias especializadas en informes del consumidor a nivel nacional. Consulte www.consumerfinance.gov/learnmore para obtener información adicional. </li>\n                <li> Tienes derecho a pedir un puntaje de crédito. Los puntajes crediticios son resúmenes numéricos de su solvencia crediticia basados ​​en información de las agencias de crédito. Puede solicitar un puntaje crediticio a las agencias de informes del consumidor que crean puntajes o distribuyen puntajes utilizados en préstamos para bienes raíces residenciales, pero tendrá que pagarlo. En algunas transacciones hipotecarias, recibirá información de puntaje de crédito de forma gratuita del prestamista hipotecario. </li>\n                <li> Tiene derecho a disputar información incompleta o inexacta. Si identifica información en su archivo que está incompleta o inexacta, e informa a la Agencia de Informes del Consumidor, la agencia debe investigar a menos que su disputa sea frívola. Consulte www.consumerfinance.gov/learnmore para una explicación de los procedimientos de disputa. </li>\n                <li> Las agencias de informes del consumidor deben corregir o eliminar información inexacta, incompleta o no verificable. Inaccurate, incomplete or unverifiable information must be removed or corrected, usually within 30 days. However, a consumer reporting agency may continue to report information it has verified as accurate.</li>\n                <li>Consumer reporting agencies may not report outdated negative information. In most cases, a consumer reporting agency may not report negative information that is more than seven years old, or bankruptcies that are more than 10 years old.</li>\n                <li>Access to your file is limited. A consumer reporting agency may provide information about you only to people with a valid need – usually to consider an application with a creditor, insurer, employer, landlord, or other business. The FCRA specifies those with a valid need for access.</li>\n                <li>You must give your consent for reports to be provided to employers. A consumer reporting agency may not give out information about you to your employer, or a potential employer, without your written consent given to the employer. Por lo general, no se requiere consentimiento por escrito en la industria del transporte por carretera. For more information, go to www.consumerfinance.gov/learnmore</li>\n                <li>You may limit “prescreened” offers of credit and insurance you get based on information in your credit report. Unsolicited “prescreened” offers for credit and insurance must include a toll-free phone number you can call if you choose to remove your name and address from the lists these offers are based on. You may opt-out with the nationwide credit bureaus at 1-888-567-8688.</li>\n                <li>You may seek damages from violators. If a consumer reporting agency, or, in some cases, a user of consumer reports or a furnisher of information to a consumer reporting agency violates the FCRA, you may be able to sue in state or federal court.</li>\n                <li>Identity theft victims and active duty military personnel have additional rights. For more information, visit www.consumerfinance.gov/learnmore.</li>\n                </ul>\n\n                <p>States may enforce the FCRA, and many states have their own consumer reporting laws. In some cases, you may have more rights under state law. For more information, contact your state or local consumer protection agency or your state Attorney General. For information about your federal rights, contact:</p>\n\n                <p> </p>\n\n                <table>\n                <thead>\n                <tr>\n                <th>\n                <p>Type of business</p>\n                </th>\n                <th>\n                <p>Contact</p>\n                </th>\n                </tr>\n                </thead>\n                <tcuerpo>\n                <tr>\n                <td>1.a. Banks, savings associations, and credit unions with total assets of over $10 billion and their affiliates.</td>\n                <td>a. Consumer Financial Protection Bureau 1700 G Street NW, Washington, DC 20552</td>\n                </tr>\n                <tr>\n                <td>1.b. Such affiliates that are not banks, savings associations, or credit unions also should list, in addition to the CFPB:</td>\n                <td>b. Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td colspan=\"2\">\n                <p>To the extent not included in item 1 above</p>\n                </td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>2.a. National banks, federal savings associations, and federal branches and federal agencies of foreign banks</td>\n                <td>a. Office of the Comptroller of the Currency Customer Assistance Group 1301 McKinney Street Suite 3450, Houston, TX 77010-9050</td>\n                </tr>\n                <tr>\n                <td>2.b. State member banks, branches and agencies of foreign banks (other than federal branches, federal agencies, and Insured State Branches of Foreign Banks), commercial lending companies owned or controlled by foreign banks, and organizations operating under section 25 or 25A of the Federal Reserve Act</td>\n                <td>b. Federal Reserve Consumer Help Center P.O. Box 1200 Minneapolis, MN 55480</td>\n                </tr>\n                <tr>\n                <td>2.c. Nonmember Insured Banks, Insured State Branches of Foreign Banks, and insured state savings associations</td>\n                <td>c. FDIC Consumer Response Center 1100 Walnut Street Box #11, Kansas City, MO 64106</td>\n                </tr>\n                <tr>\n                <td>2.d. Federal Credit Unions</td>\n                <td>d. National Credit Union Administration Office of Consumer Protection (OCP), Division of Consumer Compliance and Outreach (DCCO) 1775 Duke Street, Alexandria, VA 22314</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>3. Air carriers</td>\n                <td>Asst. General Counsel for Aviation Enforcement & Proceedings Aviation Consumer Protection Division Department of Transportation 1200 New Jersey Avenue SE, Washington, DC 20590</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>4. Creditors Subject to Surface Transportation Board</td>\n                <td>Office of Proceedings, Surface Transportation Board, Department of Transportation 395 E Street SW, Washington, DC 20423</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>5. Creditors Subject to Packers and Stockyards Act, 1921</td>\n                <td>Nearest Packers and Stockyards Administration area supervisor</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>6. Small Business Investment Companies</td>\n                <td>Associate Deputy Administrator for Capital Access, United States Small Business Administration 409 Third Street SW 8th Floor, Washington, DC 20416</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>7. Brokers and Dealers</td>\n                <td>Securities and Exchange Commission 100 F St NE, Washington, DC 20549</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>8. Federal Land Banks, Federal Land Bank Associations, Federal Intermediate Credit Banks, and Production Credit Associations</td>\n                <td>Farm Credit Administration, 1501 Farm Credit Drive, McLean, VA 22102-5090</td>\n                </tr>\n                </tbody>\n                <tcuerpo>\n                <tr>\n                <td>9. Retailers, Finance Companies, and All Other Creditors Not Listed Above</td>\n                <td>FTC Regional Office for region in which the creditor operates or Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                </table>', 'es', 'Spanish', 'ltr', NULL, NULL);
INSERT INTO `landing_quicklinks` (`id`, `privacy_title`, `privacy`, `terms_title`, `terms`, `compliance_title`, `compliance`, `dmv_title`, `dmv`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('6089fd5a-5711-4ef9-bedc-acb5df587216', 'Politique de confidentialité', '<h2>Politique de confidentialité</h2>\n\n                <p>La portée de cette politique</p>\n                \n                <p>Cette politique sapplique à tous les utilisateurs de MXDrive, y compris les pilotes et les pilotes (y compris les candidats aux pilotes), ainsi quà toutes les plates-formes et services de MXDrive, y compris nos applications, sites Web, fonctionnalités et autres services (collectivement, la « Plateforme MXDrive). »). Noubliez pas que votre utilisation de la plateforme MXDrive est également soumise à nos conditions dutilisation.</p>\n                \n                <p>Les informations que nous collectons</p>\n                \n                <p>Lorsque vous utilisez la plateforme MXDrive, nous collectons les informations que vous fournissez, les informations dutilisation et les informations sur votre appareil. Nous collectons également des informations vous concernant à partir dautres sources telles que des services tiers et des programmes facultatifs auxquels vous participez, que nous pouvons combiner avec dautres informations dont nous disposons sur vous. Voici les types dinformations que nous collectons à votre sujet :</p>\n                \n                <p>A. Informations que vous nous fournissez</p>\n                \n                <p>Enregistrement du compte. Lorsque vous créez un compte avec MXDrive, nous collectons les informations que vous nous fournissez, telles que votre nom, votre adresse e-mail, votre numéro de téléphone et vos informations de paiement. Vous pouvez choisir de partager des informations supplémentaires avec nous pour votre profil Rider, comme votre photo ou vos adresses enregistrées (par exemple, domicile ou travail), et configurer dautres préférences (telles que vos pronoms préférés).<br />\n                <br />\n                <strong>Informations sur le conducteur.</strong> Si vous postulez pour devenir chauffeur, nous collecterons les informations que vous fournissez dans votre candidature, notamment votre nom, votre adresse e-mail, votre numéro de téléphone, votre date de naissance, votre photo de profil, votre adresse physique, votre pièce didentité gouvernementale. numéro (tel que le numéro de sécurité sociale), informations sur le permis de conduire, informations sur le véhicule et informations sur lassurance automobile. Nous collectons les informations de paiement que vous nous fournissez, y compris vos numéros de routage bancaire et vos informations fiscales. En fonction de lendroit où vous souhaitez conduire, nous pouvons également demander des informations supplémentaires sur une licence commerciale ou un permis ou dautres informations pour gérer la conduite et les programmes pertinents à cet endroit. Nous pouvons avoir besoin dinformations supplémentaires de votre part à un moment donné après que vous soyez devenu conducteur, y compris des informations pour confirmer votre identité (comme une photo).<br />\n                <br />\n                <strong>Informations de contact SOS</strong> Nous collecterons lautorisation de la liste de contacts pour répertorier les contacts lors de lajout des contacts SOS pour lapplication utilisateur et pilote<br />\n                <br />\n                <strong>Notes et commentaires.</strong> Lorsque vous évaluez et fournissez des commentaires sur des passagers ou des chauffeurs, nous collectons toutes les informations que vous fournissez dans vos commentaires.<br />\n                <br />\n                <strong>Communications.</strong> Lorsque vous nous contactez ou que nous vous contactons, nous collectons toutes les informations que vous fournissez, y compris le contenu des messages ou des pièces jointes que vous nous envoyez.</p>\n                \n                <p>B. Informations que nous collectons lorsque vous utilisez la plateforme MXDrive</p>\n                \n                <p><strong>Informations de localisation.</strong> Les bonnes balades commencent par une prise en charge facile et précise. La plate-forme MXDrive collecte des informations de localisation (y compris les données GPS et WiFi) différemment en fonction des paramètres de votre application MXDrive et des autorisations de votre appareil, ainsi que selon que vous utilisez la plate-forme en tant que pilote ou pilote :</p>\n                \n                <ul>\n                <li>Passeurs : nous collectons la position précise de votre appareil lorsque vous ouvrez et utilisez lapplication MXDrive, y compris lorsque lapplication sexécute en arrière-plan, à partir du moment où vous demandez un trajet jusquà sa fin. MXDrive suit également à tout moment lemplacement précis des scooters et des vélos électriques.</li>\n                <li>Pilotes : nous collectons la position précise de votre appareil lorsque vous ouvrez et utilisez lapplication, y compris lorsque lapplication sexécute en arrière-plan lorsquelle est en mode pilote. Nous collectons également une position précise pendant une durée limitée après que vous ayez quitté le mode conducteur afin de détecter les incidents de trajet, et continuons à la collecter jusquà ce quun incident signalé ou détecté ne soit plus actif.</li>\n                </ul>\n                \n                <p><strong>Informations dutilisation.</strong> Nous collectons des informations sur votre utilisation de la plateforme MXDrive, y compris des informations sur le trajet telles que la date, lheure, la destination, la distance, litinéraire, le paiement et si vous avez utilisé une promotion ou une référence. code. Nous collectons également des informations sur vos interactions avec la plateforme MXDrive, comme nos applications et nos sites Web, y compris les pages et le contenu que vous consultez ainsi que les dates et heures de votre utilisation.<br />\n                <br />\n                <strong>Informations sur lappareil.</strong> Nous collectons des informations sur les appareils que vous utilisez pour accéder à la plate-forme MXDrive, notamment le modèle de lappareil, ladresse IP, le type de navigateur, la version du système dexploitation, lidentité de lopérateur et du fabricant, le type de radio ( tels que la 4G), les préférences et paramètres (tels que la langue préférée), les installations dapplications, les identifiants dappareil, les identifiants publicitaires et les jetons de notification push. Si vous êtes un conducteur, nous collectons également des données de capteurs mobiles à partir de votre appareil (telles que la vitesse, la direction, la hauteur, laccélération, la décélération et dautres données techniques).<br />\n                <br />\n                <strong>Communications entre les coureurs et les chauffeurs.</strong> Nous travaillons avec un tiers pour faciliter les appels téléphoniques et les messages texte entre les coureurs et les chauffeurs sans partager le numéro de téléphone réel de lune ou lautre partie avec lautre. Mais même si nous faisons appel à un tiers pour fournir le service de communication, nous collectons des informations sur ces communications, notamment les numéros de téléphone des participants, la date et lheure, ainsi que le contenu des messages SMS. Pour des raisons de sécurité, nous pouvons également surveiller ou enregistrer le contenu des appels téléphoniques passés via la plateforme MXDrive, mais nous vous informerons toujours que nous sommes sur le point de le faire avant le début de lappel.<br />\n                <br />\n                <strong>Contacts du carnet dadresses.</strong> Vous pouvez définir les autorisations de votre appareil pour accorder à MXDrive laccès à vos listes de contacts et demander à MXDrive daccéder à votre liste de contacts, par exemple pour vous aider à parrainer des amis vers MXDrive. Si vous faites cela, nous accéderons et stockerons les noms et coordonnées des personnes figurant dans votre carnet dadresses.<br />\n                <br />\n                <strong>Cookies, analyses et technologies tierces.</strong> Nous collectons des informations via lutilisation de « cookies », de pixels de suivi, doutils danalyse de données tels que Google Analytics, de SDK et dautres technologies tierces pour comprendre comment vous naviguez sur la plateforme MXDrive et interagissez avec les publicités MXDrive, pour rendre votre expérience MXDrive plus sûre, pour savoir quel contenu est populaire, pour améliorer votre expérience sur le site, pour vous proposer de meilleures publicités sur dautres sites et pour enregistrer vos préférences. Les cookies sont de petits fichiers texte que les serveurs Web placent sur votre appareil ; ils sont conçus pour stocker des informations de base et pour aider les sites Web et les applications à reconnaître votre navigateur. Nous pouvons utiliser à la fois des cookies de session et des cookies persistants. Un cookie de session disparaît après la fermeture de votre navigateur. Un cookie persistant reste après la fermeture de votre navigateur et est accessible chaque fois que vous utilisez la plateforme MXDrive. Vous devez consulter votre (vos) navigateur(s) Web pour modifier vos paramètres de cookies. Veuillez noter que si vous supprimez ou choisissez de ne pas accepter nos cookies, vous risquez de manquer certaines fonctionnalités de la plateforme MXDrive.</p>\n                \n                <p>C. Informations que nous collectons auprès de tiers</p>\n                \n                <p><strong>Services tiers.</strong> Les services tiers nous fournissent les informations nécessaires pour les aspects essentiels de la plate-forme MXDrive, ainsi que pour des services, programmes, avantages de fidélité et promotions supplémentaires qui peuvent améliorer votre expérience MXDrive. Ces services tiers incluent des prestataires de vérification des antécédents, des partenaires dassurance, des prestataires de services financiers, des prestataires de marketing et dautres entreprises. Nous obtenons les informations suivantes vous concernant auprès de ces services tiers :</p>\n                \n                <ul>\n                <li>Informations visant à rendre la plate-forme Mi Softwares plus sûre, comme les informations de vérification des antécédents des conducteurs ;</li>\n                <li>Informations sur votre participation à des programmes tiers qui fournissent des éléments tels quune couverture dassurance et des instruments financiers, tels que des informations sur lassurance, les paiements, les transactions et la détection des fraudes ;</li>\n                <li>Informations permettant de mettre en œuvre des programmes ou des applications, services ou fonctionnalités de fidélité et promotionnels que vous choisissez de connecter ou de lier à votre compte MXDrive, telles que des informations sur votre utilisation de ces programmes, applications, services ou fonctionnalités ; et</li>\n                <li>Informations vous concernant fournies par des services spécifiques, telles que des informations démographiques et sur les segments de marché.</li>\n                </ul>\n                \n                <p><strong>Programmes dentreprise.</strong> Si vous utilisez MXDrive par lintermédiaire de votre employeur ou dune autre organisation qui participe à lun de nos programmes dentreprise MXDrive Business, nous collecterons des informations vous concernant auprès de ces parties, telles que votre nom. et coordonnées.<br />\n                <br />\n                <strong>Service de conciergerie.</strong> Parfois, une autre entreprise ou entité peut vous commander un trajet MXDrive. Si une organisation a commandé un trajet pour vous en utilisant notre service de conciergerie, elle nous fournira vos coordonnées ainsi que le lieu de prise en charge et de dépôt de votre trajet.<br />\n                <br />\n                <strong>Programmes de parrainage.</strong> Les amis aident leurs amis à utiliser la plateforme MXDrive. Si quelquun vous recommande MXDrive, nous collecterons des informations vous concernant à partir de cette référence, notamment votre nom et vos coordonnées.<br />\n                <br />\n                <strong>Autres utilisateurs et sources.</strong> Dautres utilisateurs ou sources publiques ou tierces telles que les forces de lordre, les assureurs, les médias ou les piétons peuvent nous fournir des informations vous concernant, par exemple dans le cadre dune enquête sur un incident ou pour vous apporter votre soutien.</p>\n                \n                <p>Comment nous utilisons vos informations</p>\n                \n                <p>Nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Fournir la plate-forme Mi Softwares ;</li>\n                <li>Maintenir la sécurité et la sûreté de la plate-forme MXDrive et de ses utilisateurs ;</li>\n                <li>Créer et maintenir la communauté Mi Softwares ;</li>\n                <li>Fournir un support client ;</li>\n                <li>Améliorer la plate-forme Mi Softwares ; et</li>\n                <li>Répondre aux procédures et obligations juridiques.</li>\n                </ul>\n                \n                <p><strong>Fournir la plateforme MXDrive.</strong> Nous utilisons vos informations personnelles pour offrir une expérience intuitive, utile, efficace et intéressante sur notre plateforme. Pour ce faire, nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Vérifiez votre identité et gérez votre compte, vos paramètres et vos préférences ;</li>\n                <li>Vous connecter à vos courses et suivre leur progression ;</li>\n                <li>Calculer les prix et traiter les paiements ;</li>\n                <li>Autoriser les passagers et les conducteurs à se connecter concernant leur trajet et à choisir de partager leur position avec dautres ;</li>\n                <li>Communiquer avec vous sur vos courses et votre expérience ;</li>\n                <li>Recueillir des commentaires concernant votre expérience ;</li>\n                <li>Faciliter des services et des programmes supplémentaires avec des tiers ; et</li>\n                <li>Organisez des concours, des tirages au sort et dautres promotions.</li>\n                </ul>\n                \n                <p><strong>Maintenir la sécurité et la sûreté de la plateforme MXDrive et de ses utilisateurs.</strong> Vous offrir une expérience sécurisée et sécurisée est le moteur de notre plateforme, à la fois sur la route et sur nos applications. Pour ce faire, nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Authentifier les utilisateurs ;</li>\n                <li>Vérifier que les chauffeurs et leurs véhicules répondent aux exigences de sécurité ;</li>\n                <li>Enquêter et résoudre les incidents, les accidents et les réclamations dassurance ;</li>\n                <li>Encourager un comportement de conduite sûr et éviter les activités dangereuses ;</li>\n                <li>Détecter et prévenir la fraude ; et</li>\n                <li>Bloquez et supprimez les utilisateurs dangereux ou frauduleux de la plate-forme MXDrive.</li>\n                </ul>\n                \n                <p><strong>Créer et entretenir la communauté MXDrive.</strong> MXDrive sefforce dêtre un élément positif de la communauté. Nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Communiquer avec vous sur les événements, les promotions, les élections et les campagnes ;</li>\n                <li>Personnaliser et fournir du contenu, des expériences, des communications et de la publicité pour promouvoir et développer la plate-forme Mi Softwares ; et</li>\n                <li>Aidez à faciliter les dons que vous choisissez de faire via la plate-forme MXDrive.</li>\n                </ul>\n                \n                <p><strong>Fournir une assistance client.</strong> Nous travaillons dur pour offrir la meilleure expérience possible, notamment en vous aidant lorsque vous en avez besoin. Pour ce faire, nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Enquêter et vous aider à résoudre vos questions ou problèmes concernant la plate-forme Mi Softwares ; et</li>\n                <li>Vous fournir une assistance ou vous répondre.</li>\n                </ul>\n                \n                <p><strong>Amélioration de la plateforme MXDrive</strong>. Nous travaillons toujours à améliorer votre expérience et à vous fournir de nouvelles fonctionnalités utiles. Pour ce faire, nous utilisons vos informations personnelles pour :</p>\n                \n                <ul>\n                <li>Effectuer des recherches, des tests et des analyses ;</li>\n                <li>Développer de nouveaux produits, fonctionnalités, partenariats et services ;</li>\n                <li>Prévenir, rechercher et résoudre les bugs et problèmes logiciels ou matériels ; et</li>\n                <li>Surveiller et améliorer nos opérations et nos processus, y compris les pratiques de sécurité, les algorithmes et autres modèles.</li>\n                </ul>\n                \n                <p><strong>Répondre aux procédures et exigences juridiques.</strong> Parfois, la loi, les entités gouvernementales ou dautres organismes de réglementation nous imposent des demandes et des obligations en ce qui concerne les services que nous cherchons à fournir. Dans une telle circonstance, nous pouvons utiliser vos informations personnelles pour répondre à ces demandes ou obligations.</p>\n                \n                <p>Comment nous partageons vos informations</p>\n                \n                <p>Nous ne vendons pas vos informations personnelles. Pour faire fonctionner la plateforme MXDrive, nous pouvons être amenés à partager vos informations personnelles avec dautres utilisateurs, des tiers et des fournisseurs de services. Cette section explique quand et pourquoi nous partageons vos informations.</p>\n                \n                <p>A. Partage entre les utilisateurs des logiciels Mi</p>\n                \n                <p>Coureurs et chauffeurs.<br />\n                <br />\n                <strong>Informations sur le passager partagées avec le chauffeur :</strong> Dès réception dune demande de trajet, nous partageons avec le chauffeur le lieu de prise en charge du passager, son nom, sa photo de profil, sa note et ses statistiques (comme le nombre approximatif de trajets et dannées en tant que passager). , et les informations que le coureur inclut dans son profil de coureur (comme les pronoms préférés). Lors de la prise en charge et pendant le trajet, nous partageons avec le chauffeur la destination du passager et tout arrêt supplémentaire que le passager saisit dans lapplication MXDrive. Une fois le trajet terminé, nous partageons également éventuellement la note et les commentaires du pilote avec le chauffeur. (Nous supprimons lidentité du Passager associée aux notes et aux commentaires lorsque nous la partageons avec les Chauffeurs, mais un Chauffeur peut être en mesure didentifier le Passager qui a fourni la note ou les commentaires.)<br />\n                <br />\n                <strong>Informations du conducteur partagées avec le pilote :</strong> lorsquun conducteur accepte une course demandée, nous partagerons avec le pilote le nom du conducteur, sa photo de profil, ses pronoms préférés, sa note, sa localisation en temps réel, ainsi que la marque et le modèle du véhicule. , la couleur et la plaque dimmatriculation, ainsi que dautres informations dans le profil MXDrive du conducteur, telles que les informations que les conducteurs choisissent dajouter (comme le drapeau du pays et la raison pour laquelle vous conduisez) et les statistiques du conducteur (comme le nombre approximatif de trajets et dannées en tant que conducteur) .<br />\n                <br />\n                Bien que nous aidions les passagers et les chauffeurs à communiquer entre eux pour organiser une prise en charge, nous ne partageons pas votre numéro de téléphone réel ou dautres informations de contact avec dautres utilisateurs. Si vous nous signalez un objet perdu ou trouvé, nous chercherons à vous mettre en contact avec le passager ou le chauffeur concerné, y compris en partageant vos coordonnées réelles avec votre consentement.<br />\n                <br />\n                <strong>Passeurs de trajet partagé.</strong> Lorsque les passagers utilisent un trajet partagé MXDrive, nous partageons le nom et la photo de profil de chaque passager pour garantir la sécurité. Les passagers peuvent également voir les lieux de prise en charge et de dépose des uns et des autres afin de connaître litinéraire tout en partageant le trajet.<br />\n                <br />\n                <strong>Courses demandées ou payées par dautres.</strong> Certaines courses que vous effectuez peuvent être demandées ou payées par dautres. Si vous effectuez lun de ces trajets en utilisant votre compte de profil dentreprise MXDrive, un code ou un coupon, un programme subventionné (par exemple, transport en commun ou gouvernement) ou une carte de crédit dentreprise liée à un autre compte, ou si un autre utilisateur demande ou paie autrement un un trajet pour vous, nous pouvons partager tout ou partie des détails de votre trajet avec cette autre partie, y compris la date, lheure, le tarif, la note attribuée, la région du voyage et le lieu de prise en charge et de retour de votre trajet.<br />\n                <br />\n                <strong>Programmes de parrainage.</strong> Si vous parrainez quelquun vers la plateforme MXDrive, nous lui ferons savoir que vous avez généré la parrainage. Si un autre utilisateur vous a recommandé, nous pouvons partager des informations sur votre utilisation de la plateforme MXDrive avec cet utilisateur. Par exemple, une source de référence peut recevoir un bonus lorsque vous rejoignez la plateforme MXDrive ou effectuez un certain nombre de courses et recevra de telles informations.</p>\n                \n                <p>B. Partage avec des fournisseurs de services tiers à des fins professionnelles</p>\n                \n                <p>Selon que vous êtes un pilote ou un conducteur, MXDrive peut partager les catégories suivantes de vos informations personnelles à des fins commerciales afin de vous fournir une variété de fonctionnalités et de services de la plateforme MXDrive :</p>\n                \n                <ul>\n                <li>Identifiants personnels, tels que votre nom, votre adresse, votre adresse e-mail, votre numéro de téléphone, votre date de naissance, votre numéro didentification gouvernemental (tel que votre numéro de sécurité sociale), les informations de votre permis de conduire, les informations sur votre véhicule et vos informations dassurance automobile ;</li>\n                <li>Informations financières, telles que les numéros dacheminement bancaires, les informations fiscales et toute autre information de paiement que vous nous fournissez ;</li>\n                <li>Informations commerciales, telles que les informations sur les trajets, les statistiques et commentaires du conducteur/passager, ainsi que lhistorique des transactions du conducteur/passager ;</li>\n                <li>Informations sur lactivité Internet ou dautres réseaux électroniques, telles que votre adresse IP, le type de navigateur, la version du système dexploitation, lopérateur et/ou le fabricant, les identifiants de lappareil et les identifiants de publicité mobile ; et</li>\n                <li>Données de localisation.</li>\n                </ul>\n                \n                <p>Nous divulguons ces catégories dinformations personnelles à des prestataires de services pour atteindre les objectifs commerciaux suivants :</p>\n                \n                <ul>\n                <li>Maintenir et gérer votre compte Mi Softwares ;</li>\n                <li>Traitement ou exécution des courses ;</li>\n                <li>Vous fournir un service client ;</li>\n                <li>Traitement des transactions Rider ;</li>\n                <li>Traitement des demandes et des paiements des chauffeurs ;</li>\n                <li>Vérifier lidentité des utilisateurs ;</li>\n                <li>Détecter et prévenir la fraude ;</li>\n                <li>Traitement des réclamations dassurance ;</li>\n                <li>Proposer des programmes de fidélisation et de promotion des chauffeurs ;</li>\n                <li>Fournir des services de marketing et de publicité à Mi Softwares ;</li>\n                <li>Fournir un financement ;</li>\n                <li>Fournir les services durgence demandés ;</li>\n                <li>Fournir des services danalyse à Mi Softwares ; et</li>\n                <li>Entreprendre des recherches internes pour développer la plate-forme MXDrive.</li>\n                </ul>\n                \n                <p>C. Pour des raisons juridiques et pour protéger la plateforme MXDrive</p>\n                \n                <ul>\n                <li>Se conformer à toute loi ou réglementation fédérale, étatique ou locale applicable, enquête civile, pénale ou réglementaire, enquête ou procédure judiciaire, ou demande gouvernementale exécutoire ;</li>\n                <li>Répondre à une procédure judiciaire (telle quun mandat de perquisition, une assignation à comparaître, une assignation ou une ordonnance du tribunal) ;</li>\n                <li>Appliquer nos conditions dutilisation ;</li>\n                <li>Coopérer avec les forces de lordre concernant une conduite ou une activité qui, selon nous, peut raisonnablement et de bonne foi, violer la loi fédérale, étatique ou locale ; ou</li>\n                <li>Exercer ou défendre des actions en justice, protéger contre toute atteinte à nos droits, à nos biens, à nos intérêts ou à notre sécurité ou à vos droits, à vos biens, à vos intérêts ou à votre sécurité, à celle de tiers ou du public, comme lexige ou le permet la loi.</ li>\n                </ul>\n                \n                <p>D. Dans le cadre dune vente ou dune fusion</p>\n                \n                <p>Nous pouvons partager vos informations personnelles lors de négociations ou en relation avec un changement de contrôle de lentreprise tel quune restructuration, une fusion ou la vente de nos actifs.</p>\n                \n                <p>E. Selon vos instructions ultérieures</p>\n                \n                <p>Avec votre autorisation ou selon vos instructions, nous pouvons divulguer vos informations personnelles pour interagir avec un tiers ou à dautres fins.</p>\n                \n                <p>Comment nous stockons et protégeons vos informations</p>\n                \n                <p>Nous conservons vos informations aussi longtemps que nécessaire pour vous fournir, ainsi quà nos autres utilisateurs, la plateforme MXDrive. Cela signifie que nous conservons les informations de votre profil aussi longtemps que vous conservez un compte. Nous conservons les informations transactionnelles telles que les courses et les paiements pendant au moins sept ans pour garantir que nous pouvons exercer des fonctions commerciales légitimes, telles que la comptabilité des obligations fiscales. Si vous demandez la suppression de votre compte, nous supprimerons vos informations comme indiqué dans la section « Suppression de votre compte » ci-dessous. Nous prenons des mesures raisonnables et appropriées conçues pour protéger vos informations personnelles. Mais aucune mesure de sécurité ne peut être efficace à 100 %, et nous ne pouvons garantir la sécurité de vos informations, y compris contre les intrusions non autorisées ou les actes de tiers.</p>\n                \n                <p>Vos droits et choix concernant vos données</p>\n                \n                <p>MXDrive vous offre des moyens daccéder et de supprimer vos informations personnelles ainsi que dexercer dautres droits en matière de données qui vous donnent un certain contrôle sur vos informations personnelles.</p>\n                \n                <p>A. Tous les utilisateurs</p>\n                \n                <p>Abonnements par e-mail. Vous pouvez toujours vous désinscrire de nos e-mails commerciaux ou promotionnels en cliquant sur se désinscrire dans ces messages. Nous vous enverrons toujours des e-mails transactionnels et relationnels concernant votre utilisation de la plateforme MXDrive.<br />\n                <br />\n                <strong>Messages texte.</strong> Vous pouvez refuser de recevoir des SMS commerciaux ou promotionnels. Vous pouvez également refuser de recevoir tous les SMS des logiciels Mi (y compris les messages transactionnels ou relationnels. Notez que le fait de refuser de recevoir tous les SMS peut avoir un impact sur votre utilisation de la plateforme MXDrive. Les conducteurs peuvent également se désinscrire des messages spécifiques au conducteur en envoyant un SMS STOP. en réponse à un SMS du conducteur Pour réactiver les SMS, vous pouvez envoyer un SMS à START en réponse à un SMS de confirmation de désabonnement.<br />\n                <br />\n                <strong>Notifications push.</strong> Vous pouvez refuser de recevoir des notifications push via les paramètres de votre appareil. Veuillez noter que le fait de ne plus recevoir de notifications push peut avoir un impact sur votre utilisation de la plateforme MXDrive (par exemple, recevoir une notification indiquant que votre trajet est arrivé).<br />\n                <br />\n                <strong>Informations de profil</strong>. Vous pouvez consulter et modifier certaines informations de compte que vous avez choisi dajouter à votre profil en vous connectant aux paramètres de votre compte et à votre profil.<br />\n                <br />\n                <strong>Informations de localisation.</strong> Vous pouvez empêcher votre appareil de partager des informations de localisation via les paramètres système de votre appareil. Mais si vous le faites, cela pourrait avoir un impact sur la capacité de MXDrive à vous fournir notre gamme complète de fonctionnalités et de services.<br />\n                <br />\n                <strong>Suivi des cookies.</strong> Vous pouvez modifier vos paramètres de cookies sur votre navigateur, mais si vous supprimez ou choisissez de ne pas accepter nos cookies, vous risquez de manquer certaines fonctionnalités de la plateforme MXDrive.<br />\n                <br />\n                <strong>Ne pas suivre.</strong> Votre navigateur peut vous proposer une option « Ne pas suivre », qui vous permet de signaler aux opérateurs de sites Web et dapplications et services Web que vous ne souhaitez pas quils suivent vos activités en ligne. La plate-forme MXDrive ne prend actuellement pas en charge les demandes Do Not Track pour le moment.<br />\n                <br />\n                <strong>Suppression de votre compte.</strong> Si vous souhaitez supprimer votre compte MXDrive, veuillez visiter notre page daccueil de confidentialité. Dans certains cas, nous ne pourrons pas supprimer votre compte, par exemple sil y a un problème avec votre compte lié à la confiance, à la sécurité ou à la fraude. Lorsque nous supprimons votre compte, nous pouvons conserver certaines informations à des fins commerciales légitimes ou pour nous conformer à des obligations légales ou réglementaires. Par exemple, nous pouvons conserver vos informations pour résoudre des réclamations dassurance en cours, ou nous pouvons être obligés de conserver vos informations dans le cadre dune réclamation légale en cours. Lorsque nous conservons ces données, nous le faisons de manière à empêcher leur utilisation à dautres fins.<br />\n                <br />\n                <strong>Droit de savoir.</strong> Vous avez le droit de savoir et de voir quelles données nous avons collectées, notamment :</p>\n                \n                <ul>\n                <li>Les catégories dinformations personnelles que nous avons collectées à votre sujet ;</li>\n                <li>Les catégories de sources à partir desquelles les informations personnelles sont collectées ;</li>\n                <li>La finalité commerciale de la collecte de vos informations personnelles ;</li>\n                <li>Les catégories de tiers avec lesquels nous avons partagé vos informations personnelles ; et</li>\n                <li>Les informations personnelles spécifiques que nous avons collectées à votre sujet.</li>\n                </ul>\n                \n                <p><strong>Droit de suppression.</strong> Vous avez le droit de demander que nous supprimions les informations personnelles que nous avons collectées auprès de vous (et dordonner à nos prestataires de services de faire de même). Il existe cependant un certain nombre dexceptions, qui incluent, sans sy limiter, lorsque les informations sont nécessaires pour nous ou un tiers pour effectuer lune des opérations suivantes :</p>\n                \n                <ul>\n                <li>Terminez votre transaction ;</li>\n                <li>Vous fournir un bien ou un service ;</li>\n                <li>Exécuter un contrat entre nous et vous ;</li>\n                <li>Protégez votre sécurité et poursuivez les responsables de violations ;</li>\n                <li>Réparer notre système en cas de bug ;</li>\n                <li>Protéger vos droits à la liberté dexpression ou ceux des autres utilisateurs ;</li>\n                <li>Participer à des recherches scientifiques, historiques ou statistiques publiques ou évaluées par des pairs dans lintérêt public et dans le respect de toutes les autres lois applicables en matière déthique et de confidentialité ;</li>\n                <li>Se conformer à une obligation légale ; ou</li>\n                <li>Effectuer dautres utilisations internes et licites des informations, compatibles avec le contexte dans lequel vous les avez fournies.</li>\n                </ul>\n                \n                <p><strong>Autres droits.</strong> Vous pouvez demander certaines informations sur notre divulgation dinformations personnelles à des tiers à des fins de marketing direct au cours de lannée civile précédente. Cette demande est gratuite et peut être effectuée une fois par an. Vous avez également le droit de ne pas être victime de discrimination pour lexercice de lun des droits énumérés ci-dessus.<br />\n                <br />\n                <strong>Site Web :</strong> Vous pouvez visiter notre page daccueil relative à la confidentialité pour vous authentifier et exercer vos droits via notre site Web.<br />\n                <br />\n                <strong>Formulaire Web par e-mail :</strong> Vous pouvez nous écrire pour exercer vos droits. Pour répondre à certains droits, nous devrons vérifier votre demande soit en vous demandant de vous connecter et dauthentifier votre compte, soit de vérifier votre identité en fournissant des informations sur vous-même ou sur votre compte. Les agents autorisés peuvent faire une demande en votre nom si vous leur avez donné une procuration légale ou si nous recevons une preuve dautorisation signée, une vérification de votre identité et une confirmation que vous avez donné à lagent lautorisation de soumettre la demande. Délai et format de réponse. Notre objectif est de répondre à une demande d’accès ou de suppression d’un consommateur dans les 45 jours suivant la réception de cette demande. Si nous avons besoin de plus de temps, nous vous informerons par écrit du motif et de la période de prolongation.</p>\n                \n                <p>Données sur les enfants</p>\n                \n                <p>MXDrive nest pas destiné aux enfants et nous ne collectons pas sciemment dinformations personnelles auprès denfants de moins de 13 ans. Si nous découvrons quun enfant de moins de 13 ans nous a fourni des informations personnelles, nous prendrons des mesures pour les supprimer. information. Si vous pensez quun enfant de moins de 13 ans nous a fourni des informations personnelles, veuillez nous contacter</p>\n                \n                <p>Liens vers des sites Web tiers</p>\n                \n                <p>La plateforme MXDrive peut contenir des liens vers des sites Web tiers. Ces sites Web peuvent avoir des politiques de confidentialité différentes des nôtres. Nous ne sommes pas responsables de ces sites Web et nous vous recommandons de consulter leurs politiques. Veuillez contacter directement ces sites Web si vous avez des questions concernant leurs politiques de confidentialité.</p>\n                \n                <p>Modifications apportées à cette politique de confidentialité</p>\n                \n                <p>Nous pouvons mettre à jour cette politique de temps en temps à mesure que la plateforme MXDrive change et que la loi sur la confidentialité évolue. Si nous le mettons à jour, nous le ferons en ligne, et si nous apportons des modifications importantes, nous vous en informerons via la plateforme MXDrive ou par une autre méthode de communication comme le courrier électronique. Lorsque vous utilisez MXDrive, vous acceptez les conditions les plus récentes de cette politique.</p>\n                \n                <p>Contactez-nous</p>\n                \n                <p>Si vous avez des questions ou des préoccupations concernant votre vie privée ou quoi que ce soit dans cette politique, y compris si vous avez besoin daccéder à cette politique dans un format alternatif, nous vous encourageons à nous contacter.</p>', 'Conditions générales', '<h2><strong>Conditions générales</strong></h2>\n\n                <p>CONTRAT DE LICENCE UTILISATEUR FINAL</p>\n\n                <p>Dernière mise à jour le 16 mai 2021</p>\n\n                <p>MXDrive,LLC vous est concédé sous licence (utilisateur final) par MXDrive, LLC, situé au 6255 Towncenter Drive Ste 819, Clemmons, Caroline du Nord 27012, États-Unis (ci-après : concédant de licence), pour une utilisation uniquement selon les termes du présent Contrat de Licence.<br />\n                <br />\n                En téléchargeant lapplication depuis lAppStore dApple et Google Play, ainsi que toute mise à jour de celle-ci (comme le permet le présent contrat de licence), vous indiquez que vous acceptez dêtre lié par tous les termes et conditions du présent contrat de licence et que vous acceptez ce Contrat de licence.<br />\n                <br />\n                Les parties au présent Contrat de licence reconnaissent quApple et/ou Google Play ne sont pas partie au présent Contrat de licence et ne sont liés par aucune disposition ou obligation concernant lApplication, telles que la garantie, la responsabilité, la maintenance et le support de celle-ci. MXDrive, LLC, et non Apple ou Google Play, est seul responsable de lapplication sous licence et de son contenu.<br />\n                <br />\n                Le présent Contrat de licence ne peut pas prévoir de règles dutilisation de lApplication qui seraient en conflit avec les dernières Conditions dutilisation de lApp Store. MXDrive, LLC reconnaît avoir eu la possibilité de consulter lesdites conditions et le présent accord de licence nest pas en conflit avec elles.<br />\n                <br />\n                Tous les droits qui ne vous sont pas expressément accordés sont réservés.</p>\n\n                <p>1. LA DEMANDE</p>\n\n                <p>MXDrive (ci-après : Application) est un logiciel qui constitue une plate-forme de covoiturage - et personnalisé pour les appareils mobiles Apple et Android. Il est utilisé pour connecter les coureurs aux conducteurs pour se rendre dun point A à un point B en appuyant simplement sur un bouton.<br />\n                <br />\n                LApplication nest pas conçue pour se conformer aux réglementations spécifiques à lindustrie (Health Insurance Portability and Accountability Act (HIPAA), Federal Information Security Management Act (FISMA), etc.), donc si vos interactions sont soumises à de telles lois, vous ne pouvez pas utilisez cette application. Vous ne pouvez pas utiliser lApplication dune manière qui violerait la loi Gramm-Leach-Bliley (GLBA).</p>\n\n                <p>2. PORTÉE DE LA LICENCE</p>\n\n                <p>2.1 Vous disposez dune licence non transférable, non exclusive et ne pouvant faire lobjet dune sous-licence pour installer et utiliser lapplication sous licence sur tout produit de marque Apple ou Google que vous (utilisateur final) possédez ou contrôlez et comme autorisé par le Règles dutilisation énoncées dans cette section et dans les conditions dutilisation de lApp Store, à lexception du fait que cette application sous licence peut être consultée et utilisée par dautres comptes associés à vous (utilisateur final, lacheteur) via le partage familial ou lachat en volume.<br />\n                <br />\n                2.2 Cette licence régira également toutes les mises à jour de lApplication fournies par le Concédant qui remplacent, réparent et/ou complètent la première Application, à moins quune licence distincte ne soit fournie pour une telle mise à jour, auquel cas les termes de cette nouvelle licence prévaudront.<br />\n                <br />\n                2.3 Vous ne pouvez pas partager ou mettre lApplication à la disposition de tiers (sauf dans la mesure permise par les Conditions générales dApple et avec le consentement écrit préalable de MXDrive, LLC), vendre, louer, prêter ou redistribuer de toute autre manière lApplication. <br />\n                <br />\n                2.4 Vous ne pouvez pas effectuer dingénierie inverse, traduire, désassembler, intégrer, décompiler, intégrer, supprimer, modifier, combiner, créer des œuvres dérivées ou des mises à jour, adapter ou tenter de dériver le code source de lApplication, ou toute partie de celle-ci (sauf avec consentement écrit préalable de MXDrive, LLC).<br />\n                <br />\n                2.5 Vous ne pouvez pas copier (sauf lorsque cela est expressément autorisé par cette licence et les règles dutilisation) ou modifier lapplication ou des parties de celle-ci. Vous pouvez créer et stocker des copies uniquement sur les appareils que vous possédez ou contrôlez à des fins de sauvegarde conformément aux termes de cette licence, aux conditions de service de lApp Store et à tous les autres termes et conditions applicables à lappareil ou au logiciel utilisé. Vous ne pouvez supprimer aucun avis de propriété intellectuelle. Vous reconnaissez quaucun tiers non autorisé ne peut avoir accès à ces copies à tout moment. <Br />\n                <br />\n                2.6 Les violations des obligations mentionnées ci-dessus, ainsi que la tentative dune telle violation, peuvent être soumises à des poursuites et à des dommages. <Br />\n                <br />\n                2.7 Licensor se réserve le droit de modifier les termes et conditions de licence. <Br />\n                <br />\n                2.8 Rien dans cette licence ne doit être interprété pour restreindre les termes tiers. Lorsque vous utilisez lapplication, vous devez vous assurer que vous respectez les termes et conditions tiers applicables. </p>\n\n                <p>3. Exigences techniques </p>\n\n                <p> 3.1 Le licence tente de maintenir lapplication à jour afin quil se conforme aux versions modifiées / nouvelles du micrologiciel et du nouveau matériel. Vous navez pas le droit de réclamer une telle mise à jour. <Br />\n                <br />\n                3.2 Vous reconnaissez quil est de votre responsabilité de confirmer et de déterminer que le périphérique de lutilisateur final de lapplication sur lequel vous avez lintention dutiliser lapplication satisfait les spécifications techniques mentionnées ci-dessus. <Br />\n                <br />\n                3.3 Le licence se réserve le droit de modifier les spécifications techniques telles quelle le juge appropriée à tout moment. </p>\n\n                <p>4. Maintenance et support </p>\n\n                <p> 4.1 Le concédent est seul responsable de fournir des services de maintenance et de support pour cette application sous licence. Vous pouvez atteindre le concédant de licence à ladresse e-mail répertoriée dans lApp Store ou Google Play Présentation de cette application sous licence. <Br />\n                <br />\n                4.2 MXDrive, LLC et lutilisateur final reconnaissent quApple et / Google Play nont aucune obligation de fournir des services de maintenance et de soutien en ce qui concerne lapplication sous licence. </p>\n\n                <p>5. Utilisation des données </p>\n\n                <p> Vous reconnaissez que le concédant de licence pourra accéder et ajuster votre contenu de demande de licence téléchargé et vos informations personnelles, et que lutilisation par le concédant de ces documents et informations est soumise à vos accords juridiques avec la politique de confidentialité du concédant et du concédant: https://mxdrivex.atharvatek.com/privacy. </p>\n\n                <p>6. Contributions générées par lutilisateur </p>\n\n                <p> Lapplication peut vous inviter à discuter, à contribuer ou à participer à des blogs, des babillards électroniques, des forums en ligne et dautres fonctionnalités, et peut vous offrir la possibilité de créer, soumettre, publier, afficher, transmettre, exécuter, publier , distribuer ou diffuser du contenu et des matériaux à nous ou dans lapplication, y compris, mais sans sy limiter, le texte, les écrits, la vidéo, laudio, les photographies, les graphiques, les commentaires, les suggestions ou les informations personnelles ou dautres documents (collectivement, \"contributions\"). Les contributions peuvent être visibles par dautres utilisateurs de lapplication et via des sites Web ou des applications tiers. En tant que tels, toute contribution que vous transmettez peut être traitée comme non confidentielle et non propriétaire. Lorsque vous créez ou mettez à disposition des contributions, vous représentez et garantissez ainsi que: <Br />\n                <br />\n                1. La création, la distribution, la transmission, laffichage publique ou la performance, et laccès, le téléchargement ou la copie de vos contributions nenfreindront pas et ne violeront pas les droits de propriété, y compris mais sans sy limiter ou droits moraux de tout tiers. <Br />\n                <br />\n                2. Vous êtes le créateur et le propriétaire de ou avez les licences, droits, consentements, versions et autorisations nécessaires à utiliser et à nous autoriser, lapplication et dautres utilisateurs de lapplication pour utiliser vos contributions de toute manière envisagée par lapplication et ces termes dutilisation. <Br />\n                <br />\n                3. Vous avez le consentement écrit, la libération et / ou lautorisation de chaque personne individuelle identifiable dans vos contributions pour utiliser le nom ou la ressemblance ou chaque personne identifiable de ces personnes identifiables pour permettre linclusion et lutilisation de vos contributions de quelque manière que ce soit envisagée par lapplication et ces conditions dutilisation. <Br />\n                <br />\n                4. Vos contributions ne sont pas fausses, inexactes ou trompeuses. <Br />\n                <br />\n                5. Vos contributions ne sont pas une publicité non sollicitée ou non autorisée, du matériel promotionnel, des schémas pyramidaux, des lettres de chaîne, du spam, des envois de masse ou dautres formes de sollicitation. <Br />\n                <br />\n                6. Vos contributions ne sont pas obscènes, obscènes, lascives, sales, violentes, harcelantes, diffamées, calomnieuses ou autrement répréhensibles (telles que déterminées par nous). <Br />\n                <br />\n                7. Vos contributions ne ridiculisent, ne se moquent pas, ne dénigrent pas, ne sont pas en train de vous en abuser. <Br />\n                <br />\n                8. Vos contributions ne sont pas utilisées pour harceler ou menacer (au sens juridique de ces termes) aucune autre personne et promouvoir la violence contre une personne ou une classe de personnes. <Br />\n                <br />\n                9. Vos contributions ne violent aucune loi, réglementation ou règle applicable. <Br />\n                <br />\n                10. Vos contributions ne violent pas les droits de confidentialité ou de publicité dun tiers. <Br />\n                <br />\n                11. Vos contributions ne contiennent aucun matériel qui sollicite des informations personnelles de toute personne de moins de 18 ans ou exploite les personnes de moins de 18 ans de manière sexuelle ou violente. <Br />\n                <br />\n                12. Vos contributions ne violent aucune loi applicable concernant la pornographie juvénile, ou autrement destinée à protéger la santé ou le bien-être des mineurs. <Br />\n                <br />\n                13. Vos contributions nincluent pas de commentaires offensants liés à la race, à lorigine nationale, au sexe, aux préférences sexuelles ou au handicap physique. <Br />\n                <br />\n                14. Vos contributions ne violent pas autrement, ni ne sont liées à des éléments qui violent, toute disposition des présentes conditions dutilisation, ni toute loi ou réglementation applicable. <Br />\n                <br />\n                Toute utilisation de la demande en violation de ce qui précède viole ces conditions dutilisation et peut entraîner, entre autres, la résiliation ou la suspension de vos droits dutiliser la demande. </p>\n\n                <p>7. Licence de contribution </p>\n\n                <p> En publiant vos contributions à toute partie de la demande ou en rendant les contributions accessibles à la demande en reliant votre compte à partir de la demande à lun de vos comptes de réseautage social, vous accordez automatiquement, et vous représentez et garantissez que vous avez le droit de Accordez-nous, un peu restreint, illimité, irrévocable, perpétuel, non exclusif, transférable, libre de droits, entièrement payé, à droite mondiale et licence pour héberger, utiliser la copie, reproduire, divulguer, vendre, revendre, publier, une plâtre large , retiser, archiver, magasin, cache, afficher publiquement, reformater, traduire, transmettre, extraire (en tout ou en partie), et distribuer de telles contributions (y compris, sans limitation, votre image et votre voix) à quelque fin que ce soit, la publicité commerciale ou autrement , et préparer des œuvres dérivées ou incorporer dans dautres œuvres, telles que les contributions, et accorder et autoriser les subli que ce qui précède. Lutilisation et la distribution peuvent se produire dans tous les formats multimédias et à travers tous les canaux multimédias. <Br />\n                <br />\n                Cette licence sappliquera à tous les formulaires, médias ou technologies désormais connus ou par la suite, et comprend notre utilisation de votre nom, nom de lentreprise et nom de franchise, selon lesquels vous êtes applicable, et lune des marques, des marques, des noms commerciaux, des logos, et les images personnelles et commerciales que vous fournissez. Vous renoncez à tous les droits moraux dans vos contributions, et vous garantissez que les droits moraux nont pas été autrement affirmés dans vos contributions. <Br />\n                <br />\n                Nous naffirmons aucune propriété sur vos contributions. Vous conservez la pleine propriété de toutes vos contributions et de tous les droits de propriété intellectuelle ou dautres droits de propriété associés à vos contributions. Nous ne sommes pas responsables des déclarations ou des représentations de vos contributions fournies par vous dans nimporte quel domaine de lapplication. Vous êtes seul responsable de vos contributions à la demande et vous acceptez expressément de nous exonérer de toutes les responsabilités et de vous abstenir de toute action en justice contre nous concernant vos contributions. <Br />\n                <br />\n                Nous avons le droit, à notre seule et absolue discrétion, (1) de modifier, de refuser ou de modifier autrement les contributions; (2) pour recommandé toute contribution pour les placer dans des endroits plus appropriés dans lapplication; et (3) pré-écran ou supprimer toute contribution à tout moment et pour quelque raison que ce soit, sans préavis. Nous navons aucune obligation de surveiller vos contributions. </p>\n\n                <p>8. Responsabilité </p>\n\n                <P> 8.1 La responsabilité du concédant en cas de violation des obligations et du délit est limitée à lintention et à la négligence grave. Ce nest quen cas de violation des tâches contractuelles essentielles (obligations cardinales), le concédant est également responsable en cas dune légère négligence. Dans tous les cas, la responsabilité est limitée aux dommages prévisibles et contractuellement typiques. La limitation mentionnée ci-dessus ne sapplique pas aux blessures à la vie, aux membres ou à la santé. <Br />\n                <br />\n                8.2 Le concédant de licence ne prend aucune responsabilité ou responsabilité des dommages causés en raison dune violation des fonctions conformément à larticle 2 du présent accord. Pour éviter la perte de données, vous devez utiliser les fonctions de sauvegarde de lapplication dans la mesure autorisée par les termes et conditions dutilisation tierces applicables. Vous savez quen cas de modifications ou de manipulations de la demande, vous naurez pas accès à une demande agréée. </p>\n\n                <p>9. Garantie </p>\n\n                <p> 9.1 Le concédant garantit que lapplication est gratuite de logiciels espions, de chevaux de Troie, de virus ou de tout autre logiciel malveillant au moment de votre téléchargement. Le concédant garantit que lapplication fonctionne comme décrit dans la documentation utilisateur. <Br />\n                <br />\n                9.2 Aucune garantie nest fournie pour lapplication qui nest pas exécutable sur lappareil, qui a été modifiée sans autorisation, gérée de manière inappropriée ou culpabilité, combinée ou installée avec un matériel ou un logiciel inapproprié, utilisé avec des accessoires inappropriés, indépendamment de vous-même ou par des tiers, ou sil y a dautres raisons en dehors des logiciels MI, la sphère dinfluence de LLC qui affecte lexécutabilité de lapplication. <Br />\n                <br />\n                9.3 Vous devez inspecter lapplication immédiatement après son installation et informer MXDrive, LLC sur les problèmes découverts sans délai par e-mail fourni dans les réclamations du produit. Le rapport des défauts sera pris en considération et a en outre étudié sil a été envoyé par la poste dans une période de quatre-vingt-dix (90) jours après la découverte. <Br />\n                <br />\n                9.4 Si nous confirmons que lapplication est défectueuse, MXDrive, LLC se réserve un choix pour remédier à la situation en résolvant le défaut ou la livraison de remplacement. <Br />\n                <br />\n                9.5 En cas de non-non-conformité de la demande à toute garantie applicable, vous pouvez en informer lapplication-opérateur de lapplication et votre prix dachat de demande vous sera remboursé. Dans la mesure maximale autorisée par la loi applicable, lopérateur dapplication-stockage naura aucune autre obligation de garantie en ce qui concerne lapplication et toute autre perte, réclamation, dommages-intérêts, passifs, dépenses et coûts attribuables à toute négligence pour respecter tout Garantie. <Br />\n                <br />\n                9.6 Si lutilisateur est un entrepreneur, toute réclamation basée sur les défauts expire après une période de limitation statutaire sélevant à douze (12) mois après la mise à la disposition de lutilisateur de lapplication. Les périodes statutaires de limitation données par la loi sappliquent aux utilisateurs qui sont consommateurs. </p>\n\n                <p>10. Réclamations du produit </p>\n\n                <p> MXDrive, LLC et lutilisateur final reconnaissent que MXDrive, LLC, et non Apple, est chargé de répondre à toute réclamation de lutilisateur final ou de tout tiers relatif à la demande agréée ou à la possession de lutilisateur final et / ou utiliser cette application sous licence, y compris, mais sans sy limiter: <r />\n                <br />\n                (i) Réclamations de responsabilité des produits; <Br />\n                <br />\n                (ii) toute réclamation selon laquelle la demande agréée ne se conforme pas à toute exigence légale ou réglementaire applicable; et <br />\n                <br />\n                (iii) les réclamations résultant de la protection des consommateurs, de la vie privée ou de la législation similaire, y compris dans le cadre de lutilisation de votre demande agréée. </p>\n\n                <p>11. Conformité juridique </p>\n\n                <p> Vous représentez et garantissez que vous nêtes pas situé dans un pays soumis à un embargo du gouvernement américain, ou qui a été désigné par le gouvernement américain comme un pays de \"soutien terroriste\"; et que vous nêtes répertorié sur aucune liste du gouvernement américain des parties interdites ou restreintes. </p>\n\n                <p>12. Coordonnées </p>\n\n                <p> Pour les enquêtes générales, les plaintes, les questions ou les réclamations concernant la demande agréée, veuillez contacter: <r />>\n                <br />\n                <strong> MXDrive, LLC <Br />\n                6255 TownCenter Drive Ste 819 <Br />\n                Clemmons, NC 27012 <Br />\n                États-Unis <Br />\n                biz@miracuves.com </strong> </p>\n\n                <p> 13. Terminaison </p>\n\n                <p> La licence est valide jusquà ce quelle soit terminée par MXDrive, LLC ou par vous. Vos droits en vertu de cette licence se termineront automatiquement et sans préavis de MXDrive, LLC si vous ne respectez aucun terme de cette licence. À la fin de la licence, vous devez arrêter toute utilisation de la demande et détruire toutes les copies, complètes ou partielles, de la demande. </p>\n\n                <p> 14. Conditions des accords et bénéficiaires tiers </p>\n\n                <p> MXDrive, LLC représente et justifie que MXDrive, LLC se conformera aux conditions de laccord tierces applicables lors de lutilisation de lapplication sous licence. <Br />\n                <br />\n                Conformément à la section 9 des \"Instructions pour les conditions minimales du contrat de licence de lutilisateur final du développeur\", les filiales dApple et dApple seront des bénéficiaires tiers du présent contrat de licence utilisateur final et - lors de votre acceptation des termes et conditions de la présente licence Accord, Apple aura le droit (et sera réputé avoir accepté le droit) pour appliquer ce contrat de licence dutilisateur final contre vous en tant que bénéficiaire tiers de celui-ci. </p>\n\n                <p> 15. Droits de propriété intellectuelle </p>\n\n                <P> MXDrive, LLC et lutilisateur final reconnaissent que, en cas de réclamation de tiers que la demande agréée ou la possession et lutilisation de cette demande de licence infligées aux droits de propriété intellectuelle du tiers, MI, MXDrive, LLC, et non Apple, sera seul responsable de lenquête, de la défense, du règlement et de la libération ou de toutes ces réclamations dinfraction de propriété intellectuelle. </p>\n\n                <p> 16. Loi applicable </p>\n\n                <p> Cet accord de licence est régi par les lois de lÉtat de Caroline du Nord à lexclusion de ses règles de conflits de droit. </p>\n\n                <p> 17. Divers </p>\n\n                <p> 17.1 Si lun des termes du présent accord doit être ou devenir invalide, la validité des dispositions restantes ne sera pas affectée. Les termes non valides seront remplacés par des valides formulées dune manière qui atteindra lobjectif principal. <Br />\n                <br />\n                17.2 Les accords de garantie, les modifications et les modifications ne sont valables que sils sont établis par écrit. La clause précédente ne peut être annulée quen écriture. </p>', 'conformité', '<h3> <strong> Opportunité demploi égal et politique de non-discrimination </strong> </h3>\n\n                <h3> i. Présentation et portée </h3>\n\n                <p> MXDrive, LLC de 6255 TownCenter Drive Ste 819, Clemmons, Caroline du Nord 27012, a établi une politique de non-discrimination et dégalité des chances demploi (\"EEO\"). Cette politique EEO sapplique à tous les aspects de la relation entre les Softwares, LLC et ses employés, y compris, mais sans sy limiter, lemploi, le recrutement, les publicités pour lemploi, lembauche et le licenciement, la rémunération, la mission, la classification des employés, la cessation, la mise à niveau, Promotions, transfert, formation, conditions de travail, salaire et administration salariale, et avantages sociaux et application des politiques. Ces politiques sappliquent aux entrepreneurs indépendants, aux employés temporaires, à tout le personnel travaillant sur les lieux et à toute autre personne ou entreprise qui fait des affaires pour ou avec MXDrive, LLC. Tout utilisateur qui a violé cette interdiction perdra laccès à la plate-forme MXDrive, LLC. Les lois applicables dans certaines juridictions peuvent exiger et / ou permettre la prestation de services par et pour le bénéfice dune catégorie spécifique de personnes. Dans de telles juridictions, les services fournis conformes à ces lois et les conditions applicables pertinentes sont autorisées en vertu de la présente politique. </p>\n\n                <h3> ii. Politiques </H3>\n\n                <p>1. Discrimination. </p>\n\n                <P> MXDrive, LLC ne tolérera en aucune circonstance, sans exception, une forme de discrimination fondée sur la race, la croyance, la religion, la couleur, lâge, linvalidité, la grossesse, létat matrimonial, létat parental, lorientation sexuelle, lexpression des sexes, Identité de genre, statut de vétéran, statut militaire, statut de victime de violence domestique, origine nationale, affiliation politique, sexe, caractéristiques génétiques prédisposantes ou emplacement géographique et tout autre statut protégé par la loi. Cette liste nest pas exhaustive. Pour les personnes qualifiées handicapées, MXDrive, LLC fera tout leur possible pour fournir des logements en milieu de travail raisonnables conformes aux lois applicables. </p>\n\n                <p> La discrimination dans la prestation de services de transport est strictement interdite </p>\n\n                <p> Les moteurs et les employés associés sont tenus de connaître les interdictions de non-discrimination. MXDrive, LLC ne tolérera pas les adaptations publiques, qui comprend les services de taxigs pratiques discriminatoires illégales pour nier, directement ou indirectement, toute personne la jouissance complète et égale des biens, services, installations, privilèges, avantages et adaptations de tout endroit des logements publics (y compris les services de taxi) entièrement ou partiellement pour une raison discriminatoire basée sur le lieu de résidence ou dentreprise. </p>\n\n                <p> Conduite discriminatoire interdite: </p>\n\n                <p> MXDrive, LLC reconnaît que les conducteurs associés ne doivent jamais discriminer certains clients en ne les ramassant pas, ne les prenant pas là où ils souhaitent aller ou en les traitant avec moins de respect en fonction des caractéristiques ou des traits protégés énumérés ci-dessus. Des exemples spécifiques de conduite discriminatoire, incluent les éléments suivants: <r />\n                <br />\n                Ne pas ramasser un passager sur la base dune caractéristique ou dun trait protégé, notamment en ne prenant pas un passager avec un animal dassistance · demandant quun passager sorte dun taxi sur la base dune caractéristique ou dun trait protégée · en utilisant un langage dérogatoire ou harcelant sur la base dune caractéristique ou dun trait protégé · refuser un ramassage dans une zone géographique spécifique. </p>\n\n                <p> Discrimination géographique: </p>\n\n                <P> MXDrive, LLC ne tolère pas la discrimination géographique et reconnaît à quel point il est important damener le client à la destination demandée sans discriminer ce client en fonction de lendroit où il souhaite aller. Tous les moteurs, employés, gestionnaires, parties prenantes et agents associés de MXDrive, LLC se conformeront à ces politiques anti-discrimination. Dans certains cas, les lois et réglementations locales peuvent fournir des protections plus importantes que celles décrites dans cette politique. </p>\n\n                <p>2. Harcèlement </p>\n\n                <p> MXDrive, LLC sengage à fournir un environnement de travail sans harcèlement. Tout comportement indésirable et offensant pour le destinataire, ce qui crée un environnement de travail intimidant, hostile ou humiliant pour cette personne viole la politique de MXDrive, LLC. Le harcèlement peut se produire entre les membres du sexe opposé ou le même sexe. Le harcèlement, verbal ou non verbal, explicite ou implicite, basé sur le sexe, la race, lethnicité, lorigine nationale, lâge, lâge, la religion ou toute autre caractéristique légalement protégée ne seront pas tolérés. Tous les employés, y compris les superviseurs, dautres membres du personnel de gestion et les entrepreneurs indépendants, sont tenus de respecter cette politique. Aucune personne ne sera affectée négativement dans lemploi avec MXDrive, LLC en raison de la portion de plaintes de harcèlement. </p>\n\n                <p>3. Harcèlement sexuel </p>\n\n                <p> Les avancées sexuelles non les bienvenues, les demandes de faveurs sexuelles et dautres conduites verbales ou physiques de nature sexuelle constituent du harcèlement lorsque (1) la soumission à une telle conduite est faite explicitement ou implicitement un terme ou une condition demploi; (2) la soumission ou le rejet ou le rejet dune telle conduite par un individu est utilisée comme base pour les décisions demploi, la promotion, le transfert, la sélection de formation, les évaluations du rendement, les avantages sociaux ou dautres termes et conditions demploi; ou (3) une telle conduite a le but ou leffet de la création dun environnement de travail intimidant, hostile ou offensif ou interfère considérablement avec le rendement du travail dun employé. MXDrive, LLC interdit une conduite inappropriée de nature sexuelle au travail, sur les entreprises de lentreprise ou lors dévénements parrainés par lentreprise, y compris les suivants: commentaires, blagues, langage dégradant, objets sexuellement suggestifs, livres ou toute forme de média électronique ou dans formulaire dimpression. Le harcèlement sexuel est interdit de savoir sil se situe entre des membres du sexe opposé ou des membres du même sexe. </p>\n\n                <p>4. Déclaration sur laction positive </p>\n\n                <p> Un programme daction positive a été développé lorsque MXDrive, LLC cherche à augmenter la représentation et la participation des minorités </p>\n\n                <p>5. Discrimination et harcèlement de signalement </p>\n\n                <p> Si un employé estime quil a été harcelé comme décrit dans cette politique, il doit immédiatement déposer des griefs avec: Grieval Department, 6255 TownCenter Drive, Ste 819, Clemmons NC 27012, ou par e-mail à Compliance @ MXDrive. nous. Une fois laffaire signalée, elle sera rapidement étudiée et toute mesure corrective sera prise lorsquelle sera jugée appropriée. Toutes les plaintes ou harcèlement illégal en vertu de cette politique ou autrement seront traités de manière aussi confidentielle que possible. Les rapports en temps opportun sont encouragés à empêcher la réapparition ou à répondre autrement au comportement qui viole cette politique ou la loi. Les retards dans la déclaration dune plainte peuvent limiter le type defficacité dune réponse par MXDrive, LLC. La procédure de signalement des incidents de comportement discriminatoire ou de harcèlement nest pas destiné à empêcher le droit de tout employé de demander un recours en vertu de la loi de lÉtat ou de la loi disponible en rapportant immédiatement laffaire à lÉtat ou à lagence fédérale appropriée. </p>\n\n                <p>6. Représailles </p>\n\n                <p> représailles contre toute personne associée à MXDrive, LLC qui rapporte des cas de harcèlement - quil soit directement ou indirectement impliquée - est en violation des politiques de MXDrive, LLC. Tous les incidents signalés sont supposés être faits de bonne foi. Toutes les allégations qui sont prouvées fausses seront traitées comme une affaire sérieuse. </p>\n\n                <p>7. Mesures disciplinaires de harcèlement </p>\n\n                <p> Tout employé adoptant des comportements qui viole cette politique sera soumis à des mesures disciplinaires, y compris la résiliation possible de lemploi, si une loi réelle a été violée ou non. </p>\n\n                <p>8. Remèdes </p>\n\n                <p> Remèdes pour tout cas de discrimination en matière demploi vérifiée, quil soit causé intentionnellement ou par des actions qui ont un effet discriminatoire, peuvent inclure le rémunération en arrière, lembauche, la promotion, la réintégration, le salaire avant, lhébergement raisonnable ou dautres actions jugées appropriées par les logiciels de lIM, SARL. Les recours peuvent également inclure le paiement des honoraires davocat, des frais de témoin expert, des frais de justice et dautres frais juridiques applicables. </p>\n\n                <p>9. Mise en œuvre de la politique </p>\n\n                Le PDG de MXDrive, Lynn Graham, soutient pleinement la mise en œuvre de cette politique à compter du 19 avril 2021. </p>', 'dmv check', '<h2> <strong> dmv chèque et vérification des antécédents consentement </strong> </h2>\n\n                <p> </p>\n\n                <p> Consentement pour demander le dossier de conduite </p>\n\n                <p> Je comprends que MXDrive, LLC. («Société») utilisera Checkr., («Checkr, Inc.») pour obtenir un enregistrement des véhicules à moteur dans le cadre du processus de candidature pour être un conducteur sur la plate-forme MXDrive (un «conducteur»). Je comprends également que si elle est acceptée en tant que conducteur, dans la mesure permise par la loi, la société peut obtenir dautres rapports de Checkr Inc. afin de mettre à jour, renouveler ou étendre mon statut de conducteur. Je donne par la présente la permission aux logiciels MI dobtenir mon dossier de conduite dÉtat (également connu sous le nom de dossier de véhicule à moteur ou MVR) conformément à la loi fédérale sur la protection de la vie privée («DPPA») et à la loi de lÉtat applicable. Je reconnais et comprends que mon dossier de conduite est un rapport de consommation qui contient des informations sur les enregistrements publics. Jautorise, sans réservation de partie ou dagence contactée par la société ou Checkr Inc. pour fournir à lentreprise une copie de mon dossier de conduite dÉtat. Cette autorisation restera dans le dossier par la Société pour la durée de mon temps en tant que chauffeur et servira dautorisation continue à lentreprise pour obtenir mon dossier de conduite dÉtat à tout moment pendant que je suis un chauffeur. </p>\n\n                <p> Consentement pour demander le rapport des consommateurs ou les informations sur le rapport des consommateurs denquête </p>\n\n                <p> Je comprends que MXDrive, LLC. («Company») utilisera Checkr Inc., </p>\n\n                <p> 1 Montgomery St, Ste 2000, San Francisco, CA 94104 </p>\n\n                <p> Pour obtenir un rapport de consommation ou un rapport de consommation dinvestigation dans le cadre du processus de demande, être un pilote sur la plate-forme MXDrive (un «conducteur»). Je comprends également que si elle est acceptée en tant que conducteur, dans la mesure permise par la loi, la société peut obtenir dautres rapports de Checkr afin de mettre à jour, de renouveler ou détendre mon statut de conducteur. </p>\n\n                <p> Je comprends que lenquête de CheckR, Inc («Checkr») peut inclure lobtention dinformations concernant mon casier judiciaire, sous réserve de toute limitation imposée par la loi fédérale et étatique applicable. Je comprends que ces informations peuvent être obtenues par contact direct ou indirect avec des agences publiques ou dautres personnes qui peuvent avoir de telles connaissances. </p>\n\n                <p> La nature et la portée de lenquête recherchée comprendront une vérification des antécédents criminels et une trace SSN. </p>\n\n                <p> Je reconnais la réception du résumé ci-joint de mes droits en vertu de la Fair Credit Reporting Act et, comme lexige la loi, tout résumé des droits liés (collectivement «Résumé des droits»). </p>\n\n                <p> Ce consentement naffectera pas ma capacité à remettre en question ou à contester lexactitude des informations contenues dans un rapport. Je comprends que si lentreprise prend la décision conditionnelle de me disqualifier basée sur tout ou en partie sur mon rapport, je recevrai une copie du rapport et une autre copie des résumés des droits, et si je ne suis pas daccord avec lexactitude de la prétendue disqualification Informations Dans le rapport, je dois informer lentreprise dans les cinq jours ouvrables suivant ma réception du rapport que je conteste lexactitude de ces informations avec Checkr. </p>\n\n                <p> Je consentement à cette enquête et autorise la société à obtenir un rapport sur mes antécédents. </p>\n\n                <p> Afin de vérifier mon identité aux fins de la préparation du rapport, je publie volontairement ma date de naissance, le numéro de sécurité sociale et les autres informations et je comprends pleinement que toutes les décisions sont basées sur des raisons non discriminatoires légitimes. </ P >\n\n                <p> Le nom, ladresse et le numéro de téléphone de lunité la plus proche de lagence de rapports de consommation désignée pour gérer les demandes de renseignements concernant le rapport des consommateurs denquête est: </p>\n\n                <p> <strong> Checkr, Inc. <Br />\n                1 Montgomery St, Ste 2000, San Francisco, CA 94104 <Br />\n                844-824-3257 </strong> <br />\n                <br />\n                <Strong> California, Maine, Massachusetts, Minnesota, New Jersey & Oklahoma Demandeurs: </strong> Jai le droit de demander une copie de tout rapport obtenu par la société à partir de Checkr en vérifiant la case. (Vérifiez uniquement si vous souhaitez recevoir une copie) </p>\n\n                <p> Les candidats de New York uniquement </p>\n\n                <p> Je reconnais également que j’ai reçu la copie ci-jointe de l’article 23A de la loi sur la correction de New York. Je comprends en outre que je peux demander une copie de tout rapport de consommation denquête en contactant Checkr. Je comprends en outre que je serai conseillé si des chèques supplémentaires sont demandés et ont fourni le nom et ladresse de lagence de rapport de consommation. </p>\n\n                <p> California Demandeurs et résidents </p>\n\n                <p> Si je postule en Californie ou que je réside en Californie, je comprends que jai le droit dinspecter visuellement les fichiers me concernant maintenus par une agence de rapport de consommation denquête pendant les heures normales de bureau et sur un préavis raisonnable. Linspection peut être effectuée en personne et, si japparais en personne et fournisse une identification appropriée; Jai droit à une copie du dossier moyennant des frais de ne pas dépasser les coûts réels de la duplication. Jai le droit dêtre accompagné dune personne de mon choix, qui fournira une identification raisonnable. Linspection peut également être effectuée par courrier certifié si je fais une demande écrite, avec une identification appropriée, pour que des copies soient envoyées à un destinataire spécifié. Je peux également demander un résumé des informations à fournir par téléphone si je fais une demande écrite, avec une identification appropriée pour la divulgation téléphonique, et la charge de péage, le cas échéant, pour lappel téléphonique est prépayé par ou directement facturé. Je comprends en outre que lagence de déclaration des consommateurs dinvestigation doit fournir du personnel formé pour mexpliquer lune des informations me fournies; Je recevrai de lagence de reporting des consommateurs denquête une explication écrite de toute information codée contenue dans les fichiers maintenus sur moi. «Une identification appropriée» telle que utilisée dans ce paragraphe signifie que les informations sont généralement jugées suffisantes pour identifier une personne, y compris des documents tels quun permis de conduire valide, un numéro de compte de sécurité sociale, une carte didentification militaire et des cartes de crédit. Je comprends que je peux accéder au site Web suivant Checkr.com Privacy pour afficher les pratiques de confidentialité de Checkr, y compris les informations concernant la préparation et le traitement de Checkr des rapports de consommation denquête et de conseils quant à la question de savoir si mes informations personnelles seront envoyées en dehors des États-Unis ou de ses territoires .</p>\n\n                <p> Un résumé de vos droits en vertu de la Fair Credit Reporting Act </p>\n\n                <p> La Federal Fair Credit Reporting Act (FCRA) favorise lexactitude, léquité et la confidentialité des informations dans les dossiers des agences de rapport de consommation. Il existe de nombreux types dagences de déclaration des consommateurs, notamment des bureaux de crédit et des agences spécialisées (telles que les agences qui vendent des informations sur les antécédents de rédaction de chèques, les dossiers médicaux et les dossiers de lhistorique de location). Voici un résumé de vos principaux droits en vertu de la FCRA. <strong> Pour plus dinformations, y compris des informations sur les droits supplémentaires, rendez-vous sur www.consumerfinance.gov/Learnmore ou écrivez à: </strong> </p>\n\n                <p> Bureau de protection financière des consommateurs <br />\n                1700 G Street NW, Washington, DC 20552 </p>\n\n                <p> </p>\n\n                <ul>\n                <li> Vous devez vous dire si des informations dans votre fichier ont été utilisées contre vous. Quiconque utilise un rapport de crédit ou un autre type de rapport de consommation pour refuser votre demande de crédit, dassurance ou demploi - ou pour prendre une autre action défavorable contre vous - doit vous le dire et doit vous donner le nom, ladresse et le numéro de téléphone de lagence qui a fourni les informations. </li>\n                <li> Vous avez le droit de savoir ce quil y a dans votre fichier. Vous pouvez demander et obtenir toutes les informations vous concernant dans les fichiers dune agence de rapports de consommation (votre «divulgation de fichiers»). Vous devrez fournir une identification appropriée, qui peut inclure votre numéro de sécurité sociale. Dans de nombreux cas, la divulgation sera gratuite. Vous avez droit à une divulgation de fichiers gratuite si:\n                <ol>\n                <li> Une personne a pris des mesures défavorables contre vous en raison des informations dans votre rapport de crédit; </li>\n                <li> Vous êtes victime dun vol didentité et placez une alerte de fraude dans votre dossier; </li>\n                <li> Votre fichier contient des informations inexactes à la suite dune fraude; </li>\n                <li> Vous êtes sous aide publique; </li>\n                <li> Vous êtes au chômage, mais vous attendez à demander un emploi dans les 60 jours. </li>\n                </ol>\n                En outre, tous les consommateurs ont droit à une divulgation gratuite tous les 12 mois après la demande de chaque bureau de crédit national et des agences de rapports de consommateurs spécialisées à léchelle nationale. Voir www.consumerfinance.gov/Learnmore pour plus dinformations. </li>\n                <li> Vous avez le droit de demander une cote de crédit. Les cotes de crédit sont des résumés numériques de votre solvabilité sur la base des informations des bureaux de crédit. You may request a credit score from consumer reporting agencies that create scores or distribute scores used in residential real property loans, but you will have to pay for it. In some mortgage transactions, you will receive credit score information for free from the mortgage lender.</li>\n                <li>You have the right to dispute incomplete or inaccurate information. If you identify information in your file that is incomplete or inaccurate, and report it to the consumer reporting agency, the agency must investigate unless your dispute is frivolous. See www.consumerfinance.gov/learnmore for an explanation of dispute procedures.</li>\n                <li>Consumer reporting agencies must correct or delete inaccurate, incomplete, or unverifiable information. Inaccurate, incomplete or unverifiable information must be removed or corrected, usually within 30 days. However, a consumer reporting agency may continue to report information it has verified as accurate.</li>\n                <li>Consumer reporting agencies may not report outdated negative information. In most cases, a consumer reporting agency may not report negative information that is more than seven years old, or bankruptcies that are more than 10 years old.</li>\n                <li>Access to your file is limited. A consumer reporting agency may provide information about you only to people with a valid need – usually to consider an application with a creditor, insurer, employer, landlord, or other business. The FCRA specifies those with a valid need for access.</li>\n                <li>You must give your consent for reports to be provided to employers. A consumer reporting agency may not give out information about you to your employer, or a potential employer, without your written consent given to the employer. Written consent generally is not required in the trucking industry. For more information, go to www.consumerfinance.gov/learnmore</li>\n                <li>You may limit “prescreened” offers of credit and insurance you get based on information in your credit report. Unsolicited “prescreened” offers for credit and insurance must include a toll-free phone number you can call if you choose to remove your name and address from the lists these offers are based on. You may opt-out with the nationwide credit bureaus at 1-888-567-8688.</li>\n                <li>You may seek damages from violators. If a consumer reporting agency, or, in some cases, a user of consumer reports or a furnisher of information to a consumer reporting agency violates the FCRA, you may be able to sue in state or federal court.</li>\n                <li>Identity theft victims and active duty military personnel have additional rights. For more information, visit www.consumerfinance.gov/learnmore.</li>\n                </ul>\n\n                <p>States may enforce the FCRA, and many states have their own consumer reporting laws. In some cases, you may have more rights under state law. For more information, contact your state or local consumer protection agency or your state Attorney General. For information about your federal rights, contact:</p>\n\n                <p> </p>\n\n                <table>\n                <thead>\n                <tr>\n                <th>\n                <p>Type of business</p>\n                </th>\n                <th>\n                <p>Contact</p>\n                </th>\n                </tr>\n                </thead>\n                <tbody>\n                <tr>\n                <td>1.a. Banks, savings associations, and credit unions with total assets of over $10 billion and their affiliates.</td>\n                <td>a. Consumer Financial Protection Bureau 1700 G Street NW, Washington, DC 20552</td>\n                </tr>\n                <tr>\n                <td>1.b. Such affiliates that are not banks, savings associations, or credit unions also should list, in addition to the CFPB:</td>\n                <td>b. Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td colspan=\"2\">\n                <p>To the extent not included in item 1 above</p>\n                </td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>2.a. National banks, federal savings associations, and federal branches and federal agencies of foreign banks</td>\n                <td>a. Office of the Comptroller of the Currency Customer Assistance Group 1301 McKinney Street Suite 3450, Houston, TX 77010-9050</td>\n                </tr>\n                <tr>\n                <td>2.b. State member banks, branches and agencies of foreign banks (other than federal branches, federal agencies, and Insured State Branches of Foreign Banks), commercial lending companies owned or controlled by foreign banks, and organizations operating under section 25 or 25A of the Federal Reserve Act</td>\n                <td>b. Federal Reserve Consumer Help Center P.O. Box 1200 Minneapolis, MN 55480</td>\n                </tr>\n                <tr>\n                <td>2.c. Nonmember Insured Banks, Insured State Branches of Foreign Banks, and insured state savings associations</td>\n                <td>c. FDIC Consumer Response Center 1100 Walnut Street Box #11, Kansas City, MO 64106</td>\n                </tr>\n                <tr>\n                <td>2.d. Federal Credit Unions</td>\n                <td>d. National Credit Union Administration Office of Consumer Protection (OCP), Division of Consumer Compliance and Outreach (DCCO) 1775 Duke Street, Alexandria, VA 22314</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>3. Air carriers</td>\n                <td>Asst. General Counsel for Aviation Enforcement & Proceedings Aviation Consumer Protection Division Department of Transportation 1200 New Jersey Avenue SE, Washington, DC 20590</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>4. Creditors Subject to Surface Transportation Board</td>\n                <td>Office of Proceedings, Surface Transportation Board, Department of Transportation 395 E Street SW, Washington, DC 20423</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>5. Creditors Subject to Packers and Stockyards Act, 1921</td>\n                <td>Nearest Packers and Stockyards Administration area supervisor</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>6. Small Business Investment Companies</td>\n                <td>Associate Deputy Administrator for Capital Access, United States Small Business Administration 409 Third Street SW 8th Floor, Washington, DC 20416</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>7. Brokers and Dealers</td>\n                <td>Securities and Exchange Commission 100 F St NE, Washington, DC 20549</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>8. Federal Land Banks, Federal Land Bank Associations, Federal Intermediate Credit Banks, and Production Credit Associations</td>\n                <td>Farm Credit Administration, 1501 Farm Credit Drive, McLean, VA 22102-5090</td>\n                </tr>\n                </tbody>\n                <tbody>\n                <tr>\n                <td>9. Retailers, Finance Companies, and All Other Creditors Not Listed Above</td>\n                <td>FTC Regional Office for region in which the creditor operates or Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                </table>', 'fr', 'French', 'ltr', NULL, NULL);
INSERT INTO `landing_quicklinks` (`id`, `privacy_title`, `privacy`, `terms_title`, `terms`, `compliance_title`, `compliance`, `dmv_title`, `dmv`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('900b61be-0211-4656-a6a2-3dcb71e84e82', 'Privacy Policy', '<h2>Privacy Policy</h2><h2>The Scope of This Policy</h2><p>This policy applies to all MXDrive users, including Riders and Drivers (including Driver applicants), and to all MXDrive platforms and services, including our apps, websites, features, and other services (collectively, the “MXDrive Platform”). Please remember that your use of the MXDrive Platform is also subject to our Terms of Service.</p><h2>The Information We Collect</h2><p>When you use the MXDrive Platform, we collect the information you provide, usage information, and information about your device. We also collect information about you from other sources like third-party services and optional programs in which you participate, which we may combine with other information we have about you.</p><h3>A. Information You Provide to Us</h3><p><strong>Account Registration.</strong> When you create an account, we collect your name, email, phone number, and payment information. You may add extra info like a photo, saved addresses, or pronouns.</p><p><strong>Driver Information.</strong> If you apply to be a Driver, we collect your name, contact details, birth date, ID numbers, driver’s license, vehicle and insurance information, payment and tax information, and possibly permits or licenses depending on location. We may also request identity confirmation later (e.g., photo).</p><p><strong>SOS Contact Information.</strong> We collect contact list permission to add SOS contacts for Rider and Driver apps.</p><p><strong>Ratings and Feedback.</strong> We collect all information you provide when rating or reviewing Riders/Drivers.</p><p><strong>Communications.</strong> When you contact us or we contact you, we collect message content and attachments.</p><h3>B. Information We Collect When You Use the MXDrive Platform</h3><p><strong>Location Information.</strong></p><p>Riders: Precise location from app open until the ride ends. MXDrive also tracks scooters/e-bikes.</p><p>Drivers: Precise location in driver mode and briefly after, to detect incidents.</p><p><strong>Usage Information.</strong> Includes ride details (date, route, payment, promo codes) and app/web interactions.</p><p><strong>Device Information.</strong> Device model, IP, browser, OS, carrier, settings, app installs, identifiers, push tokens. Drivers’ sensor data (speed, direction, acceleration, etc.) may also be collected.</p><p><strong>Rider–Driver Communications.</strong> Calls and texts may be facilitated by a third party. We log phone numbers, times, and SMS contents. Some calls may be monitored/recorded with notice.</p><p><strong>Address Book Contacts.</strong> With permission, we store names and contact details from your address book.</p><p><strong>Cookies &amp; Analytics.</strong> We use cookies, pixels, analytics (e.g., Google Analytics), SDKs, and other technologies to improve safety, measure engagement, show ads, and save preferences. Session cookies disappear when closed; persistent cookies remain until deleted.</p><h3>C. Information We Collect from Third Parties</h3><p><strong>Third-Party Services.</strong> Background check providers, insurers, financial partners, marketing providers. Data includes background info, insurance/payment details, fraud detection, loyalty program participation, and demographic information.</p><p><strong>Enterprise Programs.</strong> Employers or organizations may share your contact info if you use MXDrive through them.</p><p><strong>Concierge Service.</strong> Businesses may provide your contact info and ride details when booking rides for you.</p><p><strong>Referral Programs.</strong> If you are referred, we collect your info from the referrer. If you refer someone, they may be told.</p><p><strong>Other Users &amp; Sources.</strong> Law enforcement, insurers, or third parties may provide info (e.g., incidents).</p><h2>How We Use Your Information</h2><p>We use your personal information to:</p><p>Provide the MXDrive Platform</p><p>Maintain security and safety</p><p>Build and maintain the MXDrive community</p><p>Provide customer support</p><p>Improve the MXDrive Platform</p><p>Respond to legal obligations</p><h2>How We Share Your Information</h2><h3>A. Sharing Between MXDrive Users</h3><p><strong>Riders &amp; Drivers.</strong></p><p>Rider info shared with Driver: pickup location, name, photo, rating, stats, profile info, destination.</p><p>Driver info shared with Rider: name, photo, pronouns, rating, vehicle details, stats, and chosen profile info.</p><p><strong>Shared Rides.</strong> Rider names and photos are shared with other Riders.</p><p><strong>Rides Paid by Others.</strong> Details may be shared with the payer (date, cost, pickup/drop-off).</p><p><strong>Referrals.</strong> Referrers may receive confirmation/bonus info about your MXDrive use.</p><h3>B. Sharing with Third-Party Service Providers</h3><p>We share identifiers, financial info, commercial info, network activity, and location data with providers for:</p><p>Account servicing</p><p>Ride processing</p><p>Customer support</p><p>Driver applications and payments</p><p>Fraud prevention and insurance claims</p><p>Loyalty programs</p><p>Marketing/advertising</p><p>Analytics and research</p><h3>C. Legal Reasons</h3><p>We may share your data to comply with laws, respond to legal processes, enforce our Terms, prevent fraud, or protect rights and safety.</p><h3>D. Sale or Merger</h3><p>We may share data in connection with restructuring, merger, or sale of assets.</p><h3>E. With Your Consent</h3><p>With permission, we may disclose your information for other purposes.</p><h2>How We Store and Protect Your Information</h2><p>We retain information as long as necessary (e.g., account data until account deletion; ride/payment records for 7+ years for legal reasons). If you delete your account, some data may still be retained for safety, fraud prevention, or legal obligations.</p><h2>Your Rights and Choices</h2><h3>A. All Users</h3><p><strong>Email Subscriptions.</strong> Unsubscribe anytime from promotional emails. Transactional emails will still be sent.</p><p><strong>Text Messages.</strong> Opt out via STOP/START; full opt-out may affect platform use.</p><p><strong>Push Notifications.</strong> Disable in device settings (may affect ride alerts).</p><p><strong>Profile Information.</strong> Edit in account settings.</p><p><strong>Location.</strong> Disable in device settings (may limit features).</p><p><strong>Cookies.</strong> Adjust in browser settings.</p><p><strong>Do Not Track.</strong> Not supported by MXDrive.</p><p><strong>Deleting Account.</strong> Request deletion via privacy homepage. Certain data may be retained for legal/safety reasons.</p><h3>B. Data Rights</h3><p><strong>Right to Know.</strong> Access categories and specific pieces of data we collect.</p><p><strong>Right to Delete.</strong> Request deletion of collected data (subject to legal exceptions).</p><p><strong>Other Rights.</strong> Request info on third-party sharing for marketing; protection from discrimination.</p><p>Requests can be made via website or email. We may verify identity before fulfilling. Responses typically within 45 days.</p><h2>Children’s Data</h2><p>MXDrive is not directed to children and does not knowingly collect information from those under 13. If discovered, such data will be deleted.</p><h2>Links to Third-Party Websites</h2><p>The MXDrive Platform may link to external sites with their own privacy policies. We are not responsible for them.</p><h2>Changes to This Privacy Policy</h2><p>We may update this policy periodically. Material changes will be communicated via the Platform or email. Continued use means acceptance of the updated policy.</p><h2>Contact Us</h2><p>If you have questions about this Privacy Policy or need an alternative format:<br><strong>MXDrive</strong><br>support@MXDrive.us</p>', 'Terms & Conditions', '<h2>Terms and Conditions</h2><h2>END USER LICENSE AGREEMENT</h2><p><i>Last updated May 16, 2021</i></p><p>MXDrive is licensed to You (End-User) by MXDrive, for use only under the terms of this License Agreement.</p><p>By downloading the Application from the Apple AppStore and Google Play, and any update thereto (as permitted by this License Agreement), You indicate that You agree to be bound by all of the terms and conditions of this License Agreement, and that You accept this License Agreement.</p><p>The parties of this License Agreement acknowledge that Apple and/or Google Play is not a Party to this License Agreement and is not bound by any provisions or obligations with regard to the Application, such as warranty, liability, maintenance and support thereof. MXDrive, not Apple or Google Play, is solely responsible for the licensed Application and the content thereof.</p><p>This License Agreement may not provide for usage rules for the Application that are in conflict with the latest App Store Terms of Service. MXDrive acknowledges that it had the opportunity to review said terms and this License Agreement is not conflicting with them.</p><p>All rights not expressly granted to You are reserved.</p><h3>1. THE APPLICATION</h3><p>MXDrive (hereinafter: Application) is a piece of software that is a Rideshare platform customized for Apple and Android mobile devices. It is used to connect riders to drivers to get to point A to B by a push of a button.</p><p>The Application is not tailored to comply with industry-specific regulations (HIPAA, FISMA, etc.), so if your interactions would be subjected to such laws, you may not use this Application. You may not use the Application in a way that would violate the GLBA.</p><h3>2. SCOPE OF LICENSE</h3><p>2.1 You are given a non-transferable, non-exclusive, non-sublicensable license to install and use the Licensed Application on any Apple-branded or Google Products that You own or control and as permitted by the Usage Rules set forth in this section and the App Store Terms of Service, with the exception that such licensed Application may be accessed and used by other accounts associated with You via Family Sharing or volume purchasing.</p><p>2.2 This license will also govern any updates of the Application provided by Licensor that replace, repair, and/or supplement the first Application, unless a separate license is provided for such update in which case the terms of that new license will govern.</p><p>2.3 You may not share or make the Application available to third parties (unless allowed by Apple Terms and Conditions and with MXDrive\'s prior written consent), sell, rent, lend, lease or otherwise redistribute the Application.</p><p>2.4 You may not reverse engineer, translate, disassemble, decompile, remove, modify, create derivative works, or attempt to derive the source code of the Application, or any part thereof (except with MXDrive\'s prior written consent).</p><p>2.5 You may not copy (excluding when expressly authorized by this license and the Usage Rules) or alter the Application. You may create and store copies only on devices that You own or control for backup purposes under this license. You may not remove any intellectual property notices.</p><p>2.6 Violations of these obligations, as well as attempted infringement, may be subject to prosecution and damages.</p><p>2.7 Licensor reserves the right to modify the terms and conditions of licensing.</p><p>2.8 Nothing in this license should be interpreted to restrict third-party terms. You must comply with applicable third-party terms and conditions.</p><h3>3. TECHNICAL REQUIREMENTS</h3><p>3.1 Licensor attempts to keep the Application updated for new firmware and hardware, but You are not granted rights to claim such updates.</p><p>3.2 It is Your responsibility to confirm that the device on which You intend to use the Application satisfies technical specifications.</p><p>3.3 Licensor reserves the right to modify the technical specifications at any time.</p><h3>4. MAINTENANCE AND SUPPORT</h3><p>4.1 The Licensor is solely responsible for providing maintenance and support services. You can reach the Licensor via the email address listed in the App Store or Google Play Overview.</p><p>4.2 Apple and Google Play have no obligation to furnish maintenance or support for the licensed Application.</p><h3>5. USE OF DATA</h3><p>You acknowledge that Licensor will be able to access and adjust Your downloaded Application content and personal information, and that Licensor\'s use is subject to Your legal agreements with Licensor and Licensor\'s privacy policy: <a href=\"http://www.mxdrive.us/privacy\">http://www.mxdrive.us/privacy</a>.</p><h3>6. USER GENERATED CONTRIBUTIONS</h3><p>The Application may allow you to chat, post, publish, or share content (\"Contributions\"). Contributions may be viewable by others and treated as non-confidential. You represent and warrant that:</p><p>Your Contributions do not infringe third-party rights.</p><p>You are the owner or have the necessary rights to authorize use.</p><p>You have consent for use of identifiable individuals.</p><p>Your Contributions are not false or misleading.</p><p>Your Contributions are not spam or unauthorized advertising.</p><p>Your Contributions are not obscene, violent, harassing, or otherwise objectionable.</p><p>Your Contributions do not mock, intimidate, or abuse anyone.</p><p>Your Contributions are not used to harass or threaten.</p><p>Your Contributions comply with applicable laws.</p><p>Your Contributions do not violate privacy or publicity rights.</p><p>Your Contributions do not solicit information from minors.</p><p>Your Contributions do not violate child protection laws.</p><p>Your Contributions are not offensive based on race, gender, or disability.</p><p>Your Contributions do not link to material that violates these Terms.</p><p>Violating these rules may result in suspension or termination.</p><h3>7. CONTRIBUTION LICENSE</h3><p>By posting Contributions, you grant MXDrive an unrestricted, irrevocable, perpetual, royalty-free worldwide license to use, reproduce, publish, display, distribute, or create derivative works from them.</p><p>You retain ownership of your Contributions, but grant us rights to use them as described. MXDrive may edit, re-categorize, or delete Contributions at its discretion.</p><h3>8. LIABILITY</h3><p>8.1 Licensor’s liability is limited to intent and gross negligence, except for essential contractual duties where slight negligence applies. Liability is limited to foreseeable damages, except for injury to life, limb, or health.</p><p>8.2 Licensor takes no responsibility for damages caused by breach of duties under Section 2. Users must back up their data. Altering the Application voids access.</p><h3>9. WARRANTY</h3><p>9.1 Licensor warrants the Application is free of malware at download and works as described.</p><p>9.2 No warranty applies if the Application was modified, mishandled, used with inappropriate hardware/software, or affected by external causes.</p><p>9.3 Users must notify MXDrive of defects within 90 days of discovery.</p><p>9.4 If confirmed defective, MXDrive may fix or replace the Application.</p><p>9.5 Refunds may be issued via the App Store operator.</p><p>9.6 For entrepreneurs, claims expire 12 months after delivery; statutory limits apply to consumers.</p><h3>10. PRODUCT CLAIMS</h3><p>MXDrive, not Apple, is responsible for addressing product liability, legal compliance, and consumer protection claims.</p><h3>11. LEGAL COMPLIANCE</h3><p>You represent that You are not located in a country under U.S. embargo or designated as supporting terrorism, and are not on restricted party lists.</p><h3>12. CONTACT INFORMATION</h3><p>MXDrive<br>6255 Towncenter Drive Ste 819<br>Clemmons, NC 27012<br>United States<br>support@MXDrive.us</p><h3>13. TERMINATION</h3><p>The license is valid until terminated. It ends automatically if You fail to comply with any terms. Upon termination, stop using and destroy all copies of the Application.</p><h3>14. THIRD-PARTY TERMS AND BENEFICIARY</h3><p>MXDrive agrees to comply with applicable third-party agreements. Apple and its subsidiaries are third-party beneficiaries of this Agreement and may enforce it against You.</p><h3>15. INTELLECTUAL PROPERTY RIGHTS</h3><p>In the event of a third-party claim of IP infringement, MXDrive, not Apple, will handle defense, settlement, and liability.</p><h3>16. APPLICABLE LAW</h3><p>This license agreement is governed by the laws of the State of North Carolina, excluding conflict of law rules.</p><h3>17. MISCELLANEOUS</h3><p>17.1 If any terms are invalid, the remaining provisions remain valid. Invalid terms will be replaced with valid ones closest to the purpose.</p><p>17.2 Changes and amendments are valid only in writing.</p>', 'Compliance', '<h2>Equal Employment Opportunity and Non-Discrimination Policy</h2><h3>I. OVERVIEW &amp; SCOPE</h3><p>MXDrive has established a Non-Discrimination and Equal Employment Opportunity Policy (\"EEO\"). This EEO policy applies to all aspects of the relationship between MXDrive and its employees, including, but not limited to, employment, recruitment, advertisements for employment, hiring and firing, compensation, assignment, classification of employees, termination, upgrading, promotions, transfer, training, working conditions, wages and salary administration, and employee benefits and application of policies. These policies apply to independent contractors, temporary employees, all personnel working on the premises, and any other persons or firms doing business for or with MXDrive. Any user found to have violated this prohibition will lose access to the MXDrive platform. Applicable laws in certain jurisdictions may require and/or allow the provision of services by and for the benefit of a specific category of persons. In such jurisdictions, services provided in compliance with these laws and the relevant applicable terms are permissible under this policy.</p><h3>II. POLICIES</h3><h4>1. DISCRIMINATION</h4><p>MXDrive shall not tolerate, under any circumstances, without exception, any form of discrimination based on race, creed, religion, color, age, disability, pregnancy, marital status, parental status, sexual orientation, gender expression, gender identity, veteran status, military status, domestic violence victim status, national origin, political affiliation, sex, predisposing genetic characteristics, or geographic location and any other status protected by the law. This list is not exhaustive. For qualified people with disabilities, MXDrive will make every effort to provide reasonable workplace accommodations that comply with applicable laws.</p><p>Discrimination in providing transportation services is strictly prohibited.</p><p>Associated drivers and employees are required to know the non-discrimination prohibitions. MXDrive will not tolerate, as to public accommodations, which includes taxicab services, unlawful discriminatory practice to deny, directly or indirectly, any person the full and equal enjoyment of the goods, services, facilities, privileges, advantages, and accommodations of any place of public accommodations (including taxicab services) wholly or partially for a discriminatory reason based on place of residence or business.</p><p><strong>Prohibited Discriminatory Conduct:</strong></p><p>MXDrive recognizes that associated drivers should never discriminate against certain customers by not picking them up, not taking them where they wish to go, or by treating them with less respect based on the protected characteristics or traits listed above. Specific examples of discriminatory conduct include the following:</p><p>Not picking up a passenger on the basis of any protected characteristic or trait, including not picking up a passenger with a service animal.</p><p>Requesting that a passenger get out of a taxicab on the basis of a protected characteristic or trait.</p><p>Using derogatory or harassing language on the basis of a protected characteristic or trait.</p><p>Refusing a pickup in a specific geographic area.</p><p><strong>Geographic Discrimination:</strong></p><p>MXDrive does not tolerate geographic discrimination and recognizes how important it is to take the customer to the requested destination without discriminating against that customer based on where he or she wishes to go. All associated drivers, employees, managers, stakeholders, and agents at MXDrive will comply with these anti-discrimination policies. In some cases, local laws and regulations may provide greater protections than those described in this policy.</p><h4>2. HARASSMENT</h4><p>MXDrive is committed to providing a work environment that is free from harassment. Any behavior that is unwanted and offensive to the recipient, which creates an intimidating, hostile, or humiliating work environment for that person violates MXDrive\'s policy. Harassment can occur between members of the opposite sex or the same sex. Harassment, verbal or non-verbal, explicit or implicit, based on an individual\'s sex, race, ethnicity, national origin, age, religion, or any other legally protected characteristics will not be tolerated. All employees, including supervisors, other management personnel, and independent contractors, are required to abide by this policy. No person will be adversely affected in employment with MXDrive as a result of bringing complaints of harassment.</p><h4>3. SEXUAL HARASSMENT</h4><p>Unwelcome sexual advances, requests for sexual favors, and other verbal or physical conduct of a sexual nature constitute harassment when:</p><p>Submission to such conduct is made either explicitly or implicitly a term or condition of employment;</p><p>Submission to or rejection of such conduct by an individual is used as a basis for employment decisions, promotion, transfer, selection for training, performance evaluations, benefits, or other terms and conditions of employment; or</p><p>Such conduct has the purpose or effect of creating an intimidating, hostile, or offensive work environment or substantially interferes with an employee\'s work performance.</p><p>MXDrive prohibits inappropriate conduct that is sexual in nature at work, on company business, or at company-sponsored events including the following: comments, jokes, degrading language, sexually suggestive objects, books, or any form of media electronic or in print form. Sexual harassment is prohibited whether it is between members of the opposite sex or members of the same sex.</p><h4>4. STATEMENT ON AFFIRMATIVE ACTION</h4><p>An affirmative action program has been developed where MXDrive seeks to increase the representation and participation of minorities.</p><h4>5. REPORTING DISCRIMINATION &amp; HARASSMENT</h4><p>If an employee feels that he or she has been harassed as described in this policy, they should immediately file a grievance with:</p><p><strong>Grievance Department</strong><br>6255 TownCenter Drive, Ste 819, Clemmons NC 27012<br>Email: compliance@mxdrive.us</p><p>Once the matter has been reported it will be promptly investigated and any corrective action will be taken when deemed appropriate. All complaints of unlawful harassment under this policy or otherwise will be handled in as confidential a manner as possible. Timely reporting is encouraged to prevent the re-occurrence of, or otherwise address, the behavior that violates this policy or law. Delays in reporting a complaint can limit the effectiveness of a response by MXDrive. The procedure for reporting incidents of discriminatory or harassing behavior is not intended to prevent the right of any employee to seek a remedy under available state or federal law by immediately reporting the matter to the appropriate state or federal agency.</p><h4>6. RETALIATION</h4><p>Retaliation against any person associated with MXDrive who reports instances of harassment—whether he or she is directly or indirectly involved—is in violation of MXDrive\'s policies. All reported incidents are assumed to be made in good faith. Any allegations that are proven false will be treated as a serious matter.</p><h4>7. DISCIPLINARY MEASURES FOR HARASSMENT</h4><p>Any employee engaging in behavior that violates this policy will be subject to disciplinary action, including the possible termination of employment, whether or not an actual law has been violated.</p><h4>8. REMEDIES</h4><p>Remedies for any instances of verified employment discrimination, whether caused intentionally or by actions that have a discriminatory effect, may include back pay, hiring, promotion, reinstatement, front pay, reasonable accommodation, or other actions deemed appropriate by MXDrive. Remedies can also include payment of attorney\'s fees, expert witness fees, court costs, and other applicable legal fees.</p><h4>9. POLICY IMPLEMENTATION</h4><p>MXDrive’s CEO fully supports the implementation of this Policy effective as of April 19, 2021.</p>', 'DMV Check', '<h2>DMV Check &amp; Background Check Consent</h2><h3>Consent to Request Driving Record</h3><p>I understand that <strong>MXDrive</strong> (‘Company’) will use <strong>Checkr, Inc.</strong> (‘Checkr’) to obtain a motor vehicle record as part of the application process to be a driver on the <strong>MXDrive Platform</strong> (a ‘Driver’). I also understand that if accepted as a Driver, to the extent permitted by law, Company may obtain further Reports from Checkr so as to update, renew or extend my status as a Driver.</p><p>I hereby give permission to <strong>MXDrive</strong> to obtain my state driving record (also known as my motor vehicle record or MVR) in accordance with the Federal Driver’s Privacy Protection Act (‘DPPA’) and applicable state law. I acknowledge and understand that my driving record is a consumer report that contains public record information. I authorize, without reservation, any party or agency contacted by Company or Checkr to furnish Company a copy of my state driving record.</p><p>This authorization shall remain on file by Company for the duration of my time as a Driver, and will serve as ongoing authorization for Company to procure my state driving record at any time while I am a Driver.</p><h3>Consent to Request Consumer Report or Investigative Consumer Report Information</h3><p>I understand that <strong>MXDrive</strong> (‘Company’) will use <strong>Checkr, Inc.</strong></p><p>1 Montgomery St, Ste 2000, San Francisco, CA 94104</p><p>to obtain a consumer report or investigative consumer report as part of the application process to be a driver on the <strong>MXDrive Platform</strong> (a ‘Driver’). I also understand that if accepted as a Driver, to the extent permitted by law, Company may obtain further Reports from Checkr so as to update, renew or extend my status as a Driver.</p><p>I understand Checkr’s investigation may include obtaining information regarding my criminal record, subject to any limitations imposed by applicable federal and state law. I understand such information may be obtained through direct or indirect contact with public agencies or other persons who may have such knowledge.</p><p>The nature and scope of the investigation sought will include a <strong>Criminal Background check and SSN Trace</strong>.</p><p>I acknowledge receipt of the attached summary of my rights under the <strong>Fair Credit Reporting Act (FCRA)</strong> and, as required by law, any related state summary of rights (collectively “Summaries of Rights”).</p><p>This consent will not affect my ability to question or dispute the accuracy of any information contained in a Report. I understand if Company makes a conditional decision to disqualify me based all or in part on my Report, I will be provided with a copy of the Report and another copy of the Summaries of Rights, and if I disagree with the accuracy of the purported disqualifying information in the Report, I must notify Company within five business days of my receipt of the Report that I am challenging the accuracy of such information with Checkr.</p><p>I hereby consent to this investigation and authorize Company to procure a Report on my background.</p><p>In order to verify my identity for the purposes of Report preparation, I am voluntarily releasing my date of birth, social security number, and other information and fully understand that all decisions are based on legitimate non-discriminatory reasons.</p><h3>Consumer Reporting Agency Contact</h3><p>The name, address and telephone number of the nearest unit of the consumer reporting agency designated to handle inquiries regarding the investigative consumer report is:</p><p><strong>Checkr, Inc.</strong><br>1 Montgomery St, Ste 2000<br>San Francisco, CA 94104<br>844-824-3257</p><h3>State-Specific Notices</h3><p><strong>California, Maine, Massachusetts, Minnesota, New Jersey &amp; Oklahoma Applicants Only</strong>: I have the right to request a copy of any Report obtained by Company from Checkr by checking the box. (Check only if you wish to receive a copy)</p><p><strong>New York Applicants Only</strong>: I also acknowledge that I have received the attached copy of <strong>Article 23A of New York’s Correction Law</strong>. I further understand that I may request a copy of any investigative consumer report by contacting Checkr. I further understand that I will be advised if any further checks are requested and provided the name and address of the consumer reporting agency.</p><p><strong>California Applicants and Residents</strong>: If I am applying in California or reside in California, I understand I have the right to visually inspect the files concerning me maintained by an investigative consumer reporting agency during normal business hours and upon reasonable notice. The inspection can be done in person, and, if I appear in person and furnish proper identification; I am entitled to a copy of the file for a fee not to exceed the actual costs of duplication. I am entitled to be accompanied by one person of my choosing, who shall furnish reasonable identification. The inspection can also be done via certified mail if I make a written request, with proper identification, for copies to be sent to a specified addressee. I can also request a summary of the information to be provided by telephone if I make a written request, with proper identification for telephone disclosure, and the toll charge, if any, for the telephone call is prepaid by or directly charged to me.</p><p>I further understand that the investigative consumer reporting agency shall provide trained personnel to explain to me any of the information furnished to me; I shall receive from the investigative consumer reporting agency a written explanation of any coded information contained in files maintained on me.</p><p>“Proper identification” as used in this paragraph means information generally deemed sufficient to identify a person, including documents such as a valid driver’s license, social security account number, military identification card, and credit cards.</p><p>I understand that I can access the following website: <strong>checkr.com/privacy</strong> to view Checkr’s privacy practices, including information with respect to Checkr’s preparation and processing of investigative consumer reports and guidance as to whether my personal information will be sent outside the United States or its territories.<br>&nbsp;</p><p>States may enforce the FCRA, and many states have their own consumer reporting laws. In some cases, you may have more rights under state law. For more information, contact your state or local consumer protection agency or your state Attorney General. For information about your federal rights, contact:</p><p>&nbsp;</p><figure class=\"table\"><table><thead><tr><th>Type of business</th><th>Contact</th></tr></thead><tbody><tr><td>1.a. Banks, savings associations, and credit unions with total assets of over $10 billion and their affiliates.</td><td>a. Consumer Financial Protection Bureau 1700 G Street NW, Washington, DC 20552</td></tr><tr><td>1.b. Such affiliates that are not banks, savings associations, or credit unions also should list, in addition to the CFPB:</td><td>b. Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td></tr><tr><td colspan=\"2\">To the extent not included in item 1 above</td></tr><tr><td>2.a. National banks, federal savings associations, and federal branches and federal agencies of foreign banks</td><td>a. Office of the Comptroller of the Currency Customer Assistance Group 1301 McKinney Street Suite 3450, Houston, TX 77010-9050</td></tr><tr><td>2.b. State member banks, branches and agencies of foreign banks (other than federal branches, federal agencies, and Insured State Branches of Foreign Banks), commercial lending companies owned or controlled by foreign banks, and organizations operating under section 25 or 25A of the Federal Reserve Act</td><td>b. Federal Reserve Consumer Help Center P.O. Box 1200 Minneapolis, MN 55480</td></tr><tr><td>2.c. Nonmember Insured Banks, Insured State Branches of Foreign Banks, and insured state savings associations</td><td>c. FDIC Consumer Response Center 1100 Walnut Street Box #11, Kansas City, MO 64106</td></tr><tr><td>2.d. Federal Credit Unions</td><td>d. National Credit Union Administration Office of Consumer Protection (OCP), Division of Consumer Compliance and Outreach (DCCO) 1775 Duke Street, Alexandria, VA 22314</td></tr><tr><td>3. Air carriers</td><td>Asst. General Counsel for Aviation Enforcement &amp; Proceedings Aviation Consumer Protection Division Department of Transportation 1200 New Jersey Avenue SE, Washington, DC 20590</td></tr><tr><td>4. Creditors Subject to Surface Transportation Board</td><td>Office of Proceedings, Surface Transportation Board, Department of Transportation 395 E Street SW, Washington, DC 20423</td></tr><tr><td>5. Creditors Subject to Packers and Stockyards Act, 1921</td><td>Nearest Packers and Stockyards Administration area supervisor</td></tr><tr><td>6. Small Business Investment Companies</td><td>Associate Deputy Administrator for Capital Access, United States Small Business Administration 409 Third Street SW 8th Floor, Washington, DC 20416</td></tr><tr><td>7. Brokers and Dealers</td><td>Securities and Exchange Commission 100 F St NE, Washington, DC 20549</td></tr><tr><td>8. Federal Land Banks, Federal Land Bank Associations, Federal Intermediate Credit Banks, and Production Credit Associations</td><td>Farm Credit Administration, 1501 Farm Credit Drive, McLean, VA 22102-5090</td></tr><tr><td>9. Retailers, Finance Companies, and All Other Creditors Not Listed Above</td><td>FTC Regional Office for region in which the creditor operates or Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td></tr></tbody></table></figure>', 'En', 'English', 'ltr', NULL, '2025-09-26 12:36:51');
INSERT INTO `landing_quicklinks` (`id`, `privacy_title`, `privacy`, `terms_title`, `terms`, `compliance_title`, `compliance`, `dmv_title`, `dmv`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('e730645d-f2e2-4ae0-a741-bcba2855e6c0', 'سياسة الخصوصية', '<h2>سياسة الخصوصية</h2>\n\n                <p>نطاق هذه السياسة</p>\n                \n                <p>تنطبق هذه السياسة على جميع مستخدمي MXDrive، بما في ذلك الركاب والسائقين (بما في ذلك المتقدمين للسائقين)، وعلى جميع منصات وخدمات MXDrive، بما في ذلك تطبيقاتنا ومواقعنا الإلكترونية وميزاتنا والخدمات الأخرى (يُشار إليها إجمالاً باسم \"منصة MXDrive\" \"). يرجى تذكر أن استخدامك لمنصة MXDrive يخضع أيضًا لشروط الخدمة الخاصة بنا.</p>\n                \n                <p>المعلومات التي نجمعها</p>\n                \n                <p>عند استخدامك منصة MXDrive، نقوم بجمع المعلومات التي تقدمها ومعلومات الاستخدام والمعلومات المتعلقة بجهازك. نقوم أيضًا بجمع معلومات عنك من مصادر أخرى مثل خدمات الجهات الخارجية، والبرامج الاختيارية التي تشارك فيها، والتي قد ندمجها مع المعلومات الأخرى المتوفرة لدينا عنك. فيما يلي أنواع المعلومات التي نجمعها عنك:</p>\n                \n                <p>أ. المعلومات التي تقدمها لنا</p>\n                \n                <p>تسجيل الحساب. عندما تقوم بإنشاء حساب مع MXDrive، فإننا نجمع المعلومات التي تقدمها لنا، مثل اسمك وعنوان بريدك الإلكتروني ورقم هاتفك ومعلومات الدفع. يمكنك اختيار مشاركة معلومات إضافية معنا بشأن ملف تعريف الراكب الخاص بك، مثل صورتك أو عناوينك المحفوظة (على سبيل المثال، المنزل أو العمل)، وإعداد تفضيلات أخرى (مثل الضمائر المفضلة لديك).<br />\n                <br />\n                <strong>معلومات السائق.</strong> إذا تقدمت بطلب لتصبح سائقًا، فسنجمع المعلومات التي تقدمها في طلبك، بما في ذلك اسمك وعنوان بريدك الإلكتروني ورقم هاتفك وتاريخ ميلادك وصورة ملفك الشخصي وعنوانك الفعلي وهويتك الحكومية الرقم (مثل رقم الضمان الاجتماعي)، ومعلومات رخصة القيادة، ومعلومات السيارة، ومعلومات التأمين على السيارة. نقوم بجمع معلومات الدفع التي تقدمها لنا، بما في ذلك أرقام توجيه البنك الخاص بك والمعلومات الضريبية. اعتمادًا على المكان الذي تريد القيادة فيه، قد نطلب أيضًا ترخيصًا تجاريًا إضافيًا أو معلومات تصريح أو معلومات أخرى لإدارة القيادة والبرامج ذات الصلة بهذا الموقع. قد نحتاج إلى معلومات إضافية منك في مرحلة ما بعد أن تصبح سائقًا، بما في ذلك معلومات لتأكيد هويتك (مثل الصورة).<br />\n                <br />\n                <strong>معلومات اتصال SOS</strong> سنقوم بجمع إذن قائمة جهات الاتصال لإدراج جهات الاتصال أثناء إضافة جهات اتصال SOS لتطبيق المستخدم والسائق<br />\n                <br />\n                <strong>التقييمات والتعليقات.</strong> عندما تقوم بالتقييم وتقديم تعليقات حول الركاب أو السائقين، فإننا نجمع كل المعلومات التي تقدمها في تعليقاتك.<br />\n                <br />\n                <strong>الاتصالات.</strong> عندما تتصل بنا أو نتصل بك، فإننا نجمع أي معلومات تقدمها، بما في ذلك محتويات الرسائل أو المرفقات التي ترسلها إلينا.</p>\n                \n                <p>ب. المعلومات التي نجمعها عند استخدامك لمنصة MXDrive</p>\n                \n                <p><strong>معلومات الموقع.</strong> تبدأ الرحلات الرائعة بعملية التقاط سهلة ودقيقة. تقوم منصة MXDrive بجمع معلومات الموقع (بما في ذلك بيانات GPS وWiFi) بشكل مختلف اعتمادًا على إعدادات تطبيق MXDrive وأذونات الجهاز بالإضافة إلى ما إذا كنت تستخدم النظام الأساسي كراكب أو سائق:</p>\n                \n                <ul>\n                <li>الركاب: نقوم بجمع الموقع الدقيق لجهازك عند فتح تطبيق MXDrive واستخدامه، بما في ذلك أثناء تشغيل التطبيق في الخلفية من وقت طلب المشوار وحتى انتهائه. تقوم MXDrive أيضًا بتتبع الموقع الدقيق للدراجات البخارية والدراجات الإلكترونية في جميع الأوقات.</li>\n                <li>برامج التشغيل: نقوم بجمع الموقع الدقيق لجهازك عند فتح التطبيق واستخدامه، بما في ذلك أثناء تشغيل التطبيق في الخلفية عندما يكون في وضع برنامج التشغيل. نقوم أيضًا بجمع الموقع الدقيق لفترة محدودة بعد الخروج من وضع السائق من أجل اكتشاف حوادث الركوب، ونستمر في جمعها حتى تصبح الحادثة التي تم الإبلاغ عنها أو المكتشفة نشطة.</li>\n                </ul>\n                \n                <p><strong>معلومات الاستخدام.</strong> نحن نجمع معلومات حول استخدامك لمنصة MXDrive، بما في ذلك معلومات الرحلة مثل التاريخ والوقت والوجهة والمسافة والمسار والدفع وما إذا كنت استخدمت عرضًا ترويجيًا أو إحالة. شفرة. نقوم أيضًا بجمع معلومات حول تفاعلاتك مع منصة MXDrive مثل تطبيقاتنا ومواقعنا الإلكترونية، بما في ذلك الصفحات والمحتوى الذي تشاهده وتواريخ وأوقات استخدامك.<br />\n                <br />\n                <strong>معلومات الجهاز.</strong> نقوم بجمع معلومات حول الأجهزة التي تستخدمها للوصول إلى منصة MXDrive، بما في ذلك طراز الجهاز وعنوان IP ونوع المتصفح وإصدار نظام التشغيل وهوية الناقل والشركة المصنعة ونوع الراديو ( مثل 4G)، والتفضيلات والإعدادات (مثل اللغة المفضلة)، وعمليات تثبيت التطبيقات، ومعرفات الأجهزة، ومعرفات الإعلانات، والرموز المميزة لإشعارات الدفع. إذا كنت سائقًا، فإننا نجمع أيضًا بيانات مستشعرات الهاتف المحمول من جهازك (مثل السرعة والاتجاه والارتفاع والتسارع والتباطؤ والبيانات الفنية الأخرى).<br />\n                <br />\n                <strong>الاتصالات بين الركاب والسائقين.</strong> نحن نعمل مع طرف ثالث لتسهيل المكالمات الهاتفية والرسائل النصية بين الركاب والسائقين دون مشاركة رقم الهاتف الفعلي لأي من الطرفين مع الآخر. ولكن بينما نستخدم طرفًا ثالثًا لتقديم خدمة الاتصال، فإننا نقوم بجمع معلومات حول هذه الاتصالات، بما في ذلك أرقام هواتف المشاركين والتاريخ والوقت ومحتويات الرسائل النصية القصيرة. ولأغراض أمنية، يجوز لنا أيضًا مراقبة أو تسجيل محتويات المكالمات الهاتفية التي يتم إجراؤها من خلال منصة MXDrive، لكننا سنخبرك دائمًا بأننا على وشك القيام بذلك قبل بدء المكالمة.<br />\n                <br />\n                <strong>جهات اتصال دفتر العناوين.</strong> يمكنك تعيين أذونات جهازك لمنح MXDrive حق الوصول إلى قوائم جهات الاتصال الخاصة بك وتوجيه MXDrive للوصول إلى قائمة جهات الاتصال الخاصة بك، على سبيل المثال، لمساعدتك في إحالة الأصدقاء إلى MXDrive. إذا قمت بذلك، فسنقوم بالوصول إلى الأسماء ومعلومات الاتصال الخاصة بالأشخاص الموجودين في دفتر العناوين الخاص بك وتخزينها.<br />\n                <br />\n                <strong>ملفات تعريف الارتباط والتحليلات وتقنيات الطرف الثالث.</strong> نحن نجمع المعلومات من خلال استخدام \"ملفات تعريف الارتباط\" وتتبع وحدات البكسل وأدوات تحليل البيانات مثل Google Analytics وحزم تطوير البرامج (SDK) وتقنيات الطرف الثالث الأخرى لفهم كيفية استخدامك قم بالتنقل عبر منصة MXDrive Platform والتفاعل مع إعلانات MXDrive، لجعل تجربتك مع MXDrive أكثر أمانًا، ولمعرفة المحتوى الشائع، ولتحسين تجربة موقعك، ولتقديم إعلانات أفضل لك على المواقع الأخرى، ولحفظ تفضيلاتك. ملفات تعريف الارتباط هي ملفات نصية صغيرة تضعها خوادم الويب على جهازك؛ وهي مصممة لتخزين المعلومات الأساسية ولمساعدة مواقع الويب والتطبيقات في التعرف على متصفحك. يجوز لنا استخدام ملفات تعريف الارتباط الخاصة بالجلسة وملفات تعريف الارتباط الدائمة. يختفي ملف تعريف ارتباط الجلسة بعد إغلاق المتصفح. يبقى ملف تعريف الارتباط الدائم بعد إغلاق المتصفح الخاص بك ويمكن الوصول إليه في كل مرة تستخدم فيها منصة MXDrive. يجب عليك استشارة متصفح (متصفحات) الويب الخاص بك لتعديل إعدادات ملفات تعريف الارتباط الخاصة بك. يرجى ملاحظة أنه إذا قمت بحذف ملفات تعريف الارتباط من جانبنا أو اخترت عدم قبولها، فقد تفوتك بعض ميزات منصة MXDrive Platform.</p>\n                \n                <p>ج. المعلومات التي نجمعها من أطراف ثالثة</p>\n                \n                <p><strong>خدمات الطرف الثالث.</strong> تزودنا خدمات الطرف الثالث بالمعلومات اللازمة للجوانب الأساسية لمنصة MXDrive، بالإضافة إلى الخدمات الإضافية والبرامج ومزايا الولاء والعروض الترويجية التي يمكن أن تعزز تجربة برامج Mi الخاصة بك. تشمل خدمات الطرف الثالث هذه موفري فحص الخلفية، وشركاء التأمين، ومقدمي الخدمات المالية، ومقدمي التسويق، والشركات الأخرى. نحصل على المعلومات التالية عنك من خدمات الطرف الثالث هذه:</p>\n                \n                <ul>\n                <li>معلومات لجعل منصة MXDrive Platform أكثر أمانًا، مثل معلومات التحقق من الخلفية للسائقين؛</li>\n                <li>معلومات حول مشاركتك في برامج الجهات الخارجية التي توفر أشياء مثل التغطية التأمينية والأدوات المالية، مثل التأمين والدفع والمعاملات ومعلومات الكشف عن الاحتيال؛</li>\n                <li>معلومات لتشغيل برامج الولاء والبرامج الترويجية أو التطبيقات أو الخدمات أو الميزات التي تختار الاتصال بها أو ربطها بحساب MXDrive الخاص بك، مثل المعلومات حول استخدامك لهذه البرامج أو التطبيقات أو الخدمات أو الميزات؛ و</لي>\n                <li>معلومات عنك مقدمة من خدمات محددة، مثل المعلومات الديموغرافية ومعلومات قطاعات السوق.</li>\n                </ul>\n                \n                <p><strong>برامج المؤسسات.</strong> إذا كنت تستخدم برامج Mi من خلال صاحب العمل الخاص بك أو مؤسسة أخرى تشارك في أحد برامج المؤسسات الخاصة بـ MXDrive Business، فسنقوم بجمع معلومات عنك من تلك الأطراف، مثل اسمك ومعلومات الاتصال.<br />\n                <br />\n                <strong>خدمة الكونسيرج.</strong> في بعض الأحيان قد تطلب منك شركة أو كيان آخر رحلة من MXDrive. إذا طلبت إحدى المؤسسات رحلة لك باستخدام خدمة الكونسيرج لدينا، فسوف تزودنا بمعلومات الاتصال الخاصة بك وموقع الركوب والتوصيل لرحلتك.<br />\n                <br />\n                <strong>برامج الإحالة.</strong> يساعد الأصدقاء أصدقاءهم في استخدام منصة MXDrive. إذا قام شخص ما بإحالتك إلى MXDrive، فسنجمع معلومات عنك من تلك الإحالة بما في ذلك اسمك ومعلومات الاتصال الخاصة بك.<br />\n                <br />\n                <strong>المستخدمون والمصادر الأخرى.</strong> قد يزودنا المستخدمون الآخرون أو المصادر العامة أو الجهات الخارجية مثل جهات إنفاذ القانون أو شركات التأمين أو وسائل الإعلام أو المشاة بمعلومات عنك، على سبيل المثال كجزء من التحقيق في حادث أو لنقدم لك الدعم.</p>\n                \n                <p>كيف نستخدم معلوماتك</p>\n                \n                <p>نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>توفير منصة MXDrive؛</li>\n                <li>الحفاظ على أمن وسلامة منصة MXDrive ومستخدميها؛</li>\n                <li>إنشاء وصيانة مجتمع MXDrive؛</li>\n                <li>تقديم دعم العملاء؛</li>\n                <li>تحسين منصة برامج Mi؛ و</لي>\n                <li>الرد على الإجراءات والالتزامات القانونية.</li>\n                </ul>\n                \n                <p><strong>توفير منصة MXDrive.</strong> نحن نستخدم معلوماتك الشخصية لتوفير تجربة بديهية ومفيدة وفعالة وجديرة بالاهتمام على منصتنا. وللقيام بذلك، نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>التحقق من هويتك والحفاظ على حسابك وإعداداتك وتفضيلاتك؛</li>\n                <li>ربطك برحلاتك وتتبع تقدمها؛</li>\n                <li>حساب الأسعار ومعالجة المدفوعات؛</li>\n                <li>السماح للركاب والشركاء السائقين بالتواصل فيما يتعلق برحلتهم واختيار مشاركة موقعهم مع الآخرين؛</li>\n                <li>التواصل معك بشأن رحلاتك وتجربتك؛</li>\n                <li>جمع التعليقات المتعلقة بتجربتك؛</li>\n                <li>تسهيل الخدمات والبرامج الإضافية مع أطراف ثالثة؛ و</لي>\n                <li>إدارة المسابقات واليانصيب والعروض الترويجية الأخرى.</li>\n                </ul>\n                \n                <p><strong>الحفاظ على أمن وسلامة منصة MXDrive ومستخدميها.</strong> إن توفير تجربة آمنة ومأمونة لك هو ما يدفع نظامنا الأساسي، سواء على الطريق أو على تطبيقاتنا. وللقيام بذلك، نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>مصادقة المستخدمين؛</li>\n                <li>التحقق من أن السائقين ومركباتهم يستوفون متطلبات السلامة؛</li>\n                <li>التحقيق في الحوادث والحوادث ومطالبات التأمين وحلها؛</li>\n                <li>تشجيع سلوك القيادة الآمنة وتجنب الأنشطة غير الآمنة؛</li>\n                <li>البحث عن الاحتيال ومنعه؛ و</لي>\n                <li>حظر وإزالة المستخدمين غير الآمنين أو المحتالين من منصة MXDrive.</li>\n                </ul>\n                \n                <p><strong>بناء مجتمع MXDrive والحفاظ عليه.</strong> تعمل MXDrive على أن تكون جزءًا إيجابيًا من المجتمع. نحن نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>التواصل معك بشأن الأحداث والعروض الترويجية والانتخابات والحملات؛</li>\n                <li>تخصيص المحتوى والخبرات والاتصالات والإعلانات وتوفيرها للترويج لمنصة MXDrive وتنميتها؛ و</لي>\n                <li>ساعد في تسهيل التبرعات التي تختار تقديمها من خلال منصة MXDrive.</li>\n                </ul>\n                \n                <p><strong>توفير دعم العملاء.</strong> نحن نعمل جاهدين لتوفير أفضل تجربة ممكنة، بما في ذلك تقديم الدعم لك عندما تحتاج إليه. وللقيام بذلك، نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>التحقيق ومساعدتك في حل الأسئلة أو المشكلات التي تواجهك فيما يتعلق بمنصة MXDrive Platform؛ و</لي>\n                <li>نقدم لك الدعم أو الرد عليك.</li>\n                </ul>\n                \n                <p><strong>تحسين النظام الأساسي لبرامج Mi</strong>. نحن نعمل دائمًا على تحسين تجربتك وتزويدك بميزات جديدة ومفيدة. وللقيام بذلك، نستخدم معلوماتك الشخصية من أجل:</p>\n                \n                <ul>\n                <li>إجراء البحث والاختبار والتحليل؛</li>\n                <li>تطوير منتجات وميزات وشراكات وخدمات جديدة؛</li>\n                <li>منع الأخطاء والمشكلات المتعلقة بالبرامج أو الأجهزة والعثور عليها وحلها؛ و</لي>\n                <li>مراقبة وتحسين عملياتنا وعملياتنا، بما في ذلك ممارسات الأمان والخوارزميات والنماذج الأخرى.</li>\n                </ul>\n                \n                <p><strong>الاستجابة للإجراءات والمتطلبات القانونية.</strong> في بعض الأحيان يفرض القانون أو الهيئات الحكومية أو الهيئات التنظيمية الأخرى مطالب والتزامات علينا فيما يتعلق بالخدمات التي نسعى إلى تقديمها. في مثل هذه الظروف، قد نستخدم معلوماتك الشخصية للرد على تلك المطالب أو الالتزامات.</p>\n                \n                <p>كيف نشارك معلوماتك</p>\n                \n                <p>نحن لا نبيع معلوماتك الشخصية. لكي تعمل منصة MXDrive Platform، قد نحتاج إلى مشاركة معلوماتك الشخصية مع مستخدمين آخرين، وأطراف ثالثة، ومقدمي الخدمات. يشرح هذا القسم متى ولماذا نشارك معلوماتك.</p>\n                \n                <p>أ. المشاركة بين مستخدمي برامج Mi</p>\n                \n                <p>الركاب والسائقون.<br />\n                <br />\n                <strong>مشاركة معلومات الراكب مع السائق:</strong> عند تلقي طلب رحلة، نشارك مع السائق موقع الالتقاء والاسم وصورة الملف الشخصي والتقييم وإحصائيات الراكب (مثل العدد التقريبي للركوب وسنوات الراكب) والمعلومات التي يدرجها الراكب في ملفه الشخصي (مثل الضمائر المفضلة). عند الالتقاط وأثناء الرحلة، نشارك مع السائق وجهة الراكب وأي توقفات إضافية يُدخلها الراكب في تطبيق MXDrive. بمجرد الانتهاء من الرحلة، نقوم أيضًا في النهاية بمشاركة تقييم الراكب وملاحظاته مع السائق. (نقوم بإزالة هوية الراكب المرتبطة بالتقييمات والتعليقات عندما نشاركها مع السائقين، ولكن قد يتمكن السائق من التعرف على الراكب الذي قدم التقييم أو التعليقات.)<br />\n                <br />\n                <strong>مشاركة معلومات السائق مع الراكب:</strong> عند قبول السائق للرحلة المطلوبة، سنشارك مع الراكب اسم السائق وصورة الملف الشخصي والضمائر المفضلة والتقييم والموقع في الوقت الفعلي ونوع السيارة وطرازها. واللون ولوحة الترخيص، بالإضافة إلى معلومات أخرى في ملف تعريف برنامج MXDrive الخاص بالسائق، مثل المعلومات التي يختار السائقون إضافتها (مثل علم الدولة وسبب قيادتك) وإحصائيات السائق (مثل العدد التقريبي للركوب وسنوات القيادة) .<br />\n                <br />\n                على الرغم من أننا نساعد الركاب والشركاء السائقين على التواصل مع بعضهم البعض لترتيب عملية النقل، إلا أننا لا نشارك رقم هاتفك الفعلي أو معلومات الاتصال الأخرى مع مستخدمين آخرين. إذا أبلغتنا عن عنصر مفقود أو تم العثور عليه، فسنسعى إلى توصيلك بالراكب أو السائق المعني، بما في ذلك مشاركة معلومات الاتصال الفعلية بموافقتك.<br />\n                <br />\n                <strong>الراكبون المشتركون في الرحلة.</strong> عندما يستخدم الركاب رحلة مشتركة من MXDrive، فإننا نشارك اسم كل راكب وصورة ملفه الشخصي لضمان سلامته. وقد يرى الركاب أيضًا مواقع الركوب والنزول لبعضهم البعض كجزء من معرفة المسار أثناء مشاركة الرحلة.<br />\n                <br />\n                <strong>الرحلات التي يطلبها الآخرون أو يدفع ثمنها.</strong> قد يتم طلب بعض الرحلات التي تقوم بها أو دفع ثمنها من قبل الآخرين. إذا قمت بإجراء إحدى هذه الرحلات باستخدام حساب MXDrive Business Profile الخاص بك، أو رمز أو قسيمة، أو برنامج مدعوم (على سبيل المثال، النقل أو الحكومة)، أو بطاقة ائتمان شركة مرتبطة بحساب آخر، أو يطلب مستخدم آخر أو يدفع مقابل ذلك بالنسبة لك، قد نشارك بعض أو كل تفاصيل رحلتك مع هذا الطرف الآخر، بما في ذلك التاريخ والوقت والتكلفة والتقييم المقدم ومنطقة الرحلة وموقع الركوب والتوصيل لرحلتك.<br />\n                <br />\n                <strong>برامج الإحالة.</strong> إذا قمت بإحالة شخص ما إلى منصة MXDrive، فسنخبره بأنك قمت بإنشاء الإحالة. إذا أحالك مستخدم آخر، فقد نشارك معلومات حول استخدامك لمنصة MXDrive مع هذا المستخدم. على سبيل المثال، قد يحصل مصدر الإحالة على مكافأة عند انضمامك إلى MXDrive Platform أو إكمال عدد معين من الرحلات وسيتلقى هذه المعلومات.</p>\n                \n                <p>ب. المشاركة مع موفري الخدمات الخارجيين لأغراض تجارية</p>\n                \n                <p>اعتمادًا على ما إذا كنت راكبًا أو سائقًا، قد تقوم MXDrive بمشاركة الفئات التالية من معلوماتك الشخصية لغرض تجاري لتزويدك بمجموعة متنوعة من ميزات وخدمات MXDrive Platform:</p>\n                \n                <ul>\n                <li>المعرفات الشخصية، مثل اسمك وعنوانك وعنوان بريدك الإلكتروني ورقم هاتفك وتاريخ ميلادك ورقم التعريف الحكومي (مثل رقم الضمان الاجتماعي)، ومعلومات رخصة القيادة، ومعلومات السيارة، ومعلومات تأمين السيارة؛</li>\n                <li>المعلومات المالية، مثل أرقام توجيه البنك، والمعلومات الضريبية، وأي معلومات دفع أخرى تقدمها لنا؛</li>\n                <li>المعلومات التجارية، مثل معلومات الرحلة، وإحصائيات وتعليقات السائق/الراكب، وسجل معاملات السائق/الراكب؛</li>\n                <li>معلومات نشاط الإنترنت أو الشبكة الإلكترونية الأخرى، مثل عنوان IP الخاص بك، ونوع المتصفح، وإصدار نظام التشغيل، وشركة الاتصالات و/أو الشركة المصنعة، ومعرفات الجهاز، ومعرفات إعلانات الهاتف المحمول؛ و</لي>\n                <li>بيانات الموقع.</li>\n                </ul>\n                \n                <p>نحن نكشف عن فئات المعلومات الشخصية هذه لمقدمي الخدمات لتحقيق الأغراض التجارية التالية:</p>\n                \n                <ul>\n                <li>صيانة وخدمة حساب MXDrive الخاص بك؛</li>\n                <li>معالجة المشاوير أو استيفائها؛</li>\n                <li>توفير خدمة العملاء لك؛</li>\n                <li>معالجة معاملات الراكب؛</li>\n                <li>معالجة طلبات السائق والمدفوعات؛</li>\n                <li>التحقق من هوية المستخدمين؛</li>\n                <li>كشف الاحتيال ومنعه؛</li>\n                <li>معالجة مطالبات التأمين؛</li>\n                <li>توفير برامج الولاء والبرامج الترويجية للسائقين</li>\n                <li>تقديم خدمات التسويق والإعلان لشركة MXDrive؛</li>\n                <li>توفير التمويل؛</li>\n                <li>تقديم خدمات الطوارئ المطلوبة؛</li>\n                <li>توفير خدمات التحليلات لشركة MXDrive؛ و</لي>\n                <li>إجراء بحث داخلي لتطوير منصة MXDrive.</li>\n                </ul>\n                \n                <p>ج. لأسباب قانونية ولحماية منصة برامج Mi</p>\n                \n                <ul>\n                <li>الامتثال لأي قانون أو لائحة فيدرالية أو خاصة بالولاية أو محلية معمول بها، أو تحقيق مدني أو جنائي أو تنظيمي، أو تحقيق أو إجراء قانوني، أو طلب حكومي واجب النفاذ؛</li>\n                <li>الرد على الإجراءات القانونية (مثل أمر التفتيش، أو أمر الاستدعاء، أو الاستدعاء، أو أمر المحكمة)؛</li>\n                <li>فرض شروط الخدمة لدينا؛</li>\n                <li>التعاون مع وكالات إنفاذ القانون فيما يتعلق بالسلوك أو النشاط الذي نعتقد بشكل معقول وبحسن نية أنه قد ينتهك القانون الفيدرالي أو قانون الولاية أو القانون المحلي؛ أو</li>\n                <li>ممارسة المطالبات القانونية أو الدفاع عنها، والحماية من الإضرار بحقوقنا أو ممتلكاتنا أو مصالحنا أو سلامتنا أو حقوقنا أو ممتلكاتنا أو مصالحنا أو سلامتك أو سلامة الأطراف الثالثة أو الجمهور وفقًا لما يقتضيه القانون أو يسمح به.</ لى>\n                </ul>\n                \n                <p>د. فيما يتعلق بالبيع أو الاندماج</p>\n                \n                <p>يجوز لنا مشاركة معلوماتك الشخصية أثناء التفاوض أو فيما يتعلق بتغيير سيطرة الشركة مثل إعادة الهيكلة أو الدمج أو بيع أصولنا.</p>\n                \n                <p>ه. بناءً على توجيهاتك الإضافية</p>\n                \n                <p>بإذن منك أو بناءً على توجيهاتك، قد نكشف عن معلوماتك الشخصية للتفاعل مع طرف ثالث أو لأغراض أخرى.</p>\n                \n                <p>كيف نقوم بتخزين معلوماتك وحمايتها</p>\n                \n                <p>نحن نحتفظ بمعلوماتك طالما كان ذلك ضروريًا لتزويدك ولمستخدمينا الآخرين بمنصة MXDrive. وهذا يعني أننا نحتفظ بمعلومات ملفك الشخصي طالما أنك تحتفظ بحساب. نحن نحتفظ بمعلومات المعاملات مثل الرحلات والمدفوعات لمدة سبع سنوات على الأقل لضمان قدرتنا على أداء وظائف العمل المشروعة، مثل المحاسبة عن الالتزامات الضريبية. إذا طلبت حذف الحساب، فسنقوم بحذف معلوماتك على النحو المبين في قسم \"حذف حسابك\" أدناه. نحن نتخذ التدابير المعقولة والمناسبة المصممة لحماية معلوماتك الشخصية. ولكن لا توجد إجراءات أمنية يمكن أن تكون فعالة بنسبة 100%، ولا يمكننا ضمان أمان معلوماتك، بما في ذلك ضد التدخلات غير المصرح بها أو الأعمال التي تقوم بها أطراف ثالثة.</p>\n                \n                <p>حقوقك وخياراتك فيما يتعلق ببياناتك</p>\n                \n                <p>توفر لك MXDrive طرقًا للوصول إلى معلوماتك الشخصية وحذفها بالإضافة إلى ممارسة حقوق البيانات الأخرى التي تمنحك تحكمًا معينًا في معلوماتك الشخصية.</p>\n                \n                <p>أ. كافة المستخدمين</p>\n                \n                <p>اشتراكات البريد الإلكتروني. يمكنك دائمًا إلغاء الاشتراك في رسائل البريد الإلكتروني التجارية أو الترويجية الخاصة بنا عن طريق النقر فوق إلغاء الاشتراك في تلك الرسائل. سنستمر في إرسال رسائل البريد الإلكتروني المتعلقة بالمعاملات والعلائقية إليك حول استخدامك لمنصة MXDrive.<br />\n                <br />\n                <strong>الرسائل النصية.</strong> يمكنك إلغاء الاشتراك في تلقي النصوص التجارية أو الترويجية. يمكنك أيضًا إلغاء الاشتراك في تلقي جميع النصوص من MXDrive (بما في ذلك رسائل المعاملات أو الرسائل العلائقية. لاحظ أن إلغاء الاشتراك في تلقي جميع النصوص قد يؤثر على استخدامك لمنصة MXDrive. يمكن للسائقين أيضًا إلغاء الاشتراك في الرسائل الخاصة بالسائق عن طريق إرسال رسالة نصية STOP ردًا على رسالة نصية قصيرة خاصة بالسائق لإعادة تمكين الرسائل النصية، يمكنك إرسال رسالة نصية بعنوان \"START\" ردًا على رسالة تأكيد إلغاء الاشتراك.<br />\n                <br />\n                <strong>الإشعارات الفورية.</strong> يمكنك إلغاء الاشتراك في تلقي الإشعارات الفورية من خلال إعدادات جهازك. يرجى ملاحظة أن إلغاء الاشتراك في تلقي الإشعارات قد يؤثر على استخدامك لمنصة MXDrive (مثل تلقي إشعار بوصول رحلتك).<br />\n                <br />\n                <strong>معلومات الملف الشخصي</strong>. يمكنك مراجعة وتعديل بعض معلومات الحساب التي اخترت إضافتها إلى ملفك الشخصي عن طريق تسجيل الدخول إلى إعدادات حسابك وملفك الشخصي.<br />\n                <br />\n                <strong>معلومات الموقع.</strong> يمكنك منع جهازك من مشاركة معلومات الموقع من خلال إعدادات النظام بجهازك. ولكن إذا قمت بذلك، فقد يؤثر ذلك على قدرة MXDrive على توفير مجموعة كاملة من الميزات والخدمات لك.<br />\n                <br />\n                <strong>تتبع ملفات تعريف الارتباط.</strong> يمكنك تعديل إعدادات ملفات تعريف الارتباط الخاصة بك على متصفحك، ولكن إذا قمت بحذف ملفات تعريف الارتباط الخاصة بنا أو اخترت عدم قبولها، فقد تفوتك ميزات معينة في منصة MXDrive.<br />\n                <br />\n                <strong>عدم التتبع.</strong> قد يقدم لك متصفحك خيار \"عدم التتبع\"، والذي يسمح لك بإرسال إشارة إلى مشغلي مواقع الويب وتطبيقات الويب والخدمات التي لا تريد منهم أن يتتبعوا أنشطتك عبر الإنترنت. لا يدعم نظام MXDrive Platform حاليًا طلبات عدم التتبع في الوقت الحالي.<br />\n                <br />\n                <strong>حذف حسابك.</strong> إذا كنت ترغب في حذف حساب MXDrive الخاص بك، يرجى زيارة صفحة الخصوصية الرئيسية لدينا. في بعض الحالات، لن نتمكن من حذف حسابك، كما هو الحال في حالة وجود مشكلة في حسابك تتعلق بالثقة أو الأمان أو الاحتيال. عندما نحذف حسابك، قد نحتفظ بمعلومات معينة لأغراض تجارية مشروعة أو للامتثال لالتزامات قانونية أو تنظيمية. على سبيل المثال، قد نحتفظ بمعلوماتك لحل مطالبات التأمين المفتوحة، أو قد نكون ملزمين بالاحتفاظ بمعلوماتك كجزء من مطالبة قانونية مفتوحة. عندما نحتفظ بمثل هذه البيانات، فإننا نفعل ذلك بطرق مصممة لمنع استخدامها لأغراض أخرى.<br />\n                <br />\n                <strong>الحق في المعرفة.</strong> لديك الحق في معرفة ومعرفة البيانات التي جمعناها، بما في ذلك:</p>\n                \n                <ul>\n                <li>فئات المعلومات الشخصية التي جمعناها عنك؛</li>\n                <li>فئات المصادر التي يتم جمع المعلومات الشخصية منها؛</li>\n                <li>الغرض التجاري أو التجاري لجمع معلوماتك الشخصية؛</li>\n                <li>فئات الأطراف الثالثة التي شاركنا معها معلوماتك الشخصية؛ و</لي>\n                <li>الأجزاء المحددة من المعلومات الشخصية التي جمعناها عنك.</li>\n                </ul>\n                \n                <p><strong>الحق في الحذف.</strong> لديك الحق في أن تطلب منا حذف المعلومات الشخصية التي جمعناها منك (وتوجيه مقدمي الخدمة لدينا للقيام بالشيء نفسه). ومع ذلك، هناك عدد من الاستثناءات التي تشمل، على سبيل المثال لا الحصر، عندما تكون المعلومات ضرورية لنا أو لطرف ثالث للقيام بأي مما يلي:</p>\n                \n                <ul>\n                <li>أكمل معاملتك؛</li>\n                <li>نقدم لك سلعة أو خدمة؛</li>\n                <li>إبرام عقد بيننا وبينك؛</li>\n                <li>حماية أمنك ومحاكمة المسؤولين عن انتهاكه؛</li>\n                <li>إصلاح نظامنا في حالة وجود خطأ؛</li>\n                <li>حماية حقوق حرية التعبير لك أو للمستخدمين الآخرين؛</li>\n                <li>المشاركة في الأبحاث العلمية أو التاريخية أو الإحصائية العامة أو الخاضعة لمراجعة النظراء لتحقيق المصلحة العامة والتي تلتزم بجميع قوانين الأخلاق والخصوصية الأخرى المعمول بها.</li>\n                <li>الامتثال لالتزام قانوني؛ أو</li>\n                <li>قم باستخدامات داخلية وقانونية أخرى للمعلومات التي تتوافق مع السياق الذي قدمتها فيه.</li>\n                </ul>\n                \n                <p><strong>حقوق أخرى.</strong> يمكنك طلب معلومات معينة حول الكشف عن المعلومات الشخصية لأطراف ثالثة لأغراض التسويق المباشر الخاصة بهم خلال السنة التقويمية السابقة. هذا الطلب مجاني ويمكن تقديمه مرة واحدة في السنة. لديك أيضًا الحق في عدم التعرض للتمييز بسبب ممارسة أي من الحقوق المذكورة أعلاه.<br />\n                <br />\n                <strong>موقع الويب:</strong> يمكنك زيارة صفحة الخصوصية الرئيسية لدينا لمصادقة الحقوق وممارستها عبر موقعنا على الويب.<br />\n                <br />\n                <strong>أرسل نموذج الويب عبر البريد الإلكتروني:</strong> يمكنك مراسلتنا لممارسة الحقوق. للرد على بعض الحقوق، سنحتاج إلى التحقق من طلبك إما عن طريق مطالبتك بتسجيل الدخول والمصادقة على حسابك أو التحقق من هويتك من خلال تقديم معلومات عنك أو عن حسابك. يمكن للوكلاء المعتمدين تقديم طلب نيابةً عنك إذا منحتهم توكيلًا قانونيًا أو تم تزويدنا بدليل على الإذن الموقع والتحقق من هويتك وتأكيد أنك قدمت الإذن للوكيل بإرسال الطلب. توقيت الاستجابة والتنسيق. ونحن نهدف إلى الرد على طلب المستهلك للوصول أو الحذف خلال 45 يومًا من تلقي هذا الطلب. إذا كنا بحاجة إلى المزيد من الوقت، فسنبلغك بالسبب وفترة التمديد كتابيًا.</p>\n                \n                <p>بيانات الأطفال</p>\n                \n                <p>برامج Mi ليست موجهة للأطفال، ونحن لا نجمع معلومات شخصية عن عمد من الأطفال تحت سن 13 عامًا. إذا اكتشفنا أن طفلًا أقل من 13 عامًا قد قدم لنا معلومات شخصية، فسنتخذ الخطوات اللازمة لحذف تلك المعلومات معلومة. إذا كنت تعتقد أن طفلًا يقل عمره عن 13 عامًا قد قدم لنا معلومات شخصية، فيرجى الاتصال بنا</p>\n                \n                <p>روابط لمواقع الطرف الثالث</p>\n                \n                <p>قد تحتوي منصة MXDrive Platform على روابط لمواقع ويب تابعة لجهات خارجية. قد يكون لهذه المواقع سياسات خصوصية تختلف عن سياساتنا. نحن لسنا مسؤولين عن تلك المواقع، ونوصيك بمراجعة سياساتها. يرجى الاتصال بهذه المواقع مباشرة إذا كانت لديك أية أسئلة حول سياسات الخصوصية الخاصة بها.</p>\n                \n                <p>التغييرات على سياسة الخصوصية هذه</p>\n                \n                <p>يجوز لنا تحديث هذه السياسة من وقت لآخر مع تغير نظام MXDrive Platform وتطور قانون الخصوصية. إذا قمنا بتحديثه، فسنقوم بذلك عبر الإنترنت، وإذا أجرينا تغييرات جوهرية، فسنخبرك بذلك من خلال منصة MXDrive Platform أو عن طريق وسيلة اتصال أخرى مثل البريد الإلكتروني. عندما تستخدم MXDrive، فإنك توافق على أحدث شروط هذه السياسة.</p>\n                \n                <p>اتصل بنا</p>\n                \n                <p>إذا كانت لديك أية أسئلة أو مخاوف بشأن خصوصيتك أو أي شيء في هذه السياسة، بما في ذلك إذا كنت بحاجة إلى الوصول إلى هذه السياسة بتنسيق بديل، فنحن نشجعك على الاتصال بنا.</p>', 'الشروط والأحكام', '<h2><strong>الشروط والأحكام</strong></h2>\n\n                <p>اتفاقية ترخيص المستخدم النهائي</p>\n\n                <p>آخر تحديث في 16 مايو 2021</p>\n\n                <p>تم ترخيص MXDrive,LLC لك (المستخدم النهائي) من شركة MXDrive, LLC، ومقرها في 6255 Towncenter Drive Ste 819، Clemmons، North Carolina 27012، الولايات المتحدة (المشار إليها فيما يلي: المرخص)، للاستخدام فقط بموجب الشروط. من اتفاقية الترخيص هذه.<br />\n                <br />\n                عن طريق تنزيل التطبيق من Apple AppStore وGoogle Play، وأي تحديث له (كما تسمح به اتفاقية الترخيص هذه)، فإنك تشير إلى أنك توافق على الالتزام بجميع شروط وأحكام اتفاقية الترخيص هذه، وأنك تقبل هذا اتفاقية الترخيص.<br />\n                <br />\n                يقر أطراف اتفاقية الترخيص هذه بأن Apple و/أو Google Play ليسوا طرفًا في اتفاقية الترخيص هذه وغير ملزمين بأي أحكام أو التزامات فيما يتعلق بالتطبيق، مثل الضمان والمسؤولية والصيانة والدعم الخاص به. تتحمل شركة MXDrive, LLC، وليس Apple أو Google Play، المسؤولية الوحيدة عن التطبيق المرخص ومحتواه.<br />\n                <br />\n                لا يجوز أن تنص اتفاقية الترخيص هذه على قواعد الاستخدام للتطبيق التي تتعارض مع أحدث شروط خدمة متجر التطبيقات. تقر شركة MXDrive, LLC بأنها أتيحت لها الفرصة لمراجعة الشروط المذكورة وأن اتفاقية الترخيص هذه لا تتعارض معها.<br />\n                <br />\n                جميع الحقوق غير الممنوحة لك صراحةً محفوظة.</p>\n\n                <p>1. التطبيق</p>\n\n                <p>MXDrive (المشار إليها فيما يلي: التطبيق) هي جزء من البرنامج عبارة عن منصة Rideshare - ومخصصة لأجهزة Apple وAndroid المحمولة. يتم استخدامه لتوصيل الركاب بالسائقين للوصول إلى النقطة A إلى B بضغطة زر واحدة.<br />\n                <br />\n                لم يتم تصميم التطبيق ليتوافق مع اللوائح الخاصة بالصناعة (قانون قابلية نقل التأمين الصحي والمساءلة (HIPAA)، والقانون الفيدرالي لإدارة أمن المعلومات (FISMA)، وما إلى ذلك)، لذلك إذا كانت تفاعلاتك ستخضع لمثل هذه القوانين، فلا يجوز لك استخدام هذا التطبيق. لا يجوز لك استخدام التطبيق بطريقة تنتهك قانون Gramm-Leach-Bliley (GLBA).</p>\n\n                <p>2. نطاق الترخيص</p>\n\n                <p>2.1 يتم منحك ترخيصًا غير قابل للتحويل وغير حصري وغير قابل للترخيص من الباطن لتثبيت التطبيق المرخص واستخدامه على أي منتجات تحمل علامة Apple التجارية أو منتجات Google التي تمتلكها أو تتحكم فيها (المستخدم النهائي) ووفقًا لما يسمح به قواعد الاستخدام المنصوص عليها في هذا القسم وشروط خدمة App Store، باستثناء أنه يمكن الوصول إلى هذا التطبيق المرخص واستخدامه بواسطة حسابات أخرى مرتبطة بك (المستخدم النهائي، المشتري) عبر المشاركة العائلية أو المجلد. الشراء.<br />\n                <br />\n                2.2 سيحكم هذا الترخيص أيضًا أي تحديثات للتطبيق المقدم من قبل المرخص والتي تحل محل التطبيق الأول و/أو تصلحه و/أو تكمله، ما لم يتم توفير ترخيص منفصل لمثل هذا التحديث وفي هذه الحالة ستسري شروط هذا الترخيص الجديد.<br />\n                <br />\n                2.3 لا يجوز لك مشاركة التطبيق أو إتاحته لأطراف ثالثة (ما لم يكن بالدرجة التي تسمح بها شروط وأحكام Apple، وبموافقة كتابية مسبقة من MXDrive, LLC)، أو بيع التطبيق أو تأجيره أو إقراضه أو تأجيره أو إعادة توزيعه بطريقة أخرى. <br />\n                <br />\n                2.4 لا يجوز لك إجراء هندسة عكسية، أو ترجمة، أو تفكيك، أو دمج، أو إلغاء ترجمة، أو دمج، أو إزالة، أو تعديل، أو دمج، أو إنشاء أعمال مشتقة أو تحديثات، أو تكييف، أو محاولة اشتقاق الكود المصدري للتطبيق، أو أي جزء منه (ما عدا مع موافقة كتابية مسبقة من شركة MXDrive, LLC).<br />\n                <br />\n                2.5 لا يجوز لك نسخ (باستثناء الحالات التي يسمح فيها هذا الترخيص وقواعد الاستخدام صراحةً) أو تغيير التطبيق أو أجزاء منه. لا يجوز لك إنشاء نسخ وتخزينها إلا على الأجهزة التي تمتلكها أو تتحكم فيها للاحتفاظ بنسخة احتياطية بموجب شروط هذا الترخيص وشروط خدمة App Store وأي شروط وأحكام أخرى تنطبق على الجهاز أو البرنامج المستخدم. لا يجوز لك إزالة أي إشعارات للملكية الفكرية. أنت تقر أنه لا يجوز لأي أطراف ثالثة غير مصرح بها الوصول إلى هذه النسخ في أي وقت. <br />\n                <br />\n                2.6 انتهاكات الالتزامات المذكورة أعلاه ، وكذلك محاولة هذا الانتهاك ، قد تخضع للملاحقة القضائية والأضرار. <br />\n                <br />\n                2.7 يحتفظ المرخص بالحق في تعديل شروط وأحكام الترخيص. <BR />\n                <br />\n                2.8 لا ينبغي تفسير أي شيء في هذا الترخيص لتقييد شروط الطرف الثالث. عند استخدام التطبيق ، يجب عليك التأكد من امتثالك لشروط وأحكام الطرف الثالث المعمول بها. </p>\n\n                <ص>3. المتطلبات الفنية </p>\n\n                <p> 3.1 يحاول Licensor الحفاظ على تحديث التطبيق بحيث يتوافق مع الإصدارات المعدلة/الجديدة من البرامج الثابتة والأجهزة الجديدة. لا تُمنح حقوقًا في المطالبة بمثل هذا التحديث. <br />\n                <br />\n                3.2 أنت تقر بأنه تقع على عاتقك مسؤولية تأكيد أن جهاز المستخدم النهائي للتطبيق الذي تنوي استخدام التطبيق يفي بالمواصفات الفنية المذكورة أعلاه. <br />\n                <br />\n                3.3 يحتفظ المرخص بالحق في تعديل المواصفات الفنية كما هو مناسب في أي وقت. </p>\n\n                <p> 4. الصيانة والدعم </p>\n\n                <p> 4.1 يكون المرخص مسؤولاً فقط عن توفير أي خدمات صيانة ودعم لهذا التطبيق المرخص. يمكنك الوصول إلى المرخص على عنوان البريد الإلكتروني المدرج في متجر التطبيقات أو نظرة عامة على Google Play لهذا التطبيق المرخص. <BR />\n                <br />\n                4.2 MXDrive ، LLC والمستخدم النهائي يعترفان بأن Apple و OR Play ليس عليهم التزام على الإطلاق بتقديم أي خدمات صيانة ودعم فيما يتعلق بالتطبيق المرخص. </p>\n\n                <p> 5. استخدام البيانات </p>\n\n                ] https://mxdrivex.atharvatek.com/privacy. </p>\n\n                <p> 6. المساهمات التي أنشأها المستخدم </p>\n\n                <p> يجوز للتطبيق أن يدعوك للدردشة أو المساهمة في المدونات أو لوحات الرسائل والمنتديات عبر الإنترنت والوظائف الأخرى ، وقد يوفر لك الفرصة لإنشاء أو إرسال أو عرض أو إرسال أو تنفيذ وأداء أو نشر أو توزيع المحتوى والمواد أو بثه لنا أو في التطبيق ، بما في ذلك على سبيل المثال لا الحصر ، النص أو الكتابات أو الفيديو أو الصوت أو الصور الفوتوغرافية أو الرسومات أو التعليقات أو الاقتراحات أو المعلومات الشخصية أو مواد أخرى (مجتمعة ، \"مساهمات\"). يمكن عرض المساهمات من قبل المستخدمين الآخرين للتطبيق ومن خلال مواقع أو تطبيقات الطرف الثالث. على هذا النحو ، قد يتم التعامل مع أي مساهمات تنقلها على أنها غير سرية وغير مقدمة. عندما تقوم بإنشاء أو إتاحة أي مساهمات ، فأنت تمثل وتتعاون: <br />\n                <br />\n                1. إن إنشاء مساهماتك أو توزيعها أو نقلها أو عرضها العام أو الأداء ، والوصول إلى أو تنزيل أو نسخ مساهماتك ، لن تنتهك حقوق الملكية ، بما في ذلك على سبيل المثال أو الحقوق الأخلاقية لأي طرف ثالث. <br />\n                <br />\n                2. أنت منشئ ومالك التراخيص والحقوق والموافقات والإصدارات والأذونات اللازمة لاستخدامنا وتفويضها والتطبيق ومستخدمي التطبيق الآخرين لاستخدام مساهماتك بأي طريقة تفكر فيها التطبيق وشروط الاستخدام هذه. <br />\n                <br />\n                3. لديك موافقة كتابية وإصدار و/أو إذن من كل فرد يمكن تحديده في مساهماتك لاستخدام الاسم أو الشبه أو كل شخص فردي يمكن تحديده لتمكين إدراج واستخدام مساهماتك بأي طريقة تم التفكير فيها حسب التطبيق وشروط الاستخدام هذه. <br />\n                <br />\n                4. مساهماتك ليست خاطئة أو غير دقيقة أو مضللة. <br />\n                <br />\n                5. مساهماتك ليست إعلانات غير مرغوب فيها أو غير مصرح بها ، أو مواد ترويجية ، أو مخططات هرمية ، أو رسائل السلسلة ، أو البريد العشوائي ، أو المراسلات الجماعية ، أو غيرها من أشكال التماس. <br />\n                <br />\n                6. مساهماتك ليست فاحشة أو بذيئة أو واسعة أو قذرة أو عنيفة أو مضايقة أو تشهيرية أو مخططة أو غير مرغوب فيها (كما هو محدد من قبلنا). <br />\n                <br />\n                7. مساهماتك لا تسخر أو وهمية أو تخويف أو تخويف أو إساءة استخدام أي شخص. <br />\n                <br />\n                8. لا يتم استخدام مساهماتك لمضايقة أو تهديد (بالمعنى القانوني لتلك المصطلحات) أي شخص آخر وتعزيز العنف ضد شخص معين أو فئة من الناس. <br />\n                <br />\n                9. مساهماتك لا تنتهك أي قانون أو لائحة أو قاعدة معمول بها. <br />\n                <br />\n                10. مساهماتك لا تنتهك حقوق الخصوصية أو الدعاية لأي طرف ثالث. <br />\n                <br />\n                11. لا تحتوي مساهماتك على أي مادة تلتمس المعلومات الشخصية من أي شخص دون سن 18 أو يستغل الناس دون سن 18 عامًا بطريقة جنسية أو عنيفة. <BR />\n                <br />\n                12. لا تنتهك مساهماتك أي قانون معمول به فيما يتعلق بالمواد الإباحية عن الأطفال ، أو يهدف إلى حماية صحة أو رفاهية القاصرين. <br />\n                <br />\n                13. لا تتضمن مساهماتك أي تعليقات هجومية مرتبطة بالعرق أو الأصل القومي أو الجنس أو التفضيل الجنسي أو المعوق الجسدي. <br />\n                <br />\n                14. لا تنتهك مساهماتك أو ترتبط بالمواد التي تنتهك أي حكم من شروط الاستخدام هذه أو أي قانون أو لائحة معمول بها. <br />\n                <br />\n                أي استخدام للتطبيق في انتهاك ما سبق ينتهك شروط الاستخدام هذه وقد يؤدي ، من بين أشياء أخرى ، إنهاء أو تعليق حقوقك في استخدام التطبيق. </p>\n\n                <p> 7. ترخيص المساهمة </p>\n\n                <p> من خلال نشر مساهماتك في أي جزء من التطبيق أو تقديم مساهمات في متناول التطبيق عن طريق ربط حسابك من التطبيق إلى أي من حسابات الشبكات الاجتماعية الخاصة بك ، فإنك تمنحها تلقائيًا ، وتمثل وتبرير أن لديك الحق في ذلك منح لنا ، لنا غير مقيد ، غير محدود ، لا رجعة فيه ، دائم ، غير حصري ، قابل للتحويل ، خالي من الملوك ، مدفوعين بالكامل ، في جميع أنحاء العالم ، وترخيص لاستضافة النسخ ، إعادة إنتاج ، الكشف ، بيع ، إعادة بيع ، نشر ، نشر ، طاقم عمل واسع ، رعيد ، أرشيف ، متجر ، ذاكرة التخزين المؤقت ، عرض علنيًا ، إعادة تنسيق ، ترجمة ، نقل ، مقتطفات (كليًا أو جزئيًا) ، وتوزيع هذه المساهمات (بما في ذلك ، على سبيل المثال لا الحصر ، صورتك وصوتك) لأي غرض ، إعلانات تجارية ، أو غير ذلك ، وإعداد أعمال مشتقة أو دمجها في أعمال أخرى ، مثل المساهمات ، ومنح وتأمينات Sublicments السابقة. قد يحدث الاستخدام والتوزيع في أي تنسيقات وسائط ومن خلال أي قنوات إعلامية. <br />\n                <br />\n                سيتم تطبيق هذا الترخيص على أي نموذج أو وسائل الإعلام أو التكنولوجيا المعروفة الآن أو يتم تطويره فيما بعد ، ويتضمن استخدامنا لاسمك واسم الشركة واسم الامتياز ، على النحو المطلوب ، وأي من العلامات التجارية ، علامات الخدمة ، الأسماء التجارية ، الشعارات ، والصور الشخصية والتجارية التي تقدمها. تتنازل عن جميع الحقوق الأخلاقية في مساهماتك ، وتضمن أن الحقوق الأخلاقية لم يتم تأكيدها في مساهماتك. <br />\n                <br />\n                نحن لا نؤكد أي ملكية على مساهماتك. يمكنك الاحتفاظ بملكية كاملة لجميع مساهماتك وأي حقوق الملكية الفكرية أو غيرها من حقوق الملكية المرتبطة بمساهماتك. نحن لسنا مسؤولين عن أي بيانات أو تمثيلات في مساهماتك المقدمة في أي مجال في التطبيق. أنت وحدك مسؤول عن مساهماتك في الطلب وتوافق صراحة على تبرئةنا من أي وكل مسؤولية وامتناع عن أي إجراء قانوني ضدنا فيما يتعلق بمساهماتك. <br />\n                <br />\n                لدينا الحق ، وفقًا لتقديرنا المطلق والمطلق ، (1) لتحرير أي مساهمات أو تنقيحها أو تغييرها بطريقة أخرى ؛ (2) إعادة تصنيف أي مساهمات لوضعها في مواقع أكثر ملاءمة في التطبيق ؛ و (3) لشراء أو حذف أي مساهمات في أي وقت ولأي سبب ، دون إشعار. ليس لدينا أي التزام بمراقبة مساهماتك. </p>\n\n                <p> 8. المسؤولية </p>\n\n                <p> 8.1 مسؤولية المرخص في حالة انتهاك الالتزامات والضرر يقتصر على القصد والإهمال الجسيم. فقط في حالة خرق الواجبات التعاقدية الأساسية (الالتزامات الأساسية) ، يجب أن يكون المرخص مسؤولاً أيضًا في حالة الإهمال الطفيف. في أي حال ، تقتصر المسؤولية على الأضرار النموذجية المنظورة. لا ينطبق القيد المذكور أعلاه على الإصابات في الحياة أو الأطراف أو الصحة. <br />\n                <br />\n                8.2 لا يتحمل المرخص أي مساءلة أو مسؤولية عن أي أضرار تسبب بسبب خرق الواجبات وفقًا للمادة 2 من هذه الاتفاقية. لتجنب فقدان البيانات ، يتعين عليك الاستفادة من وظائف النسخ الاحتياطي للتطبيق إلى الحد الذي يسمح به شروط الاستخدام الجهات الخارجية المعمول بها. أنت تدرك أنه في حالة التعديلات أو التلاعب بالتطبيق ، لن تتمكن من الوصول إلى التطبيق المرخص. </p>\n\n                <p> 9. الضمان </p>\n\n                <p> 9.1 يستدعي المرخصين أن يكون التطبيق خاليًا من برامج التجسس أو خيول طروادة أو فيروسات أو أي برامج ضارة أخرى في وقت التنزيل. يستدعي المرخصين أن التطبيق يعمل كما هو موضح في وثائق المستخدم. <br />\n                <br />\n                9.2 لا يتم توفير أي ضمان للتطبيق غير القابل للتنفيذ على الجهاز ، والذي تم تعديله بشكل غير مصرح به ، أو معالجته بشكل غير لائق أو معلما ، أو مجتمعة أو مثبتة بأجهزة أو برامج غير لائقة ، وتستخدم مع إكسسوارات غير لائقة ، بغض النظر عما إذا كانت بنفسك أو بأطراف ثالثة ، بحلول أطراف ثالثة ، أو إذا كان هناك أي أسباب أخرى خارج MXDrive ، مجال تأثير LLC الذي يؤثر على قابلية التطبيق. <br />\n                <br />\n                9.3 ، يُطلب منك فحص التطبيق فورًا بعد تثبيته وإخطار MXDrive ، LLC حول المشكلات التي تم اكتشافها دون تأخير عن طريق البريد الإلكتروني المقدم في مطالبات المنتج. سيتم أخذ تقرير العيوب في الاعتبار وسيتم التحقيق بشكل إضافي إذا تم إرساله بالبريد خلال فترة تسعين (90) يومًا بعد الاكتشاف. <br />\n                <br />\n                9.4 إذا أكدنا أن التطبيق معيب ، تحتفظ MXDrive ، LLC باختيار لعلاج الموقف إما عن طريق حل العيب أو التسليم البديل. <BR />\n                <br />\n                9.5 في حالة وجود أي فشل في التطبيق في التوافق مع أي ضمان قابل للتطبيق ، يمكنك إخطار تشغيل متجر التطبيقات ، وسيتم استرداد سعر شراء التطبيق الخاص بك. إلى أقصى حد يسمح به القانون المعمول به ، لن يكون لدى مشغل متجر التطبيقات أي التزام ضمان آخر على الإطلاق فيما يتعلق بالتطبيق ، وأي خسائر ومطالبات أخرى وأضرار وتخصيصات ونفقات وتكاليف تعزى إلى أي إهمال على الالتزام بأي شيء الضمان. <br />\n                <br />\n                9.6 إذا كان المستخدم رائد أعمال ، فإن أي مطالبة تعتمد على الأخطاء تنتهي بعد فترة قانونية من التقادم التي تصل إلى اثني عشر (12) شهرًا بعد إتاحة الطلب للمستخدم. تنطبق الفترات القانونية للتقييد المقدم بموجب القانون على المستخدمين المستهلكين. </p>\n\n                <p> 10. مطالبات المنتج </p>\n\n                يعترف <P> MXDrive ، LLC والمستخدم النهائي بأن MXDrive ، LLC ، وليس Apple ، مسؤولون عن معالجة أي مطالبات للمستخدم النهائي أو أي طرف ثالث يتعلق بالتطبيق المرخص أو حيازة المستخدم النهائي و /أو استخدام هذا التطبيق المرخص ، بما في ذلك ، على سبيل المثال لا الحصر: <br />\n                <br />\n                (ط) مطالبات مسؤولية المنتج ؛ <br />\n                <br />\n                (2) أي مطالبة بأن الطلب المرخص يفشل في الامتثال لأي متطلبات قانونية أو تنظيمية معمول بها ؛ و <br />\n                <br />\n                (3) المطالبات الناشئة تحت حماية المستهلك أو الخصوصية أو التشريعات المماثلة ، بما في ذلك فيما يتعلق باستخدام طلبك المرخص. </p>\n\n                <p> 11. الامتثال القانوني </p>\n\n                <p> أنت تمثل وتتعهد أنك لا تقع في بلد يخضع للحصار الحكومي الأمريكي ، أو التي تم تعيينها من قبل الحكومة الأمريكية كدولة \"إرهابية تدعم\" ؛ وأنك غير مدرج في أي قائمة حكومية أمريكية من الأطراف المحظورة أو المقيدة. </p>\n\n                <p> 12. معلومات الاتصال </p>\n\n                <p> للاستفسارات العامة أو الشكاوى أو الأسئلة أو المطالبات المتعلقة بالتطبيق المرخص ، يرجى الاتصال: <br />\n                <br />\n                <strong> MXDrive ، LLC <BR />\n                6255 Towncenter Drive Ste 819 <Br />\n                Clemmons ، NC 27012 <BR />\n                الولايات المتحدة <br />\n                دعم@MXDrive.us </strong> </p>\n\n                <p> 13. إنهاء </p>\n\n                <p> يكون الترخيص صالحًا حتى يتم إنهاءه بواسطة MXDrive ، LLC أو من قبلك. ستنتهي حقوقك بموجب هذا الترخيص تلقائيًا ودون إشعار من MXDrive ، LLC إذا فشلت في الالتزام بأي مصطلح (ق) من هذا الترخيص. عند إنهاء الترخيص ، يجب عليك إيقاف كل استخدام التطبيق ، وتدمير جميع النسخ ، كاملة أو جزئية ، للتطبيق. </p>\n\n                <p> 14. شروط الاتفاقيات والمستفيد من الطرف الثالث </p>\n\n                <p> MXDrive ، LLC تمثل وتستدعي أن MXDrive ، LLC ستقوم بالامتثال لشروط الاتفاقية المعمول بها عند استخدام التطبيق المرخص. <BR />\n                <br />\n                وفقًا للمادة 9 من \"التعليمات الخاصة بشروط الحد الأدنى لاتفاقية ترخيص المستخدم النهائي للمطور\" ، يجب أن تكون شركة Apple و Apple مستفيدين من طرف ثالث من اتفاقية ترخيص المستخدم النهائي هذه-وبناءً على قبولك لشروط وأحكام هذا الترخيص اتفاق ، سيكون للآبل الحق (وسيُعتبر أنه قد قبل الحق) في تطبيق اتفاقية ترخيص المستخدم النهائي ضدك كمستفيد من طرف ثالث. </p>\n\n                <p> 15. حقوق الملكية الفكرية </p>\n\n                <p> MXDrive ، LLC والمستخدم النهائي يقران أنه في حالة ادعاء أي طرف ثالث أن الطلب المرخص أو حيازة المستخدم النهائي واستخدام هذا الطلب المرخص ينتهك حقوق الملكية الفكرية للطرف الثالث ، MI ستكون البرامج ، LLC ، وليس Apple ، مسؤولة فقط عن التحقيق أو الدفاع والتسوية والتفريغ أو أي مطالبات انتهاك للملكية الفكرية. </p>\n\n                <p> 16. القانون المعمول به </p>\n\n                <p> تخضع اتفاقية الترخيص هذه لقوانين ولاية كارولينا الشمالية باستثناء تعارضها في قواعد القانون. </p>\n\n                <p> 17. متنوعة </p>\n\n                <p> 17.1 إذا كانت أي من شروط هذه الاتفاقية يجب أن تكون أو تصبح غير صالحة ، فلن تتأثر صحة الأحكام المتبقية. سيتم استبدال المصطلحات غير الصالحة بأخرى صالحة تم صياغتها بطريقة ستحقق الغرض الأساسي. <br />\n                <br />\n                17.2 اتفاقيات الجانبية والتغييرات والتعديلات صالحة فقط إذا تم وضعها في الكتابة. لا يمكن التنازل عن البند السابق إلا في الكتابة. </p> ', 'الامتثال', '<H3> <strong> فرصة التوظيف المتساوية وسياسة عدم التمييز </strong> </h3>\n\n                <h3> أنا. نظرة عامة ونطاق </h3>\n\n                <p> MXDrive ، LLC من 6255 Towncenter Drive Ste 819 ، Clemmons ، North Carolina 27012 ، أنشأت سياسة غير تمييزية وتكافؤ فرص العمل (\"EEO\"). تنطبق سياسة EEO هذه على جميع جوانب العلاقة بين MXDrive ، LLC وموظفيها ، بما في ذلك ، على سبيل المثال لا الحصر ، التوظيف ، التوظيف ، الإعلانات للتوظيف ، التوظيف والاطلاق ، التعويض ، المهمة ، تصنيف الموظفين ، الإنهاء ، الترقية ، الترقيات ، النقل ، التدريب ، ظروف العمل ، الأجور وإدارة الرواتب ، ومزايا الموظفين وتطبيق السياسات. تنطبق هذه السياسات على المقاولين المستقلين ، والموظفين المؤقتين ، وجميع الموظفين العاملين في المبنى ، وأي أشخاص أو شركات أخرى تقوم بأعمال تجارية من أجل أو مع MXDrive ، LLC. أي مستخدم وجد أنه انتهك هذا الحظر سوف يفقد الوصول إلى منصة MXDrive ، LLC. قد تتطلب القوانين المعمول بها في بعض الولايات القضائية و/أو تسمح بتوفير الخدمات من خلال وصالح فئة معينة من الأشخاص. في مثل هذه السلطات القضائية ، يتم السماح بالخدمات المقدمة في الامتثال لهذه القوانين والشروط المعمول بها ذات الصلة بموجب هذه السياسة. </p>\n\n                <H3> II. السياسات </h3>\n\n                <p>1. التمييز. </p>\n\n                يجب ألا تتسامح <p> MXDrive ، LLC ، تحت أي ظرف من الظروف ، دون استثناء ، أي شكل من أشكال التمييز على أساس العرق ، العقيدة ، الدين ، اللون ، العمر ، العجز ، الحمل ، الحالة الزواجية ، الحالة الوالدية ، الميل الجنسي ، التعبير الجنساني ، الهوية الجنسية ، الوضع المخضرم ، الوضع العسكري ، وضع ضحية العنف المنزلي ، الأصل القومي ، الانتماء السياسي ، الجنس ، الخصائص الوراثية المؤهلة ، أو الموقع الجغرافي وأي حالة أخرى محمية بموجب القانون. هذه القائمة ليست شاملة. بالنسبة للأشخاص المؤهلين ذوي الإعاقة ، ستقوم MXDrive ، LLC ببذل قصارى جهدها لتوفير أماكن إقامة معقولة في مكان العمل التي تمتثل للقوانين المعمول بها. </p>\n\n                <p> التمييز في توفير خدمات النقل محظور بشكل صارم </p>\n\n                <p> يُطلب من السائقين والموظفين المرتبطة بمعرفة حظر عدم التمييز. لن تتسامح MXDrive ، LLC مع أماكن الإقامة العامة ، والتي تشمل خدمات سيارات الأجرة الممارسة التمييزية غير القانونية لإنكار ، بشكل مباشر أو غير مباشر ، أي شخص يتمتع بالسلع والخدمات والمرافق والامتيازات والامتيازات بشكل مباشر أو غير مباشر. من أماكن الإقامة العامة (بما في ذلك خدمات سيارات الأجرة) كليًا أو جزئيًا لسبب تمييزي قائم على مكان الإقامة أو الأعمال التجارية. </p>\n\n                <p> ممنوع السلوك التمييزي: </p>\n\n                <p> MXDrive ، LLC تدرك أن السائقين المرتبطين يجب ألا يميزوا أبدًا ضد بعض العملاء من خلال عدم التقاطهم ، وليس أخذهم إلى حيث يرغبون في الذهاب أو عن طريق معاملتهم باحترام أقل بناءً على الخصائص المحمية أو السمات المذكورة أعلاه. أمثلة محددة للسلوك التمييزي ، تشمل ما يلي: <br />\n                <br />\n                عدم التقاط راكب على أساس أي خاصية أو سمة محمية ، بما في ذلك عدم التقاط راكب مع حيوان خدمة · يطلب من راكب الخروج من سيارة أجرة على أساس خاصية محمية أو سمة · استخدام لغة مهينة أو مضايقة على أساس خاصية محمية أو سمة · رفض التقاط في منطقة جغرافية معينة. </p>\n\n                <p> التمييز الجغرافي: </p>\n\n                لا تتسامح <p> MXDrive ، LLC إلى التمييز الجغرافي ويدرك مدى أهمية نقل العميل إلى الوجهة المطلوبة دون التمييز ضد ذلك العميل بناءً على المكان الذي يرغب فيه في الذهاب. جميع السائقين والموظفين والمديرين وأصحاب المصلحة والوكلاء في MXDrive ، LLC سوف يتوافق مع سياسات مكافحة التمييز هذه. في بعض الحالات ، قد توفر القوانين واللوائح المحلية حماية أكبر من تلك الموصوفة في هذه السياسة. </p>\n\n                <p> 2. المضايقة </p>\n\n                <p> MXDrive ، LLC ملتزم بتوفير بيئة عمل خالية من المضايقات. أي سلوك غير مرغوب فيه ومسيء للمستلم ، والذي يخلق بيئة عمل تخويف أو معادية أو مهينة لهذا الشخص ينتهك سياسة MXDrive ، LLC. يمكن أن تحدث المضايقة بين أعضاء الجنس الآخر أو نفس الجنس. التحرش ، اللفظي أو غير لفظي ، صريح أو ضمني ، بناءً على جنس الفرد أو العرق أو العرق أو الأصل القومي أو العمر أو الدين أو أي خصائص أخرى محمية قانونًا. يُطلب من جميع الموظفين ، بمن فيهم المشرفون ، وموظفي الإدارة الآخرين ، والمقاولين المستقلين ، الالتزام بهذه السياسة. لن يتأثر أي شخص سلبًا في العمل مع MXDrive ، LLC نتيجة لتقديم شكاوى من المضايقات. </p>\n\n                <ص>3. التحرش الجنسي </p>\n\n                <p> التقدم الجنسي غير المرغوب فيه ، وطلبات الحسنات الجنسية ، وغيرها من السلوك اللفظي أو الجسدي للطبيعة الجنسية تشكل مضايقة عندما يتم تقديم (1) تقديم مثل هذا السلوك إما بشكل صريح أو ضمني مصطلح أو حالة توظيف ؛ (2) يتم استخدام أو رفض هذا السلوك من قبل الفرد كأساس لقرارات التوظيف أو الترقية أو النقل أو الاختيار للتدريب أو تقييمات الأداء أو الفوائد أو غيرها من الشروط والأحكام الوظيفية ؛ أو (3) هذا السلوك له غرض أو تأثير إنشاء بيئة عمل تخويف أو معادية أو مسيئة أو يتداخل بشكل كبير مع أداء عمل الموظف. تحظر MXDrive ، LLC السلوك غير المناسب الذي هو جنسي بطبيعته في العمل ، أو في أعمال الشركة ، أو في الأحداث التي ترعاها الشركة بما في ذلك ما يلي: التعليقات ، النكات ، اللغة المهينة ، الأشياء المقترحة جنسيًا ، أو الكتب ، أو أي شكل من أشكال الوسائط الإلكترونية أو في نموذج الطباعة. يحظر التحرش الجنسي سواء كان ذلك بين أعضاء الجنس الآخر أو أعضاء نفس الجنس. </p>\n\n                <p> 4. بيان عن العمل الإيجابي </p>\n\n                <p> تم تطوير برنامج عمل إيجابي حيث تسعى MXDrive ، LLC إلى زيادة تمثيل الأقليات ومشاركتها </p>\n\n                <p> 5. الإبلاغ عن التمييز والتحرش </p>\n\n                <p> إذا شعر الموظف أنه أو هي مضايقة كما هو موضح في هذه السياسة ، فيجب عليهم تقديم التظلم على الفور مع: قسم التظلم ، 6255 TownCenter Drive ، Ste 819 ، Clemmons NC 27012 ، أو عن طريق البريد الإلكتروني في Complience@MXDrive. نحن. بمجرد الإبلاغ عن الأمر ، سيتم التحقيق على الفور وسيتم اتخاذ أي إجراء تصحيحي عند اعتباره مناسبًا. جميع الشكاوى أو المضايقات غير القانونية بموجب هذه السياسة أو سيتم التعامل معها بطريقة سرية قدر الإمكان. يتم تشجيع الإبلاغ في الوقت المناسب لمنع إعادة تواجد السلوك أو المعالجة بطريقة أخرى هذه السياسة أو القانون. يمكن أن يحد التأخير في الإبلاغ عن الشكوى من نوع فعالية الاستجابة من قبل MXDrive ، LLC. لا يهدف إجراء الإبلاغ عن حوادث السلوك التمييزي أو المضايق إلى منع حق أي موظف في طلب علاج بموجب قانون الولاية أو القانون الفيدرالي المتاح من خلال الإبلاغ على الفور عن المسألة إلى الوكالة الفيدرالية المناسبة. </p>\n\n                <p> 6. الانتقام </p>\n\n                <p> الانتقام من أي شخص مرتبط بـ MXDrive ، LLC الذي يبلغ عن حالات من المضايقات - سواء كان هو أو هي متورط بشكل مباشر أو غير مباشر - ينتهك سياسات MXDrive ، LLC. من المفترض أن يتم إجراء جميع الحوادث المبلغ عنها بحسن نية. سيتم التعامل مع أي ادعاءات مثبتة كاذبة على أنها مسألة خطيرة. </p>\n\n                <p> 7. التدابير التأديبية للمضايقة </p>\n\n                <p> أي موظف يشارك في السلوك الذي ينتهك هذه السياسة سيخضع لاتخاذ إجراءات تأديبية ، بما في ذلك الإنهاء المحتمل للتوظيف ، سواء تم انتهاك قانون فعلي أم لا. </p>\n\n                <p> 8. العلاجات </p>\n\n                <p> سبل الانتصاف لأي حالات من التمييز العملي الذي تم التحقق منه ، سواء كان ذلك عن قصد أو عن طريق الإجراءات التي لها تأثير تمييزي ، قد تشمل الأجور الظهر ، التوظيف ، الترويج ، إعادة ، رواتب أمامية ، أماكن إقامة معقولة ، أو إجراءات أخرى تُعتبر مناسبة من قبل MXDrive ، ذ م م. يمكن أن تشمل العلاجات أيضًا دفع أتعاب المحاماة ورسوم الشهود الخبراء وتكاليف المحكمة والرسوم القانونية الأخرى المعمول بها. </p>\n\n                <p> 9. تنفيذ السياسة </p>\n\n                <p> الرئيس التنفيذي لشركة MXDrive ، Lynn Graham ، يدعم تمامًا تنفيذ هذه السياسة الفعالة اعتبارًا من 19 أبريل 2021. </p>', 'DMV Check', '<h2> <strong> فحص DMV والتحقق من الخلفية الموافقة </strong> </h2>\n\n                <p> </p>\n\n                <p> موافقة على طلب سجل القيادة </p>\n\n                <p> أفهم أن MXDrive ، LLC. (\"الشركة\") ستستخدم Checkr. ، (\"Checkr ، Inc.\") للحصول على سجل للسيارات كجزء من عملية التقديم ليكون سائقًا على منصة MXDrive (\"برنامج التشغيل\"). أفهم أيضًا أنه إذا تم قبولها كسائق ، إلى الحد الذي يسمح به القانون ، فيجوز للشركة الحصول على تقارير أخرى من CheckR Inc. من أجل تحديث أو تمديد أو تمديد حالتي كسائق. أعطي بموجب هذا الإذن لبرامج MI للحصول على سجل قيادة الولاية الخاص بي (المعروف أيضًا باسم سجل سيارتي أو MVR) وفقًا لقانون حماية خصوصية السائق الفيدرالي (\"DPPA\" وقانون الولاية المعمول به. أقر وأفهم أن سجل القيادة الخاص بي هو تقرير المستهلك الذي يحتوي على معلومات السجل العام. أسمح ، دون حجز أي طرف أو وكالة تم الاتصال بها من قبل شركة أو CheckR Inc. لتزويد الشركة بنسخة من سجل قيادة الولاية الخاص بي. يجب أن يظل هذا التفويض في ملف من قبل الشركة طوال فترة وقتي كسائق ، وسيكون بمثابة ترخيص مستمر للشركة لشراء سجل قيادة الولاية في أي وقت أثناء قيامي. </p>\n\n                <p> موافقة على طلب تقرير المستهلك أو معلومات تقرير المستهلك الاستقصائي </p>\n\n                <p> أفهم أن MXDrive ، LLC. (\"الشركة\") سوف تستخدم Checkr Inc. ، </p>\n\n                <p> 1 Montgomery St ، Ste 2000 ، San Francisco ، CA 94104 </p>\n\n                <p> للحصول على تقرير المستهلك أو تقرير المستهلك الاستقصائي كجزء من عملية التقديم ليكون محركًا على منصة MXDrive (\"برنامج التشغيل\"). أفهم أيضًا أنه إذا تم قبولها كسائق ، إلى الحد الذي يسمح به القانون ، يجوز للشركة الحصول على المزيد من التقارير من CheckR من أجل تحديث أو تمديد أو تمديد حالتي كبرنامج سائق. </p>\n\n                <p> أفهم أن التحقيق في CheckR ، Inc (\"CheckR\") قد يشمل الحصول على معلومات بشأن السجل الجنائي الخاص بي ، مع مراعاة أي قيود يفرضها قانون الفيدرالية والقانون المعمول بها. أفهم أن هذه المعلومات قد يتم الحصول عليها من خلال الاتصال المباشر أو غير المباشر مع الوكالات العامة أو الأشخاص الآخرين الذين قد يكون لديهم مثل هذه المعرفة. </p>\n\n                <p> ستشمل طبيعة ونطاق التحقيق المطلوب فحص خلفية جنائية وتتبع SSN. </p>\n\n                <p> أقر باستلام الملخص المرفق لحقوق بلدي بموجب قانون الإبلاغ عن الائتمان العادل ، وكما هو مطلوب بموجب القانون ، أي ملخص لحقوق ذات صلة (\"ملخصات الحقوق\"). </p>\n\n                <p> لن تؤثر هذه الموافقة على قدرتي على التشكيك في دقة أي معلومات واردة في تقرير. أنا أفهم ما إذا كانت الشركة اتخذت قرارًا مشروطًا بعدم تأهيل كل أو جزئيًا على تقريري ، فسيتم تزويدي بنسخة من التقرير ونسخة أخرى من ملخصات الحقوق ، وإذا كنت لا أتفق مع دقة عدم الأهلية المزعومة المعلومات الواردة في التقرير ، يجب أن أخطر الشركة في غضون خمسة أيام عمل عن استلامي للتقرير بأنني أتحدى دقة هذه المعلومات باستخدام Checkr. </p>\n\n                <p> أوافق بموجب هذا على هذا التحقيق وأسمح للشركة بشراء تقرير عن خلفيتي. </p>\n\n                <p> من أجل التحقق من هويتي لأغراض إعداد التقارير ، أقوم طوعًا بإطلاق تاريخ ميلادي ورقم الضمان الاجتماعي والمعلومات الأخرى وأفهم تمامًا أن جميع القرارات تستند إلى أسباب غير تمييزية مشروعة. </p >\n\n                <p> اسم وعنوان ورقم الهاتف لأقرب وحدة من وكالة التقارير المستهلك المعينة للتعامل مع الاستفسارات المتعلقة بتقرير المستهلك الاستقصائي هو: </p>\n\n                <p> <strong> Checkr ، Inc. <Br />\n                1 Montgomery St ، Ste 2000 ، San Francisco ، CA 94104 <BR />\n                844-824-3257 </strong> <br />\n                <br />\n                <strong> California و Maine و Massachusetts و Minnesota و New Jersey & Oklahoma Mustomants فقط: </strong> لدي الحق في طلب نسخة من أي تقرير تم الحصول عليه بواسطة الشركة من ChectR عن طريق التحقق من المربع. (تحقق فقط إذا كنت ترغب في تلقي نسخة) </p>\n\n                <p> المتقدمون في نيويورك فقط </p>\n\n                <p> أقر أيضًا أنني تلقيت نسخة مرفقة من المادة 23A من قانون تصحيح نيويورك. أدرك كذلك أنني قد أطلب نسخة من أي تقرير مستهلك استقصائي عن طريق الاتصال بـ CheckR. أدرك أيضًا أنه سيتم إخباري إذا تم طلب أي شيكات أخرى وقدم اسم وعنوان وكالة الإبلاغ المستهلك. </p>\n\n                <p> المتقدمين والمقيمين في كاليفورنيا </p>\n\n                <p> إذا كنت أتقدم في كاليفورنيا أو أقيمت في كاليفورنيا ، فأنا أفهم أن لدي الحق في فحص الملفات المتعلقة بي بصريًا بشأن وكالة تقارير للمستهلكين خلال ساعات العمل العادية وعند إشعار معقول. يمكن إجراء التفتيش شخصيًا ، وإذا ظهرت شخصيًا وأقدم تحديدًا مناسبًا ؛ يحق لي الحصول على نسخة من الملف مقابل رسوم لا تتجاوز التكاليف الفعلية للتكرار. يحق لي أن أكون برفقة شخص واحد من اختياري ، والذي يوفر هوية معقولة. يمكن أيضًا إجراء التفتيش عبر البريد المعتمد إذا قمت بتقديم طلب مكتوب ، مع تحديد هوية مناسب ، لإرسال النسخ إلى المرسل إليه المحدد. يمكنني أيضًا أن أطلب ملخصًا للمعلومات التي يتم توفيرها عن طريق الهاتف إذا قمت بتقديم طلب مكتوب ، مع تحديد هوية مناسب للكشف عبر الهاتف ، ورسوم Toll ، إن وجدت ، للمكالمة الهاتفية مدفوعة مسبقًا أو مشحونة مباشرةً لي. أدرك أيضًا أن وكالة الإبلاغ عن المستهلكين التحقريين يجب أن توفر لموظفي مدربين لشرح لي أي من المعلومات المقدمة لي ؛ سأتلقى من وكالة الإبلاغ عن المستهلك الاستقصائي شرحًا مكتوبًا لأي معلومات مشفرة واردة في الملفات المحفوظة علي. \"التعريف الصحيح\" كما هو مستخدم في هذه الفقرة يعني أن المعلومات تعتبر كافية بشكل عام لتحديد الشخص ، بما في ذلك المستندات مثل رخصة القيادة الصالحة ورقم حساب الضمان الاجتماعي وبطاقات الهوية العسكرية وبطاقات الائتمان. أتفهم أنه يمكنني الوصول إلى خصوصية موقع الويب التالي CheckR.com لعرض ممارسات خصوصية CheckR ، بما في ذلك المعلومات فيما يتعلق بإعداد CheckR ومعالجته لتقارير المستهلكين والتحقيق حول ما إذا كان سيتم إرسال معلوماتي الشخصية خارج الولايات المتحدة أو أراضيها . </p>\n\n                <p> ملخص لحقوقك بموجب قانون الإبلاغ عن الائتمان العادل </p>\n\n                <p> يعزز قانون الإبلاغ عن الائتمان العادل الفيدرالي (FCRA) دقة وخصوصية وخصوصية المعلومات في ملفات وكالات الإبلاغ عن المستهلك. هناك العديد من أنواع وكالات الإبلاغ عن المستهلكين ، بما في ذلك مكاتب الائتمان والوكالات التخصصية (مثل الوكالات التي تبيع معلومات حول تاريخ كتابة الشيكات والسجلات الطبية وسجلات تاريخ الإيجار). فيما يلي ملخص لحقوقك الرئيسية بموجب FCRA. <strong> لمزيد من المعلومات ، بما في ذلك المعلومات حول الحقوق الإضافية ، انتقل إلى www.consumerfinance.gov/learnmore أو اكتب إلى: </strong> </p>\n\n                <p> مكتب الحماية المالية للمستهلك <br />\n                1700 G Street NW ، Washington ، DC 20552 </p>\n\n                <p> </p>\n\n                <ul>\n                <li> يجب أن يتم إخبارك إذا تم استخدام المعلومات الموجودة في ملفك ضدك. يجب على أي شخص يستخدم تقرير ائتمان أو نوع آخر من تقرير المستهلك لرفض طلبك للحصول على الائتمان أو التأمين أو التوظيف - أو لاتخاذ إجراءات سلبية أخرى ضدك - ويجب أن يعطيك اسم وعنوان ورقم هاتفه الوكالة التي قدمت المعلومات. </li>\n                <li> لديك الحق في معرفة ما هو موجود في ملفك. يمكنك طلب والحصول على جميع المعلومات الخاصة بك في ملفات وكالة الإبلاغ عن المستهلك (\"الكشف عن الملف\"). سيُطلب منك تقديم الهوية المناسبة ، والتي قد تتضمن رقم الضمان الاجتماعي الخاص بك. في كثير من الحالات ، سيكون الكشف مجانيًا. يحق لك الحصول على إفصاح مجاني للملف إذا:\n                <ol>\n                <li> اتخذ الشخص إجراءً سلبياً ضدك بسبب المعلومات في تقرير الائتمان الخاص بك ؛ </li>\n                <li> أنت ضحية لسرقة الهوية ووضع تنبيه الاحتيال في ملفك ؛ </li>\n                <li> يحتوي ملفك على معلومات غير دقيقة نتيجة للاحتيال ؛ </li>\n                <li> أنت على المساعدة العامة ؛ </li>\n                <li> أنت عاطل عن العمل ولكنك تتوقع التقدم بطلب للحصول على عمل في غضون 60 يومًا. </li>\n                </ol>\n                بالإضافة إلى ذلك ، يحق لجميع المستهلكين الحصول على إفصاح مجاني واحد كل 12 شهرًا عند الطلب من كل مكتب الائتمان على مستوى البلاد ومن وكالات التقارير للمستهلكين المتخصصة على مستوى البلاد. انظر www.consumerfinance.gov/learnmore للحصول على معلومات إضافية. </li>\n                <li> لديك الحق في طلب درجة الائتمان. Credit scores are numerical summaries of your credit-worthiness based on information from credit bureaus. You may request a credit score from consumer reporting agencies that create scores or distribute scores used in residential real property loans, but you will have to pay for it. In some mortgage transactions, you will receive credit score information for free from the mortgage lender.</li>\n                <li>You have the right to dispute incomplete or inaccurate information. If you identify information in your file that is incomplete or inaccurate, and report it to the consumer reporting agency, the agency must investigate unless your dispute is frivolous. See www.consumerfinance.gov/learnmore for an explanation of dispute procedures.</li>\n                <li>Consumer reporting agencies must correct or delete inaccurate, incomplete, or unverifiable information. Inaccurate, incomplete or unverifiable information must be removed or corrected, usually within 30 days. However, a consumer reporting agency may continue to report information it has verified as accurate.</li>\n                <li>Consumer reporting agencies may not report outdated negative information. In most cases, a consumer reporting agency may not report negative information that is more than seven years old, or bankruptcies that are more than 10 years old.</li>\n                <li>Access to your file is limited. A consumer reporting agency may provide information about you only to people with a valid need – usually to consider an application with a creditor, insurer, employer, landlord, or other business. The FCRA specifies those with a valid need for access.</li>\n                <li>You must give your consent for reports to be provided to employers. A consumer reporting agency may not give out information about you to your employer, or a potential employer, without your written consent given to the employer. Written consent generally is not required in the trucking industry. For more information, go to www.consumerfinance.gov/learnmore</li>\n                <li>You may limit “prescreened” offers of credit and insurance you get based on information in your credit report. Unsolicited “prescreened” offers for credit and insurance must include a toll-free phone number you can call if you choose to remove your name and address from the lists these offers are based on. You may opt-out with the nationwide credit bureaus at 1-888-567-8688.</li>\n                <li>You may seek damages from violators. If a consumer reporting agency, or, in some cases, a user of consumer reports or a furnisher of information to a consumer reporting agency violates the FCRA, you may be able to sue in state or federal court.</li>\n                <li>Identity theft victims and active duty military personnel have additional rights. For more information, visit www.consumerfinance.gov/learnmore.</li>\n                </ul>\n\n                <p>States may enforce the FCRA, and many states have their own consumer reporting laws. In some cases, you may have more rights under state law. For more information, contact your state or local consumer protection agency or your state Attorney General. For information about your federal rights, contact:</p>\n\n                <p> </p>\n\n                <table>\n                <thead>\n                <tr>\n                <th>\n                <p>Type of business</p>\n                </th>\n                <th>\n                <p>Contact</p>\n                </th>\n                </tr>\n                </thead>\n                <الجسم>\n                <tr>\n                <td>1.a. Banks, savings associations, and credit unions with total assets of over $10 billion and their affiliates.</td>\n                <td>a. Consumer Financial Protection Bureau 1700 G Street NW, Washington, DC 20552</td>\n                </tr>\n                <tr>\n                <td>1.b. Such affiliates that are not banks, savings associations, or credit unions also should list, in addition to the CFPB:</td>\n                <td>b. Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td colspan=\"2\">\n                <p>To the extent not included in item 1 above</p>\n                </TD>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>2.a. National banks, federal savings associations, and federal branches and federal agencies of foreign banks</td>\n                <td>a. Office of the Comptroller of the Currency Customer Assistance Group 1301 McKinney Street Suite 3450, Houston, TX 77010-9050</td>\n                </tr>\n                <tr>\n                <td>2.b. State member banks, branches and agencies of foreign banks (other than federal branches, federal agencies, and Insured State Branches of Foreign Banks), commercial lending companies owned or controlled by foreign banks, and organizations operating under section 25 or 25A of the Federal Reserve Act</td>\n                <td>b. Federal Reserve Consumer Help Center P.O. Box 1200 Minneapolis, MN 55480</td>\n                </tr>\n                <tr>\n                <td>2.c. Nonmember Insured Banks, Insured State Branches of Foreign Banks, and insured state savings associations</td>\n                <td>c. FDIC Consumer Response Center 1100 Walnut Street Box #11, Kansas City, MO 64106</td>\n                </tr>\n                <tr>\n                <td>2.d. Federal Credit Unions</td>\n                <td>d. National Credit Union Administration Office of Consumer Protection (OCP), Division of Consumer Compliance and Outreach (DCCO) 1775 Duke Street, Alexandria, VA 22314</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>3. Air carriers</td>\n                <td>Asst. General Counsel for Aviation Enforcement & Proceedings Aviation Consumer Protection Division Department of Transportation 1200 New Jersey Avenue SE, Washington, DC 20590</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>4. Creditors Subject to Surface Transportation Board</td>\n                <td>Office of Proceedings, Surface Transportation Board, Department of Transportation 395 E Street SW, Washington, DC 20423</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>5. Creditors Subject to Packers and Stockyards Act, 1921</td>\n                <td>Nearest Packers and Stockyards Administration area supervisor</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>6. Small Business Investment Companies</td>\n                <td>Associate Deputy Administrator for Capital Access, United States Small Business Administration 409 Third Street SW 8th Floor, Washington, DC 20416</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>7. Brokers and Dealers</td>\n                <td>Securities and Exchange Commission 100 F St NE, Washington, DC 20549</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>8. Federal Land Banks, Federal Land Bank Associations, Federal Intermediate Credit Banks, and Production Credit Associations</td>\n                <td>Farm Credit Administration, 1501 Farm Credit Drive, McLean, VA 22102-5090</td>\n                </tr>\n                </tbody>\n                <الجسم>\n                <tr>\n                <td>9. Retailers, Finance Companies, and All Other Creditors Not Listed Above</td>\n                <td>FTC Regional Office for region in which the creditor operates or Federal Trade Commission: Consumer Response Center – FCRA Washington, DC 20580 877-382-4357</td>\n                </tr>\n                </tbody>\n                </table>', 'ar', 'Arabic', 'rtl', NULL, NULL);

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

--
-- Table structure for table `landing_users`
--

CREATE TABLE `landing_users` (
  `id` char(36) NOT NULL,
  `hero_title` text DEFAULT NULL,
  `user_heading_1` text DEFAULT NULL,
  `user_para` text DEFAULT NULL,
  `user_img_1` text DEFAULT NULL,
  `user_title_1` text DEFAULT NULL,
  `user_para_1` longtext DEFAULT NULL,
  `user_img_2` text DEFAULT NULL,
  `user_title_2` text DEFAULT NULL,
  `user_para_2` longtext DEFAULT NULL,
  `user_img_3` text DEFAULT NULL,
  `user_title_3` text DEFAULT NULL,
  `user_para_3` longtext DEFAULT NULL,
  `how_it_work_heading` text DEFAULT NULL,
  `how_it_work_title_1` text DEFAULT NULL,
  `how_it_work_para_1` longtext DEFAULT NULL,
  `how_it_work_img_1` text DEFAULT NULL,
  `how_it_work_title_2` text DEFAULT NULL,
  `how_it_work_para_2` longtext DEFAULT NULL,
  `how_it_work_img_2` text DEFAULT NULL,
  `how_it_work_title_3` text DEFAULT NULL,
  `how_it_work_para_3` longtext DEFAULT NULL,
  `how_it_work_img_3` text DEFAULT NULL,
  `how_it_work_title_4` text DEFAULT NULL,
  `how_it_work_para_4` longtext DEFAULT NULL,
  `how_it_work_img_4` text DEFAULT NULL,
  `how_it_work_title_5` text DEFAULT NULL,
  `how_it_work_para_5` longtext DEFAULT NULL,
  `how_it_work_img_5` text DEFAULT NULL,
  `how_it_work_title_6` text DEFAULT NULL,
  `how_it_work_para_6` longtext DEFAULT NULL,
  `how_it_work_img_6` text DEFAULT NULL,
  `locale` text DEFAULT NULL,
  `language` text DEFAULT NULL,
  `direction` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landing_users`
--

INSERT INTO `landing_users` (`id`, `hero_title`, `user_heading_1`, `user_para`, `user_img_1`, `user_title_1`, `user_para_1`, `user_img_2`, `user_title_2`, `user_para_2`, `user_img_3`, `user_title_3`, `user_para_3`, `how_it_work_heading`, `how_it_work_title_1`, `how_it_work_para_1`, `how_it_work_img_1`, `how_it_work_title_2`, `how_it_work_para_2`, `how_it_work_img_2`, `how_it_work_title_3`, `how_it_work_para_3`, `how_it_work_img_3`, `how_it_work_title_4`, `how_it_work_para_4`, `how_it_work_img_4`, `how_it_work_title_5`, `how_it_work_para_5`, `how_it_work_img_5`, `how_it_work_title_6`, `how_it_work_para_6`, `how_it_work_img_6`, `locale`, `language`, `direction`, `created_at`, `updated_at`) VALUES
('8ea3879a-307e-46de-b15c-d68c3d7ae74d', 'Usuario', 'Sé tu propio viaje', 'LAS HORAS SON TOTALMENTE It is a long established fact that a reader will be distracted by the readable DURANTE LA SEMANA O LOS FINES DE SEMANA.', 'app-download.png', 'Descargar', 'Descarga la It is a long established fact that a reader will be distracted by the readable inteligente.', '2.jpg', 'Iniciar sesión', 'Regístrate It is a long established fact that a reader will be distracted by the readable móvil.', 'drive.png', 'Conducir', '¡Conduce a donde quieras ir!', 'Cómo funciona', 'Obtén la aplicación', 'Obtén la It is a long established fact that a reader will be distracted by the readable Play', 'u1.png', 'Regístrate para conducir', 'Puedes It is a long established fact that a reader will be distracted by the readable User', 'u2.png', 'Selecciona ubicación', 'Después del rIt is a long established fact that a reader will be distracted by the readable para tu viaje.', 'u3.png', 'Seleccionar vehículo', 'Elige tu vehículo.', 'u4.png', 'Viajar', '¡Feliz It is a It is a long established fact that a reader will be distracted by the readable readable!', 'u5.png', 'Pagar y calificar', 'Después de It is a long established fact that a reader will be distracted by the readable de viaje.', 'u6.png', 'es', 'Spanish', 'ltr', NULL, NULL),
('d304dfab-15fe-46e2-af81-b24e14aa33f0', 'المستخدم', 'كن رحلتك الخاصة', 'الساعات مرنة تمامًا. It is a long established fact that a reader will be distracted by the readableعطلات نهاية الأسبوع.', 'app-download.png', 'تحميل', 'قم بتنزيل تطبيق It is a long established fact that a reader will be distracted by the readable', '2.jpg', 'تسجيل الدخول', 'سجل باستخدام It is a long established fact that a reader will be distracted by the readable', 'drive.png', 'الركوب', 'اركب إلى حيث تريد أن تذهب!', 'كيف يعمل', 'الحصول على التطبيق', 'احصل علIt is a long established fact that a reader will be distracted by the readablele Play', 'u1.png', 'التسجيل للركوب', 'يIt is a long established fact that a reader will be distracted by the readableفي تطبيق MXDrive User', 'u2.png', 'حدد الموقع', 'بعد التسجيل، It is a long established fact that a reader will be distracted by the readable لرحلتك.', 'u3.png', 'اختيار المركبة', 'اIt is a long established fact that a reader will be distracted by the readableتك.', 'u4.png', 'الركوب', 'رحIt is a long established fact that a reader will be distracted by the readableهتك!', 'u5.png', 'الدفع والتقييم', 'بعدIt is a long established fact that a reader will be distracted by the readableة رحلتك!', 'u6.png', 'ar', 'Arabic', 'rtl', NULL, NULL),
('dafc1bc7-6d62-4cfb-bdc6-88e5f5cf6272', 'User', 'Be your own ride', '<p>Download MXDrive now and start your adventure on the road in just a few simple steps!</p>', 'app-download.png', 'Download', '<p>Download MXDrive now and start your adventure on the road in just a few simple steps!</p>', '2.jpg', 'Sign In', '<p>Upload your preferences and let MXDrive tailor the perfect ride experience just for you!</p>', 'drive.png', 'Ride', '<p>Hit the road with MXDrive and experience the freedom of driving on your own terms!</p>', 'How It Works', 'Get the App', '<p>Get the MXDrive app today and unlock a world of personalized driving experiences!</p>', 'NQEcwgqlZo0UAulJGwHB8glgSA3DuqobeXL0mNxf.png', 'Signup to Ride', '<p>Sign up to ride with MXDrive and start your journey in minutes!</p>', 'eUYplslJktftWIvE9YMiEEuwulaufRar0pUEo26T.png', 'Select Location', '<p>Select your location and choose the perfect ride for your next adventure!</p>', '7iDn9gnG0CQatC5Zf85fqSD183rAN9X9TnyZco5v.png', 'Select Vehicle', '<p>Browse and select the vehicle that suits your style and get ready to hit the road!</p>', 'sJlrLJfe5TRsCc5OnUyLpJUVbUaKrMNDvBrwiCYu.png', 'Ride', '<p>Enjoy the ride and experience the road like never before with MXDrive!</p>', 'Os5zZmgAZiKaTewsV9ZNiNC89nKxJhelSPDqYwZ1.png', 'Pay & Rating', '<p>Complete your ride with a seamless payment process and leave a rating to share your experience!</p>', '7SRzmSGbSEXWwRe4RdJyQcYc5He2D1NLlGIUUL3l.png', 'En', 'English', 'ltr', NULL, '2025-09-26 09:20:41'),
('e405b33d-729a-4171-99a6-21822454ce7c', 'Utilisateur', 'Soyez votre propre trajet', 'LES HEURES SONT It is a long established fact that a reader will be distracted by the readableLE WEEK-END.', 'app-download.png', 'Télécharger', 'Téléchargez It is a long established fact that a reader will be distracted by the readablesmartphone.', '2.jpg', 'Se connecter', 'InscrivezIt is a long established fact that a reader will be distracted by the readable mobile.', 'drive.png', 'Conduire', 'RoulezIt is a long established fact that a reader will be distracted by the readablealler!', 'Comment ça marche', 'Obtenez l\'application', 'ObtenezIt is a long established fact that a reader will be distracted by the readable Google Play', 'u1.png', 'Inscrivez-vous pour conduire', 'Vous pouvez It is a long established fact that a reader will be distracted by the readable MXDrive User', 'u2.png', 'Sélectionnez un emplacement', 'Après l\'It is a long established fact that a reader will be distracted by the readablepour votre trajet.', 'u3.png', 'Sélectionnez un véhicule', 'It is a long established fact that a reader will be distracted by the readable.', 'u4.png', 'Rouler', 'Bon It is a long established fact that a reader will be distracted by the readable!', 'u5.png', 'Payer et noter', 'AprèsIt is a long established fact that a reader will be distracted by the readableconduite!', 'u6.png', 'fr', 'French', 'ltr', NULL, NULL);

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

--
-- Table structure for table `language`
--

CREATE TABLE `language` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL,
  `direction` varchar(191) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `default_status` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `languages`
--

CREATE TABLE `languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL,
  `direction` enum('ltr','rtl') NOT NULL DEFAULT 'ltr',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `default_status` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `languages`
--

INSERT INTO `languages` (`id`, `name`, `code`, `direction`, `active`, `default_status`, `created_at`, `updated_at`) VALUES
(1, 'English', 'en', 'ltr', 1, 1, '2025-09-26 07:06:09', '2025-09-26 07:06:09'),
(2, 'Arabic', 'ar', 'rtl', 1, 0, '2025-09-26 07:06:09', '2025-09-26 07:06:09'),
(3, 'French', 'fr', 'ltr', 1, 0, '2025-09-26 07:06:09', '2025-09-26 07:06:09'),
(4, 'Spanish', 'es', 'ltr', 1, 0, '2025-09-26 07:06:09', '2025-09-26 07:06:09');

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

--
-- Table structure for table `linked_social_accounts`
--

CREATE TABLE `linked_social_accounts` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `provider_name` varchar(191) DEFAULT NULL,
  `provider_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `ltm_translations`
--

CREATE TABLE `ltm_translations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `locale` varchar(191) NOT NULL,
  `group` varchar(191) NOT NULL,
  `key` text NOT NULL,
  `value` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

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

--
-- Table structure for table `mail_otp_verifications`
--

CREATE TABLE `mail_otp_verifications` (
  `id` char(36) NOT NULL,
  `email` varchar(50) NOT NULL,
  `otp` varchar(191) DEFAULT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mail_otp_verifications`
--

INSERT INTO `mail_otp_verifications` (`id`, `email`, `otp`, `verified`, `created_at`, `updated_at`) VALUES
('0bf23ea1-0c5d-4ea6-939d-e957a56d0249', 'yashkoladiya5@gmail.com', '912420', 0, '2025-10-06 09:38:29', '2025-10-06 09:39:43'),
('1970b299-0112-416e-8909-47ac7e5232aa', 'juser@yopmail.com', '768131', 0, '2025-10-13 04:54:52', '2025-10-13 04:54:52'),
('35618baf-654a-4080-b71f-73566e036208', 'testing@demo.com', '107210', 0, '2025-10-05 05:26:58', '2025-10-05 05:26:58'),
('4699ea5f-64ab-4594-9463-05ca98591ad6', 'user99@demo.com', '407733', 0, '2025-11-06 06:13:36', '2025-11-06 06:13:36'),
('49e7dea7-34c6-45bd-986a-f2feedd7dcd4', 'user@demo.com', '760189', 0, '2025-11-06 09:39:14', '2025-11-06 09:39:52'),
('a4ed3b90-d4da-4e7f-a3bc-88796667b476', 'jdriver@yopmail.com', '990341', 0, '2025-10-13 04:27:10', '2025-10-13 04:27:10'),
('bc7a0d48-310b-40cc-b3fb-af8fca62b8c8', 'vedshreem22@gmail.com', '160614', 0, '2025-10-08 04:58:35', '2025-10-08 04:59:42'),
('bd5afc5b-5cc8-4e3c-8da7-bc01b68da11a', 'driver@demo.com', '232808', 0, '2025-09-30 11:36:55', '2025-09-30 11:40:19'),
('c6b22f3f-0420-409e-b0cd-b5f4f0089bea', 'vedshreem@gmail.com', '548016', 0, '2025-10-08 04:57:57', '2025-10-08 04:58:24'),
('ce720879-c92b-4b29-8c24-07bb421e33f0', 'driver876@demo.com', '817431', 0, '2025-10-06 09:38:00', '2025-10-06 09:38:00'),
('d82e8a7c-bed9-4727-90af-e89153d2b2d8', 'user@emo.com', '115973', 0, '2025-10-13 13:01:03', '2025-10-13 13:01:03'),
('e5303892-a6b7-4b2f-8388-b11c10a0ab90', 'jdriver@demo.com', '800360', 0, '2025-10-13 04:25:53', '2025-10-13 04:25:53');

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

--
-- Table structure for table `mail_templates`
--

CREATE TABLE `mail_templates` (
  `id` char(36) NOT NULL,
  `mail_type` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `translation_dataset` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`translation_dataset`)),
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mail_templates`
--

INSERT INTO `mail_templates` (`id`, `mail_type`, `description`, `translation_dataset`, `active`, `created_at`, `updated_at`) VALUES
('21f33ce6-1043-43d2-86b1-6eab4dace418', 'welcome_mail', '----', '[{\"subject\":\"welcome_mail\",\"lang_code\":\"en\",\"code\":\"en\",\"description\":\"<p>Hello $user_name<\\/p>\\n\\n            <p>Thank you for joining MXDrive! We are thrilled to have you as a part of our community.<\\/p>\\n\\n            <p>Our mission is to mobility. We hope that you will find our products\\/services to be useful and enjoyable.<\\/p>\\n\\n            <p>To get started, please take a few moments to explore our website and familiarize yourself with our offerings. If you have any questions or concerns, our customer support team is always here to help.<\\/p>\\n\\n            <p>We look forward to working with you and providing you with a top-notch experience.<\\/p>\\n\\n            <p>Best regards,<\\/p>\\n\\n            <p>MXDrive<\\/p>\",\"facebook\":1,\"twitter\":1,\"linkedin\":1,\"googleplus\":1,\"button_enable\":0,\"banner_enable\":0,\"footer_content\":\"Please contact us for any queries; we\\u2019re always happy to help.\",\"footer_copyrights\":\"\\u00a9 2023 6amMart. All rights reserved.\"}]', 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('a301e494-4d2c-4e10-ac04-1bce37861876', 'welcome_mail_driver', '---', '[{\"subject\":\"welcome_mail_driver\",\"lang_code\":\"en\",\"code\":\"en\",\"description\":\"<p>Dear $user_name,<\\/p>\\n\\n        <p>Congratulations on becoming a newly registered driver! We are excited to welcome you to the world of driving and wanted to take a moment to extend our warmest greetings.<\\/p>\\n\\n        <p>As a registered driver, you now have the opportunity to explore new destinations, embrace independence, and experience the joys of the open road. We hope this new chapter brings you many memorable adventures and experiences.<\\/p>\\n\\n        <p>Please remember to prioritize safety as you embark on your driving journey. Observe traffic laws, wear your seatbelt, and remain attentive at all times. Safe driving not only protects you but also ensures the well-being of others around you.<\\/p>\\n\\n        <p>If you ever have any questions or need assistance along the way, our team is here to support you. Don&#39;t hesitate to reach out to us; we&#39;re more than happy to help.<\\/p>\\n\\n        <p>Once again, congratulations on your registration! Enjoy the freedom and excitement that driving offers. We wish you safe travels and an incredible journey ahead.<\\/p>\\n\\n        <p>Best regards,<\\/p>\\n\\n        <p>MXDrive<\\/p>\",\"facebook\":1,\"twitter\":1,\"linkedin\":1,\"googleplus\":1,\"button_enable\":0,\"banner_enable\":0,\"footer_content\":\"Please contact us for any queries; we\\u2019re always happy to help.\",\"footer_copyrights\":\"\\u00a9 2023 6amMart. All rights reserved.\"}]', 1, '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

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

CREATE TABLE `messages` (
  `id` char(36) NOT NULL,
  `conversation_id` char(36) NOT NULL,
  `sender_id` varchar(191) NOT NULL,
  `unseen_count` tinyint(1) NOT NULL DEFAULT 0,
  `sender_type` varchar(191) NOT NULL,
  `content` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `messages` (`id`, `conversation_id`, `sender_id`, `unseen_count`, `sender_type`, `content`, `created_at`, `updated_at`) VALUES
('0cf674c3-e183-4a4e-9f33-5bbc74d0441d', 'fb13093d-c05d-44fe-a569-30f483cd3c29', '26', 0, 'user', 'hii', '2025-10-08 05:14:33', '2025-10-16 09:09:17'),
('133a3d67-1802-4f4f-88b1-771f57f5d4f0', '4fa5b816-e7a0-43c6-865b-e527b601ff31', '3', 0, 'user', 'hello', '2025-10-01 11:53:23', '2025-10-16 09:09:21'),
('24d05c36-65fb-45fa-bcfe-929203771efc', 'fb13093d-c05d-44fe-a569-30f483cd3c29', '26', 0, 'user', 'yes', '2025-10-08 05:14:38', '2025-10-16 09:09:17'),
('5fbb85a3-e7ad-460e-b222-6d3744727148', 'bb003040-37b5-4a8f-84fa-0c79ae5d6fe1', '2', 0, 'user', 'hello admiin', '2025-10-13 09:11:03', '2025-10-16 09:02:14'),
('80336fc6-0b53-4c11-b4bf-1b1e9448949b', 'bb003040-37b5-4a8f-84fa-0c79ae5d6fe1', '2', 0, 'user', 'hello', '2025-10-09 10:19:53', '2025-10-16 09:02:14'),
('9b85b0e7-d7e6-4225-a34f-7277c79d4f45', '5a8c061e-b7ba-4beb-b269-046db5459e9e', '20', 0, 'user', 'hey there !', '2025-09-30 11:09:29', '2025-10-16 09:09:24'),
('a2744cf1-eb04-403c-a2ec-99f40f65eae0', 'bb003040-37b5-4a8f-84fa-0c79ae5d6fe1', '1', 0, 'admin', 'Hello', '2025-10-16 09:02:17', '2025-10-16 09:02:17'),
('a7b99b28-cbce-43de-863e-5685029f4edb', 'fb13093d-c05d-44fe-a569-30f483cd3c29', '1', 0, 'admin', 'hello', '2025-10-17 04:18:03', '2025-10-17 04:18:03'),
('d29834f8-1fc7-40c7-8b66-6d9acf5eb310', 'bb003040-37b5-4a8f-84fa-0c79ae5d6fe1', '2', 0, 'user', 'hii', '2025-10-10 11:57:29', '2025-10-16 09:02:14'),
('f451b1b3-85aa-4ccf-ab80-d8f76e78991a', '4fa5b816-e7a0-43c6-865b-e527b601ff31', '3', 0, 'user', 'hello Admin', '2025-10-13 08:53:48', '2025-10-16 09:09:21');

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

--
-- Table structure for table `methods`
--

CREATE TABLE `methods` (
  `id` int(10) UNSIGNED NOT NULL,
  `method_name` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `methods`
--

INSERT INTO `methods` (`id`, `method_name`, `active`, `created_at`, `updated_at`) VALUES
(1, 'test', 0, '2025-10-16 08:51:29', '2025-10-16 08:53:22');

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

--
-- Table structure for table `migrations`
--

CREATE TABLE `migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_04_02_193005_create_translations_table', 1),
(2, '2014_10_12_100000_create_password_reset_tokens_table', 1),
(3, '2016_09_21_000013_create_countries_table', 1),
(4, '2017_12_28_000000_create_jobs_table', 1),
(5, '2017_12_29_000000_create_users_table', 1),
(6, '2017_12_30_000000_create_failed_jobs_table', 1),
(7, '2017_12_30_000000_create_roles_and_permissions_table', 1),
(8, '2017_12_30_000001_create_password_resets_table', 1),
(9, '2017_12_30_000001_create_settings_table', 1),
(10, '2017_12_30_000002_create_mobile_otp_verifications_table', 1),
(11, '2017_12_30_000003_create_car_make_table', 1),
(12, '2017_12_30_000004_create_car_model_table', 1),
(13, '2018_09_21_000014_create_states_table', 1),
(14, '2018_09_21_000015_create_cities_table', 1),
(15, '2018_09_21_062905_create_service_locations_table', 1),
(16, '2018_11_12_000016_create_timezones_table', 1),
(17, '2018_11_13_000017_create_admin_details_table', 1),
(18, '2018_11_16_000018_create_vehicle_types_table', 1),
(19, '2018_11_28_000019_create_company_table', 1),
(20, '2018_12_05_000020_create_owners_table', 1),
(21, '2018_12_05_000020_create_zones_table', 1),
(22, '2018_12_05_000021_create_drivers_table', 1),
(23, '2018_12_05_000022_create_driver_details_table', 1),
(24, '2018_12_11_000023_create_driver_needed_documents_table', 1),
(25, '2018_12_11_000024_create_driver_documents_table', 1),
(26, '2018_12_16_000025_create_websockets_statistics_entries_table', 1),
(27, '2019_01_30_000026_create_linked_social_accounts_table', 1),
(28, '2019_02_07_000027_create_zone_bounds_table', 1),
(29, '2019_02_08_000028_create_zone_types_table', 1),
(30, '2019_03_07_000029_create_card_info_table', 1),
(31, '2019_09_02_061132_create_user_details_table', 1),
(32, '2019_09_12_110700_create_sos_table', 1),
(33, '2019_10_09_152444_create_zone_type_price_table', 1),
(34, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(35, '2020_02_07_063156_create_promo_table', 1),
(36, '2020_02_08_063156_create_requests_table', 1),
(37, '2020_02_08_070239_create_requests_meta_table', 1),
(38, '2020_02_13_121546_create_distance_matrixes_table', 1),
(39, '2020_02_26_094511_create_request_places_table', 1),
(40, '2020_03_08_071438_update_typesandtypeprice_table', 1),
(41, '2020_04_08_134813_create_projects_table', 1),
(42, '2020_04_09_060321_create_developers_table', 1),
(43, '2020_04_09_134236_create_poc_clients_table', 1),
(44, '2020_04_10_080607_create_project_flavours_table', 1),
(45, '2020_04_11_134819_create_mobile_builds_table', 1),
(46, '2020_06_08_174227_create_user_wallet_table', 1),
(47, '2020_08_02_065414_create_faqs_table', 1),
(48, '2020_08_02_085836_create_complaint_titles_table', 1),
(49, '2020_08_02_094044_create_cancellation_reasons_table', 1),
(50, '2020_08_02_102914_create_complaints_table', 1),
(51, '2020_08_05_163747_create_request_bills_table', 1),
(52, '2020_08_09_030027_create_request_ratings_table', 1),
(53, '2020_08_17_101931_update_users_table', 1),
(54, '2020_08_17_133227_create_zone_surge_prices_table', 1),
(55, '2020_08_18_065839_update_driver_columns_table', 1),
(56, '2020_08_26_123414_update_requests_for_dispatcher_columns_table', 1),
(57, '2020_08_26_125832_create_adhoc_users_table', 1),
(58, '2020_08_30_113935_create_user_wallet_history', 1),
(59, '2020_08_30_114603_create_driver_wallet', 1),
(60, '2020_08_30_114743_create_driver_wallet_history', 1),
(61, '2020_08_30_123505_update_requests_table', 1),
(62, '2020_08_31_171017_update_request_table_for_ride_later', 1),
(63, '2020_09_01_063348_update_countries_table_for_currency', 1),
(64, '2020_09_01_081006_update_service_locations_table_currency_code', 1),
(65, '2020_09_01_133422_update_request_bills_table', 1),
(66, '2020_09_01_174718_update_driver_wallet_history_table', 1),
(67, '2020_09_04_073340_update_wallet_histories_table', 1),
(68, '2020_09_04_101745_update_requests_for_service_location_updates', 1),
(69, '2020_09_06_090712_update_users_table_for_refferal', 1),
(70, '2020_09_12_065514_create_notifications_table', 1),
(71, '2020_09_12_065553_create_user_driver_notifications', 1),
(72, '2020_09_12_123929_update_users_for_referral_table', 1),
(73, '2020_10_06_170942_update_users_table_for_company_key', 1),
(74, '2020_10_14_134549_update_columns_for_company_key_updates', 1),
(75, '2020_10_15_122136_update_driver_decline_reason_column', 1),
(76, '2020_10_26_064203_create_favorite_places_table', 1),
(77, '2020_10_28_153950_update_faq_sos_table', 1),
(78, '2020_10_28_161747_update_sos_table', 1),
(79, '2020_11_06_065342_create_promo_users_table', 1),
(80, '2020_11_06_103337_update_users_table_for_language', 1),
(81, '2020_11_06_133358_create_driver_availabilities_table', 1),
(82, '2020_11_07_121107_update_requests_table_for_promo', 1),
(83, '2020_11_12_064123_update_driver_availabilities_table', 1),
(84, '2020_11_17_072402_create_owner_needed_documents_table', 1),
(85, '2020_11_17_072445_create_owner_documents_table', 1),
(86, '2020_11_27_093556_create_fleets_table', 1),
(87, '2020_11_27_094652_create_fleet_documents_table', 1),
(88, '2021_01_12_114548_create_owner_hired_drivers_table', 1),
(89, '2021_01_13_103647_create_driver_privileged_vehicles_table', 1),
(90, '2021_02_06_172857_update_driver_needed_doc_table_doc_type_column', 1),
(91, '2021_04_12_065445_create_chats_table', 1),
(92, '2021_04_17_121220_update_zone_table_for_lat_lng', 1),
(93, '2021_04_23_051520_create_package_types_table', 1),
(94, '2021_04_23_063315_create_zone_type_package_prices_table', 1),
(95, '2021_04_29_081407_create_adhocs_table', 1),
(96, '2021_05_06_134745_update_drivers_table', 1),
(97, '2021_05_06_140618_update_owners_table', 1),
(98, '2021_05_23_032638_create_request_cancellation_fees_table', 1),
(99, '2021_05_27_095307_update_owner_needed_doc_table', 1),
(100, '2021_05_31_073050_update_drivers_country_table', 1),
(101, '2021_06_11_051347_create_favourite_locations_table', 1),
(102, '2021_06_16_050813_update_package_types_table', 1),
(103, '2021_06_30_130444_update_vehicle_types_table', 1),
(104, '2021_07_14_060523_update_types_for_short_description', 1),
(105, '2021_07_14_073830_update_request_for_book_other_features', 1),
(106, '2021_07_15_061940_update_requests_table_for_instant_ride', 1),
(107, '2021_07_23_065242_update_requests_for_ride_otp', 1),
(108, '2021_07_30_065843_update_requests_for_rental_out_station', 1),
(109, '2021_08_13_052221_create_airports_table', 1),
(110, '2021_08_14_162720_update_requests_bill_for_airport_fee', 1),
(111, '2021_10_29_095020_update_package_type_table', 1),
(112, '2021_10_30_084900_update_zone_type_for_sorting_table', 1),
(113, '2021_11_15_064009_create_users_bank_info_table', 1),
(114, '2021_11_25_114027_create_wallet_withdrawal_requests_table', 1),
(115, '2021_12_01_154530_update_drivers_fleet_id_column', 1),
(116, '2022_01_24_120705_update_countries_table', 1),
(117, '2022_02_03_061635_update_requests_table_for_eta_amount', 1),
(118, '2022_03_21_162059_create_driver_subscriptions_table', 1),
(119, '2022_04_04_125459_update_zone_type_price_table_for_waiting_fare', 1),
(120, '2022_04_05_054928_create_driver_rejected_requests_table', 1),
(121, '2022_04_06_071240_update_drivers_for_vehicle_year', 1),
(122, '2022_04_07_120855_update_requests_bill_table_for_waiting_time', 1),
(123, '2022_04_08_134043_update_requests_bills_for_waiting_time_updates', 1),
(124, '2022_05_04_073201_update_request_place_for_poc_info', 1),
(125, '2022_05_09_125226_create_request_stops_table', 1),
(126, '2022_05_09_133120_update_vehicle_types_for_weight_and_size', 1),
(127, '2022_05_09_164553_update_requests_for_goods_type_quantity_table', 1),
(128, '2022_05_09_165210_create_request_delivery_proofs_table', 1),
(129, '2022_05_21_122431_update_is_taxi_to_vehicle_types_table', 1),
(130, '2022_05_23_100457_update_requests_place_for_instructions_table', 1),
(131, '2022_06_27_094446_update_requests_for_surge_price_fixes_table', 1),
(132, '2022_07_04_143548_create_owner_wallets_table', 1),
(133, '2022_07_04_143845_create_owner_wallet_histories_table', 1),
(134, '2022_08_04_123301_update_fleets_table_for_color', 1),
(135, '2022_08_08_065316_update_fleets_for_driver_id', 1),
(136, '2022_08_08_112328_create_fleet_needed_documents_table', 1),
(137, '2022_08_09_053759_update_is_individual_to_driver_needed_documents_table', 1),
(138, '2022_08_10_045240_update_document_id_to_fleet_documents_table', 1),
(139, '2022_08_10_052655_update_document_status_to_fleet_documents_table', 1),
(140, '2022_08_10_130638_update_comment_to_fleet_documents_table', 1),
(141, '2022_08_11_105802_update_fleet_documents_for_identify_number', 1),
(142, '2022_08_11_114109_update_request_for_owner_and_fleet_id', 1),
(143, '2022_08_11_123449_update_withdrawal_request_table_for_owner_id', 1),
(144, '2022_08_11_124534_update_complaints_table_for_owner', 1),
(145, '2022_08_12_073010_create_frontpage_header_table', 1),
(146, '2022_08_29_065448_create_goods_types_table', 1),
(147, '2022_09_01_062700_update_goods_type_id_to_requests_table', 1),
(148, '2022_09_01_085940_update_transport_type_to_car_makes_table', 1),
(149, '2022_09_01_105353_update_transport_type_to_drivers_table', 1),
(150, '2022_09_06_085406_update_transport_type_to_zone_types_table', 1),
(151, '2022_09_06_091610_update_transport_type_to_package_types_table', 1),
(152, '2022_09_06_104037_update_transport_type_to_cancellation_reasons_table', 1),
(153, '2022_09_06_111317_update_transport_type_to_complaint_titles_table', 1),
(154, '2022_09_06_125854_update_transport_type_to_requests_table', 1),
(155, '2022_09_06_140237_update_transport_type_to_faqs_table', 1),
(156, '2022_09_14_120844_update_zones_for_default_type_for_delivery_table', 1),
(157, '2022_09_14_121853_update_owners_for_transport_type_table', 1),
(158, '2022_09_15_135622_add_goods_type_id_to_requests_table', 1),
(159, '2022_11_07_063319_update_icon_types_for_vehicle_types_table', 1),
(160, '2022_11_16_101502_update_vehicle_make_for_to_car_makes_table', 1),
(161, '2022_11_22_134606_update_zone_type_package_prices_table_for_zone_id', 1),
(162, '2022_11_29_101158_update_goods_types_for_to_goods_types_table', 1),
(163, '2022_12_14_074823_update_transport_type_to_promo_table', 1),
(164, '2022_12_14_111401_remove_transport_type_to_faqs_table', 1),
(165, '2022_12_14_111621_remove_transport_type_to_complaint_titles_table', 1),
(166, '2022_12_14_120547_remove_is_individual_to_driver_needed_documents_table', 1),
(167, '2022_12_14_120748_update_account_type_to_driver_needed_documents_table', 1),
(168, '2022_12_23_124713_create_reward_histories_table', 1),
(169, '2022_12_23_125928_create_reward_points_table', 1),
(170, '2023_02_07_101637_update_drivers_for_my_route_booking_table', 1),
(171, '2023_02_08_101417_create_driver_enabled_routes_table', 1),
(172, '2023_04_17_062137_create_banner_images_table', 1),
(173, '2023_04_26_105819_update_request_meta_table', 1),
(174, '2023_05_15_095252_update_requests_for_offerred_ride_fare_update_users_for_bidd_ride_table', 1),
(175, '2023_05_19_075601_create_request_eta_table', 1),
(176, '2023_06_09_122855_create_mail_otp_verifications_table', 1),
(177, '2023_06_09_123132_create_mail_templates_table', 1),
(178, '2023_06_12_123725_create_driver_vehicle_types_table', 1),
(179, '2023_06_15_084150_update_dispatch_type_to_vehicle_types_table', 1),
(180, '2023_09_06_050045_create_sessions_table', 1),
(181, '2023_11_03_014933_update_request_bill_for_admin_commission_for_driver', 1),
(182, '2023_11_15_123447_create_languages_table', 1),
(183, '2023_11_29_065226_update_drivers_for_custom_make_model_table', 1),
(184, '2023_11_29_082037_create_chat_table', 1),
(185, '2023_11_29_082059_create_chat_messages_table', 1),
(186, '2023_11_29_085930_update_fleet_for_custom_make_and_model', 1),
(187, '2023_12_01_073916_update_user_driver_notifications_table', 1),
(188, '2023_12_15_111736_update_users_table_nullable_name', 1),
(189, '2023_12_26_073714_update_email_templates', 1),
(190, '2024_01_23_064728_update_request_table_for_out_station_ride', 1),
(191, '2024_01_24_075121_update_request_for_out_station_one_way_table', 1),
(192, '2024_01_24_123726_create_mobile_app_settings_table', 1),
(193, '2024_02_03_080042_update_discounted_total_to_requests_table', 1),
(194, '2024_02_26_072016_user_authorized_code', 1),
(195, '2024_03_14_092051_create_peak_zones_table', 1),
(196, '2024_03_15_114733_update_manual_assign', 1),
(197, '2024_03_20_101011_update_promo_code_service_null', 1),
(198, '2024_03_20_104927_create_promo_code_users', 1),
(199, '2024_03_20_105102_update_promo_code_user', 1),
(200, '2024_03_20_114202_update_is_deleted_at_to_users_table', 1),
(201, '2024_03_21_112456_create_third_party_settings_table', 1),
(202, '2024_03_22_072853_update_web_booking_cms_landingpagecms', 1),
(203, '2024_03_29_105642_updata_web_booking_to_requests_table', 1),
(204, '2024_04_02_091422_update_on_search_to_requests_table', 1),
(205, '2024_04_03_110555_add_web_booking_track_to_landingpagecms', 1),
(206, '2024_04_09_140636_update_poly_line_to_requests_table', 1),
(207, '2024_05_06_134124_update_day_to_zone_surge_prices_table', 1),
(208, '2024_05_07_110915_update_invoice_cms', 1),
(209, '2024_05_23_085739_create_onboarding_screen', 1),
(210, '2024_05_28_074708_update_gender_to_users_table', 1),
(211, '2024_05_29_110318_update_request_gender_to_requests_table', 1),
(212, '2024_06_03_104401_update_s_no_to_onboarding_screen_table', 1),
(213, '2024_06_14_061042__create_subscription_table_', 1),
(214, '2024_06_14_062104__create_subscription_detail_table', 1),
(215, '2024_06_27_124121_create_tests_table', 1),
(216, '2024_06_28_111926_update_faqs_location_table', 1),
(217, '2024_06_29_073209__update_vehicle_icon_column', 1),
(218, '2024_06_29_084802_create_languages_table', 1),
(219, '2024_07_15_095015_create_service_location_translations_table', 1),
(220, '2024_07_15_101437_update_service_locations_table_for_translation', 1),
(221, '2024_07_19_055152_create_landing_homes_table', 1),
(222, '2024_07_24_053942_update_completed_at_to_requests_stops_table', 1),
(223, '2024_07_24_095449_update_gender_to_users_table', 1),
(224, '2024_08_01_064658_create_landing_headers_table', 1),
(225, '2024_08_01_064908_create_landing_drivers_table', 1),
(226, '2024_08_01_064920_create_landing_users_table', 1),
(227, '2024_08_01_064939_create_landing_contacts_table', 1),
(228, '2024_08_07_063723_update_commission_to_zone_types_table', 1),
(229, '2024_08_07_101916_create_landing_quicklinks_table', 1),
(230, '2024_08_10_113233_create_goods_type_translations_table', 1),
(231, '2024_08_10_113233_create_vehicle_type_translations_table', 1),
(232, '2024_08_10_113233_create_zone_translations_table', 1),
(233, '2024_08_11_113233_create_cancellation_reason_translations_table', 1),
(234, '2024_08_11_113233_create_complaint_title_translations_table', 1),
(235, '2024_08_12_061333_create_landing_email_table', 1),
(236, '2024_08_16_100602_update_order_to_zone_types_table', 1),
(237, '2024_08_21_061543_update_commissions_to_zone_types_table', 1),
(238, '2024_08_21_070051_update_service_loction_to_drivers_table', 1),
(239, '2024_08_27_074033_update_expires_at_to_personal_access_tokes_table', 1),
(240, '2024_08_27_123822_create_invoice_configurations_table', 1),
(241, '2024_08_29_052809_update_currency_location_to_service_locations_table', 1),
(242, '2024_08_29_065608_update_airport_surge_to_zone_types_table', 1),
(243, '2024_08_31_053912_create_admin_notifications_table', 1),
(244, '2024_09_02_090913__update_service_location_in_promo_table', 1),
(245, '2024_09_03_065503_update_direction_to_landing_headers', 1),
(246, '2024_09_03_075201_update_direction_to_landing_homes', 1),
(247, '2024_09_03_093548_update_direction_to_landing_drivers', 1),
(248, '2024_09_03_100306_update_direction_to_landing_users', 1),
(249, '2024_09_03_102250_update_direction_to_landing_contacts', 1),
(250, '2024_09_03_103939_update_direction_to_landing_quicklinks', 1),
(251, '2024_09_09_100738_update_goods_type_in_goods_types_table', 1),
(252, '2024_09_10_060927_update_owners_nullable_columns', 1),
(253, '2024_09_10_064135_update_users_bank_info_nullable_columns', 1),
(254, '2024_09_16_051345_update_fleets_id_in_fleets_table', 1),
(255, '2024_09_16_135309_update_permission_number_null_to_fleets_table', 1),
(256, '2024_09_21_054905_update_image_type_to_driver_needed_documents_table', 1),
(257, '2024_09_21_063544_update_back_image_to_driver_documents_table', 1),
(258, '2024_09_21_090048_update_image_type_to_owner_needed_documents_table', 1),
(259, '2024_09_21_090858_update_back_image_to_owner_documents_table', 1),
(260, '2024_09_21_102621_update_image_type_to_fleet_needed_documents_table', 1),
(261, '2024_09_21_110802_update_back_image_to_fleet_documents_table', 1),
(262, '2024_09_23_102102_update_current_lat_lng_to_users_table', 1),
(263, '2024_09_24_122018_create_incentives_table', 1),
(264, '2024_09_25_100356_update_is_air_port_to_requests_table', 1),
(265, '2024_09_25_160024_create_driver_incentive_histories_table', 1),
(266, '2024_09_26_062005_update_status_to_fleets_table', 1),
(267, '2024_09_26_112938_update_ride_otp_too_users_table', 1),
(268, '2024_09_30_092344_update_aboutus_to_landing_headers', 1),
(269, '2024_09_30_115619_create_landing_abouts_table', 1),
(270, '2024_09_30_120321_add_uuid_to_failed_jobs_table', 1),
(271, '2024_10_01_100458_update_price_per_distance_to_drivers_table', 1),
(272, '2024_10_02_091950_create_driver_level_ups_table', 1),
(273, '2024_10_02_100122_update_is_parcel_to_requests_table', 1),
(274, '2024_10_02_103243_create_pre_payment_datas_table', 1),
(275, '2024_10_02_142515_update_paid_at_to_requests_table', 1),
(276, '2024_10_05_061635_update_owner_commission_from_owner_in_zone_types_table', 1),
(277, '2024_10_06_180838_create_get_driver_online_offline_duration_procedure', 1),
(278, '2024_10_10_055106_create_recent_searches_table', 1),
(279, '2024_10_10_061605_create_recent_searches_stops_table', 1),
(280, '2024_10_15_055045_update_online_offline_report_procedure', 1),
(281, '2024_10_15_063110_update_transport_type_to_recent_searches_table', 1),
(282, '2024_10_16_064132_create_conversations_table', 1),
(283, '2024_10_16_065511_create_messages_table', 1),
(284, '2024_10_17_062525_create_emails_table', 1),
(285, '2024_10_18_052941_update_unseen_count_to_messages_table', 1),
(286, '2024_10_24_132355_create_methods_table', 1),
(287, '2024_10_24_132403_create_fields_table', 1),
(288, '2024_10_26_090225_create_driver_bank_infos_table', 1),
(289, '2024_10_26_124901_update_driver_level_up_id_to_drivers_table', 1),
(290, '2024_10_29_053841_create_driver_level_details_table', 1),
(291, '2024_11_04_064152_update_screen_to_onboarding_screen', 1),
(292, '2024_11_12_092641_update_faq_service_location', 1),
(293, '2024_11_21_065224_update_payment_status_to_wallet_withdrawal_requests_table', 1),
(294, '2024_11_21_080717_update_users_for_stripe_key_table', 1),
(295, '2024_11_21_134218_create_owner_bank_infos_table', 1),
(296, '2024_11_23_063134_update_booked_by_to_requests_table', 1),
(297, '2024_11_23_112322_delete_user_role_from_cards_info_table', 1),
(298, '2024_11_27_052923_update_active_to_admin_details_table', 1),
(299, '2024_12_04_051742_update_ride_count_in_driver_incentive_history_table', 1),
(300, '2024_12_16_064949_create_notification_channels_table', 1),
(301, '2024_12_17_055735_create_notification_channels_translations_table', 1),
(302, '2024_12_20_055934_update_created_by_to_roles_table', 1),
(303, '2024_12_23_063912_update_admin_commission_from_driver_in_request_bills_table', 1),
(304, '2024_12_23_151753_update_unit_in_zones_table', 1),
(305, '2024_12_25_073939_update_softdeletes_in_users_table', 1),
(306, '2024_12_28_034801_update_role_to_notification_channels', 1),
(307, '2024_12_28_062530_update_map_type_in_users_table', 1),
(308, '2024_12_30_052712_update_show_button_to_notification_channels', 1),
(309, '2024_12_30_054813_create_onboard_screens_translations_table', 1),
(310, '2024_12_30_060242_update_translation_dataset_to_onboard_screen_table', 1),
(311, '2025_01_08_054523_update_push_title_body_to_notification_channels', 1),
(312, '2025_01_08_060254_update_push_title_body_to_notification_channels_translations', 1),
(313, '2025_01_11_074934_update_additional_charges_to_requests_table', 1),
(314, '2025_01_18_120555_update_signed_vehicle_to_driver_vehicle_types_table', 1),
(315, '2025_01_18_122930_create_sub_vehicle_types_table', 1),
(316, '2025_02_18_054913_update_needed_documents_for_front_and_back_image_type', 1),
(317, '2025_02_19_043909_update_trip_meter_rate_in_requests_table', 1),
(318, '2025_02_20_070051_update_zone_type_in_incentives_and_level_table', 1),
(319, '2025_02_27_050832_update_zone_type_in_zone_surge_prices_table', 1),
(320, '2025_03_06_084110_update_driver_tips_in_request_bills_table', 1),
(321, '2025_03_07_073053_create_support_ticket_categories_table', 1),
(322, '2025_03_08_054733_create_support_ticket_titles_table', 1),
(323, '2025_03_08_060306_create_support_ticket_titles_translations_table', 1),
(324, '2025_03_10_094657_update_category_type_to_table_admin_details', 1),
(325, '2025_03_11_063038_create_support_tickets_table', 1),
(326, '2025_03_11_093917_update_title_type_to_support_ticket_titles_table', 1),
(327, '2025_03_13_101349_create_support_ticket_multi_files_table', 1),
(328, '2025_03_19_102740_create_support_ticket_messages_table', 1),
(329, '2025_03_21_051656_update_document_required_to_driver_needed_documents_table', 1),
(330, '2025_03_21_071629_update_document_required_to_fleet_needed_documents_table', 1),
(331, '2025_03_21_085453_update_document_required_to_owner_needed_documents_table', 1),
(332, '2025_03_22_062935_update_user_type_to_support_ticket_titles_table', 1),
(333, '2025_03_22_065505_update_service_location_to_support_tickets_table', 1),
(334, '2025_03_22_101703_update_sender_id_to_support_ticket_messages', 1),
(335, '2025_03_26_065052_update_zone_id_in_users_table', 1),
(336, '2025_03_28_054859_update_enable_airport_outstation_to_zone_types_table', 1),
(337, '2025_03_28_061410_update_outstation_price_to_zone_type_price_table', 1),
(338, '2025_04_03_092828_update_requests_for_card_token_table', 1),
(339, '2025_04_10_121124_create_dispatcher_locations', 1),
(340, '2025_04_10_132424_update_subscription_detail_id_to_drivers', 1),
(341, '2025_04_16_051433_update_for_owner_to_notifications_table', 1),
(342, '2025_04_19_081522_update_value_length_in_third_party_settings_table', 1),
(343, '2025_05_05_055245_update_address_length__in_request_places_table', 1),
(344, '2025_05_07_055825_update_parcel_type_to_request_table', 1),
(345, '2025_05_12_124033_update_cancellation_fee_to_zone_type_price_table', 1),
(346, '2025_05_13_121920_update_compensate_from_user_driver_to_cancellation_reasons_table', 1),
(347, '2025_05_16_093717_update_payment_id_in_requests_table', 1),
(348, '2025_05_22_064458_update_users_table_for_service_location', 1),
(349, '2025_05_26_053632_update_maximum_distances_in_zones_table', 1),
(350, '2025_05_29_120349_add_audio_url_to_chat_messages_table', 1),
(351, '2025_05_30_120409_update_is_without_destination_in_requests_table', 1),
(352, '2025_07_30_115720_update_users_id_to_support_ticket_messages', 1),
(353, '2025_08_05_104424_update_order_number_in_zone_types_table', 1),
(354, '2025_08_20_101917_create_preferences_table', 1),
(355, '2025_08_20_102330_create_preference_prices_table', 1),
(356, '2025_08_20_102346_create_request_preferences_table', 1),
(357, '2025_08_22_105610_create_driver_preferences_table', 1),
(358, '2025_08_23_043411_update_nullable_icon_types_for_in_mobile_app_settings_table', 1),
(359, '2025_08_23_065040_update_preference_price_total_in_request_bills_table', 1),
(360, '2025_08_30_053622_update_peak_zones_settings_to_zones_table', 1),
(361, '2025_09_12_111201_create_users_imported_table', 1),
(362, '2025_09_16_123541_create_drivers_imported_table', 1);

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

--
-- Table structure for table `mobile_app_settings`
--

CREATE TABLE `mobile_app_settings` (
  `id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `transport_type` varchar(191) NOT NULL,
  `service_type` varchar(191) NOT NULL,
  `icon_types_for` varchar(191) DEFAULT NULL,
  `order_by` int(11) DEFAULT NULL,
  `short_description` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `mobile_menu_icon` varchar(191) DEFAULT NULL,
  `mobile_menu_cover_image` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mobile_app_settings`
--

INSERT INTO `mobile_app_settings` (`id`, `name`, `transport_type`, `service_type`, `icon_types_for`, `order_by`, `short_description`, `description`, `mobile_menu_icon`, `mobile_menu_cover_image`, `active`, `created_at`, `updated_at`) VALUES
('03b4a18f-6368-4327-9c9b-d5ce6676e200', 'Taxi', 'taxi', 'normal', NULL, 1, 'Normal Taxi', 'Normal Taxi', 'fQH0LXrlTKczSFy9GUntpUck4xcwMhCxVbNqiyvA.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 10:59:28'),
('29a0fd0f-398e-4a81-9246-fa99541a9b74', 'Outstation', 'taxi', 'outstation', NULL, 5, 'Outstation Taxi', 'Outstation Taxi', 'WEg430i0yTQYqYzjfEjVYQDpfesNbhkQajYxoHCA.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 11:01:17'),
('4276feae-d257-4ef1-92ce-019645a40305', 'Delivery Rental', 'delivery', 'rental', NULL, 4, 'Rental Delivery', 'Rental Delivery', 'MQ3n2S4M98wVYHIhTuawBot9tWeBxDKJJ5ezLzun.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 11:00:54'),
('57cfc4ef-97b7-4ac0-8938-451d7f000d80', 'Rental', 'taxi', 'rental', NULL, 3, 'Rental Taxi', 'rental Taxi', 'eRvYOYLsMdUkMGnZRfhDL79oihcqmY9QBZAvxTuf.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 11:00:26'),
('9ebd7102-50b9-49d0-8b6f-e80ac48ccbc2', 'Delivery Outstation', 'delivery', 'outstation', NULL, 6, 'Outstation Delivery', 'Outstation Delivery', 'O7oAMYo21RXpDoWc8P7t8oicKW4323TNu0WvGEWs.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 11:01:33'),
('a9d11d19-6260-4390-9ae2-a3b15cafd51e', 'Delivery', 'delivery', 'normal', NULL, 2, 'Normal Delivery', 'Normal Delivery', 'eXLqn5gde5yGRSWWZNdyPwQOiUaU4HCtp3OeZ1dc.png', NULL, 1, '2025-09-26 07:06:11', '2025-09-26 11:00:06');

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

--
-- Table structure for table `mobile_builds`
--

CREATE TABLE `mobile_builds` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_name` varchar(191) NOT NULL,
  `build_number` varchar(191) NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `flavour_id` int(10) UNSIGNED NOT NULL,
  `team` enum('android','ios') NOT NULL,
  `version` varchar(191) NOT NULL,
  `environment` varchar(191) NOT NULL,
  `file_size` varchar(191) NOT NULL,
  `download_link` varchar(191) NOT NULL,
  `uploaded_by` varchar(191) DEFAULT NULL,
  `additional_comments` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mobile_otp_verifications`
--

CREATE TABLE `mobile_otp_verifications` (
  `id` char(36) NOT NULL,
  `mobile` varchar(18) NOT NULL,
  `otp` varchar(191) DEFAULT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mobile_otp_verifications`
--

INSERT INTO `mobile_otp_verifications` (`id`, `mobile`, `otp`, `verified`, `created_at`, `updated_at`) VALUES
('47052c10-ff14-4023-b8ef-20e94e14f327', '8907654321', '969025', 0, '2025-10-13 11:40:25', '2025-10-13 11:40:25'),
('539e6790-cad7-4c72-9cba-3cc67151e0f2', '8664322224', '991316', 0, '2025-10-13 11:37:46', '2025-10-13 11:38:14');

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

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

CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `push_enum` varchar(191) NOT NULL,
  `title` varchar(191) NOT NULL,
  `body` longtext NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `for_user` tinyint(1) NOT NULL DEFAULT 0,
  `for_driver` tinyint(1) NOT NULL DEFAULT 0,
  `for_owner` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `notification_channels`
--

CREATE TABLE `notification_channels` (
  `id` char(36) NOT NULL,
  `role` text DEFAULT NULL,
  `topics` text DEFAULT NULL,
  `topics_content` text DEFAULT NULL,
  `push_notification` tinyint(1) DEFAULT NULL,
  `mail` tinyint(1) DEFAULT NULL,
  `sms` tinyint(1) DEFAULT NULL,
  `email_subject` text DEFAULT NULL,
  `logo_img` longtext DEFAULT NULL,
  `mail_body` longtext DEFAULT NULL,
  `button_name` text DEFAULT NULL,
  `button_url` text DEFAULT NULL,
  `show_button` tinyint(1) NOT NULL,
  `banner_img` longtext DEFAULT NULL,
  `show_img` tinyint(1) NOT NULL,
  `footer` text DEFAULT NULL,
  `footer_content` text DEFAULT NULL,
  `footer_copyrights` text DEFAULT NULL,
  `show_fbicon` tinyint(1) NOT NULL,
  `show_instaicon` tinyint(1) NOT NULL,
  `show_twittericon` tinyint(1) NOT NULL,
  `show_linkedinicon` tinyint(1) NOT NULL,
  `push_title` text NOT NULL,
  `push_body` text NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `notification_channels`
--

INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('01c53814-e386-43ea-865e-da965da45c7b', 'driver', 'New Fleet Assigned', 'Choose how Driver will get notified about Sent notification on New Fleet Assigned', 1, 0, 0, 'New Fleet Assigned', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>New Fleet Assigned</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'New Fleet Assigned For you', 'New Fleet assigned for you', '{\"email_subject\":\"New Fleet Assigned\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>New Fleet Assigned<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"New Fleet Assigned For you\",\"push_body\":\"New Fleet assigned for you\",\"locale\":\"en\",\"notification_channel_id\":\"01c53814-e386-43ea-865e-da965da45c7b\",\"fr\":\"{\\\"email_subject\\\":\\\"Nouvelle flotte attribu\\\\u00e9e pour vous\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Nouvelle flotte attribu\\\\u00e9e pour vous\\\",\\\"push_body\\\":\\\"Nouvelle flotte attribu\\\\u00e9e pour vous\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"01c53814-e386-43ea-865e-da965da45c7b\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Nueva Flota asignada para ti\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Nueva Flota asignada para ti\\\",\\\"push_body\\\":\\\"Nueva Flota asignada para ti\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"01c53814-e386-43ea-865e-da965da45c7b\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0645\\\\u062e\\\\u0635\\\\u0635 \\\\u0644\\\\u0643\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0645\\\\u062e\\\\u0635\\\\u0635 \\\\u0644\\\\u0643\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0645\\\\u062e\\\\u0635\\\\u0635 \\\\u0644\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"01c53814-e386-43ea-865e-da965da45c7b\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('0537cf6e-6e46-442e-b99a-044288ecdc2d', 'user', 'Invoice For End of the Ride User', 'Choose how Customer will get notified about Sent notification on invoice for the end of the ride', 1, 1, 1, 'Invoice For Ride', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p><strong>Here is the summary of your recent trip: <strong></p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Driver Ended the trip', 'Driver finished the ride, Please help us by rating the driver', '{\"email_subject\":\"Invoice For Ride\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Thank You for Riding with us<\\/p>\\n                                    <p><strong>Here is the summary of your recent trip: <strong><\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Driver Ended the trip\",\"push_body\":\"Driver finished the ride, Please help us by rating the driver\",\"locale\":\"en\",\"notification_channel_id\":\"0537cf6e-6e46-442e-b99a-044288ecdc2d\",\"fr\":\"{\\\"email_subject\\\":\\\"Facture pour le trajet\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci d\'avoir roul\\\\u00e9 avec nous<\\\\\\/p>\\\\n                                                <p>Voici le r\\\\u00e9sum\\\\u00e9 de votre r\\\\u00e9cent voyage :<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Chauffeur A termin\\\\u00e9 le voyage\\\",\\\"push_body\\\":\\\"Le chauffeur a termin\\\\u00e9 le trajet. Aidez-nous en \\\\u00e9valuant le chauffeur.\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"0537cf6e-6e46-442e-b99a-044288ecdc2d\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Factura por viaje\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por viajar con nosotros<\\\\\\/p>\\\\n                                                <p>Aqu\\\\u00ed est\\\\u00e1 el resumen de su reciente viaje<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El conductor finaliz\\\\u00f3 el viaje.\\\",\\\"push_body\\\":\\\"El conductor termin\\\\u00f3 el viaje. Ay\\\\u00fadenos calificando al conductor.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"0537cf6e-6e46-442e-b99a-044288ecdc2d\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0641\\\\u0627\\\\u062a\\\\u0648\\\\u0631\\\\u0629 \\\\u0644\\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627<\\\\\\/p>\\\\n                                                <p>\\\\u0641\\\\u064a\\\\u0645\\\\u0627 \\\\u064a\\\\u0644\\\\u064a \\\\u0645\\\\u0644\\\\u062e\\\\u0635 \\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0643 \\\\u0627\\\\u0644\\\\u0623\\\\u062e\\\\u064a\\\\u0631\\\\u0629:<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0623\\\\u0646\\\\u0647\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0646\\\\u0647\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\\u060c \\\\u0627\\\\u0644\\\\u0631\\\\u062c\\\\u0627\\\\u0621 \\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0646\\\\u0627 \\\\u0628\\\\u062a\\\\u0642\\\\u064a\\\\u064a\\\\u0645 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"0537cf6e-6e46-442e-b99a-044288ecdc2d\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205', 'user', 'User Ride Later', 'Choose how Customer will get notified about Sent notification on ride later', 1, 1, 1, 'Driver Assigned For Ride', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Your Ride Later Trip is Confirmed</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p>Your \"ride later\" trip has been successfully scheduled.</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'New Trip Requested 😊️', 'New Trip Requested, you can accept or Reject the request', '{\"email_subject\":\"Driver Assigned For Ride\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Your Ride Later Trip is Confirmed<\\/p>\\n                                    <p>Thank You for Riding with us<\\/p>\\n                                    <p>Your \\\"ride later\\\" trip has been successfully scheduled.<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"New Trip Requested \\ud83d\\ude0a\\ufe0f\",\"push_body\":\"New Trip Requested, you can accept or Reject the request\",\"locale\":\"en\",\"notification_channel_id\":\"0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205\",\"fr\":\"{\\\"email_subject\\\":\\\"Chauffeur affect\\\\u00e9 au trajet\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Votre voyage Ride Later est confirm\\\\u00e9<\\\\\\/p>\\\\n                                                <p>Merci d\'avoir roul\\\\u00e9 avec nous<\\\\\\/p>\\\\n                                                <p>Votre voyage \\\\u00ab rouler plus tard \\\\u00bb a \\\\u00e9t\\\\u00e9 planifi\\\\u00e9 avec succ\\\\u00e8s.<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Nouveau voyage demand\\\\u00e9 \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nouveau voyage demand\\\\u00e9, vous pouvez accepter ou refuser la demande\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Conductor asignado para el viaje\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Su viaje de viaje m\\\\u00e1s tarde est\\\\u00e1 confirmado<\\\\\\/p>\\\\n                                                <p>Gracias por viajar con nosotros<\\\\\\/p>\\\\n                                                <p>Su viaje \\\\\\\"viajar m\\\\u00e1s tarde\\\\\\\" se ha programado correctamente.<\\\\\\/p>\\\\n                                                <p>Atentamente, <\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Nuevo viaje solicitado \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nuevo Viaje Solicitado, puedes aceptar o Rechazar la solicitud\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0645\\\\u062e\\\\u0635\\\\u0635 \\\\u0644\\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0645 \\\\u062a\\\\u0623\\\\u0643\\\\u064a\\\\u062f \\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0643 \\\\u0627\\\\u0644\\\\u0644\\\\u0627\\\\u062d\\\\u0642\\\\u0629<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0645\\\\u062a \\\\u062c\\\\u062f\\\\u0648\\\\u0644\\\\u0629 \\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0643 \\\\\\\"\\\\u0627\\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628 \\\\u0644\\\\u0627\\\\u062d\\\\u0642\\\\u064b\\\\u0627\\\\\\\" \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d.<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a, <\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c \\\\u0625\\\\u0645 \\\\u0622\\\\u064a<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0645\\\\u0637\\\\u0644\\\\u0648\\\\u0628 \\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f\\\\u0629 \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0637\\\\u0644\\\\u0628 \\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f\\\\u0629\\\\u060c \\\\u064a\\\\u0645\\\\u0643\\\\u0646\\\\u0643 \\\\u0642\\\\u0628\\\\u0648\\\\u0644 \\\\u0627\\\\u0644\\\\u0637\\\\u0644\\\\u0628 \\\\u0623\\\\u0648 \\\\u0631\\\\u0641\\\\u0636\\\\u0647\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('0dcc8fdf-a397-4f1b-9375-1857061416a0', 'driver', 'Driver Account Approval', 'Choose how Driver will get notified about Sent notification on account approval', 1, 1, 1, 'Account Approval', 'logo-light.png', '\n                                    <p>Congratulations,{name} </p>\n                                    <p>We are  to inform you that your driver account  has been successfully approved. You are now ready to start accepting ride requests and earning..</p>   \n                                    <p>Please log in to your account using the credentials provided during registration. If you encounter any issues, feel free to reach out to our support team.</p>        \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Button', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Account Approved 😃️', 'Your profile verified and approved', '{\"email_subject\":\"Account Approval\",\"mail_body\":\"\\n                                    <p>Congratulations,{name} <\\/p>\\n                                    <p>We are  to inform you that your driver account  has been successfully approved. You are now ready to start accepting ride requests and earning..<\\/p>   \\n                                    <p>Please log in to your account using the credentials provided during registration. If you encounter any issues, feel free to reach out to our support team.<\\/p>        \\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Button\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Account Approved \\ud83d\\ude03\\ufe0f\",\"push_body\":\"Your profile verified and approved\",\"locale\":\"en\",\"notification_channel_id\":\"0dcc8fdf-a397-4f1b-9375-1857061416a0\",\"fr\":\"{\\\"email_subject\\\":\\\"Approbation du compte\\\",\\\"mail_body\\\":\\\"<p>F\\\\u00e9licitations, {name}<\\\\\\/p>\\\\n                                                <p>Nous devons vous informer que votre compte chauffeur a \\\\u00e9t\\\\u00e9 approuv\\\\u00e9 avec succ\\\\u00e8s. Vous \\\\u00eates maintenant pr\\\\u00eat \\\\u00e0 commencer \\\\u00e0 accepter des demandes de courses et \\\\u00e0 gagner des revenus.<\\\\\\/p>\\\\n                                                <p>Veuillez vous connecter \\\\u00e0 votre compte en utilisant les identifiants fournis lors de l\'inscription. Si vous rencontrez des probl\\\\u00e8mes, n\'h\\\\u00e9sitez pas \\\\u00e0 contacter notre \\\\u00e9quipe d\'assistance.<\\\\\\/p>\\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Compte approuv\\\\u00e9 \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Votre profil v\\\\u00e9rifi\\\\u00e9 et approuv\\\\u00e9\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"0dcc8fdf-a397-4f1b-9375-1857061416a0\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Aprobaci\\\\u00f3n de cuenta\\\",\\\"mail_body\\\":\\\"<p>Felicidades, {name}<\\\\\\/p>\\\\n                                                <p>Le informamos que su cuenta de conductor ha sido aprobada exitosamente. Ahora est\\\\u00e1 listo para comenzar a aceptar solicitudes de viaje y ganar dinero.<\\\\\\/p>\\\\n                                                <p>Inicie sesi\\\\u00f3n en su cuenta utilizando las credenciales proporcionadas durante el registro. Si tiene alg\\\\u00fan problema, no dude en comunicarse con nuestro equipo de soporte.<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Cuenta aprobada \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Tu perfil verificado y aprobado\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"0dcc8fdf-a397-4f1b-9375-1857061416a0\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0642\\\\u062f\\\\u064a\\\\u0631 \\\\u0627\\\\u0644\\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u062a\\\\u0647\\\\u0646\\\\u0626\\\\u0629, {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0648\\\\u062f \\\\u0623\\\\u0646 \\\\u0646\\\\u0639\\\\u0644\\\\u0645\\\\u0643 \\\\u0623\\\\u0646\\\\u0647 \\\\u062a\\\\u0645\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d. \\\\u0623\\\\u0646\\\\u062a \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u062c\\\\u0627\\\\u0647\\\\u0632 \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621 \\\\u0641\\\\u064a \\\\u0642\\\\u0628\\\\u0648\\\\u0644 \\\\u0637\\\\u0644\\\\u0628\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0627\\\\u062a \\\\u0648\\\\u062a\\\\u062d\\\\u0642\\\\u064a\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u0628\\\\u062d..<\\\\\\/p>\\\\n                                                <p>\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643 \\\\u0628\\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u0628\\\\u064a\\\\u0627\\\\u0646\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0627\\\\u0639\\\\u062a\\\\u0645\\\\u0627\\\\u062f \\\\u0627\\\\u0644\\\\u0645\\\\u0642\\\\u062f\\\\u0645\\\\u0629 \\\\u0623\\\\u062b\\\\u0646\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644. \\\\u0625\\\\u0630\\\\u0627 \\\\u0648\\\\u0627\\\\u062c\\\\u0647\\\\u062a \\\\u0623\\\\u064a \\\\u0645\\\\u0634\\\\u0627\\\\u0643\\\\u0644\\\\u060c \\\\u0641\\\\u0644\\\\u0627 \\\\u062a\\\\u062a\\\\u0631\\\\u062f\\\\u062f \\\\u0641\\\\u064a \\\\u0627\\\\u0644\\\\u062a\\\\u0648\\\\u0627\\\\u0635\\\\u0644 \\\\u0645\\\\u0639 \\\\u0641\\\\u0631\\\\u064a\\\\u0642 \\\\u0627\\\\u0644\\\\u062f\\\\u0639\\\\u0645 \\\\u0644\\\\u062f\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a, <\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c \\\\u0625\\\\u0645 \\\\u0622\\\\u064a<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u062d\\\\u0633\\\\u0627\\\\u0628 \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u0642\\\\u0642 \\\\u0645\\\\u0646 \\\\u0645\\\\u0644\\\\u0641\\\\u0643 \\\\u0627\\\\u0644\\\\u0634\\\\u062e\\\\u0635\\\\u064a \\\\u0648\\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u064a\\\\u0647\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"0dcc8fdf-a397-4f1b-9375-1857061416a0\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('0f02847d-3fc3-4465-b60c-366e7aab55c6', 'user', 'New Customer Registration', 'Choose how Customer will get notified about Sent notification on customer registration', 0, 1, 1, 'Registration Mail', 'logo-light.png', '<p>Hello {name}</p>\n                                    <p>Thank you for signing up with us, your trusted taxi app. Your registration was successful, and we are excited to have you on board.</p>\n                                    <p>Your Account Details</p>\n                                    <p>Email: {email}</p>\n                                    <p>Mobile Number: {mobile}</p>\n                                    <p>We are now ready to help you with your transportation needs! To get started, simply click the button below to log in to your account:</p> \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Log in', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Register successfully', 'Register successfully', '{\"email_subject\":\"Registration Mail\",\"mail_body\":\"<p>Hello {name}<\\/p>\\n                                    <p>Thank you for signing up with us, your trusted taxi app. Your registration was successful, and we are excited to have you on board.<\\/p>\\n                                    <p>Your Account Details<\\/p>\\n                                    <p>Email: {email}<\\/p>\\n                                    <p>Mobile Number: {mobile}<\\/p>\\n                                    <p>We are now ready to help you with your transportation needs! To get started, simply click the button below to log in to your account:<\\/p> \\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Log in\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Register successfully\",\"push_body\":\"Register successfully\",\"locale\":\"en\",\"notification_channel_id\":\"0f02847d-3fc3-4465-b60c-366e7aab55c6\",\"fr\":\"{\\\"email_subject\\\":\\\"Courrier d\'inscription\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci de vous \\\\u00eatre inscrit aupr\\\\u00e8s de nous, votre application de taxi de confiance. Votre inscription a r\\\\u00e9ussi et nous sommes ravis de vous compter parmi nous.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de votre compte<\\\\\\/p>\\\\n                                                <p>E-mail : {email}<\\\\\\/p>\\\\n                                                <p>Num\\\\u00e9ro de mobile : {mobile}<\\\\\\/p>\\\\n                                                <p>Nous sommes maintenant pr\\\\u00eats \\\\u00e0 vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter \\\\u00e0 votre compte :<\\\\\\/p> \\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Titre de notification en fran\\\\u00e7ais\\\",\\\"push_body\\\":\\\"Corps de notification en fran\\\\u00e7ais\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"0f02847d-3fc3-4465-b60c-366e7aab55c6\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Correo de registro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por registrarte con nosotros, tu aplicaci\\\\u00f3n de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.<\\\\\\/p>\\\\n                                                <p>Detalles de su cuenta<\\\\\\/p>\\\\n                                                <p>Correo electr\\\\u00f3nico: {email}<\\\\\\/p>\\\\n                                                <p>N\\\\u00famero de m\\\\u00f3vil: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el bot\\\\u00f3n a continuaci\\\\u00f3n para iniciar sesi\\\\u00f3n en su cuenta:<\\\\\\/p> \\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"T\\\\u00edtulo de la notificaci\\\\u00f3n en espa\\\\u00f1ol\\\",\\\"push_body\\\":\\\"Cuerpo de la notificaci\\\\u00f3n en espa\\\\u00f1ol\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"0f02847d-3fc3-4465-b60c-366e7aab55c6\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"Benachrichtigungstitel auf Deutsch\\\",\\\"push_body\\\":\\\"Benachrichtigungstext auf Deutsch\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"0f02847d-3fc3-4465-b60c-366e7aab55c6\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('198fcd9f-4a6d-43ef-b9ce-374e77787279', 'driver', 'Driver Ride Confirmation', 'Choose how Driver will get notified about Sent notification on Ride Confirmation', 1, 0, 0, 'Ride Confirmed By Customer', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Ride Confirmed By Customer', 'Ride Confirmed By Customer, Please Reach the customer pickup location on time', '{\"email_subject\":\"Ride Confirmed By Customer\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Ride Confirmed By Customer\",\"push_body\":\"Ride Confirmed By Customer, Please Reach the customer pickup location on time\",\"locale\":\"en\",\"notification_channel_id\":\"198fcd9f-4a6d-43ef-b9ce-374e77787279\",\"fr\":\"{\\\"email_subject\\\":\\\"Trajet confirm\\\\u00e9 par le client\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Trajet confirm\\\\u00e9 par le client\\\",\\\"push_body\\\":\\\"Trajet confirm\\\\u00e9 par le client, veuillez atteindre le lieu de prise en charge du client \\\\u00e0 temps\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"198fcd9f-4a6d-43ef-b9ce-374e77787279\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Viaje confirmado por el cliente\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Viaje confirmado por el cliente\\\",\\\"push_body\\\":\\\"Viaje confirmado por el cliente. Llegue al lugar de recogida del cliente a tiempo.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"198fcd9f-4a6d-43ef-b9ce-374e77787279\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0623\\\\u0643\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0623\\\\u0643\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0623\\\\u0643\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0648\\\\u0635\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u0648\\\\u0642\\\\u0639 \\\\u0627\\\\u0644\\\\u0627\\\\u0644\\\\u062a\\\\u0642\\\\u0627\\\\u0621 \\\\u0628\\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\\u0641\\\\u064a \\\\u0627\\\\u0644\\\\u0648\\\\u0642\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u062d\\\\u062f\\\\u062f\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"198fcd9f-4a6d-43ef-b9ce-374e77787279\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('22f6f264-5e6f-4567-946c-25c3e2f58aa5', 'user', 'User Referral', 'Choose how Customer will get notified about Sent notification on referral code', 1, 1, 1, 'Referral Code User', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Thanks you! We are excited to offer you a referral code that you can share with your friends,\n                                    family, or colleagues.</p>\n                                    <p>When they use this referral code, they will receive a discount on their first ride, and you will earn rewards as well.</p>\n                                    <p>Share this code with others, and start earning rewards today! The more you refer, the more you can earn!</p>\n                                    <p>To use the referral code, simply share it with the person you refer,\n                                     and they can enter it during the booking process on our app.</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'You have Earned with your Referral code 😊️', 'We are happy to inform you that you have earned money with your referral code', '{\"email_subject\":\"Referral Code User\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Thanks you! We are excited to offer you a referral code that you can share with your friends,\\n                                    family, or colleagues.<\\/p>\\n                                    <p>When they use this referral code, they will receive a discount on their first ride, and you will earn rewards as well.<\\/p>\\n                                    <p>Share this code with others, and start earning rewards today! The more you refer, the more you can earn!<\\/p>\\n                                    <p>To use the referral code, simply share it with the person you refer,\\n                                     and they can enter it during the booking process on our app.<\\/p>\\n                                     <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Share\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"You have Earned with your Referral code \\ud83d\\ude0a\\ufe0f\",\"push_body\":\"We are happy to inform you that you have earned money with your referral code\",\"locale\":\"en\",\"notification_channel_id\":\"22f6f264-5e6f-4567-946c-25c3e2f58aa5\",\"fr\":\"{\\\"email_subject\\\":\\\"Utilisateur du code de r\\\\u00e9f\\\\u00e9rence\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci! Nous sommes ravis de vous proposer un code de parrainage que vous pouvez partager avec vos amis, votre famille ou vos coll\\\\u00e8gues.<\\\\\\/p>\\\\n                                                <p>Lorsqu\'ils utiliseront ce code de parrainage, ils b\\\\u00e9n\\\\u00e9ficieront d\'une r\\\\u00e9duction sur leur premier trajet et vous gagnerez \\\\u00e9galement des r\\\\u00e9compenses.<\\\\\\/p>\\\\n                                                <p>Partagez ce code avec d\'autres et commencez \\\\u00e0 gagner des r\\\\u00e9compenses d\\\\u00e8s aujourd\'hui ! Plus vous parrainez, plus vous pouvez gagner !<\\\\\\/p>\\\\n                                                <p>Pour utiliser le code de parrainage, partagez-le simplement avec la personne que vous parrainez, et elle pourra le saisir lors du processus de r\\\\u00e9servation sur notre application.<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Vous avez gagn\\\\u00e9 avec votre code de parrainage \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nous sommes heureux de vous informer que vous avez gagn\\\\u00e9 de l\'argent avec votre code de parrainage\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"22f6f264-5e6f-4567-946c-25c3e2f58aa5\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Usuario del c\\\\u00f3digo de referencia\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias! Nos complace ofrecerle un c\\\\u00f3digo de referencia que puede compartir con sus amigos, familiares o colegas.<\\\\\\/p>\\\\n                                                <p>Cuando utilicen este c\\\\u00f3digo de referencia, recibir\\\\u00e1n un descuento en su primer viaje y usted tambi\\\\u00e9n obtendr\\\\u00e1 recompensas.<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Comparta este c\\\\u00f3digo con otras personas y comience a ganar recompensas hoy! \\\\u00a1Cuanto m\\\\u00e1s recomiendes, m\\\\u00e1s podr\\\\u00e1s ganar!<\\\\\\/p>\\\\n                                                <p>Para usar el c\\\\u00f3digo de referencia, simplemente comp\\\\u00e1rtelo con la persona que recomiendas y podr\\\\u00e1 ingresarlo durante el proceso de reserva en nuestra aplicaci\\\\u00f3n.<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Has ganado con tu c\\\\u00f3digo de referencia \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nos complace informarle que ha ganado dinero con su c\\\\u00f3digo de referencia.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"22f6f264-5e6f-4567-946c-25c3e2f58aa5\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0645\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0645 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u064a\\\\u0634\\\\u0643\\\\u0631\\\\u0643\\\\u0645! \\\\u064a\\\\u0633\\\\u0639\\\\u062f\\\\u0646\\\\u0627 \\\\u0623\\\\u0646 \\\\u0646\\\\u0642\\\\u062f\\\\u0645 \\\\u0644\\\\u0643 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u0630\\\\u064a \\\\u064a\\\\u0645\\\\u0643\\\\u0646\\\\u0643 \\\\u0645\\\\u0634\\\\u0627\\\\u0631\\\\u0643\\\\u062a\\\\u0647 \\\\u0645\\\\u0639 \\\\u0623\\\\u0635\\\\u062f\\\\u0642\\\\u0627\\\\u0626\\\\u0643 \\\\u0623\\\\u0648 \\\\u0639\\\\u0627\\\\u0626\\\\u0644\\\\u062a\\\\u0643 \\\\u0623\\\\u0648 \\\\u0632\\\\u0645\\\\u0644\\\\u0627\\\\u0626\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0639\\\\u0646\\\\u062f\\\\u0645\\\\u0627 \\\\u064a\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0645\\\\u0648\\\\u0646 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629 \\\\u0647\\\\u0630\\\\u0627\\\\u060c \\\\u0633\\\\u064a\\\\u062d\\\\u0635\\\\u0644\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u062e\\\\u0635\\\\u0645 \\\\u0639\\\\u0644\\\\u0649 \\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0647\\\\u0645 \\\\u0627\\\\u0644\\\\u0623\\\\u0648\\\\u0644\\\\u0649\\\\u060c \\\\u0648\\\\u0633\\\\u062a\\\\u0643\\\\u0633\\\\u0628 \\\\u0623\\\\u0646\\\\u062a \\\\u0623\\\\u064a\\\\u0636\\\\u064b\\\\u0627 \\\\u0645\\\\u0643\\\\u0627\\\\u0641\\\\u0622\\\\u062a.<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0627\\\\u0631\\\\u0643 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0631\\\\u0645\\\\u0632 \\\\u0645\\\\u0639 \\\\u0627\\\\u0644\\\\u0622\\\\u062e\\\\u0631\\\\u064a\\\\u0646 \\\\u0648\\\\u0627\\\\u0628\\\\u062f\\\\u0623 \\\\u0641\\\\u064a \\\\u0643\\\\u0633\\\\u0628 \\\\u0627\\\\u0644\\\\u0645\\\\u0643\\\\u0627\\\\u0641\\\\u0622\\\\u062a \\\\u0627\\\\u0644\\\\u064a\\\\u0648\\\\u0645! \\\\u0643\\\\u0644\\\\u0645\\\\u0627 \\\\u0642\\\\u0645\\\\u062a \\\\u0628\\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629 \\\\u0623\\\\u0643\\\\u062b\\\\u0631\\\\u060c \\\\u0643\\\\u0644\\\\u0645\\\\u0627 \\\\u0632\\\\u0627\\\\u062f\\\\u062a \\\\u0623\\\\u0631\\\\u0628\\\\u0627\\\\u062d\\\\u0643!<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0645\\\\u0634\\\\u0627\\\\u0631\\\\u0643\\\\u062a\\\\u0647 \\\\u0645\\\\u0639 \\\\u0627\\\\u0644\\\\u0634\\\\u062e\\\\u0635 \\\\u0627\\\\u0644\\\\u0630\\\\u064a \\\\u062a\\\\u062d\\\\u064a\\\\u0644\\\\u0647\\\\u060c \\\\u0648\\\\u064a\\\\u0645\\\\u0643\\\\u0646\\\\u0647 \\\\u0625\\\\u062f\\\\u062e\\\\u0627\\\\u0644\\\\u0647 \\\\u0623\\\\u062b\\\\u0646\\\\u0627\\\\u0621 \\\\u0639\\\\u0645\\\\u0644\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u062d\\\\u062c\\\\u0632 \\\\u0639\\\\u0644\\\\u0649 \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c <\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0644\\\\u0642\\\\u062f \\\\u0631\\\\u0628\\\\u062d\\\\u062a \\\\u0628\\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643 \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u064a\\\\u0633\\\\u0639\\\\u062f\\\\u0646\\\\u0627 \\\\u0623\\\\u0646 \\\\u0646\\\\u0639\\\\u0644\\\\u0645\\\\u0643 \\\\u0623\\\\u0646\\\\u0643 \\\\u0631\\\\u0628\\\\u062d\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0627\\\\u0644 \\\\u0645\\\\u0646 \\\\u062e\\\\u0644\\\\u0627\\\\u0644 \\\\u0631\\\\u0645\\\\u0632 \\\\u0627\\\\u0644\\\\u0625\\\\u062d\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"22f6f264-5e6f-4567-946c-25c3e2f58aa5\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('2e22cd0a-2923-4dea-87d4-a4c67d17fc23', 'driver', 'Driver Tips', 'Choose how Driver will get notified about Sent notification on Driver added tips Successfully', 1, 0, 0, 'Tips added Succesfully', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'You have Earned with your Tips 😊️', 'We are happy to inform you that you have earned money with your Tips', '{\"email_subject\":\"Tips added Succesfully\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"You have Earned with your Tips \\ud83d\\ude0a\\ufe0f\",\"push_body\":\"We are happy to inform you that you have earned money with your Tips\",\"locale\":\"en\",\"notification_channel_id\":\"2e22cd0a-2923-4dea-87d4-a4c67d17fc23\",\"fr\":\"{\\\"email_subject\\\":\\\"Courrier d\'inscription\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci de vous \\\\u00eatre inscrit aupr\\\\u00e8s de nous, votre application de taxi de confiance. Votre inscription a r\\\\u00e9ussi et nous sommes ravis de vous compter parmi nous.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de votre compte<\\\\\\/p>\\\\n                                                <p>E-mail : {email}<\\\\\\/p>\\\\n                                                <p>Num\\\\u00e9ro de mobile : {mobile}<\\\\\\/p>\\\\n                                                <p>Nous sommes maintenant pr\\\\u00eats \\\\u00e0 vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter \\\\u00e0 votre compte :<\\\\\\/p> \\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Vous avez gagn\\\\u00e9 avec vos pourboires \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nous sommes heureux de vous informer que vous avez gagn\\\\u00e9 de l argent gr\\\\u00e2ce \\\\u00e0 vos pourboires\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"2e22cd0a-2923-4dea-87d4-a4c67d17fc23\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Correo de registro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por registrarte con nosotros, tu aplicaci\\\\u00f3n de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.<\\\\\\/p>\\\\n                                                <p>Detalles de su cuenta<\\\\\\/p>\\\\n                                                <p>Correo electr\\\\u00f3nico: {email}<\\\\\\/p>\\\\n                                                <p>N\\\\u00famero de m\\\\u00f3vil: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el bot\\\\u00f3n a continuaci\\\\u00f3n para iniciar sesi\\\\u00f3n en su cuenta:<\\\\\\/p> \\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Has Ganado con tus Propinas \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Nos alegra informarte que has ganado dinero con tus Tips\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"2e22cd0a-2923-4dea-87d4-a4c67d17fc23\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0644\\\\u0642\\\\u062f \\\\u0631\\\\u0628\\\\u062d\\\\u062a \\\\u0628\\\\u0646\\\\u0635\\\\u0627\\\\u0626\\\\u062d\\\\u0643 \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u064a\\\\u0633\\\\u0639\\\\u062f\\\\u0646\\\\u0627 \\\\u0623\\\\u0646 \\\\u0646\\\\u0639\\\\u0644\\\\u0645\\\\u0643 \\\\u0623\\\\u0646\\\\u0643 \\\\u0643\\\\u0633\\\\u0628\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0627\\\\u0644 \\\\u0645\\\\u0646 \\\\u062e\\\\u0644\\\\u0627\\\\u0644 \\\\u0627\\\\u0644\\\\u0646\\\\u0635\\\\u0627\\\\u0626\\\\u062d \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"2e22cd0a-2923-4dea-87d4-a4c67d17fc23\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('32f1ff07-736b-4ea8-985c-24da128950b7', 'driver', 'Driver Subscription', 'Choose how Driver will get notified about Sent notification on Driver Subscription Successfully', 1, 0, 0, 'Subscribed Succesfully', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Subscribed Succesfully', 'You have subscribed successfully', '{\"email_subject\":\"Subscribed Succesfully\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Subscribed Succesfully\",\"push_body\":\"You have subscribed successfully\",\"locale\":\"en\",\"notification_channel_id\":\"32f1ff07-736b-4ea8-985c-24da128950b7\",\"fr\":\"{\\\"email_subject\\\":\\\"Abonnement du pilote\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Abonn\\\\u00e9 avec succ\\\\u00e8s\\\",\\\"push_body\\\":\\\"Vous vous \\\\u00eates abonn\\\\u00e9 avec succ\\\\u00e8s\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"32f1ff07-736b-4ea8-985c-24da128950b7\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Suscripci\\\\u00f3n de conductor\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Suscrito con \\\\u00e9xito\\\",\\\"push_body\\\":\\\"Te has suscrito exitosamente\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"32f1ff07-736b-4ea8-985c-24da128950b7\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"push_body\\\":\\\"\\\\u0644\\\\u0642\\\\u062f \\\\u0642\\\\u0645\\\\u062a \\\\u0628\\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"32f1ff07-736b-4ea8-985c-24da128950b7\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('3f2c2db7-2cf8-4626-9505-b04e30ba660c', 'driver', 'Driver Withdrawal Request Approval', 'Choose how Driver will get notified about Sent notification on request approval', 1, 1, 1, 'Withdrawal Request Approval', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>  Your withdrawal request has been approved. Here are the details:.</p>                                    \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com</p>\n                                    <p>Thank you for using our services!</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Payment Credited 😃️', 'Your Payment Credited To Your Given Account', '{\"email_subject\":\"Withdrawal Request Approval\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>  Your withdrawal request has been approved. Here are the details:.<\\/p>                                    \\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Payment Credited \\ud83d\\ude03\\ufe0f\",\"push_body\":\"Your Payment Credited To Your Given Account\",\"locale\":\"en\",\"notification_channel_id\":\"3f2c2db7-2cf8-4626-9505-b04e30ba660c\",\"fr\":\"{\\\"email_subject\\\":\\\"Approbation de la demande de retrait\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de la transaction<\\\\\\/p>\\\\n                                                <p>ID de transaction : {transaction_id}<\\\\\\/p>\\\\n                                                <p>Montant:{currency}{amount}<\\\\\\/p>\\\\n                                                <p>Solde actuel: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Paiement cr\\\\u00e9dit\\\\u00e9 \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Votre paiement cr\\\\u00e9dit\\\\u00e9 sur votre compte donn\\\\u00e9\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"3f2c2db7-2cf8-4626-9505-b04e30ba660c\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Aprobaci\\\\u00f3n de solicitud de retiro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Su solicitud de retiro ha sido aprobada. Aqu\\\\u00ed est\\\\u00e1n los detalles:.<\\\\\\/p>\\\\n                                                <p>Detalles de la transacci\\\\u00f3n<\\\\\\/p>\\\\n                                                <p>ID de transacci\\\\u00f3n: {transaction_id}<\\\\\\/p>\\\\n                                                <p>Monto: {currency}{amount}<\\\\\\/p>\\\\n                                                <p>Saldo actual:{currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Pago acreditado \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Su pago acreditado a su cuenta dada\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"3f2c2db7-2cf8-4626-9505-b04e30ba660c\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"3f2c2db7-2cf8-4626-9505-b04e30ba660c\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('40f49385-4d7a-4c39-b31f-609c8b06f734', 'driver', 'Driver Wallet Amount', 'Choose how Driver will get notified about Sent notification on wallet amount Adjusted', 1, 1, 1, 'Wallet Amount Adjusted', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.</p>  \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Amount Added Succesfully', 'Amount Credited to Your Wallet Succesfully', '{\"email_subject\":\"Wallet Amount Adjusted\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.<\\/p>  \\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Amount Added Succesfully\",\"push_body\":\"Amount Credited to Your Wallet Succesfully\",\"locale\":\"en\",\"notification_channel_id\":\"40f49385-4d7a-4c39-b31f-609c8b06f734\",\"fr\":\"{\\\"email_subject\\\":\\\"Montant du portefeuille ajust\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Nous sommes heureux de vous informer qu\'un montant a \\\\u00e9t\\\\u00e9 ajust\\\\u00e9 avec succ\\\\u00e8s \\\\u00e0 votre portefeuille.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de la transaction<\\\\\\/p>\\\\n                                                <p>Identifiant de transaction: {transaction_id}<\\\\\\/p>\\\\n                                                <p>Montante : {currency}{amount}<\\\\\\/p>\\\\n                                                <p>Solde actuel: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Montant ajout\\\\u00e9 avec succ\\\\u00e8s\\\",\\\"push_body\\\":\\\"Montant cr\\\\u00e9dit\\\\u00e9 avec succ\\\\u00e8s sur votre portefeuille\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"40f49385-4d7a-4c39-b31f-609c8b06f734\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Monto de billetera ajustado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Nos complace informarle que un monto se ha ajustado exitosamente a su billetera.<\\\\\\/p>\\\\n                                                <p>Detalles de la transacci\\\\u00f3n<\\\\\\/p>\\\\n                                                <p>ID de transacci\\\\u00f3n: {transaction_id}<\\\\\\/p>\\\\n                                                <p>Cantidad: {currency}{amount}<\\\\\\/p>\\\\n                                                <p>Saldo actual: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Cantidad agregada exitosamente\\\",\\\"push_body\\\":\\\"Monto acreditado en su billetera con \\\\u00e9xito\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"40f49385-4d7a-4c39-b31f-609c8b06f734\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u062f\\\\u064a\\\\u0644 \\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0627\\\\u0644\\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u064a\\\\u0633\\\\u0639\\\\u062f\\\\u0646\\\\u0627 \\\\u0623\\\\u0646 \\\\u0646\\\\u0639\\\\u0644\\\\u0645\\\\u0643 \\\\u0623\\\\u0646\\\\u0647 \\\\u062a\\\\u0645 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d \\\\u062a\\\\u0639\\\\u062f\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0639\\\\u0627\\\\u0645\\\\u0644\\\\u0629<\\\\\\/p>\\\\n                                                <p>\\\\u0645\\\\u0639\\\\u0631\\\\u0641 \\\\u0627\\\\u0644\\\\u0645\\\\u0639\\\\u0627\\\\u0645\\\\u0644\\\\u0629: {transaction_id}<\\\\\\/p>\\\\n                                                <p>\\\\u0643\\\\u0645\\\\u064a\\\\u0629: {currency}{amount}<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0631\\\\u0635\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0644\\\\u064a: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0625\\\\u0636\\\\u0627\\\\u0641\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0636\\\\u0627\\\\u0641\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"40f49385-4d7a-4c39-b31f-609c8b06f734\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('4127031b-1b13-4bdb-bebf-3c1c14949636', 'user', 'User Transaction Failed', 'Choose how Customer will get notified about Sent notification on Transaction Failed', 1, 0, 0, 'Transaction Failed', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Transaction Failed', 'Transaction Failed', '{\"email_subject\":\"Transaction Failed\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Transaction Failed\",\"push_body\":\"Transaction Failed\",\"locale\":\"en\",\"notification_channel_id\":\"4127031b-1b13-4bdb-bebf-3c1c14949636\",\"fr\":\"{\\\"email_subject\\\":\\\"\\\\u00c9chec de la transaction\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"\\\\u00c9chec de la transaction\\\",\\\"push_body\\\":\\\"\\\\u00c9chec de la transaction\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"4127031b-1b13-4bdb-bebf-3c1c14949636\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Transacci\\\\u00f3n fallida\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Transacci\\\\u00f3n fallida\\\",\\\"push_body\\\":\\\"Transacci\\\\u00f3n fallida\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"4127031b-1b13-4bdb-bebf-3c1c14949636\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0641\\\\u0634\\\\u0644\\\\u062a \\\\u0627\\\\u0644\\\\u0635\\\\u0641\\\\u0642\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0641\\\\u0634\\\\u0644\\\\u062a \\\\u0627\\\\u0644\\\\u0635\\\\u0641\\\\u0642\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0641\\\\u0634\\\\u0644\\\\u062a \\\\u0627\\\\u0644\\\\u0635\\\\u0641\\\\u0642\\\\u0629\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"4127031b-1b13-4bdb-bebf-3c1c14949636\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b', 'user', 'Trip Cancelled By System', 'Choose how Driver will get notified about Sent notification on Trip Cancelled By System', 1, 0, 0, 'Trip Cancelled', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Trip Cancelled', 'Trip Cancelled By System', '{\"email_subject\":\"Trip Cancelled\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Trip Cancelled<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Trip Cancelled\",\"push_body\":\"Trip Cancelled By System\",\"locale\":\"en\",\"notification_channel_id\":\"42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b\",\"fr\":\"{\\\"email_subject\\\":\\\"Voyage annul\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Voyage annul\\\\u00e9\\\",\\\"push_body\\\":\\\"Voyage annul\\\\u00e9 par le syst\\\\u00e8me\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Viaje cancelado por cliente\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Viaje cancelado\\\",\\\"push_body\\\":\\\"Viaje cancelado por sistema\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0628\\\\u0648\\\\u0627\\\\u0633\\\\u0637\\\\u0629 \\\\u0627\\\\u0644\\\\u0646\\\\u0638\\\\u0627\\\\u0645\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7', 'user', 'Trip Cancelled', 'Choose how Driver will get notified about Sent notification on Trip Cancelled', 1, 0, 0, 'Trip Cancelled', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Trip Cancelled By Customer 🙁️', 'The customer cancelled the ride,please wait for another ride', '{\"email_subject\":\"Trip Cancelled\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Trip Cancelled<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Trip Cancelled By Customer \\ud83d\\ude41\\ufe0f\",\"push_body\":\"The customer cancelled the ride,please wait for another ride\",\"locale\":\"en\",\"notification_channel_id\":\"47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7\",\"fr\":\"{\\\"email_subject\\\":\\\"Voyage annul\\\\u00e9 par le client\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Voyage annul\\\\u00e9 par le client\\\",\\\"push_body\\\":\\\"Le client a annul\\\\u00e9 le trajet, veuillez attendre un autre trajet\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Viaje cancelado por cliente\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Viaje cancelado por cliente \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"El cliente cancel\\\\u00f3 el viaje, espere otro viaje.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0644\\\\u063a\\\\u0649 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\\u060c \\\\u0628\\\\u0631\\\\u062c\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0627\\\\u0646\\\\u062a\\\\u0638\\\\u0627\\\\u0631 \\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0623\\\\u062e\\\\u0631\\\\u0649\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('545565b5-962c-4473-b2a4-7b72df2f066a', 'driver', 'Driver Weekly Incentive', 'Choose how Driver will get notified about Sent notification on Weekly Incentive', 1, 0, 0, 'Weekly Incentive', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Weekly Incentive</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Weekly Incentive', 'Weekly Incentive Credited To Your Wallet', '{\"email_subject\":\"Weekly Incentive\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Weekly Incentive<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Weekly Incentive\",\"push_body\":\"Weekly Incentive Credited To Your Wallet\",\"locale\":\"en\",\"notification_channel_id\":\"545565b5-962c-4473-b2a4-7b72df2f066a\",\"fr\":\"{\\\"email_subject\\\":\\\"Incitatif hebdomadaire\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Incitatif hebdomadaire\\\",\\\"push_body\\\":\\\"Incitation hebdomadaire cr\\\\u00e9dit\\\\u00e9e sur votre portefeuille\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"545565b5-962c-4473-b2a4-7b72df2f066a\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Incentivo Semanal\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Incentivo Semanal\\\",\\\"push_body\\\":\\\"Incentivo semanal acreditado en su billetera\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"545565b5-962c-4473-b2a4-7b72df2f066a\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0641\\\\u0632 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0628\\\\u0648\\\\u0639\\\\u064a\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0641\\\\u0632 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0628\\\\u0648\\\\u0639\\\\u064a\\\",\\\"push_body\\\":\\\"\\\\u062d\\\\u0627\\\\u0641\\\\u0632 \\\\u0623\\\\u0633\\\\u0628\\\\u0648\\\\u0639\\\\u064a \\\\u064a\\\\u064f\\\\u0636\\\\u0627\\\\u0641 \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"545565b5-962c-4473-b2a4-7b72df2f066a\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('5e18235d-d85c-4a40-a080-84d31f4f4ccd', 'driver', 'Fleet Account Removed', 'Choose how Driver will get notified about Sent notification on Fleet Account Removed', 1, 0, 0, 'Fleet Account Removed', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Fleet Account Removed</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Fleet Removed From Your Account', 'Fleet Removed From Your Account, Please Wait For Assigning Fleet', '{\"email_subject\":\"Fleet Account Removed\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Fleet Account Removed<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Fleet Removed From Your Account\",\"push_body\":\"Fleet Removed From Your Account, Please Wait For Assigning Fleet\",\"locale\":\"en\",\"notification_channel_id\":\"5e18235d-d85c-4a40-a080-84d31f4f4ccd\",\"fr\":\"{\\\"email_subject\\\":\\\"Flotte supprim\\\\u00e9e de votre compte\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Flotte supprim\\\\u00e9e de votre compte\\\",\\\"push_body\\\":\\\"Flotte supprim\\\\u00e9e de votre compte, veuillez attendre l\'attribution de la flotte\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"5e18235d-d85c-4a40-a080-84d31f4f4ccd\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Flota eliminada de su cuenta\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Flota eliminada de su cuenta\\\",\\\"push_body\\\":\\\"Flota eliminada de su cuenta; espere a que se asigne la flota\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"5e18235d-d85c-4a40-a080-84d31f4f4ccd\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0623\\\\u062a\\\\u0645\\\\u062a \\\\u0625\\\\u0632\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0625\\\\u0632\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0625\\\\u0632\\\\u0627\\\\u0644\\\\u0629 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0646\\\\u062a\\\\u0638\\\\u0627\\\\u0631 \\\\u062d\\\\u062a\\\\u0649 \\\\u064a\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"5e18235d-d85c-4a40-a080-84d31f4f4ccd\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('75c1bd08-1802-45b9-a305-47767d778661', 'driver', 'Driver Account Disapproval', 'Choose how Driver will get notified about Sent notification on account disapproval', 1, 1, 1, 'Account Disapproval', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p> We regret to inform you that your application to become a driver with our taxi service has not been approved at this time.</p>   \n                                    <p>If you have any questions or need further clarification, feel free to contact our support team.</p>        \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Button', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Account Declined 🙁️', 'Your Account declined due to some reason. please contact our admin', '{\"email_subject\":\"Account Disapproval\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p> We regret to inform you that your application to become a driver with our taxi service has not been approved at this time.<\\/p>   \\n                                    <p>If you have any questions or need further clarification, feel free to contact our support team.<\\/p>        \\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Button\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Account Declined \\ud83d\\ude41\\ufe0f\",\"push_body\":\"Your Account declined due to some reason. please contact our admin\",\"locale\":\"en\",\"notification_channel_id\":\"75c1bd08-1802-45b9-a305-47767d778661\",\"fr\":\"{\\\"email_subject\\\":\\\"Refus du compte\\\",\\\"mail_body\\\":\\\"<p>Bonjour, {name}<\\\\\\/p>\\\\n                                                <p>Nous avons le regret de vous informer que votre demande pour devenir chauffeur aupr\\\\u00e8s de notre service de taxi n\'a pas \\\\u00e9t\\\\u00e9 approuv\\\\u00e9e pour le moment.<\\\\\\/p>\\\\n                                                <p>Si vous avez des questions ou avez besoin de pr\\\\u00e9cisions suppl\\\\u00e9mentaires, n\'h\\\\u00e9sitez pas \\\\u00e0 contacter notre \\\\u00e9quipe d\'assistance.<\\\\\\/p>\\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Compte refus\\\\u00e9 \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"Votre compte a \\\\u00e9t\\\\u00e9 refus\\\\u00e9 pour une raison quelconque. veuillez contacter notre administrateur\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"75c1bd08-1802-45b9-a305-47767d778661\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Rechazo de cuenta\\\",\\\"mail_body\\\":\\\"<p>Hola, {name}<\\\\\\/p>\\\\n                                                <p>Lamentamos informarle que su solicitud para convertirse en conductor de nuestro servicio de taxi no ha sido aprobada en este momento.<\\\\\\/p>\\\\n                                                <p>Si tiene alguna pregunta o necesita m\\\\u00e1s aclaraciones, no dude en ponerse en contacto con nuestro equipo de soporte.<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Cuenta rechazada \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"Su cuenta fue rechazada por alg\\\\u00fan motivo. por favor contacte a nuestro administrador\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"75c1bd08-1802-45b9-a305-47767d778661\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p\\\\u0646\\\\u0623\\\\u0633\\\\u0641 \\\\u0644\\\\u0625\\\\u0628\\\\u0644\\\\u0627\\\\u063a\\\\u0643 \\\\u0628\\\\u0623\\\\u0646 \\\\u0637\\\\u0644\\\\u0628\\\\u0643 \\\\u0644\\\\u062a\\\\u0635\\\\u0628\\\\u062d \\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\\u064b\\\\u0627 \\\\u0645\\\\u0639 \\\\u062e\\\\u062f\\\\u0645\\\\u0629 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0644\\\\u062f\\\\u064a\\\\u0646\\\\u0627 \\\\u0644\\\\u0645 \\\\u062a\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u064a\\\\u0647 \\\\u0641\\\\u064a \\\\u0627\\\\u0644\\\\u0648\\\\u0642\\\\u062a \\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0644\\\\u064a.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646 \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a \\\\u0623\\\\u0633\\\\u0626\\\\u0644\\\\u0629 \\\\u0623\\\\u0648 \\\\u0643\\\\u0646\\\\u062a \\\\u0628\\\\u062d\\\\u0627\\\\u062c\\\\u0629 \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u0632\\\\u064a\\\\u062f \\\\u0645\\\\u0646 \\\\u0627\\\\u0644\\\\u062a\\\\u0648\\\\u0636\\\\u064a\\\\u062d\\\\u060c \\\\u0641\\\\u0644\\\\u0627 \\\\u062a\\\\u062a\\\\u0631\\\\u062f\\\\u062f \\\\u0641\\\\u064a \\\\u0627\\\\u0644\\\\u0627\\\\u062a\\\\u0635\\\\u0627\\\\u0644 \\\\u0628\\\\u0641\\\\u0631\\\\u064a\\\\u0642 \\\\u0627\\\\u0644\\\\u062f\\\\u0639\\\\u0645 \\\\u0644\\\\u062f\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0633\\\\u0627\\\\u0628 \\\\u0645\\\\u0631\\\\u0641\\\\u0648\\\\u0636 \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u0644\\\\u0642\\\\u062f \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643 \\\\u0644\\\\u0633\\\\u0628\\\\u0628 \\\\u0645\\\\u0627. \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u062a\\\\u0635\\\\u0627\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0634\\\\u0631\\\\u0641 \\\\u0644\\\\u062f\\\\u064a\\\\u0646\\\\u0627\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"75c1bd08-1802-45b9-a305-47767d778661\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('7c44e34f-590b-4abe-a758-8701b882030f', 'driver', 'Trip Cancelled By Driver', 'Choose how Driver will get notified about Sent notification on Trip Cancelled', 1, 0, 0, 'Trip Cancelled', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Trip Cancelled By Driver 🙁️', 'The Driver cancelled the ride,please wait for another ride', '{\"email_subject\":\"Trip Cancelled\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Trip Cancelled<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Trip Cancelled By Driver \\ud83d\\ude41\\ufe0f\",\"push_body\":\"The Driver cancelled the ride,please wait for another ride\",\"locale\":\"en\",\"notification_channel_id\":\"7c44e34f-590b-4abe-a758-8701b882030f\",\"fr\":\"{\\\"email_subject\\\":\\\"Voyage annul\\\\u00e9 par le chauffeur\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Voyage annul\\\\u00e9 par le chauffeur \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"Le chauffeur a annul\\\\u00e9 le trajet, veuillez attendre un autre trajet\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"7c44e34f-590b-4abe-a758-8701b882030f\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Viaje cancelado por conductor\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Viaje cancelado por conductor\\\",\\\"push_body\\\":\\\"El conductor cancel\\\\u00f3 el viaje; espere otro viaje.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"7c44e34f-590b-4abe-a758-8701b882030f\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0644\\\\u063a\\\\u0627\\\\u0621 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644 \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0644\\\\u063a\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0646\\\\u062a\\\\u0638\\\\u0627\\\\u0631 \\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0623\\\\u062e\\\\u0631\\\\u0649\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"7c44e34f-590b-4abe-a758-8701b882030f\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('8eed95d5-d9b8-40d9-876d-fa707003672d', 'driver', 'Fleet Approved', 'Choose how Driver will get notified about Sent notification on Fleet Approved', 1, 0, 0, 'Fleet Approved', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Fleet Got Approved', 'Fleet Got Approved, Now you can assign driver for your fleet', '{\"email_subject\":\"Fleet Approved\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Trip Cancelled<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Fleet Got Approved\",\"push_body\":\"Fleet Got Approved, Now you can assign driver for your fleet\",\"locale\":\"en\",\"notification_channel_id\":\"8eed95d5-d9b8-40d9-876d-fa707003672d\",\"fr\":\"{\\\"email_subject\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 approuv\\\\u00e9e\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 approuv\\\\u00e9e\\\",\\\"push_body\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 approuv\\\\u00e9e, vous pouvez d\\\\u00e9sormais attribuer un chauffeur \\\\u00e0 votre flotte\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"8eed95d5-d9b8-40d9-876d-fa707003672d\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"La flota fue aprobada\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"La flota fue aprobada\\\",\\\"push_body\\\":\\\"La flota fue aprobada, ahora puede asignar un conductor para su flota\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"8eed95d5-d9b8-40d9-876d-fa707003672d\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u0627\\\\u0641\\\\u0642\\\\u0629 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644\\\\u060c \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u064a\\\\u0645\\\\u0643\\\\u0646\\\\u0643 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"8eed95d5-d9b8-40d9-876d-fa707003672d\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('928f78d3-bcae-4061-a379-c0544681c4a9', 'user', 'User Amount Transfer', 'Choose how Customer will get notified about Sent notification on amount transfer', 1, 1, 1, 'Wallet Amount Transfer', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'You Have Received Money', 'You Have Received Money From', '{\"email_subject\":\"Wallet Amount Transfer\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"You Have Received Money\",\"push_body\":\"You Have Received Money From\",\"locale\":\"en\",\"notification_channel_id\":\"928f78d3-bcae-4061-a379-c0544681c4a9\",\"fr\":\"{\\\"email_subject\\\":\\\"Courrier d\'inscription\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci de vous \\\\u00eatre inscrit aupr\\\\u00e8s de nous, votre application de taxi de confiance. Votre inscription a r\\\\u00e9ussi et nous sommes ravis de vous compter parmi nous.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de votre compte<\\\\\\/p>\\\\n                                                <p>E-mail : {email}<\\\\\\/p>\\\\n                                                <p>Num\\\\u00e9ro de mobile : {mobile}<\\\\\\/p>\\\\n                                                <p>Nous sommes maintenant pr\\\\u00eats \\\\u00e0 vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter \\\\u00e0 votre compte :<\\\\\\/p> \\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Titre de notification en fran\\\\u00e7ais\\\",\\\"push_body\\\":\\\"Corps de notification en fran\\\\u00e7ais\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"928f78d3-bcae-4061-a379-c0544681c4a9\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Correo de registro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por registrarte con nosotros, tu aplicaci\\\\u00f3n de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.<\\\\\\/p>\\\\n                                                <p>Detalles de su cuenta<\\\\\\/p>\\\\n                                                <p>Correo electr\\\\u00f3nico: {email}<\\\\\\/p>\\\\n                                                <p>N\\\\u00famero de m\\\\u00f3vil: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el bot\\\\u00f3n a continuaci\\\\u00f3n para iniciar sesi\\\\u00f3n en su cuenta:<\\\\\\/p> \\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"T\\\\u00edtulo de la notificaci\\\\u00f3n en espa\\\\u00f1ol\\\",\\\"push_body\\\":\\\"Cuerpo de la notificaci\\\\u00f3n en espa\\\\u00f1ol\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"928f78d3-bcae-4061-a379-c0544681c4a9\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"Benachrichtigungstitel auf Deutsch\\\",\\\"push_body\\\":\\\"Benachrichtigungstext auf Deutsch\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"928f78d3-bcae-4061-a379-c0544681c4a9\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('a85d6530-e97c-4e89-b67c-7a63311328a7', 'user', 'User Trip Started', 'Choose how Customer will get notified about Sent notification on Trip Started', 1, 0, 0, 'Trip Started', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Trip Started', 'Trip started towards the drop location', '{\"email_subject\":\"Trip Started\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Trip Started\",\"push_body\":\"Trip started towards the drop location\",\"locale\":\"en\",\"notification_channel_id\":\"a85d6530-e97c-4e89-b67c-7a63311328a7\",\"fr\":\"{\\\"email_subject\\\":\\\"Voyage commenc\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Voyage commenc\\\\u00e9\\\",\\\"push_body\\\":\\\"Le voyage a commenc\\\\u00e9 vers le lieu de d\\\\u00e9p\\\\u00f4t\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"a85d6530-e97c-4e89-b67c-7a63311328a7\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Viaje iniciado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Viaje iniciado\\\",\\\"push_body\\\":\\\"El viaje comenz\\\\u00f3 hacia el lugar de entrega.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"a85d6530-e97c-4e89-b67c-7a63311328a7\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u062f\\\\u0623\\\\u062a \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0628\\\\u062f\\\\u0623\\\\u062a \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0628\\\\u062f\\\\u0623\\\\u062a \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629 \\\\u0646\\\\u062d\\\\u0648 \\\\u0645\\\\u0648\\\\u0642\\\\u0639 \\\\u0627\\\\u0644\\\\u0647\\\\u0628\\\\u0648\\\\u0637\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"a85d6530-e97c-4e89-b67c-7a63311328a7\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('aa806417-287e-4c2d-9e8d-43a11cbedd8a', 'driver', 'Fleet Decline', 'Choose how Driver will get notified about Sent notification on Fleet Decline', 1, 0, 0, 'Fleet Decline', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Fleet Decline</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Fleet Got Declined by Admin', 'Fleet Got Declined by Admin, Please Contact Admin', '{\"email_subject\":\"Fleet Decline\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Fleet Decline<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Fleet Got Declined by Admin\",\"push_body\":\"Fleet Got Declined by Admin, Please Contact Admin\",\"locale\":\"en\",\"notification_channel_id\":\"aa806417-287e-4c2d-9e8d-43a11cbedd8a\",\"fr\":\"{\\\"email_subject\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e par l\'administrateur\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e par l\'administrateur\\\",\\\"push_body\\\":\\\"La flotte a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e par l\'administrateur, veuillez contacter l\'administrateur\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"aa806417-287e-4c2d-9e8d-43a11cbedd8a\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"El administrador rechaz\\\\u00f3 la flota\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El administrador rechaz\\\\u00f3 la flota\\\",\\\"push_body\\\":\\\"El administrador rechaz\\\\u00f3 la flota; comun\\\\u00edquese con el administrador\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"aa806417-287e-4c2d-9e8d-43a11cbedd8a\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0634\\\\u0631\\\\u0641\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0634\\\\u0631\\\\u0641\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0627\\\\u0644\\\\u0623\\\\u0633\\\\u0637\\\\u0648\\\\u0644 \\\\u0645\\\\u0646 \\\\u0642\\\\u0628\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0634\\\\u0631\\\\u0641\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u062a\\\\u0635\\\\u0627\\\\u0644 \\\\u0628\\\\u0627\\\\u0644\\\\u0645\\\\u0633\\\\u0624\\\\u0648\\\\u0644\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"aa806417-287e-4c2d-9e8d-43a11cbedd8a\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('b0cf434d-a8c9-4577-bd6b-092d46f72e39', 'driver', 'Change Drop Destination', 'Choose how Driver will get notified about Sent notification on drop destination has changed', 1, 0, 0, 'Change Drop Destination', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>The drop location has been changed</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Drop has been changed', 'Drop has been changed', '{\"email_subject\":\"Change Drop Destination\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>The drop location has been changed<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Drop has been changed\",\"push_body\":\"Drop has been changed\",\"locale\":\"en\",\"notification_channel_id\":\"b0cf434d-a8c9-4577-bd6b-092d46f72e39\",\"fr\":\"{\\\"email_subject\\\":\\\"Changer la destination de d\\\\u00e9p\\\\u00f4t\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>La destination a \\\\u00e9t\\\\u00e9 modifi\\\\u00e9e<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>MXDrive<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 & Droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Le drop a \\\\u00e9t\\\\u00e9 modifi\\\\u00e9\\\",\\\"push_body\\\":\\\"La destination de d\\\\u00e9p\\\\u00f4t a \\\\u00e9t\\\\u00e9 modifi\\\\u00e9eyy\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"b0cf434d-a8c9-4577-bd6b-092d46f72e39\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Cambiar destino de entrega\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>El destino ha cambiado<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por usar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p> \\\\n                                                <p>MXDrive<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna pregunta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Le responderemos y le ayudaremos.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El destino de descarga ha cambiado\\\",\\\"push_body\\\":\\\"El destino de descarga ha cambiado\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"b0cf434d-a8c9-4577-bd6b-092d46f72e39\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u063a\\\\u064a\\\\u064a\\\\u0631 \\\\u0648\\\\u062c\\\\u0647\\\\u0629 \\\\u0627\\\\u0644\\\\u0625\\\\u0633\\\\u0642\\\\u0627\\\\u0637 \\\\u0644\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}\\\\n                                                <p>\\\\u062a\\\\u0645 \\\\u062a\\\\u063a\\\\u064a\\\\u064a\\\\u0631 \\\\u0627\\\\u0644\\\\u0648\\\\u062c\\\\u0647\\\\u0629<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u064b\\\\u0627 \\\\u0644\\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645\\\\u0643 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>\\\\n                                                <p>MXDrive<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u064f\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0633\\\\u0646\\\\u062c\\\\u064a\\\\u0628 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0643 \\\\u0648\\\\u0646\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u063a\\\\u064a\\\\u064a\\\\u0631 \\\\u0648\\\\u062c\\\\u0647\\\\u0629 \\\\u0627\\\\u0644\\\\u0625\\\\u0633\\\\u0642\\\\u0627\\\\u0637\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u063a\\\\u064a\\\\u064a\\\\u0631 \\\\u0648\\\\u062c\\\\u0647\\\\u0629 \\\\u0627\\\\u0644\\\\u0625\\\\u0633\\\\u0642\\\\u0627\\\\u0637\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"b0cf434d-a8c9-4577-bd6b-092d46f72e39\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('ba4ff256-8fc5-4187-bbea-af6cc253a4a0', 'driver', 'Driver Diagnostic', 'Choose how Driver will get notified about Sent notification on Driver Diagnostic Successfully', 1, 0, 0, 'Subscribed Succesfully', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'You are Ready to Take a Ride', 'You are Ready to Take a Ride', '{\"email_subject\":\"Subscribed Succesfully\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"You are Ready to Take a Ride\",\"push_body\":\"You are Ready to Take a Ride\",\"locale\":\"en\",\"notification_channel_id\":\"ba4ff256-8fc5-4187-bbea-af6cc253a4a0\",\"fr\":\"{\\\"email_subject\\\":\\\"Courrier d\'inscription\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci de vous \\\\u00eatre inscrit aupr\\\\u00e8s de nous, votre application de taxi de confiance. Votre inscription a r\\\\u00e9ussi et nous sommes ravis de vous compter parmi nous.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de votre compte<\\\\\\/p>\\\\n                                                <p>E-mail : {email}<\\\\\\/p>\\\\n                                                <p>Num\\\\u00e9ro de mobile : {mobile}<\\\\\\/p>\\\\n                                                <p>Nous sommes maintenant pr\\\\u00eats \\\\u00e0 vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter \\\\u00e0 votre compte :<\\\\\\/p> \\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Vous \\\\u00eates pr\\\\u00eat \\\\u00e0 faire un tour\\\",\\\"push_body\\\":\\\"Vous \\\\u00eates pr\\\\u00eat \\\\u00e0 faire un tour\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"ba4ff256-8fc5-4187-bbea-af6cc253a4a0\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Correo de registro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por registrarte con nosotros, tu aplicaci\\\\u00f3n de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.<\\\\\\/p>\\\\n                                                <p>Detalles de su cuenta<\\\\\\/p>\\\\n                                                <p>Correo electr\\\\u00f3nico: {email}<\\\\\\/p>\\\\n                                                <p>N\\\\u00famero de m\\\\u00f3vil: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el bot\\\\u00f3n a continuaci\\\\u00f3n para iniciar sesi\\\\u00f3n en su cuenta:<\\\\\\/p> \\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Est\\\\u00e1s listo para dar un paseo\\\",\\\"push_body\\\":\\\"Est\\\\u00e1s listo para dar un paseo\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"ba4ff256-8fc5-4187-bbea-af6cc253a4a0\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0623\\\\u0646\\\\u062a \\\\u062c\\\\u0627\\\\u0647\\\\u0632 \\\\u0644\\\\u0644\\\\u0642\\\\u064a\\\\u0627\\\\u0645 \\\\u0628\\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0646\\\\u062a \\\\u062c\\\\u0627\\\\u0647\\\\u0632 \\\\u0644\\\\u0644\\\\u0642\\\\u064a\\\\u0627\\\\u0645 \\\\u0628\\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"ba4ff256-8fc5-4187-bbea-af6cc253a4a0\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('bbb5b07e-281a-4306-9e16-8978c33a1d3f', 'driver', 'Driver Ride Remainder', 'Choose how Driver will get notified about Sent notification on Ride Remainder', 1, 0, 0, 'Ride Remainder', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>To get a Ride, Open the app</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Gentle Reminder 😊️', 'Please open the App to get ride requests', '{\"email_subject\":\"Ride Remainder\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>To get a Ride, Open the app<\\/p>\\n                                     <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Share\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Gentle Reminder \\ud83d\\ude0a\\ufe0f\",\"push_body\":\"Please open the App to get ride requests\",\"locale\":\"en\",\"notification_channel_id\":\"bbb5b07e-281a-4306-9e16-8978c33a1d3f\",\"fr\":\"{\\\"email_subject\\\":\\\"Document expir\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Document expir\\\\u00e9, veuillez mettre \\\\u00e0 jour vos documents<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Doux rappel \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Veuillez ouvrir l\'application pour recevoir des demandes de trajet\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"bbb5b07e-281a-4306-9e16-8978c33a1d3f\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Documento caducado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Documento vencido, por favor actualice sus documentos<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Recordatorio gentil \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"Abra la aplicaci\\\\u00f3n para recibir solicitudes de viaje.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"bbb5b07e-281a-4306-9e16-8978c33a1d3f\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u062a \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0648\\\\u062b\\\\u064a\\\\u0642\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u062a \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0648\\\\u062b\\\\u064a\\\\u0642\\\\u0629\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u0627\\\\u0644\\\\u0645\\\\u0633\\\\u062a\\\\u0646\\\\u062f\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0630\\\\u0643\\\\u064a\\\\u0631 \\\\u0644\\\\u0637\\\\u064a\\\\u0641 \\\\ud83d\\\\ude0a\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0641\\\\u062a\\\\u062d \\\\u0627\\\\u0644\\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0644\\\\u0644\\\\u062d\\\\u0635\\\\u0648\\\\u0644 \\\\u0639\\\\u0644\\\\u0649 \\\\u0637\\\\u0644\\\\u0628\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"bbb5b07e-281a-4306-9e16-8978c33a1d3f\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('c1a42fad-0693-4b44-81b0-daee5cdaba1f', 'user', 'User Wallet Amount', 'Choose how Customer will get notified about Sent notification on wallet amount Adjusted', 1, 1, 1, 'Wallet Amount Adjusted', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.</p> \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Amount Added Succesfully', 'Amount Credited to Your Wallet Succesfully', '{\"email_subject\":\"Wallet Amount Adjusted\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.<\\/p> \\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Amount Added Succesfully\",\"push_body\":\"Amount Credited to Your Wallet Succesfully\",\"locale\":\"en\",\"notification_channel_id\":\"c1a42fad-0693-4b44-81b0-daee5cdaba1f\",\"fr\":\"{\\\"email_subject\\\":\\\"Montant du portefeuille ajust\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Nous sommes heureux de vous informer qu\'un montant a \\\\u00e9t\\\\u00e9 ajust\\\\u00e9 avec succ\\\\u00e8s \\\\u00e0 votre portefeuille.<\\\\\\/p>\\\\n                                                <p>D\\\\u00e9tails de la transaction<\\\\\\/p>\\\\n                                                <p>Identifiant de transaction: {transaction_id}<\\\\\\/p>\\\\n                                                <p>Montante : {currency}{amount}<\\\\\\/p>\\\\n                                                <p>Solde actuel: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Meilleures salutations, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Montant ajout\\\\u00e9 avec succ\\\\u00e8s\\\",\\\"push_body\\\":\\\"Montant cr\\\\u00e9dit\\\\u00e9 avec succ\\\\u00e8s sur votre portefeuille\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"c1a42fad-0693-4b44-81b0-daee5cdaba1f\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Monto de billetera ajustado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Nos complace informarle que un monto se ha ajustado exitosamente a su billetera.<\\\\\\/p>\\\\n                                                <p>Detalles de la transacci\\\\u00f3n<\\\\\\/p>\\\\n                                                <p>ID de transacci\\\\u00f3n: {transaction_id}<\\\\\\/p>\\\\n                                                <p>Cantidad: {currency}{amount}<\\\\\\/p>\\\\n                                                <p>Saldo actual: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Cantidad agregada exitosamente\\\",\\\"push_body\\\":\\\"Monto acreditado en su billetera con \\\\u00e9xito\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"c1a42fad-0693-4b44-81b0-daee5cdaba1f\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u062f\\\\u064a\\\\u0644 \\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0627\\\\u0644\\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u064a\\\\u0633\\\\u0639\\\\u062f\\\\u0646\\\\u0627 \\\\u0623\\\\u0646 \\\\u0646\\\\u0639\\\\u0644\\\\u0645\\\\u0643 \\\\u0623\\\\u0646\\\\u0647 \\\\u062a\\\\u0645 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d \\\\u062a\\\\u0639\\\\u062f\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u0645\\\\u0639\\\\u0627\\\\u0645\\\\u0644\\\\u0629<\\\\\\/p>\\\\n                                                <p>\\\\u0645\\\\u0639\\\\u0631\\\\u0641 \\\\u0627\\\\u0644\\\\u0645\\\\u0639\\\\u0627\\\\u0645\\\\u0644\\\\u0629: {transaction_id}<\\\\\\/p>\\\\n                                                <p>\\\\u0643\\\\u0645\\\\u064a\\\\u0629: {currency}{amount}<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0631\\\\u0635\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0644\\\\u064a: {currency}{current_balance}<\\\\\\/p>\\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645\\\\u062a \\\\u0625\\\\u0636\\\\u0627\\\\u0641\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"push_body\\\":\\\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0636\\\\u0627\\\\u0641\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0628\\\\u0644\\\\u063a \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"c1a42fad-0693-4b44-81b0-daee5cdaba1f\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('c2f363b4-c989-42c1-8cb7-943b4eaa9e68', 'user', 'User Trip Request Accepted', 'Choose how Customer will get notified about Sent notification on Trip Request Accepted', 1, 0, 0, 'Trip Request Accepted', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Trip Request Accepted', 'The Driver is coming to pick you', '{\"email_subject\":\"Trip Request Accepted\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Trip Request Accepted\",\"push_body\":\"The Driver is coming to pick you\",\"locale\":\"en\",\"notification_channel_id\":\"c2f363b4-c989-42c1-8cb7-943b4eaa9e68\",\"fr\":\"{\\\"email_subject\\\":\\\"Demande de voyage accept\\\\u00e9e\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Demande de voyage accept\\\\u00e9e\\\",\\\"push_body\\\":\\\"Le Chauffeur vient vous chercher\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"c2f363b4-c989-42c1-8cb7-943b4eaa9e68\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Solicitud de viaje aceptada\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Solicitud de viaje aceptada\\\",\\\"push_body\\\":\\\"El conductor viene a recogerte.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"c2f363b4-c989-42c1-8cb7-943b4eaa9e68\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0644\\\\u0645 \\\\u064a\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u0639\\\\u062b\\\\u0648\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0628\\\\u0631\\\\u0646\\\\u0627\\\\u0645\\\\u062c \\\\u0627\\\\u0644\\\\u062a\\\\u0634\\\\u063a\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0642\\\\u0628\\\\u0648\\\\u0644 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0642\\\\u0627\\\\u062f\\\\u0645 \\\\u0644\\\\u0627\\\\u0635\\\\u0637\\\\u062d\\\\u0627\\\\u0628\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"c2f363b4-c989-42c1-8cb7-943b4eaa9e68\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('c62aaf5b-840b-40dc-b8c0-299608bf22ef', 'user', 'Driver On the way to pickup', 'Choose how Driver will get notified about Sent notification on Driver On the way to pickup', 1, 0, 0, 'Driver On the way to pickup', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Driver Is On The Way To Pickup', 'Driver Is On The Way To Pickup', '{\"email_subject\":\"Driver On the way to pickup\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Driver Is On The Way To Pickup\",\"push_body\":\"Driver Is On The Way To Pickup\",\"locale\":\"en\",\"notification_channel_id\":\"c62aaf5b-840b-40dc-b8c0-299608bf22ef\",\"fr\":\"{\\\"email_subject\\\":\\\"Le conducteur est en route vers le ramassage\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Le conducteur est en route vers le ramassage\\\",\\\"push_body\\\":\\\"Le conducteur est en route vers le ramassage\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"c62aaf5b-840b-40dc-b8c0-299608bf22ef\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"La conductora est\\\\u00e1 en camino de recogida\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"La conductora est\\\\u00e1 en camino de recogida\\\",\\\"push_body\\\":\\\"La conductora est\\\\u00e1 en camino de recogida\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"c62aaf5b-840b-40dc-b8c0-299608bf22ef\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0641\\\\u064a \\\\u0637\\\\u0631\\\\u064a\\\\u0642\\\\u0647 \\\\u0644\\\\u0644\\\\u0627\\\\u0644\\\\u062a\\\\u0642\\\\u0627\\\\u0637\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0641\\\\u064a \\\\u0637\\\\u0631\\\\u064a\\\\u0642\\\\u0647 \\\\u0644\\\\u0644\\\\u0627\\\\u0644\\\\u062a\\\\u0642\\\\u0627\\\\u0637\\\",\\\"push_body\\\":\\\"\\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0641\\\\u064a \\\\u0637\\\\u0631\\\\u064a\\\\u0642\\\\u0647 \\\\u0644\\\\u0644\\\\u0627\\\\u0644\\\\u062a\\\\u0642\\\\u0627\\\\u0637\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"c62aaf5b-840b-40dc-b8c0-299608bf22ef\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('c6eb4171-9069-4711-9b26-f510dfb516ad', 'driver', 'Driver Daily Incentive', 'Choose how Driver will get notified about Sent notification on Daily Incentive', 1, 0, 0, 'Daily Incentive', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Daily Incentive</p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Daily Incentive', 'Daily Incentive Credited To Your Wallet', '{\"email_subject\":\"Daily Incentive\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Daily Incentive<\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Daily Incentive\",\"push_body\":\"Daily Incentive Credited To Your Wallet\",\"locale\":\"en\",\"notification_channel_id\":\"c6eb4171-9069-4711-9b26-f510dfb516ad\",\"fr\":\"{\\\"email_subject\\\":\\\"Incitation quotidienne\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Incitation quotidienne\\\",\\\"push_body\\\":\\\"Incitation quotidienne cr\\\\u00e9dit\\\\u00e9e sur votre portefeuille\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"c6eb4171-9069-4711-9b26-f510dfb516ad\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Incentivo diario\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Incentivo diario\\\",\\\"push_body\\\":\\\"Incentivo diario acreditado en su billetera\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"c6eb4171-9069-4711-9b26-f510dfb516ad\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0641\\\\u0632 \\\\u0627\\\\u0644\\\\u064a\\\\u0648\\\\u0645\\\\u064a\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0627\\\\u0641\\\\u0632 \\\\u0627\\\\u0644\\\\u064a\\\\u0648\\\\u0645\\\\u064a\\\",\\\"push_body\\\":\\\"\\\\u0627\\\\u0644\\\\u062d\\\\u0648\\\\u0627\\\\u0641\\\\u0632 \\\\u0627\\\\u0644\\\\u064a\\\\u0648\\\\u0645\\\\u064a\\\\u0629 \\\\u062a\\\\u0636\\\\u0627\\\\u0641 \\\\u0625\\\\u0644\\\\u0649 \\\\u0645\\\\u062d\\\\u0641\\\\u0638\\\\u062a\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"c6eb4171-9069-4711-9b26-f510dfb516ad\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('cb35a3f7-76d8-42ef-8917-7651bb7b7238', 'user', 'New Chat Message', 'Choose how User and Driver will get notified about Sent notification on New Chat is Received', 1, 0, 0, 'New Chat Message', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>New Chat Mesage</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'New Chat Message', 'New Chat Message', '{\"email_subject\":\"New Chat Message\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>New Chat Mesage<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"New Chat Message\",\"push_body\":\"New Chat Message\",\"locale\":\"en\",\"notification_channel_id\":\"cb35a3f7-76d8-42ef-8917-7651bb7b7238\",\"fr\":\"{\\\"email_subject\\\":\\\"Nouveau message de discussion\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Nouveau message de discussion<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Nouveau message de discussion\\\",\\\"push_body\\\":\\\"Nouveau message de discussion\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"cb35a3f7-76d8-42ef-8917-7651bb7b7238\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Nuevo mensaje de chat\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Nuevo mensaje de chat<\\\\\\/p> \\\\n                                                <p>Saludos cordiales,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Nuevo mensaje de chat\\\",\\\"push_body\\\":\\\"Nuevo mensaje de chat\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"cb35a3f7-76d8-42ef-8917-7651bb7b7238\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0631\\\\u0633\\\\u0627\\\\u0644\\\\u0629 \\\\u062f\\\\u0631\\\\u062f\\\\u0634\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0631\\\\u0633\\\\u0627\\\\u0644\\\\u0629 \\\\u062f\\\\u0631\\\\u062f\\\\u0634\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0631\\\\u0633\\\\u0627\\\\u0644\\\\u0629 \\\\u062f\\\\u0631\\\\u062f\\\\u0634\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f\\\\u0629\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"cb35a3f7-76d8-42ef-8917-7651bb7b7238\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('d85b738f-92a4-4601-b50c-21d054c95fc7', 'driver', 'Driver Arrived', 'Choose how Driver will get notified about Sent notification on Driver Arrived', 1, 0, 0, 'Driver Arrived', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Driver Arrived 😊️', 'The Driver arrived to pick you up', '{\"email_subject\":\"Driver Arrived\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Driver Arrived \\ud83d\\ude0a\\ufe0f\",\"push_body\":\"The Driver arrived to pick you up\",\"locale\":\"en\",\"notification_channel_id\":\"d85b738f-92a4-4601-b50c-21d054c95fc7\",\"fr\":\"{\\\"email_subject\\\":\\\"Chauffeur arriv\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Chauffeur arriv\\\\u00e9\\\",\\\"push_body\\\":\\\"Chauffeur arriv\\\\u00e9\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"d85b738f-92a4-4601-b50c-21d054c95fc7\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"El conductor lleg\\\\u00f3\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El conductor lleg\\\\u00f3\\\",\\\"push_body\\\":\\\"El conductor lleg\\\\u00f3\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"d85b738f-92a4-4601-b50c-21d054c95fc7\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0648\\\\u0635\\\\u0644 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0648\\\\u0635\\\\u0644 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"push_body\\\":\\\"\\\\u0648\\\\u0635\\\\u0644 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"d85b738f-92a4-4601-b50c-21d054c95fc7\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('e99ed715-5f68-41f4-830a-c1b3c1ea273b', 'user', 'User Transfer Credit Points', 'Choose how Customer will get notified about Sent notification on Transfer Credit Points', 1, 0, 0, 'Transfer Credit Points', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Reward Points Converted 😃️', 'Your Reward Points Credited To Your Account', '{\"email_subject\":\"Transfer Credit Points\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Reward Points Converted \\ud83d\\ude03\\ufe0f\",\"push_body\":\"Your Reward Points Credited To Your Account\",\"locale\":\"en\",\"notification_channel_id\":\"e99ed715-5f68-41f4-830a-c1b3c1ea273b\",\"fr\":\"{\\\"email_subject\\\":\\\"Points de r\\\\u00e9compense convertis\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Points de r\\\\u00e9compense convertis \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Vos points de r\\\\u00e9compense cr\\\\u00e9dit\\\\u00e9s sur votre compte\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"e99ed715-5f68-41f4-830a-c1b3c1ea273b\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Puntos de recompensa convertidos\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Puntos de recompensa convertidos \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"Sus puntos de recompensa acreditados en su cuenta\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"e99ed715-5f68-41f4-830a-c1b3c1ea273b\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u0648\\\\u064a\\\\u0644 \\\\u0646\\\\u0642\\\\u0627\\\\u0637 \\\\u0627\\\\u0644\\\\u0645\\\\u0643\\\\u0627\\\\u0641\\\\u0623\\\\u0629 \\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u0648\\\\u064a\\\\u0644 \\\\u0646\\\\u0642\\\\u0627\\\\u0637 \\\\u0627\\\\u0644\\\\u0645\\\\u0643\\\\u0627\\\\u0641\\\\u0623\\\\u0629 \\\\ud83d\\\\ude03\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u0646\\\\u0642\\\\u0627\\\\u0637 \\\\u0627\\\\u0644\\\\u0645\\\\u0643\\\\u0627\\\\u0641\\\\u0623\\\\u0629 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643 \\\\u062a\\\\u0636\\\\u0627\\\\u0641 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"e99ed715-5f68-41f4-830a-c1b3c1ea273b\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('eda89996-e85d-4fdd-95ba-71bd9a3a6c70', 'user', 'Driver not Found', 'Choose how Customer will get notified about Sent notification on Driver not Found', 1, 0, 0, 'Driver not Found', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'No Driver Found Around You 🙁️', 'Sorry plese try again after some times,there is no driver available for your ride now', '{\"email_subject\":\"Driver not Found\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"No Driver Found Around You \\ud83d\\ude41\\ufe0f\",\"push_body\":\"Sorry plese try again after some times,there is no driver available for your ride now\",\"locale\":\"en\",\"notification_channel_id\":\"eda89996-e85d-4fdd-95ba-71bd9a3a6c70\",\"fr\":\"{\\\"email_subject\\\":\\\"Pilote introuvable\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Aucun chauffeur trouv\\\\u00e9 autour de vous \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"D\\\\u00e9sol\\\\u00e9, veuillez r\\\\u00e9essayer apr\\\\u00e8s quelques instants. Aucun chauffeur n\'est disponible pour votre trajet pour le moment.\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"eda89996-e85d-4fdd-95ba-71bd9a3a6c70\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Controlador no encontrado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"No se encontr\\\\u00f3 ning\\\\u00fan conductor a tu alrededor \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"Lo sentimos, int\\\\u00e9ntelo de nuevo despu\\\\u00e9s de algunas veces. No hay ning\\\\u00fan conductor disponible para su viaje en este momento.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"eda89996-e85d-4fdd-95ba-71bd9a3a6c70\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0644\\\\u0645 \\\\u064a\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u0639\\\\u062b\\\\u0648\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0628\\\\u0631\\\\u0646\\\\u0627\\\\u0645\\\\u062c \\\\u0627\\\\u0644\\\\u062a\\\\u0634\\\\u063a\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0644\\\\u0645 \\\\u064a\\\\u062a\\\\u0645 \\\\u0627\\\\u0644\\\\u0639\\\\u062b\\\\u0648\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0645\\\\u0646 \\\\u062d\\\\u0648\\\\u0644\\\\u0643 \\\\ud83d\\\\ude41\\\\ufe0f\\\",\\\"push_body\\\":\\\"\\\\u0639\\\\u0630\\\\u0631\\\\u064b\\\\u0627\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0645\\\\u062d\\\\u0627\\\\u0648\\\\u0644\\\\u0629 \\\\u0645\\\\u0631\\\\u0629 \\\\u0623\\\\u062e\\\\u0631\\\\u0649 \\\\u0628\\\\u0639\\\\u062f \\\\u0645\\\\u0631\\\\u0648\\\\u0631 \\\\u0628\\\\u0639\\\\u0636 \\\\u0627\\\\u0644\\\\u0648\\\\u0642\\\\u062a\\\\u060c \\\\u0644\\\\u0627 \\\\u064a\\\\u0648\\\\u062c\\\\u062f \\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0645\\\\u062a\\\\u0627\\\\u062d \\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0643 \\\\u0627\\\\u0644\\\\u0622\\\\u0646\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"eda89996-e85d-4fdd-95ba-71bd9a3a6c70\\\"}\"}', '2025-09-26 07:06:11', '2025-09-26 07:06:11'),
('f3d3231d-c9a2-4690-a360-3dc1b9120fca', 'driver', 'Invoice For End of the Ride Driver', 'Choose how Driver will get notified about Sent notification on invoice for the end of the ride', 0, 1, 1, 'Invoice For Ride', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p><strong>Here is the summary of your recent trip: <strong></p>', 'Reset Password', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Invoice Downloaded successfully', 'Invoice Downloaded successfully', '{\"email_subject\":\"Invoice For Ride\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Thank You for Riding with us<\\/p>\\n                                    <p><strong>Here is the summary of your recent trip: <strong><\\/p>\",\"button_name\":\"Reset Password\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Invoice Downloaded successfully\",\"push_body\":\"Invoice Downloaded successfully\",\"locale\":\"en\",\"notification_channel_id\":\"f3d3231d-c9a2-4690-a360-3dc1b9120fca\",\"fr\":\"{\\\"email_subject\\\":\\\"Facture pour le trajet\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Merci d\'avoir roul\\\\u00e9 avec nous<\\\\\\/p>\\\\n                                                <p>Voici le r\\\\u00e9sum\\\\u00e9 de votre r\\\\u00e9cent voyage :<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Chauffeur A termin\\\\u00e9 le voyage\\\",\\\"push_body\\\":\\\"Le chauffeur a termin\\\\u00e9 le trajet. Aidez-nous en \\\\u00e9valuant le chauffeur.\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"f3d3231d-c9a2-4690-a360-3dc1b9120fca\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Factura por viaje\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Gracias por viajar con nosotros<\\\\\\/p>\\\\n                                                <p>Aqu\\\\u00ed est\\\\u00e1 el resumen de su reciente viaje<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El conductor finaliz\\\\u00f3 el viaje.\\\",\\\"push_body\\\":\\\"El conductor termin\\\\u00f3 el viaje. Ay\\\\u00fadenos calificando al conductor.\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"f3d3231d-c9a2-4690-a360-3dc1b9120fca\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0641\\\\u0627\\\\u062a\\\\u0648\\\\u0631\\\\u0629 \\\\u0644\\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0631\\\\u0643\\\\u0648\\\\u0628\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627<\\\\\\/p>\\\\n                                                <p>\\\\u0641\\\\u064a\\\\u0645\\\\u0627 \\\\u064a\\\\u0644\\\\u064a \\\\u0645\\\\u0644\\\\u062e\\\\u0635 \\\\u0631\\\\u062d\\\\u0644\\\\u062a\\\\u0643 \\\\u0627\\\\u0644\\\\u0623\\\\u062e\\\\u064a\\\\u0631\\\\u0629:<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0623\\\\u0646\\\\u0647\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\",\\\"push_body\\\":\\\"\\\\u0623\\\\u0646\\\\u0647\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642 \\\\u0627\\\\u0644\\\\u0631\\\\u062d\\\\u0644\\\\u0629\\\\u060c \\\\u0627\\\\u0644\\\\u0631\\\\u062c\\\\u0627\\\\u0621 \\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0646\\\\u0627 \\\\u0628\\\\u062a\\\\u0642\\\\u064a\\\\u064a\\\\u0645 \\\\u0627\\\\u0644\\\\u0633\\\\u0627\\\\u0626\\\\u0642\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"f3d3231d-c9a2-4690-a360-3dc1b9120fca\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');
INSERT INTO `notification_channels` (`id`, `role`, `topics`, `topics_content`, `push_notification`, `mail`, `sms`, `email_subject`, `logo_img`, `mail_body`, `button_name`, `button_url`, `show_button`, `banner_img`, `show_img`, `footer`, `footer_content`, `footer_copyrights`, `show_fbicon`, `show_instaicon`, `show_twittericon`, `show_linkedinicon`, `push_title`, `push_body`, `translation_dataset`, `created_at`, `updated_at`) VALUES
('f54b4789-b3e9-4e29-b3b3-2705bff2905d', 'driver', 'Driver Payment Received', 'Choose how Driver will get notified about Sent notification on Payment Received', 1, 0, 0, 'Payment Received', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Payment Received', 'Payment Received from customer', '{\"email_subject\":\"Payment Received\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.<\\/p>\\n                                    <p><strong>Transaction Details<\\/strong><\\/p>\\n                                    <p><strong>Transaction Id:<\\/strong> {transaction_id}<\\/p>\\n                                    <p><strong>Amount:<\\/strong> {currency}{amount}<\\/p>\\n                                    <p><strong>Current Balance:<\\/strong>{currency}{current_balance}<\\/p>\\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\\n                                    <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Payment Received\",\"push_body\":\"Payment Received from customer\",\"locale\":\"en\",\"notification_channel_id\":\"f54b4789-b3e9-4e29-b3b3-2705bff2905d\",\"fr\":\"{\\\"email_subject\\\":\\\"Paiement re\\\\u00e7u\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Paiement re\\\\u00e7u\\\",\\\"push_body\\\":\\\"Paiement re\\\\u00e7u du client\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"f54b4789-b3e9-4e29-b3b3-2705bff2905d\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Pago recibido\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Pago recibido\\\",\\\"push_body\\\":\\\"Pago recibido del cliente\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"f54b4789-b3e9-4e29-b3b3-2705bff2905d\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u062a\\\\u0645 \\\\u0627\\\\u0633\\\\u062a\\\\u0644\\\\u0627\\\\u0645 \\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0644\\\\u0644\\\\u0623\\\\u0633\\\\u0641\\\\u060c \\\\u062a\\\\u0645 \\\\u0631\\\\u0641\\\\u0636 \\\\u0637\\\\u0644\\\\u0628 \\\\u0627\\\\u0644\\\\u0633\\\\u062d\\\\u0628 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635 \\\\u0628\\\\u0643.<\\\\\\/p>\\\\n                                                <p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0645\\\\u0634\\\\u0643\\\\u0644\\\\u0627\\\\u062a \\\\u062a\\\\u062a\\\\u0639\\\\u0644\\\\u0642 \\\\u0628\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\\u060c \\\\u0641\\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0627\\\\u0644\\\\u0631\\\\u062f \\\\u0639\\\\u0644\\\\u0649 \\\\u0647\\\\u0630\\\\u0627 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0623\\\\u0648 \\\\u0625\\\\u0631\\\\u0633\\\\u0627\\\\u0644 \\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a \\\\u0625\\\\u0644\\\\u0649 support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u0634\\\\u0643\\\\u0631\\\\u0627 \\\\u0644\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u062e\\\\u062f\\\\u0627\\\\u0645 \\\\u062e\\\\u062f\\\\u0645\\\\u0627\\\\u062a\\\\u0646\\\\u0627!<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u062a\\\\u0645 \\\\u0627\\\\u0633\\\\u062a\\\\u0644\\\\u0627\\\\u0645 \\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639\\\",\\\"push_body\\\":\\\"\\\\u0627\\\\u0644\\\\u062f\\\\u0641\\\\u0639 \\\\u0627\\\\u0644\\\\u0645\\\\u0633\\\\u062a\\\\u0644\\\\u0645 \\\\u0645\\\\u0646 \\\\u0627\\\\u0644\\\\u0639\\\\u0645\\\\u064a\\\\u0644\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"f54b4789-b3e9-4e29-b3b3-2705bff2905d\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('f712f25c-1306-48ca-9876-19b2ab020df1', 'driver', 'Driver Withdrawal Request Decline', 'Choose how Driver will get notified about Sent notification on request decline', 1, 1, 1, 'Withdrawal Request Decline', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Unfortunately, your withdrawal request has been declined.</p>   \n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com</p>\n                                    <p>Thank you for using our services!</p>', 'View Details', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Payment Declained ', 'Your Payment Declained', '{\"email_subject\":\"Withdrawal Request Decline\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Unfortunately, your withdrawal request has been declined.<\\/p>   \\n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com<\\/p>\\n                                    <p>Thank you for using our services!<\\/p>\",\"button_name\":\"View Details\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Payment Declained \",\"push_body\":\"Your Payment Declained\",\"locale\":\"en\",\"notification_channel_id\":\"f712f25c-1306-48ca-9876-19b2ab020df1\",\"fr\":\"{\\\"email_subject\\\":\\\"Refus de la demande de retrait\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Malheureusement, votre demande de retrait a \\\\u00e9t\\\\u00e9 refus\\\\u00e9e.<\\\\\\/p>\\\\n                                                <p>Si vous rencontrez des probl\\\\u00e8mes avec le paiement, veuillez r\\\\u00e9pondre \\\\u00e0 cet e-mail ou envoyer un e-mail \\\\u00e0 support@gmail.com<\\\\\\/p>\\\\n                                                <p>Merci d\'utiliser nos services !<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Paiement refus\\\\u00e9\\\",\\\"push_body\\\":\\\"Votre paiement refus\\\\u00e9\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"f712f25c-1306-48ca-9876-19b2ab020df1\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Rechazo de solicitud de retiro\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.<\\\\\\/p>\\\\n                                                <p>Si tiene alg\\\\u00fan problema con el pago, responda amablemente a este correo electr\\\\u00f3nico o env\\\\u00ede un correo electr\\\\u00f3nico a support@gmail.com<\\\\\\/p>\\\\n                                                <p>\\\\u00a1Gracias por utilizar nuestros servicios!<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"Pago rechazado\\\",\\\"push_body\\\":\\\"Su pago rechazado\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"f712f25c-1306-48ca-9876-19b2ab020df1\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\",\\\"mail_body\\\":\\\"<p>{\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {\\\\u0627\\\\u0644\\\\u0627\\\\u0633\\\\u0645<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u0634\\\\u0643\\\\u0631\\\\u0643 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0627\\\\u0634\\\\u062a\\\\u0631\\\\u0627\\\\u0643 \\\\u0645\\\\u0639\\\\u0646\\\\u0627\\\\u060c \\\\u062a\\\\u0637\\\\u0628\\\\u064a\\\\u0642 \\\\u0633\\\\u064a\\\\u0627\\\\u0631\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0623\\\\u062c\\\\u0631\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0648\\\\u062b\\\\u0648\\\\u0642 \\\\u0628\\\\u0647. \\\\u062a\\\\u0645 \\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644\\\\u0643 \\\\u0628\\\\u0646\\\\u062c\\\\u0627\\\\u062d\\\\u060c \\\\u0648\\\\u0646\\\\u062d\\\\u0646 \\\\u0645\\\\u062a\\\\u062d\\\\u0645\\\\u0633\\\\u0648\\\\u0646 \\\\u0644\\\\u0627\\\\u0646\\\\u0636\\\\u0645\\\\u0627\\\\u0645\\\\u0643 \\\\u0625\\\\u0644\\\\u064a\\\\u0646\\\\u0627.<\\\\\\/p>\\\\n                                                <p>\\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a: {email}<\\\\\\/p>\\\\n                                                <p>\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u062c\\\\u0648\\\\u0627\\\\u0644: {mobile}<\\\\\\/p>\\\\n                                                <p>\\\\u0646\\\\u062d\\\\u0646 \\\\u0627\\\\u0644\\\\u0622\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0633\\\\u062a\\\\u0639\\\\u062f\\\\u0627\\\\u062f \\\\u0644\\\\u0645\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u062a\\\\u0643 \\\\u0641\\\\u064a \\\\u062a\\\\u0644\\\\u0628\\\\u064a\\\\u0629 \\\\u0627\\\\u062d\\\\u062a\\\\u064a\\\\u0627\\\\u062c\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0644 \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643! \\\\u0644\\\\u0644\\\\u0628\\\\u062f\\\\u0621\\\\u060c \\\\u0645\\\\u0627 \\\\u0639\\\\u0644\\\\u064a\\\\u0643 \\\\u0633\\\\u0648\\\\u0649 \\\\u0627\\\\u0644\\\\u0646\\\\u0642\\\\u0631 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0632\\\\u0631 \\\\u0623\\\\u062f\\\\u0646\\\\u0627\\\\u0647 \\\\u0644\\\\u062a\\\\u0633\\\\u062c\\\\u064a\\\\u0644 \\\\u0627\\\\u0644\\\\u062f\\\\u062e\\\\u0648\\\\u0644 \\\\u0625\\\\u0644\\\\u0649 \\\\u062d\\\\u0633\\\\u0627\\\\u0628\\\\u0643:<\\\\\\/p> \\\\n                                                <p>\\\\u0645\\\\u0639 \\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a<\\\\\\/p>         \\\\n                                                \\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"Benachrichtigungstitel auf Deutsch\\\",\\\"push_body\\\":\\\"Benachrichtigungstext auf Deutsch\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"f712f25c-1306-48ca-9876-19b2ab020df1\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('fd520313-96b5-4026-802b-2cf5315eb1f1', 'driver', 'Driver Document Expired', 'Choose how Driver will get notified about Sent notification on Document Expired', 1, 0, 0, 'Document Expired', 'logo-light.png', '\n                                    <p>Hello {name}</p>\n                                    <p>Document Expired, Kindly Update your documents</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', 'https://play.google.com/store/apps/details?id=mxdrive.bidding.user', 0, 'profile-bg.jpg', 0, '{\"footer_fblink\":\"https:\\/\\/www.facebook.com\\/\",\"footer_instalink\":\"https:\\/\\/www.instagram.com\\/\",\"footer_twitterlink\":\"https:\\/\\/x.com\\/\",\"footer_linkedinlink\":\"https:\\/\\/in.linkedin.com\\/\"}', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 1, 1, 1, 1, 'Document Expires', 'Document Expired', '{\"email_subject\":\"Document Expired\",\"mail_body\":\"\\n                                    <p>Hello {name}<\\/p>\\n                                    <p>Document Expired, Kindly Update your documents<\\/p>\\n                                     <p>Best regards, <\\/p>         \\n                                    <p>MXDrive<\\/p>\",\"button_name\":\"Share\",\"footer_content\":\"<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.<\\/p>\",\"footer_copyrights\":\"2021 MXDrive & Rights Reserved\",\"push_title\":\"Document Expires\",\"push_body\":\"Document Expired\",\"locale\":\"en\",\"notification_channel_id\":\"fd520313-96b5-4026-802b-2cf5315eb1f1\",\"fr\":\"{\\\"email_subject\\\":\\\"Document expir\\\\u00e9\\\",\\\"mail_body\\\":\\\"<p>Bonjour {name}<\\\\\\/p>\\\\n                                                <p>Document expir\\\\u00e9, veuillez mettre \\\\u00e0 jour vos documents<\\\\\\/p>\\\\n                                                <p>Cordialement, <\\\\\\/p>         \\\\n                                                <p>Logiciels MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bouton\\\",\\\"footer_content\\\":\\\"<p>Si vous avez des questions, veuillez nous envoyer un e-mail \\\\u00e0 support@gmail.com. Ils r\\\\u00e9pondront \\\\u00e0 la question et vous aideront.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"MXDrive 2021 et droits r\\\\u00e9serv\\\\u00e9s\\\",\\\"push_title\\\":\\\"Le document expire\\\",\\\"push_body\\\":\\\"Document expir\\\\u00e9\\\",\\\"locale\\\":\\\"fr\\\",\\\"notification_channel_id\\\":\\\"fd520313-96b5-4026-802b-2cf5315eb1f1\\\"}\",\"es\":\"{\\\"email_subject\\\":\\\"Documento caducado\\\",\\\"mail_body\\\":\\\"<p>Hola {name}<\\\\\\/p>\\\\n                                                <p>Documento vencido, por favor actualice sus documentos<\\\\\\/p>\\\\n                                                <p>Atentamente,<\\\\\\/p>         \\\\n                                                <p>Software MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"Bot\\\\u00f3n\\\",\\\"footer_content\\\":\\\"<p>Si tiene alguna consulta, env\\\\u00edenos un correo electr\\\\u00f3nico a support@gmail.com. Ellos responder\\\\u00e1n la pregunta y lo ayudar\\\\u00e1n.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 MXDrive y derechos reservados\\\",\\\"push_title\\\":\\\"El documento vence\\\",\\\"push_body\\\":\\\"Documento caducado\\\",\\\"locale\\\":\\\"es\\\",\\\"notification_channel_id\\\":\\\"fd520313-96b5-4026-802b-2cf5315eb1f1\\\"}\",\"ar\":\"{\\\"email_subject\\\":\\\"\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u062a \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0648\\\\u062b\\\\u064a\\\\u0642\\\\u0629\\\",\\\"mail_body\\\":\\\"<p>\\\\u0645\\\\u0631\\\\u062d\\\\u0628\\\\u064b\\\\u0627 {name}<\\\\\\/p>\\\\n                                                <p>\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u062a \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0648\\\\u062b\\\\u064a\\\\u0642\\\\u0629\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u0627\\\\u0644\\\\u0645\\\\u0633\\\\u062a\\\\u0646\\\\u062f\\\\u0627\\\\u062a \\\\u0627\\\\u0644\\\\u062e\\\\u0627\\\\u0635\\\\u0629 \\\\u0628\\\\u0643<\\\\\\/p>\\\\n                                                <p>\\\\u0623\\\\u0637\\\\u064a\\\\u0628 \\\\u0627\\\\u0644\\\\u062a\\\\u062d\\\\u064a\\\\u0627\\\\u062a\\\\u060c<\\\\\\/p>         \\\\n                                                <p>\\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MI<\\\\\\/p>\\\",\\\"button_name\\\":\\\"\\\\u0632\\\\u0631\\\",\\\"footer_content\\\":\\\"<p>\\\\u0625\\\\u0630\\\\u0627 \\\\u0643\\\\u0627\\\\u0646\\\\u062a \\\\u0644\\\\u062f\\\\u064a\\\\u0643 \\\\u0623\\\\u064a\\\\u0629 \\\\u0627\\\\u0633\\\\u062a\\\\u0641\\\\u0633\\\\u0627\\\\u0631\\\\u0627\\\\u062a\\\\u060c \\\\u064a\\\\u0631\\\\u062c\\\\u0649 \\\\u0645\\\\u0631\\\\u0627\\\\u0633\\\\u0644\\\\u062a\\\\u0646\\\\u0627 \\\\u0639\\\\u0628\\\\u0631 \\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0625\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u064a support@gmail.com. \\\\u0648\\\\u0633\\\\u0648\\\\u0641 \\\\u064a\\\\u062c\\\\u064a\\\\u0628\\\\u0648\\\\u0646 \\\\u0639\\\\u0644\\\\u0649 \\\\u0627\\\\u0644\\\\u0633\\\\u0624\\\\u0627\\\\u0644 \\\\u0648\\\\u064a\\\\u0633\\\\u0627\\\\u0639\\\\u062f\\\\u0648\\\\u0646\\\\u0643.<\\\\\\/p>\\\",\\\"footer_copyrights\\\":\\\"2021 \\\\u0628\\\\u0631\\\\u0627\\\\u0645\\\\u062c MXDrive \\\\u0648\\\\u0627\\\\u0644\\\\u062d\\\\u0642\\\\u0648\\\\u0642 \\\\u0645\\\\u062d\\\\u0641\\\\u0648\\\\u0638\\\\u0629\\\",\\\"push_title\\\":\\\"\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u0627\\\\u0621 \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0645\\\\u0633\\\\u062a\\\\u0646\\\\u062f\\\",\\\"push_body\\\":\\\"\\\\u0627\\\\u0646\\\\u062a\\\\u0647\\\\u062a \\\\u0635\\\\u0644\\\\u0627\\\\u062d\\\\u064a\\\\u0629 \\\\u0627\\\\u0644\\\\u0648\\\\u062b\\\\u064a\\\\u0642\\\\u0629\\\",\\\"locale\\\":\\\"ar\\\",\\\"notification_channel_id\\\":\\\"fd520313-96b5-4026-802b-2cf5315eb1f1\\\"}\"}', '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

--
-- Table structure for table `notification_channels_translations`
--

CREATE TABLE `notification_channels_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `notification_channel_id` char(36) NOT NULL,
  `email_subject` varchar(191) DEFAULT NULL,
  `mail_body` text DEFAULT NULL,
  `button_name` varchar(191) DEFAULT NULL,
  `footer_content` text DEFAULT NULL,
  `footer_copyrights` text DEFAULT NULL,
  `push_title` text NOT NULL,
  `push_body` text NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `notification_channels_translations`
--

INSERT INTO `notification_channels_translations` (`id`, `notification_channel_id`, `email_subject`, `mail_body`, `button_name`, `footer_content`, `footer_copyrights`, `push_title`, `push_body`, `locale`, `created_at`, `updated_at`) VALUES
(1, '0f02847d-3fc3-4465-b60c-366e7aab55c6', 'Registration Mail', '<p>Hello {name}</p>\n                                    <p>Thank you for signing up with us, your trusted taxi app. Your registration was successful, and we are excited to have you on board.</p>\n                                    <p>Your Account Details</p>\n                                    <p>Email: {email}</p>\n                                    <p>Mobile Number: {mobile}</p>\n                                    <p>We are now ready to help you with your transportation needs! To get started, simply click the button below to log in to your account:</p> \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Log in', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Register successfully', 'Register successfully', 'en', NULL, NULL),
(2, '0f02847d-3fc3-4465-b60c-366e7aab55c6', 'Courrier d\'inscription', '<p>Bonjour {name}</p>\n                                                <p>Merci de vous être inscrit auprès de nous, votre application de taxi de confiance. Votre inscription a réussi et nous sommes ravis de vous compter parmi nous.</p>\n                                                <p>Détails de votre compte</p>\n                                                <p>E-mail : {email}</p>\n                                                <p>Numéro de mobile : {mobile}</p>\n                                                <p>Nous sommes maintenant prêts à vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter à votre compte :</p> \n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Titre de notification en français', 'Corps de notification en français', 'fr', NULL, NULL),
(3, '0f02847d-3fc3-4465-b60c-366e7aab55c6', 'Correo de registro', '<p>Hola {name}</p>\n                                                <p>Gracias por registrarte con nosotros, tu aplicación de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.</p>\n                                                <p>Detalles de su cuenta</p>\n                                                <p>Correo electrónico: {email}</p>\n                                                <p>Número de móvil: {mobile}</p>\n                                                <p>¡Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el botón a continuación para iniciar sesión en su cuenta:</p> \n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Título de la notificación en español', 'Cuerpo de la notificación en español', 'es', NULL, NULL),
(4, '0f02847d-3fc3-4465-b60c-366e7aab55c6', 'بريد التسجيل', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'Benachrichtigungstitel auf Deutsch', 'Benachrichtigungstext auf Deutsch', 'ar', NULL, NULL),
(5, '0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205', 'Driver Assigned For Ride', '\n                                    <p>Hello {name}</p>\n                                    <p>Your Ride Later Trip is Confirmed</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p>Your \"ride later\" trip has been successfully scheduled.</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'New Trip Requested 😊️', 'New Trip Requested, you can accept or Reject the request', 'en', NULL, NULL),
(6, '0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205', 'Chauffeur affecté au trajet', '<p>Bonjour {name}</p>\n                                                <p>Votre voyage Ride Later est confirmé</p>\n                                                <p>Merci d\'avoir roulé avec nous</p>\n                                                <p>Votre voyage « rouler plus tard » a été planifié avec succès.</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Nouveau voyage demandé 😊️', 'Nouveau voyage demandé, vous pouvez accepter ou refuser la demande', 'fr', NULL, NULL),
(7, '0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205', 'Conductor asignado para el viaje', '<p>Hola {name}</p>\n                                                <p>Su viaje de viaje más tarde está confirmado</p>\n                                                <p>Gracias por viajar con nosotros</p>\n                                                <p>Su viaje \"viajar más tarde\" se ha programado correctamente.</p>\n                                                <p>Atentamente, </p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Nuevo viaje solicitado 😊️', 'Nuevo Viaje Solicitado, puedes aceptar o Rechazar la solicitud', 'es', NULL, NULL),
(8, '0bd4ef7b-ac91-4b6b-b3ab-a6403c67d205', 'السائق المخصص للركوب', '<p>مرحبًا {name}</p>\n                                                <p>تم تأكيد رحلتك اللاحقة</p>\n                                                <p>شكرا لركوبك معنا</p>\n                                                <p>تمت جدولة رحلتك \"الركوب لاحقًا\" بنجاح.</p>\n                                                <p>أطيب التحيات, </p>         \n                                                <p>برامج إم آي</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'مطلوب رحلة جديدة 😊️', 'تم طلب رحلة جديدة، يمكنك قبول الطلب أو رفضه', 'ar', NULL, NULL),
(9, '0537cf6e-6e46-442e-b99a-044288ecdc2d', 'Invoice For Ride', '\n                                    <p>Hello {name}</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p><strong>Here is the summary of your recent trip: <strong></p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Driver Ended the trip', 'Driver finished the ride, Please help us by rating the driver', 'en', NULL, NULL),
(10, '0537cf6e-6e46-442e-b99a-044288ecdc2d', 'Facture pour le trajet', '<p>Bonjour {name}</p>\n                                                <p>Merci d\'avoir roulé avec nous</p>\n                                                <p>Voici le résumé de votre récent voyage :</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Chauffeur A terminé le voyage', 'Le chauffeur a terminé le trajet. Aidez-nous en évaluant le chauffeur.', 'fr', NULL, NULL),
(11, '0537cf6e-6e46-442e-b99a-044288ecdc2d', 'Factura por viaje', '<p>Hola {name}</p>\n                                                <p>Gracias por viajar con nosotros</p>\n                                                <p>Aquí está el resumen de su reciente viaje</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'El conductor finalizó el viaje.', 'El conductor terminó el viaje. Ayúdenos calificando al conductor.', 'es', NULL, NULL),
(12, '0537cf6e-6e46-442e-b99a-044288ecdc2d', 'فاتورة للركوب', '<p>مرحبًا {name}</p>\n                                                <p>شكرا لركوبك معنا</p>\n                                                <p>فيما يلي ملخص رحلتك الأخيرة:</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'أنهى السائق الرحلة', 'أنهى السائق الرحلة، الرجاء مساعدتنا بتقييم السائق', 'ar', NULL, NULL),
(13, '22f6f264-5e6f-4567-946c-25c3e2f58aa5', 'Referral Code User', '\n                                    <p>Hello {name}</p>\n                                    <p>Thanks you! We are excited to offer you a referral code that you can share with your friends,\n                                    family, or colleagues.</p>\n                                    <p>When they use this referral code, they will receive a discount on their first ride, and you will earn rewards as well.</p>\n                                    <p>Share this code with others, and start earning rewards today! The more you refer, the more you can earn!</p>\n                                    <p>To use the referral code, simply share it with the person you refer,\n                                     and they can enter it during the booking process on our app.</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'You have Earned with your Referral code 😊️', 'We are happy to inform you that you have earned money with your referral code', 'en', NULL, NULL),
(14, '22f6f264-5e6f-4567-946c-25c3e2f58aa5', 'Utilisateur du code de référence', '<p>Bonjour {name}</p>\n                                                <p>Merci! Nous sommes ravis de vous proposer un code de parrainage que vous pouvez partager avec vos amis, votre famille ou vos collègues.</p>\n                                                <p>Lorsqu\'ils utiliseront ce code de parrainage, ils bénéficieront d\'une réduction sur leur premier trajet et vous gagnerez également des récompenses.</p>\n                                                <p>Partagez ce code avec d\'autres et commencez à gagner des récompenses dès aujourd\'hui ! Plus vous parrainez, plus vous pouvez gagner !</p>\n                                                <p>Pour utiliser le code de parrainage, partagez-le simplement avec la personne que vous parrainez, et elle pourra le saisir lors du processus de réservation sur notre application.</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Vous avez gagné avec votre code de parrainage 😊️', 'Nous sommes heureux de vous informer que vous avez gagné de l\'argent avec votre code de parrainage', 'fr', NULL, NULL),
(15, '22f6f264-5e6f-4567-946c-25c3e2f58aa5', 'Usuario del código de referencia', '<p>Hola {name}</p>\n                                                <p>¡Gracias! Nos complace ofrecerle un código de referencia que puede compartir con sus amigos, familiares o colegas.</p>\n                                                <p>Cuando utilicen este código de referencia, recibirán un descuento en su primer viaje y usted también obtendrá recompensas.</p>\n                                                <p>¡Comparta este código con otras personas y comience a ganar recompensas hoy! ¡Cuanto más recomiendes, más podrás ganar!</p>\n                                                <p>Para usar el código de referencia, simplemente compártelo con la persona que recomiendas y podrá ingresarlo durante el proceso de reserva en nuestra aplicación.</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Has ganado con tu código de referencia 😊️', 'Nos complace informarle que ha ganado dinero con su código de referencia.', 'es', NULL, NULL),
(16, '22f6f264-5e6f-4567-946c-25c3e2f58aa5', 'مستخدم رمز الإحالة', '<p>مرحبًا {name}</p>\n                                                <p>يشكركم! يسعدنا أن نقدم لك رمز الإحالة الذي يمكنك مشاركته مع أصدقائك أو عائلتك أو زملائك.</p>\n                                                <p>عندما يستخدمون رمز الإحالة هذا، سيحصلون على خصم على رحلتهم الأولى، وستكسب أنت أيضًا مكافآت.</p>\n                                                <p>شارك هذا الرمز مع الآخرين وابدأ في كسب المكافآت اليوم! كلما قمت بالإحالة أكثر، كلما زادت أرباحك!</p>\n                                                <p>لاستخدام رمز الإحالة، ما عليك سوى مشاركته مع الشخص الذي تحيله، ويمكنه إدخاله أثناء عملية الحجز على تطبيقنا.</p>\n                                                <p>أطيب التحيات، </p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'لقد ربحت باستخدام رمز الإحالة الخاص بك 😊️', 'يسعدنا أن نعلمك أنك ربحت المال من خلال رمز الإحالة الخاص بك', 'ar', NULL, NULL),
(17, 'c1a42fad-0693-4b44-81b0-daee5cdaba1f', 'Wallet Amount Adjusted', '\n                                    <p>Hello {name}</p>\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.</p> \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Amount Added Succesfully', 'Amount Credited to Your Wallet Succesfully', 'en', NULL, NULL),
(18, 'c1a42fad-0693-4b44-81b0-daee5cdaba1f', 'Montant du portefeuille ajusté', '<p>Bonjour {name}</p>\n                                                <p>Nous sommes heureux de vous informer qu\'un montant a été ajusté avec succès à votre portefeuille.</p>\n                                                <p>Détails de la transaction</p>\n                                                <p>Identifiant de transaction: {transaction_id}</p>\n                                                <p>Montante : {currency}{amount}</p>\n                                                <p>Solde actuel: {currency}{current_balance}</p>\n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Montant ajouté avec succès', 'Montant crédité avec succès sur votre portefeuille', 'fr', NULL, NULL),
(19, 'c1a42fad-0693-4b44-81b0-daee5cdaba1f', 'Monto de billetera ajustado', '<p>Hola {name}</p>\n                                                <p>Nos complace informarle que un monto se ha ajustado exitosamente a su billetera.</p>\n                                                <p>Detalles de la transacción</p>\n                                                <p>ID de transacción: {transaction_id}</p>\n                                                <p>Cantidad: {currency}{amount}</p>\n                                                <p>Saldo actual: {currency}{current_balance}</p>\n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Cantidad agregada exitosamente', 'Monto acreditado en su billetera con éxito', 'es', NULL, NULL),
(20, 'c1a42fad-0693-4b44-81b0-daee5cdaba1f', 'تم تعديل مبلغ المحفظة', '<p>{مرحبًا {الاسم</p>\n                                                <p>يسعدنا أن نعلمك أنه تم بنجاح تعديل المبلغ إلى محفظتك.</p>\n                                                <p>تفاصيل المعاملة</p>\n                                                <p>معرف المعاملة: {transaction_id}</p>\n                                                <p>كمية: {currency}{amount}</p>\n                                                <p>الرصيد الحالي: {currency}{current_balance}</p>\n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تمت إضافة المبلغ بنجاح', 'تم إضافة المبلغ إلى محفظتك بنجاح', 'ar', NULL, NULL),
(21, '928f78d3-bcae-4061-a379-c0544681c4a9', 'Wallet Amount Transfer', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'You Have Received Money', 'You Have Received Money From', 'en', NULL, NULL),
(22, '928f78d3-bcae-4061-a379-c0544681c4a9', 'Courrier d\'inscription', '<p>Bonjour {name}</p>\n                                                <p>Merci de vous être inscrit auprès de nous, votre application de taxi de confiance. Votre inscription a réussi et nous sommes ravis de vous compter parmi nous.</p>\n                                                <p>Détails de votre compte</p>\n                                                <p>E-mail : {email}</p>\n                                                <p>Numéro de mobile : {mobile}</p>\n                                                <p>Nous sommes maintenant prêts à vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter à votre compte :</p> \n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Titre de notification en français', 'Corps de notification en français', 'fr', NULL, NULL),
(23, '928f78d3-bcae-4061-a379-c0544681c4a9', 'Correo de registro', '<p>Hola {name}</p>\n                                                <p>Gracias por registrarte con nosotros, tu aplicación de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.</p>\n                                                <p>Detalles de su cuenta</p>\n                                                <p>Correo electrónico: {email}</p>\n                                                <p>Número de móvil: {mobile}</p>\n                                                <p>¡Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el botón a continuación para iniciar sesión en su cuenta:</p> \n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Título de la notificación en español', 'Cuerpo de la notificación en español', 'es', NULL, NULL),
(24, '928f78d3-bcae-4061-a379-c0544681c4a9', 'بريد التسجيل', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'Benachrichtigungstitel auf Deutsch', 'Benachrichtigungstext auf Deutsch', 'ar', NULL, NULL),
(25, 'fd520313-96b5-4026-802b-2cf5315eb1f1', 'Document Expired', '\n                                    <p>Hello {name}</p>\n                                    <p>Document Expired, Kindly Update your documents</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Document Expires', 'Document Expired', 'en', NULL, NULL),
(26, 'fd520313-96b5-4026-802b-2cf5315eb1f1', 'Document expiré', '<p>Bonjour {name}</p>\n                                                <p>Document expiré, veuillez mettre à jour vos documents</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Le document expire', 'Document expiré', 'fr', NULL, NULL),
(27, 'fd520313-96b5-4026-802b-2cf5315eb1f1', 'Documento caducado', '<p>Hola {name}</p>\n                                                <p>Documento vencido, por favor actualice sus documentos</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'El documento vence', 'Documento caducado', 'es', NULL, NULL),
(28, 'fd520313-96b5-4026-802b-2cf5315eb1f1', 'انتهت صلاحية الوثيقة', '<p>مرحبًا {name}</p>\n                                                <p>انتهت صلاحية الوثيقة، يرجى تحديث المستندات الخاصة بك</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'انتهاء صلاحية المستند', 'انتهت صلاحية الوثيقة', 'ar', NULL, NULL),
(29, 'bbb5b07e-281a-4306-9e16-8978c33a1d3f', 'Ride Remainder', '\n                                    <p>Hello {name}</p>\n                                    <p>To get a Ride, Open the app</p>\n                                     <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Share', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Gentle Reminder 😊️', 'Please open the App to get ride requests', 'en', NULL, NULL),
(30, 'bbb5b07e-281a-4306-9e16-8978c33a1d3f', 'Document expiré', '<p>Bonjour {name}</p>\n                                                <p>Document expiré, veuillez mettre à jour vos documents</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Doux rappel 😊️', 'Veuillez ouvrir l\'application pour recevoir des demandes de trajet', 'fr', NULL, NULL),
(31, 'bbb5b07e-281a-4306-9e16-8978c33a1d3f', 'Documento caducado', '<p>Hola {name}</p>\n                                                <p>Documento vencido, por favor actualice sus documentos</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Recordatorio gentil 😊️', 'Abra la aplicación para recibir solicitudes de viaje.', 'es', NULL, NULL),
(32, 'bbb5b07e-281a-4306-9e16-8978c33a1d3f', 'انتهت صلاحية الوثيقة', '<p>مرحبًا {name}</p>\n                                                <p>انتهت صلاحية الوثيقة، يرجى تحديث المستندات الخاصة بك</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تذكير لطيف 😊️', 'يرجى فتح التطبيق للحصول على طلبات الركوب', 'ar', NULL, NULL),
(33, '0dcc8fdf-a397-4f1b-9375-1857061416a0', 'Account Approval', '\n                                    <p>Congratulations,{name} </p>\n                                    <p>We are  to inform you that your driver account  has been successfully approved. You are now ready to start accepting ride requests and earning..</p>   \n                                    <p>Please log in to your account using the credentials provided during registration. If you encounter any issues, feel free to reach out to our support team.</p>        \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Button', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Account Approved 😃️', 'Your profile verified and approved', 'en', NULL, NULL),
(34, '0dcc8fdf-a397-4f1b-9375-1857061416a0', 'Approbation du compte', '<p>Félicitations, {name}</p>\n                                                <p>Nous devons vous informer que votre compte chauffeur a été approuvé avec succès. Vous êtes maintenant prêt à commencer à accepter des demandes de courses et à gagner des revenus.</p>\n                                                <p>Veuillez vous connecter à votre compte en utilisant les identifiants fournis lors de l\'inscription. Si vous rencontrez des problèmes, n\'hésitez pas à contacter notre équipe d\'assistance.</p>\n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Compte approuvé 😃️', 'Votre profil vérifié et approuvé', 'fr', NULL, NULL),
(35, '0dcc8fdf-a397-4f1b-9375-1857061416a0', 'Aprobación de cuenta', '<p>Felicidades, {name}</p>\n                                                <p>Le informamos que su cuenta de conductor ha sido aprobada exitosamente. Ahora está listo para comenzar a aceptar solicitudes de viaje y ganar dinero.</p>\n                                                <p>Inicie sesión en su cuenta utilizando las credenciales proporcionadas durante el registro. Si tiene algún problema, no dude en comunicarse con nuestro equipo de soporte.</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Bouton', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Cuenta aprobada 😃️', 'Tu perfil verificado y aprobado', 'es', NULL, NULL),
(36, '0dcc8fdf-a397-4f1b-9375-1857061416a0', 'تقدير الحساب', '<p>تهنئة, {name}</p>\n                                                <p>نود أن نعلمك أنه تمت الموافقة على حساب السائق الخاص بك بنجاح. أنت الآن جاهز للبدء في قبول طلبات الرحلات وتحقيق الربح..</p>\n                                                <p>يرجى تسجيل الدخول إلى حسابك باستخدام بيانات الاعتماد المقدمة أثناء التسجيل. إذا واجهت أي مشاكل، فلا تتردد في التواصل مع فريق الدعم لدينا.</p>\n                                                <p>أطيب التحيات, </p>         \n                                                <p>برامج إم آي</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تمت الموافقة على الحساب 😃️', 'تم التحقق من ملفك الشخصي والموافقة عليه', 'ar', NULL, NULL),
(37, '75c1bd08-1802-45b9-a305-47767d778661', 'Account Disapproval', '\n                                    <p>Hello {name}</p>\n                                    <p> We regret to inform you that your application to become a driver with our taxi service has not been approved at this time.</p>   \n                                    <p>If you have any questions or need further clarification, feel free to contact our support team.</p>        \n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'Button', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Account Declined 🙁️', 'Your Account declined due to some reason. please contact our admin', 'en', NULL, NULL),
(38, '75c1bd08-1802-45b9-a305-47767d778661', 'Refus du compte', '<p>Bonjour, {name}</p>\n                                                <p>Nous avons le regret de vous informer que votre demande pour devenir chauffeur auprès de notre service de taxi n\'a pas été approuvée pour le moment.</p>\n                                                <p>Si vous avez des questions ou avez besoin de précisions supplémentaires, n\'hésitez pas à contacter notre équipe d\'assistance.</p>\n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Compte refusé 🙁️', 'Votre compte a été refusé pour une raison quelconque. veuillez contacter notre administrateur', 'fr', NULL, NULL),
(39, '75c1bd08-1802-45b9-a305-47767d778661', 'Rechazo de cuenta', '<p>Hola, {name}</p>\n                                                <p>Lamentamos informarle que su solicitud para convertirse en conductor de nuestro servicio de taxi no ha sido aprobada en este momento.</p>\n                                                <p>Si tiene alguna pregunta o necesita más aclaraciones, no dude en ponerse en contacto con nuestro equipo de soporte.</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Bouton', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Cuenta rechazada 🙁️', 'Su cuenta fue rechazada por algún motivo. por favor contacte a nuestro administrador', 'es', NULL, NULL),
(40, '75c1bd08-1802-45b9-a305-47767d778661', 'رفض الحساب', '<p>مرحبًا {name}</p>\n                                                <pنأسف لإبلاغك بأن طلبك لتصبح سائقًا مع خدمة سيارات الأجرة لدينا لم تتم الموافقة عليه في الوقت الحالي.</p>\n                                                <p>إذا كان لديك أي أسئلة أو كنت بحاجة إلى مزيد من التوضيح، فلا تتردد في الاتصال بفريق الدعم لدينا.</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'الحساب مرفوض 🙁️', 'لقد تم رفض حسابك لسبب ما. يرجى الاتصال المشرف لدينا', 'ar', NULL, NULL),
(41, '40f49385-4d7a-4c39-b31f-609c8b06f734', 'Wallet Amount Adjusted', '\n                                    <p>Hello {name}</p>\n                                    <p>We are happy to inform you that an amount has been successfully Adjusted to your wallet.</p>  \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Amount Added Succesfully', 'Amount Credited to Your Wallet Succesfully', 'en', NULL, NULL),
(42, '40f49385-4d7a-4c39-b31f-609c8b06f734', 'Montant du portefeuille ajusté', '<p>Bonjour {name}</p>\n                                                <p>Nous sommes heureux de vous informer qu\'un montant a été ajusté avec succès à votre portefeuille.</p>\n                                                <p>Détails de la transaction</p>\n                                                <p>Identifiant de transaction: {transaction_id}</p>\n                                                <p>Montante : {currency}{amount}</p>\n                                                <p>Solde actuel: {currency}{current_balance}</p>\n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Montant ajouté avec succès', 'Montant crédité avec succès sur votre portefeuille', 'fr', NULL, NULL),
(43, '40f49385-4d7a-4c39-b31f-609c8b06f734', 'Monto de billetera ajustado', '<p>Hola {name}</p>\n                                                <p>Nos complace informarle que un monto se ha ajustado exitosamente a su billetera.</p>\n                                                <p>Detalles de la transacción</p>\n                                                <p>ID de transacción: {transaction_id}</p>\n                                                <p>Cantidad: {currency}{amount}</p>\n                                                <p>Saldo actual: {currency}{current_balance}</p>\n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Cantidad agregada exitosamente', 'Monto acreditado en su billetera con éxito', 'es', NULL, NULL),
(44, '40f49385-4d7a-4c39-b31f-609c8b06f734', 'تم تعديل مبلغ المحفظة', '<p>{مرحبًا {الاسم</p>\n                                                <p>يسعدنا أن نعلمك أنه تم بنجاح تعديل المبلغ إلى محفظتك.</p>\n                                                <p>تفاصيل المعاملة</p>\n                                                <p>معرف المعاملة: {transaction_id}</p>\n                                                <p>كمية: {currency}{amount}</p>\n                                                <p>الرصيد الحالي: {currency}{current_balance}</p>\n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تمت إضافة المبلغ بنجاح', 'تم إضافة المبلغ إلى محفظتك بنجاح', 'ar', NULL, NULL),
(45, '3f2c2db7-2cf8-4626-9505-b04e30ba660c', 'Withdrawal Request Approval', '\n                                    <p>Hello {name}</p>\n                                    <p>  Your withdrawal request has been approved. Here are the details:.</p>                                    \n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com</p>\n                                    <p>Thank you for using our services!</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Payment Credited 😃️', 'Your Payment Credited To Your Given Account', 'en', NULL, NULL),
(46, '3f2c2db7-2cf8-4626-9505-b04e30ba660c', 'Approbation de la demande de retrait', '<p>Bonjour {name}</p>\n                                                <p>Détails de la transaction</p>\n                                                <p>ID de transaction : {transaction_id}</p>\n                                                <p>Montant:{currency}{amount}</p>\n                                                <p>Solde actuel: {currency}{current_balance}</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Paiement crédité 😃️', 'Votre paiement crédité sur votre compte donné', 'fr', NULL, NULL),
(47, '3f2c2db7-2cf8-4626-9505-b04e30ba660c', 'Aprobación de solicitud de retiro', '<p>Hola {name}</p>\n                                                <p>Su solicitud de retiro ha sido aprobada. Aquí están los detalles:.</p>\n                                                <p>Detalles de la transacción</p>\n                                                <p>ID de transacción: {transaction_id}</p>\n                                                <p>Monto: {currency}{amount}</p>\n                                                <p>Saldo actual:{currency}{current_balance}</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Pago acreditado 😃️', 'Su pago acreditado a su cuenta dada', 'es', NULL, NULL),
(48, '3f2c2db7-2cf8-4626-9505-b04e30ba660c', 'رفض طلب السحب', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم رفض الدفع', 'تم رفض الدفع الخاص بك', 'ar', NULL, NULL),
(49, 'f712f25c-1306-48ca-9876-19b2ab020df1', 'Withdrawal Request Decline', '\n                                    <p>Hello {name}</p>\n                                    <p>Unfortunately, your withdrawal request has been declined.</p>   \n                                    <p>If you have any issues with payment, kindly reply to this email or send an email to support@gmail.com</p>\n                                    <p>Thank you for using our services!</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Payment Declained ', 'Your Payment Declained', 'en', NULL, NULL),
(50, 'f712f25c-1306-48ca-9876-19b2ab020df1', 'Refus de la demande de retrait', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Paiement refusé', 'Votre paiement refusé', 'fr', NULL, NULL),
(51, 'f712f25c-1306-48ca-9876-19b2ab020df1', 'Rechazo de solicitud de retiro', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Pago rechazado', 'Su pago rechazado', 'es', NULL, NULL),
(52, 'f712f25c-1306-48ca-9876-19b2ab020df1', 'بريد التسجيل', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'Benachrichtigungstitel auf Deutsch', 'Benachrichtigungstext auf Deutsch', 'ar', NULL, NULL),
(53, 'f3d3231d-c9a2-4690-a360-3dc1b9120fca', 'Invoice For Ride', '\n                                    <p>Hello {name}</p>\n                                    <p>Thank You for Riding with us</p>\n                                    <p><strong>Here is the summary of your recent trip: <strong></p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Invoice Downloaded successfully', 'Invoice Downloaded successfully', 'en', NULL, NULL),
(54, 'f3d3231d-c9a2-4690-a360-3dc1b9120fca', 'Facture pour le trajet', '<p>Bonjour {name}</p>\n                                                <p>Merci d\'avoir roulé avec nous</p>\n                                                <p>Voici le résumé de votre récent voyage :</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Chauffeur A terminé le voyage', 'Le chauffeur a terminé le trajet. Aidez-nous en évaluant le chauffeur.', 'fr', NULL, NULL),
(55, 'f3d3231d-c9a2-4690-a360-3dc1b9120fca', 'Factura por viaje', '<p>Hola {name}</p>\n                                                <p>Gracias por viajar con nosotros</p>\n                                                <p>Aquí está el resumen de su reciente viaje</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'El conductor finalizó el viaje.', 'El conductor terminó el viaje. Ayúdenos calificando al conductor.', 'es', NULL, NULL);
INSERT INTO `notification_channels_translations` (`id`, `notification_channel_id`, `email_subject`, `mail_body`, `button_name`, `footer_content`, `footer_copyrights`, `push_title`, `push_body`, `locale`, `created_at`, `updated_at`) VALUES
(56, 'f3d3231d-c9a2-4690-a360-3dc1b9120fca', 'فاتورة للركوب', '<p>مرحبًا {name}</p>\n                                                <p>شكرا لركوبك معنا</p>\n                                                <p>فيما يلي ملخص رحلتك الأخيرة:</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'أنهى السائق الرحلة', 'أنهى السائق الرحلة، الرجاء مساعدتنا بتقييم السائق', 'ar', NULL, NULL),
(57, '47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7', 'Trip Cancelled', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Trip Cancelled By Customer 🙁️', 'The customer cancelled the ride,please wait for another ride', 'en', NULL, NULL),
(58, '47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7', 'Voyage annulé par le client', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Voyage annulé par le client', 'Le client a annulé le trajet, veuillez attendre un autre trajet', 'fr', NULL, NULL),
(59, '47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7', 'Viaje cancelado por cliente', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Viaje cancelado por cliente 🙁️', 'El cliente canceló el viaje, espere otro viaje.', 'es', NULL, NULL),
(60, '47ec0e28-8feb-40d2-bc62-ed01bbd4a3a7', 'تم إلغاء الرحلة من قبل العميل ', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم إلغاء الرحلة من قبل العميل 🙁️', 'ألغى العميل الرحلة، برجاء الانتظار لرحلة أخرى', 'ar', NULL, NULL),
(61, '42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b', 'Trip Cancelled', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Trip Cancelled', 'Trip Cancelled By System', 'en', NULL, NULL),
(62, '42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b', 'Voyage annulé', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Voyage annulé', 'Voyage annulé par le système', 'fr', NULL, NULL),
(63, '42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b', 'Viaje cancelado por cliente', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Viaje cancelado', 'Viaje cancelado por sistema', 'es', NULL, NULL),
(64, '42b2155e-0cf4-4cbb-8226-3c0e5f2d2f9b', 'تم إلغاء الرحلة من قبل العميل ', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم إلغاء الرحلة', 'تم إلغاء الرحلة بواسطة النظام', 'ar', NULL, NULL),
(65, '7c44e34f-590b-4abe-a758-8701b882030f', 'Trip Cancelled', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Trip Cancelled By Driver 🙁️', 'The Driver cancelled the ride,please wait for another ride', 'en', NULL, NULL),
(66, '7c44e34f-590b-4abe-a758-8701b882030f', 'Voyage annulé par le chauffeur', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Voyage annulé par le chauffeur 🙁️', 'Le chauffeur a annulé le trajet, veuillez attendre un autre trajet', 'fr', NULL, NULL),
(67, '7c44e34f-590b-4abe-a758-8701b882030f', 'Viaje cancelado por conductor', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Viaje cancelado por conductor', 'El conductor canceló el viaje; espere otro viaje.', 'es', NULL, NULL),
(68, '7c44e34f-590b-4abe-a758-8701b882030f', 'تم إلغاء الرحلة من قبل العميل ', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم إلغاء الرحلة من قبل العميل 🙁️', 'ألغى السائق الرحلة، يرجى الانتظار لرحلة أخرى', 'ar', NULL, NULL),
(69, 'c6eb4171-9069-4711-9b26-f510dfb516ad', 'Daily Incentive', '\n                                    <p>Hello {name}</p>\n                                    <p>Daily Incentive</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Daily Incentive', 'Daily Incentive Credited To Your Wallet', 'en', NULL, NULL),
(70, 'c6eb4171-9069-4711-9b26-f510dfb516ad', 'Incitation quotidienne', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Incitation quotidienne', 'Incitation quotidienne créditée sur votre portefeuille', 'fr', NULL, NULL),
(71, 'c6eb4171-9069-4711-9b26-f510dfb516ad', 'Incentivo diario', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Incentivo diario', 'Incentivo diario acreditado en su billetera', 'es', NULL, NULL),
(72, 'c6eb4171-9069-4711-9b26-f510dfb516ad', 'الحافز اليومي', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'الحافز اليومي', 'الحوافز اليومية تضاف إلى محفظتك', 'ar', NULL, NULL),
(73, '545565b5-962c-4473-b2a4-7b72df2f066a', 'Weekly Incentive', '\n                                    <p>Hello {name}</p>\n                                    <p>Weekly Incentive</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Weekly Incentive', 'Weekly Incentive Credited To Your Wallet', 'en', NULL, NULL),
(74, '545565b5-962c-4473-b2a4-7b72df2f066a', 'Incitatif hebdomadaire', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Incitatif hebdomadaire', 'Incitation hebdomadaire créditée sur votre portefeuille', 'fr', NULL, NULL),
(75, '545565b5-962c-4473-b2a4-7b72df2f066a', 'Incentivo Semanal', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Incentivo Semanal', 'Incentivo semanal acreditado en su billetera', 'es', NULL, NULL),
(76, '545565b5-962c-4473-b2a4-7b72df2f066a', 'الحافز الأسبوعي', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'الحافز الأسبوعي', 'حافز أسبوعي يُضاف إلى محفظتك', 'ar', NULL, NULL),
(77, '8eed95d5-d9b8-40d9-876d-fa707003672d', 'Fleet Approved', '\n                                    <p>Hello {name}</p>\n                                    <p>Trip Cancelled</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Fleet Got Approved', 'Fleet Got Approved, Now you can assign driver for your fleet', 'en', NULL, NULL),
(78, '8eed95d5-d9b8-40d9-876d-fa707003672d', 'La flotte a été approuvée', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'La flotte a été approuvée', 'La flotte a été approuvée, vous pouvez désormais attribuer un chauffeur à votre flotte', 'fr', NULL, NULL),
(79, '8eed95d5-d9b8-40d9-876d-fa707003672d', 'La flota fue aprobada', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'La flota fue aprobada', 'La flota fue aprobada, ahora puede asignar un conductor para su flota', 'es', NULL, NULL),
(80, '8eed95d5-d9b8-40d9-876d-fa707003672d', 'تمت الموافقة على الأسطول', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تمت الموافقة على الأسطول', 'تمت الموافقة على الأسطول، الآن يمكنك تعيين سائق لأسطولك', 'ar', NULL, NULL),
(81, 'aa806417-287e-4c2d-9e8d-43a11cbedd8a', 'Fleet Decline', '\n                                    <p>Hello {name}</p>\n                                    <p>Fleet Decline</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Fleet Got Declined by Admin', 'Fleet Got Declined by Admin, Please Contact Admin', 'en', NULL, NULL),
(82, 'aa806417-287e-4c2d-9e8d-43a11cbedd8a', 'La flotte a été refusée par l\'administrateur', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'La flotte a été refusée par l\'administrateur', 'La flotte a été refusée par l\'administrateur, veuillez contacter l\'administrateur', 'fr', NULL, NULL),
(83, 'aa806417-287e-4c2d-9e8d-43a11cbedd8a', 'El administrador rechazó la flota', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'El administrador rechazó la flota', 'El administrador rechazó la flota; comuníquese con el administrador', 'es', NULL, NULL),
(84, 'aa806417-287e-4c2d-9e8d-43a11cbedd8a', 'تم رفض الأسطول من قبل المشرف', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم رفض الأسطول من قبل المشرف', 'تم رفض الأسطول من قبل المشرف، يرجى الاتصال بالمسؤول', 'ar', NULL, NULL),
(85, '5e18235d-d85c-4a40-a080-84d31f4f4ccd', 'Fleet Account Removed', '\n                                    <p>Hello {name}</p>\n                                    <p>Fleet Account Removed</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Fleet Removed From Your Account', 'Fleet Removed From Your Account, Please Wait For Assigning Fleet', 'en', NULL, NULL),
(86, '5e18235d-d85c-4a40-a080-84d31f4f4ccd', 'Flotte supprimée de votre compte', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Flotte supprimée de votre compte', 'Flotte supprimée de votre compte, veuillez attendre l\'attribution de la flotte', 'fr', NULL, NULL),
(87, '5e18235d-d85c-4a40-a080-84d31f4f4ccd', 'Flota eliminada de su cuenta', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Flota eliminada de su cuenta', 'Flota eliminada de su cuenta; espere a que se asigne la flota', 'es', NULL, NULL),
(88, '5e18235d-d85c-4a40-a080-84d31f4f4ccd', 'أتمت إزالة الأسطول من حسابك', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تمت إزالة الأسطول من حسابك', 'تمت إزالة الأسطول من حسابك، يرجى الانتظار حتى يتم تعيين الأسطول', 'ar', NULL, NULL),
(89, '01c53814-e386-43ea-865e-da965da45c7b', 'New Fleet Assigned', '\n                                    <p>Hello {name}</p>\n                                    <p>New Fleet Assigned</p>', 'Reset Password', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'New Fleet Assigned For you', 'New Fleet assigned for you', 'en', NULL, NULL),
(90, '01c53814-e386-43ea-865e-da965da45c7b', 'Nouvelle flotte attribuée pour vous', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Nouvelle flotte attribuée pour vous', 'Nouvelle flotte attribuée pour vous', 'fr', NULL, NULL),
(91, '01c53814-e386-43ea-865e-da965da45c7b', 'Nueva Flota asignada para ti', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Nueva Flota asignada para ti', 'Nueva Flota asignada para ti', 'es', NULL, NULL),
(92, '01c53814-e386-43ea-865e-da965da45c7b', 'أسطول جديد مخصص لك', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'أسطول جديد مخصص لك', 'أسطول جديد مخصص لك', 'ar', NULL, NULL),
(93, 'e99ed715-5f68-41f4-830a-c1b3c1ea273b', 'Transfer Credit Points', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Reward Points Converted 😃️', 'Your Reward Points Credited To Your Account', 'en', NULL, NULL),
(94, 'e99ed715-5f68-41f4-830a-c1b3c1ea273b', 'Points de récompense convertis', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Points de récompense convertis 😃️', 'Vos points de récompense crédités sur votre compte', 'fr', NULL, NULL),
(95, 'e99ed715-5f68-41f4-830a-c1b3c1ea273b', 'Puntos de recompensa convertidos', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Puntos de recompensa convertidos 😃️', 'Sus puntos de recompensa acreditados en su cuenta', 'es', NULL, NULL),
(96, 'e99ed715-5f68-41f4-830a-c1b3c1ea273b', 'تم تحويل نقاط المكافأة ', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم تحويل نقاط المكافأة 😃️', 'نقاط المكافأة الخاصة بك تضاف إلى حسابك', 'ar', NULL, NULL),
(97, '4127031b-1b13-4bdb-bebf-3c1c14949636', 'Transaction Failed', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Transaction Failed', 'Transaction Failed', 'en', NULL, NULL),
(98, '4127031b-1b13-4bdb-bebf-3c1c14949636', 'Échec de la transaction', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Échec de la transaction', 'Échec de la transaction', 'fr', NULL, NULL),
(99, '4127031b-1b13-4bdb-bebf-3c1c14949636', 'Transacción fallida', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Transacción fallida', 'Transacción fallida', 'es', NULL, NULL),
(100, '4127031b-1b13-4bdb-bebf-3c1c14949636', 'فشلت الصفقة', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'فشلت الصفقة', 'فشلت الصفقة', 'ar', NULL, NULL),
(101, 'f54b4789-b3e9-4e29-b3b3-2705bff2905d', 'Payment Received', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Payment Received', 'Payment Received from customer', 'en', NULL, NULL),
(102, 'f54b4789-b3e9-4e29-b3b3-2705bff2905d', 'Paiement reçu', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Paiement reçu', 'Paiement reçu du client', 'fr', NULL, NULL),
(103, 'f54b4789-b3e9-4e29-b3b3-2705bff2905d', 'Pago recibido', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Pago recibido', 'Pago recibido del cliente', 'es', NULL, NULL),
(104, 'f54b4789-b3e9-4e29-b3b3-2705bff2905d', 'تم استلام الدفع', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم استلام الدفع', 'الدفع المستلم من العميل', 'ar', NULL, NULL),
(105, '198fcd9f-4a6d-43ef-b9ce-374e77787279', 'Ride Confirmed By Customer', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Ride Confirmed By Customer', 'Ride Confirmed By Customer, Please Reach the customer pickup location on time', 'en', NULL, NULL),
(106, '198fcd9f-4a6d-43ef-b9ce-374e77787279', 'Trajet confirmé par le client', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Trajet confirmé par le client', 'Trajet confirmé par le client, veuillez atteindre le lieu de prise en charge du client à temps', 'fr', NULL, NULL),
(107, '198fcd9f-4a6d-43ef-b9ce-374e77787279', 'Viaje confirmado por el cliente', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Viaje confirmado por el cliente', 'Viaje confirmado por el cliente. Llegue al lugar de recogida del cliente a tiempo.', 'es', NULL, NULL),
(108, '198fcd9f-4a6d-43ef-b9ce-374e77787279', 'تم تأكيد الرحلة من قبل العميل', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم تأكيد الرحلة من قبل العميل', 'تم تأكيد الرحلة من قبل العميل، يرجى الوصول إلى موقع الالتقاء بالعميل في الوقت المحدد', 'ar', NULL, NULL),
(109, 'd85b738f-92a4-4601-b50c-21d054c95fc7', 'Driver Arrived', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Driver Arrived 😊️', 'The Driver arrived to pick you up', 'en', NULL, NULL),
(110, 'd85b738f-92a4-4601-b50c-21d054c95fc7', 'Chauffeur arrivé', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Chauffeur arrivé', 'Chauffeur arrivé', 'fr', NULL, NULL),
(111, 'd85b738f-92a4-4601-b50c-21d054c95fc7', 'El conductor llegó', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'El conductor llegó', 'El conductor llegó', 'es', NULL, NULL),
(112, 'd85b738f-92a4-4601-b50c-21d054c95fc7', 'وصل السائق', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'وصل السائق', 'وصل السائق', 'ar', NULL, NULL),
(113, 'c62aaf5b-840b-40dc-b8c0-299608bf22ef', 'Driver On the way to pickup', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Driver Is On The Way To Pickup', 'Driver Is On The Way To Pickup', 'en', NULL, NULL);
INSERT INTO `notification_channels_translations` (`id`, `notification_channel_id`, `email_subject`, `mail_body`, `button_name`, `footer_content`, `footer_copyrights`, `push_title`, `push_body`, `locale`, `created_at`, `updated_at`) VALUES
(114, 'c62aaf5b-840b-40dc-b8c0-299608bf22ef', 'Le conducteur est en route vers le ramassage', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Le conducteur est en route vers le ramassage', 'Le conducteur est en route vers le ramassage', 'fr', NULL, NULL),
(115, 'c62aaf5b-840b-40dc-b8c0-299608bf22ef', 'La conductora está en camino de recogida', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'La conductora está en camino de recogida', 'La conductora está en camino de recogida', 'es', NULL, NULL),
(116, 'c62aaf5b-840b-40dc-b8c0-299608bf22ef', 'السائق في طريقه للالتقاط', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'السائق في طريقه للالتقاط', 'السائق في طريقه للالتقاط', 'ar', NULL, NULL),
(117, 'a85d6530-e97c-4e89-b67c-7a63311328a7', 'Trip Started', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Trip Started', 'Trip started towards the drop location', 'en', NULL, NULL),
(118, 'a85d6530-e97c-4e89-b67c-7a63311328a7', 'Voyage commencé', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Voyage commencé', 'Le voyage a commencé vers le lieu de dépôt', 'fr', NULL, NULL),
(119, 'a85d6530-e97c-4e89-b67c-7a63311328a7', 'Viaje iniciado', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Viaje iniciado', 'El viaje comenzó hacia el lugar de entrega.', 'es', NULL, NULL),
(120, 'a85d6530-e97c-4e89-b67c-7a63311328a7', 'بدأت الرحلة', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'بدأت الرحلة', 'بدأت الرحلة نحو موقع الهبوط', 'ar', NULL, NULL),
(121, 'c2f363b4-c989-42c1-8cb7-943b4eaa9e68', 'Trip Request Accepted', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Trip Request Accepted', 'The Driver is coming to pick you', 'en', NULL, NULL),
(122, 'c2f363b4-c989-42c1-8cb7-943b4eaa9e68', 'Demande de voyage acceptée', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Demande de voyage acceptée', 'Le Chauffeur vient vous chercher', 'fr', NULL, NULL),
(123, 'c2f363b4-c989-42c1-8cb7-943b4eaa9e68', 'Solicitud de viaje aceptada', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Solicitud de viaje aceptada', 'El conductor viene a recogerte.', 'es', NULL, NULL),
(124, 'c2f363b4-c989-42c1-8cb7-943b4eaa9e68', 'لم يتم العثور على برنامج التشغيل', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم قبول طلب الرحلة', 'السائق قادم لاصطحابك', 'ar', NULL, NULL),
(125, 'eda89996-e85d-4fdd-95ba-71bd9a3a6c70', 'Driver not Found', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'No Driver Found Around You 🙁️', 'Sorry plese try again after some times,there is no driver available for your ride now', 'en', NULL, NULL),
(126, 'eda89996-e85d-4fdd-95ba-71bd9a3a6c70', 'Pilote introuvable', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Aucun chauffeur trouvé autour de vous 🙁️', 'Désolé, veuillez réessayer après quelques instants. Aucun chauffeur n\'est disponible pour votre trajet pour le moment.', 'fr', NULL, NULL),
(127, 'eda89996-e85d-4fdd-95ba-71bd9a3a6c70', 'Controlador no encontrado', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'No se encontró ningún conductor a tu alrededor 🙁️', 'Lo sentimos, inténtelo de nuevo después de algunas veces. No hay ningún conductor disponible para su viaje en este momento.', 'es', NULL, NULL),
(128, 'eda89996-e85d-4fdd-95ba-71bd9a3a6c70', 'لم يتم العثور على برنامج التشغيل', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'لم يتم العثور على سائق من حولك 🙁️', 'عذرًا، يرجى المحاولة مرة أخرى بعد مرور بعض الوقت، لا يوجد سائق متاح لرحلتك الآن', 'ar', NULL, NULL),
(129, '32f1ff07-736b-4ea8-985c-24da128950b7', 'Subscribed Succesfully', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Subscribed Succesfully', 'You have subscribed successfully', 'en', NULL, NULL),
(130, '32f1ff07-736b-4ea8-985c-24da128950b7', 'Abonnement du pilote', '<p>Bonjour {name}</p>\n                                                <p>Malheureusement, votre demande de retrait a été refusée.</p>\n                                                <p>Si vous rencontrez des problèmes avec le paiement, veuillez répondre à cet e-mail ou envoyer un e-mail à support@gmail.com</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Abonné avec succès', 'Vous vous êtes abonné avec succès', 'fr', NULL, NULL),
(131, '32f1ff07-736b-4ea8-985c-24da128950b7', 'Suscripción de conductor', '<p>Hola {name}</p>\n                                                <p>Lamentablemente, su solicitud de retiro ha sido rechazada.</p>\n                                                <p>Si tiene algún problema con el pago, responda amablemente a este correo electrónico o envíe un correo electrónico a support@gmail.com</p>\n                                                <p>¡Gracias por utilizar nuestros servicios!</p>\n                                                <p>Atentamente,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Suscrito con éxito', 'Te has suscrito exitosamente', 'es', NULL, NULL),
(132, '32f1ff07-736b-4ea8-985c-24da128950b7', 'اشتراك السائق', '<p>مرحبًا {name}</p>\n                                                <p>للأسف، تم رفض طلب السحب الخاص بك.</p>\n                                                <p>إذا كانت لديك أية مشكلات تتعلق بالدفع، فيرجى الرد على هذا البريد الإلكتروني أو إرسال بريد إلكتروني إلى support@gmail.com</p>\n                                                <p>شكرا لك على استخدام خدماتنا!</p>\n                                                <p>أطيب التحيات،</p>         \n                                                <p>برامج MI</p>', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم الاشتراك بنجاح', 'لقد قمت بالاشتراك بنجاح', 'ar', NULL, NULL),
(133, 'ba4ff256-8fc5-4187-bbea-af6cc253a4a0', 'Subscribed Succesfully', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'You are Ready to Take a Ride', 'You are Ready to Take a Ride', 'en', NULL, NULL),
(134, 'ba4ff256-8fc5-4187-bbea-af6cc253a4a0', 'Courrier d\'inscription', '<p>Bonjour {name}</p>\n                                                <p>Merci de vous être inscrit auprès de nous, votre application de taxi de confiance. Votre inscription a réussi et nous sommes ravis de vous compter parmi nous.</p>\n                                                <p>Détails de votre compte</p>\n                                                <p>E-mail : {email}</p>\n                                                <p>Numéro de mobile : {mobile}</p>\n                                                <p>Nous sommes maintenant prêts à vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter à votre compte :</p> \n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Vous êtes prêt à faire un tour', 'Vous êtes prêt à faire un tour', 'fr', NULL, NULL),
(135, 'ba4ff256-8fc5-4187-bbea-af6cc253a4a0', 'Correo de registro', '<p>Hola {name}</p>\n                                                <p>Gracias por registrarte con nosotros, tu aplicación de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.</p>\n                                                <p>Detalles de su cuenta</p>\n                                                <p>Correo electrónico: {email}</p>\n                                                <p>Número de móvil: {mobile}</p>\n                                                <p>¡Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el botón a continuación para iniciar sesión en su cuenta:</p> \n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Estás listo para dar un paseo', 'Estás listo para dar un paseo', 'es', NULL, NULL),
(136, 'ba4ff256-8fc5-4187-bbea-af6cc253a4a0', 'بريد التسجيل', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'أنت جاهز للقيام بالرحلة', 'أنت جاهز للقيام بالرحلة', 'ar', NULL, NULL),
(137, '2e22cd0a-2923-4dea-87d4-a4c67d17fc23', 'Tips added Succesfully', '\n                                    <p>Hello {name}</p>\n                                    <p>We are writing to confirm that you have successfully transferred an amount from your wallet.</p>\n                                    <p><strong>Transaction Details</strong></p>\n                                    <p><strong>Transaction Id:</strong> {transaction_id}</p>\n                                    <p><strong>Amount:</strong> {currency}{amount}</p>\n                                    <p><strong>Current Balance:</strong>{currency}{current_balance}</p>\n                                    <p>If you did not initiate this transfer, please contact our support team immediately.</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'You have Earned with your Tips 😊️', 'We are happy to inform you that you have earned money with your Tips', 'en', NULL, NULL),
(138, '2e22cd0a-2923-4dea-87d4-a4c67d17fc23', 'Courrier d\'inscription', '<p>Bonjour {name}</p>\n                                                <p>Merci de vous être inscrit auprès de nous, votre application de taxi de confiance. Votre inscription a réussi et nous sommes ravis de vous compter parmi nous.</p>\n                                                <p>Détails de votre compte</p>\n                                                <p>E-mail : {email}</p>\n                                                <p>Numéro de mobile : {mobile}</p>\n                                                <p>Nous sommes maintenant prêts à vous aider avec vos besoins de transport ! Pour commencer, cliquez simplement sur le bouton ci-dessous pour vous connecter à votre compte :</p> \n                                                <p>Meilleures salutations, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Vous avez gagné avec vos pourboires 😊️', 'Nous sommes heureux de vous informer que vous avez gagné de l argent grâce à vos pourboires', 'fr', NULL, NULL),
(139, '2e22cd0a-2923-4dea-87d4-a4c67d17fc23', 'Correo de registro', '<p>Hola {name}</p>\n                                                <p>Gracias por registrarte con nosotros, tu aplicación de taxis de confianza. Su registro fue exitoso y estamos emocionados de tenerlo a bordo.</p>\n                                                <p>Detalles de su cuenta</p>\n                                                <p>Correo electrónico: {email}</p>\n                                                <p>Número de móvil: {mobile}</p>\n                                                <p>¡Ahora estamos listos para ayudarle con sus necesidades de transporte! Para comenzar, simplemente haga clic en el botón a continuación para iniciar sesión en su cuenta:</p> \n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Has Ganado con tus Propinas 😊️', 'Nos alegra informarte que has ganado dinero con tus Tips', 'es', NULL, NULL),
(140, '2e22cd0a-2923-4dea-87d4-a4c67d17fc23', 'بريد التسجيل', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'لقد ربحت بنصائحك 😊️', 'يسعدنا أن نعلمك أنك كسبت المال من خلال النصائح الخاصة بك', 'ar', NULL, NULL),
(141, 'cb35a3f7-76d8-42ef-8917-7651bb7b7238', 'New Chat Message', '\n                                    <p>Hello {name}</p>\n                                    <p>New Chat Mesage</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'New Chat Message', 'New Chat Message', 'en', NULL, NULL),
(142, 'cb35a3f7-76d8-42ef-8917-7651bb7b7238', 'Nouveau message de discussion', '<p>Bonjour {name}</p>\n                                                <p>Nouveau message de discussion</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>Logiciels MI</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 et droits réservés', 'Nouveau message de discussion', 'Nouveau message de discussion', 'fr', NULL, NULL),
(143, 'cb35a3f7-76d8-42ef-8917-7651bb7b7238', 'Nuevo mensaje de chat', '<p>Hola {name}</p>\n                                                <p>Nuevo mensaje de chat</p> \n                                                <p>Saludos cordiales,</p>         \n                                                <p>Software MI</p>', 'Botón', '<p>Si tiene alguna consulta, envíenos un correo electrónico a support@gmail.com. Ellos responderán la pregunta y lo ayudarán.</p>', '2021 MXDrive y derechos reservados', 'Nuevo mensaje de chat', 'Nuevo mensaje de chat', 'es', NULL, NULL),
(144, 'cb35a3f7-76d8-42ef-8917-7651bb7b7238', 'رسالة دردشة جديدة', '<p>{مرحبًا {الاسم</p>\n                                                <p>نشكرك على الاشتراك معنا، تطبيق سيارات الأجرة الموثوق به. تم تسجيلك بنجاح، ونحن متحمسون لانضمامك إلينا.</p>\n                                                <p>تفاصيل حسابك</p>\n                                                <p>البريد الإلكتروني: {email}</p>\n                                                <p>رقم الجوال: {mobile}</p>\n                                                <p>نحن الآن على استعداد لمساعدتك في تلبية احتياجات النقل الخاصة بك! للبدء، ما عليك سوى النقر على الزر أدناه لتسجيل الدخول إلى حسابك:</p> \n                                                <p>مع أطيب التحيات</p>         \n                                                ', 'زر', '<p>إذا كانت لديك أية استفسارات، يرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. وسوف يجيبون على السؤال ويساعدونك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'رسالة دردشة جديدة', 'رسالة دردشة جديدة', 'ar', NULL, NULL),
(145, 'b0cf434d-a8c9-4577-bd6b-092d46f72e39', 'Change Drop Destination', '\n                                    <p>Hello {name}</p>\n                                    <p>The drop location has been changed</p>\n                                    <p>Thank you for using our services!</p>\n                                    <p>Best regards, </p>         \n                                    <p>MXDrive</p>', 'View Details', '<p>If you have any queries , Please email us support@gmail.com.They will answer the question and help you out.</p>', '2021 MXDrive & Rights Reserved', 'Drop has been changed', 'Drop has been changed', 'en', NULL, NULL),
(146, 'b0cf434d-a8c9-4577-bd6b-092d46f72e39', 'Changer la destination de dépôt', '<p>Bonjour {name}</p>\n                                                <p>La destination a été modifiée</p>\n                                                <p>Merci d\'utiliser nos services !</p>\n                                                <p>Cordialement, </p>         \n                                                <p>MXDrive</p>', 'Bouton', '<p>Si vous avez des questions, veuillez nous envoyer un e-mail à support@gmail.com. Ils répondront à la question et vous aideront.</p>', 'MXDrive 2021 & Droits réservés', 'Le drop a été modifié', 'La destination de dépôt a été modifiéeyy', 'fr', NULL, NULL),
(147, 'b0cf434d-a8c9-4577-bd6b-092d46f72e39', 'Cambiar destino de entrega', '<p>Hola {name}</p>\n                                                <p>El destino ha cambiado</p>\n                                                <p>¡Gracias por usar nuestros servicios!</p>\n                                                <p>Atentamente,</p> \n                                                <p>MXDrive</p>', 'Botón', '<p>Si tiene alguna pregunta, envíenos un correo electrónico a support@gmail.com. Le responderemos y le ayudaremos.</p>', '2021 MXDrive y derechos reservados', 'El destino de descarga ha cambiado', 'El destino de descarga ha cambiado', 'es', NULL, NULL),
(148, 'b0cf434d-a8c9-4577-bd6b-092d46f72e39', 'تغيير وجهة الإسقاط للسائق', '<p>مرحبًا {name}\n                                                <p>تم تغيير الوجهة</p>\n                                                <p>شكرًا لاستخدامك خدماتنا!</p>\n                                                <p>مع أطيب التحيات،</p>\n                                                <p>MXDrive</p>', 'زر', '<p>إذا كانت لديك أي استفسارات، يُرجى مراسلتنا عبر البريد الإلكتروني support@gmail.com. سنجيب على استفسارك ونساعدك.</p>', '2021 برامج MXDrive والحقوق محفوظة', 'تم تغيير وجهة الإسقاط', 'تم تغيير وجهة الإسقاط', 'ar', NULL, NULL);

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

--
-- Table structure for table `onboarding_screen`
--

CREATE TABLE `onboarding_screen` (
  `id` char(36) NOT NULL,
  `sn_o` int(11) NOT NULL DEFAULT 0,
  `screen` enum('driver','user','owner') NOT NULL,
  `order` int(11) NOT NULL DEFAULT 0,
  `title` varchar(191) NOT NULL,
  `onboarding_image` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `onboarding_screen`
--

INSERT INTO `onboarding_screen` (`id`, `sn_o`, `screen`, `order`, `title`, `onboarding_image`, `description`, `translation_dataset`, `active`, `created_at`, `updated_at`) VALUES
('007740eb-d583-42fe-bff9-33e7eee8f725', 5, 'driver', 1, 'Assurance', 'driverOnboard1.png', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', '{\"en\":{\"locale\":\"en\",\"title\":\"Assurance\",\"description\":\"Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('22634854-933f-4e25-ab38-df1d49e79532', 9, 'owner', 2, 'Assurance', 'ownerOnboard2.png', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', '{\"en\":{\"locale\":\"en\",\"title\":\"Assurance\",\"description\":\"Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('38a7a553-0845-43f4-8218-10279b84d91d', 7, 'driver', 3, 'Intuitive', 'driverOnboard3.png', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', '{\"en\":{\"locale\":\"en\",\"title\":\"Intuitive\",\"description\":\"Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('706f2dc8-8a25-4efe-94e9-69e55a0d0ca8', 8, 'owner', 1, 'Intuitive', 'ownerOnboard1.png', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', '{\"en\":{\"locale\":\"en\",\"title\":\"Intuitive\",\"description\":\"Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('70ac86ed-b592-4b1c-b46a-0a0518de114a', 4, 'user', 4, 'Support', 'onboard4.jpg', 'Embark on your journey with confidence, knowing that our commitment to your satisfaction is unwavering', '{\"en\":{\"locale\":\"en\",\"title\":\"Support\",\"description\":\"Embark on your journey with confidence, knowing that our commitment to your satisfaction is unwavering\"}}', 1, NULL, '2025-09-26 07:06:10'),
('74e9d4b0-749c-4a32-b8b3-624bfe63325f', 2, 'user', 2, 'Clarity', 'onboard2.jpg', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', '{\"en\":{\"locale\":\"en\",\"title\":\"Clarity\",\"description\":\"Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('8e08ca5c-2e93-43bb-b219-afea24dbbcba', 3, 'user', 3, 'Intuitive', 'onboard3.jpg', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', '{\"en\":{\"locale\":\"en\",\"title\":\"Intuitive\",\"description\":\"Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('9ad20578-1c74-4dff-a9c9-69d9bba9c52a', 1, 'user', 1, 'Assurance', 'onboard1.jpg', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', '{\"en\":{\"locale\":\"en\",\"title\":\"Assurance\",\"description\":\"Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('e7b619d0-9949-4fff-b2bf-0282bcd0ac3d', 6, 'driver', 2, 'Clarity', 'driverOnboard2.png', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', '{\"en\":{\"locale\":\"en\",\"title\":\"Clarity\",\"description\":\"Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.\"}}', 1, NULL, '2025-09-26 07:06:10'),
('e9721104-e6b1-40a6-b959-d559bb34db91', 10, 'owner', 3, 'Clarity', 'ownerOnboard3.png', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', '{\"en\":{\"locale\":\"en\",\"title\":\"Clarity\",\"description\":\"Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.\"}}', 1, NULL, '2025-09-26 07:06:10');

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

--
-- Table structure for table `onboarding_screen_translations`
--

CREATE TABLE `onboarding_screen_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `onboarding_screen_id` char(36) NOT NULL,
  `title` varchar(191) NOT NULL,
  `description` longtext NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `onboarding_screen_translations`
--

INSERT INTO `onboarding_screen_translations` (`id`, `onboarding_screen_id`, `title`, `description`, `locale`, `created_at`, `updated_at`) VALUES
(1, '007740eb-d583-42fe-bff9-33e7eee8f725', 'Assurance', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(2, '22634854-933f-4e25-ab38-df1d49e79532', 'Assurance', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(3, '38a7a553-0845-43f4-8218-10279b84d91d', 'Intuitive', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(4, '706f2dc8-8a25-4efe-94e9-69e55a0d0ca8', 'Intuitive', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(5, '70ac86ed-b592-4b1c-b46a-0a0518de114a', 'Support', 'Embark on your journey with confidence, knowing that our commitment to your satisfaction is unwavering', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(6, '74e9d4b0-749c-4a32-b8b3-624bfe63325f', 'Clarity', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(7, '8e08ca5c-2e93-43bb-b219-afea24dbbcba', 'Intuitive', 'Seamless journeys, Just a tap away, Explore hassle-free, Every step of the way.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(8, '9ad20578-1c74-4dff-a9c9-69d9bba9c52a', 'Assurance', 'Customer safety first, Always and forever our pledge, Your well-being, our priority, With you every step, edge to edge.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(9, 'e7b619d0-9949-4fff-b2bf-0282bcd0ac3d', 'Clarity', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(10, 'e9721104-e6b1-40a6-b959-d559bb34db91', 'Clarity', 'Fair pricing, crystal clear, Your trust, our promise sincere. With us, youll find no hidden fee, Transparency is our guarantee.', 'en', '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

--
-- Table structure for table `owners`
--

CREATE TABLE `owners` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `company_name` varchar(191) DEFAULT NULL,
  `owner_name` varchar(191) DEFAULT NULL,
  `name` varchar(25) DEFAULT NULL,
  `surname` varchar(191) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `postal_code` int(11) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `no_of_vehicles` int(11) NOT NULL DEFAULT 0,
  `tax_number` varchar(191) DEFAULT NULL,
  `bank_name` varchar(191) DEFAULT NULL,
  `ifsc` varchar(191) DEFAULT NULL,
  `account_no` varchar(191) DEFAULT NULL,
  `iban` varchar(191) DEFAULT NULL,
  `bic` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owners`
--

INSERT INTO `owners` (`id`, `user_id`, `transport_type`, `service_location_id`, `company_name`, `owner_name`, `name`, `surname`, `email`, `password`, `mobile`, `phone`, `address`, `postal_code`, `city`, `expiry_date`, `no_of_vehicles`, `tax_number`, `bank_name`, `ifsc`, `account_no`, `iban`, `bic`, `active`, `approve`, `created_at`, `updated_at`, `deleted_at`) VALUES
('68ad3f48-fa97-47f4-962c-737b78865822', 17, 'taxi', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'MXDrive', NULL, 'Owner', NULL, 'owner@demo.com', '$2y$10$i0UIP3VusBmUEPiuRufr0uf1xGXMNmstn0MS27R7ONjf9ameOXrTq', '123456789', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, '2025-09-26 10:30:54', '2025-09-29 06:55:51', NULL),
('9a00028a-36a3-4c76-90c7-9bdf44f05c36', 57, 'delivery', '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'MXServertr', NULL, 'Aron', NULL, 'Aron@demo.com', '$2y$10$d3FVKBh4jNPo/tfTiWK5quz7p9WVPsyof6oBxAWu0c8klThMrdeQ2', '7412589636', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2025-10-17 11:11:45', '2025-10-17 11:23:26', '2025-10-17 11:23:26'),
('d07485b5-74f6-4fd0-b770-4a82bed44bc6', 43, 'delivery', '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'Test1', NULL, 'Test1', NULL, 'test3231@fkdsjfjskd.com', '$2y$10$vHEz7w5IPP0S4TAqO9QoQeFOlGPrBToco0EVDpE1kDMLthvIJrLby', '1234554321', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2025-10-17 06:22:18', '2025-10-17 06:22:18', NULL);

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

--
-- Table structure for table `owner_bank_infos`
--

CREATE TABLE `owner_bank_infos` (
  `id` char(36) NOT NULL,
  `owner_id` char(36) NOT NULL,
  `method_id` int(10) UNSIGNED NOT NULL,
  `field_id` int(10) UNSIGNED NOT NULL,
  `value` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `owner_documents`
--

CREATE TABLE `owner_documents` (
  `id` char(36) NOT NULL,
  `owner_id` char(36) NOT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `image` varchar(191) NOT NULL,
  `back_image` varchar(191) DEFAULT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `expiry_date` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `owner_hired_drivers`
--

CREATE TABLE `owner_hired_drivers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `owner_needed_documents`
--

CREATE TABLE `owner_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `document_name_front` varchar(191) DEFAULT NULL,
  `document_name_back` varchar(191) DEFAULT NULL,
  `image_type` varchar(191) DEFAULT NULL,
  `is_editable` tinyint(1) NOT NULL DEFAULT 1,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `is_required` tinyint(1) NOT NULL DEFAULT 1,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `owner_wallets`
--

CREATE TABLE `owner_wallets` (
  `id` char(36) NOT NULL,
  `user_id` char(36) NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owner_wallets`
--

INSERT INTO `owner_wallets` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`, `deleted_at`) VALUES
('1111fc14-b8b1-45fe-9ac9-3647e0fb220a', 'd07485b5-74f6-4fd0-b770-4a82bed44bc6', 0.00, 0.00, 0.00, '2025-10-17 06:22:18', '2025-10-17 06:22:18', NULL),
('33069fb5-c2d8-49fd-93f1-f95d7b23cbd6', '9a00028a-36a3-4c76-90c7-9bdf44f05c36', 0.00, 0.00, 0.00, '2025-10-17 11:11:45', '2025-10-17 11:11:45', NULL),
('879d1c8a-4085-4a34-8d81-7665a60074af', '68ad3f48-fa97-47f4-962c-737b78865822', 0.00, 0.00, 0.00, '2025-09-26 10:30:54', '2025-09-26 10:30:54', NULL);

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

--
-- Table structure for table `owner_wallet_histories`
--

CREATE TABLE `owner_wallet_histories` (
  `id` char(36) NOT NULL,
  `user_id` char(36) NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `package_types`
--

CREATE TABLE `package_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `short_description` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `package_types`
--

INSERT INTO `package_types` (`id`, `name`, `transport_type`, `active`, `short_description`, `description`, `created_at`, `updated_at`) VALUES
(1, 'Olive new', 'both', 1, 'Reliable and efficient transport service for all your travel and logistics needs.', 'Olive New offers a versatile and dependable transport solution for passengers and goods alike. Whether it’s a short city commute, long-distance travel, or cargo delivery, Olive New ensures ti', '2025-09-26 10:14:57', '2025-09-26 10:14:57'),
(2, 'Van', 'taxi', 1, 'Spacious and comfortable van for group travel or airport transfers.', 'Van provides a reliable and comfortable taxi option for families, groups, or travelers with extra luggage. With roomy interiors and ample seating, it can accommodate multiple passengers along', '2025-09-26 10:15:29', '2025-09-26 10:15:29');

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

--
-- Table structure for table `password_resets`
--

CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `password_reset_tokens`
--

CREATE TABLE `password_reset_tokens` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `peak_zones`
--

CREATE TABLE `peak_zones` (
  `id` char(36) NOT NULL,
  `zone_id` char(36) NOT NULL,
  `lat` double(15,8) DEFAULT NULL,
  `lng` double(15,8) DEFAULT NULL,
  `name` varchar(191) DEFAULT NULL,
  `coordinates` multipolygon DEFAULT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `distance_price_percentage` int(11) NOT NULL COMMENT 'In percentage',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `permissions`
--

CREATE TABLE `permissions` (
  `id` int(10) UNSIGNED NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `description` varchar(150) DEFAULT NULL,
  `main_menu` varchar(191) DEFAULT NULL,
  `sub_menu` varchar(191) DEFAULT NULL,
  `main_link` varchar(191) DEFAULT NULL,
  `sub_link` varchar(191) DEFAULT NULL,
  `sort` int(11) DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `permissions`
--

INSERT INTO `permissions` (`id`, `slug`, `name`, `description`, `main_menu`, `sub_menu`, `main_link`, `sub_link`, `sort`, `icon`, `created_at`, `updated_at`) VALUES
(1, 'access-home', 'access-home', 'Access Home', 'dashboard', NULL, 'dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(2, 'access-user-nav-list', 'access-user-nav-list', 'Access Home', 'dashboard', NULL, 'dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(3, 'access-settings-nav-list', 'access-settings-nav-list', 'Access Home', 'dashboard', NULL, 'dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(4, 'access-master-nav-list', 'access-master-nav-list', 'Access Home', 'dashboard', NULL, 'dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(5, 'chat', 'chat', 'chat', 'chat', NULL, 'chat', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(6, 'access-dashboard', 'access-dashboard', 'Access Dashboard', 'dashboard', NULL, 'dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(7, 'access-notifications', 'access-notifications', 'Access Notifications', 'Notifications', NULL, 'Notifications', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(8, 'access-owner-dashboard', 'access-owner-dashboard', 'Access Owner Dashboard', 'owner-management', NULL, 'owner-dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(9, 'dispatcher', 'dispatcher', 'Dispatcher', 'dispatcher', NULL, 'dispatcher', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(10, 'promotion-management', 'promotion-management', 'promotion management', 'promotion-management', NULL, 'promotion-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(11, 'manage-promo', 'manage-promo', 'View Promo code', 'promotion-management', NULL, 'promo', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(12, 'add-promo', 'add-promo', 'add Promo code', 'promotion-management', NULL, 'promo', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(13, 'edit-promo', 'edit-promo', 'edit promo', 'promotion-management', NULL, 'promo', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(14, 'delete-promo', 'delete-promo', 'delete promo', 'promotion-management', NULL, 'promo', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(15, 'toggle-promo', 'toggle-promo', 'toggle-promo', 'promotion-management', NULL, 'promo', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(16, 'banner_image', 'banner_image', 'banner image', 'promotion-management', NULL, 'banner_image', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(17, 'add_banner_image', 'add_banner_image', 'Add banner image', 'promotion-management', NULL, 'banner_image', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(18, 'edit_banner_image', 'edit_banner_image', 'Edit banner image', 'promotion-management', NULL, 'banner_image', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(19, 'delete_banner_image', 'delete_banner_image', 'delete banner image', 'promotion-management', NULL, 'banner_image', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(20, 'toggle_banner_image', 'toggle_banner_image', 'toggle banner image', 'promotion-management', NULL, 'banner_image', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(21, 'price-management', 'price-management', 'price-management', 'price-management', NULL, 'null', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(22, 'service-location', 'service-Location', 'Available location for app', 'price-management', NULL, 'service-location', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(23, 'add_service_Location', 'add_service_Location', 'Add location for app', 'price-management', NULL, 'service-location', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(24, 'edit_service_Location', 'edit_service_Location', 'Edit location for app', 'price-management', NULL, 'service-location', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(25, 'delete_service_Location', 'delete_service_Location', 'Delete location for app', 'price-management', NULL, 'service-location', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(26, 'toggle_service_Location', 'toggle_service_Location', 'toggle location for app', 'price-management', NULL, 'service-location', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(27, 'view-zone', 'view-zone', 'View all zones', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(28, 'view-zone-map', 'view-zone-map', 'map-view', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(29, 'add-zone', 'add-zones', 'Add zones', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(30, 'edit-zone', 'edit-zones', 'Edit zones', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(31, 'delete-zone', 'delete-zones', 'Get all zones', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(32, 'toggle-zone', 'toggle-zone', 'Toggle Status Zones', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(33, 'zone-surge', 'zone-surge', 'zone Surge', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(34, 'update-zone-surge', 'update-zone-surge', 'Update zone Surge', 'price-management', NULL, 'zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(35, 'vehicle-types', 'view-vehicle-types', 'Get all types', 'price-management', 'null', 'vehicle-type', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(36, 'add-vehicle-types', 'add-vehicle-types', 'Get all types', 'price-management', 'null', 'vehicle-type', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(37, 'edit-vehicle-types', 'edit-vehicle-types', 'Get all types', 'price-management', 'null', 'vehicle-type', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(38, 'delete-vehicle-types', 'delete-vehicle-types', 'Get all types', 'price-management', 'null', 'vehicle-type', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(39, 'toggle-vehicle-types', 'toggle-vehicle-types', 'Get all types', 'price-management', 'null', 'vehicle-type', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(40, 'rental-package', 'rental-package', 'rental-package', 'price-management', NULL, 'rental-package', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(41, 'add-rental-package', 'add-rental-package', 'add-rental-package', 'price-management', NULL, 'rental-package', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(42, 'edit-rental-package', 'edit-rental-package', 'edit-rental-package', 'price-management', NULL, 'rental-package', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(43, 'delete-rental-package', 'delete-rental-package', 'delete-rental-package', 'price-management', NULL, 'rental-package', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(44, 'toggle-rental-package', 'toggle-rental-package', 'toggle-rental-package', 'price-management', NULL, 'rental-package', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(45, 'vehicle-fare', 'vehicle-fare', 'view-vehicle_fare', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(46, 'add-price', 'add-price', 'add price', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(47, 'edit-price', 'edit-price', 'edit price', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(48, 'delete-price', 'delete-price', 'delete price', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(49, 'toggle-price', 'toggle-price', 'toggle price', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(50, 'add-package-price', 'add-package-price', 'package price adding', 'price-management', NULL, 'vehicle-fare', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(51, 'manage-goods-types', 'manage-goods-types', 'List Package Type', 'price-management', 'goods_types', NULL, 'goods_types', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(52, 'add-goods-types', 'add-goods-types', 'Add Goods Types', 'price-management', 'goods_types', NULL, 'goods_types', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(53, 'edit-goods-types', 'edit-goods-types', 'Edit Goods Types', 'price-management', 'goods_types', NULL, 'goods_types', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(54, 'delete-goods-types', 'delete-goods-types', 'Delete Goods Types', 'price-management', 'goods_types', NULL, 'goods_types', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(55, 'toggle-goods-types', 'toggle-goods-types', 'toggle Goods Types', 'price-management', 'goods_types', NULL, 'goods_types', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(56, 'geo-fencing', 'geo-fencing', 'geo-fencing', 'geo-fencing', NULL, 'geo-fencing', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(57, 'gods-eye', 'gods-eye', 'gods-eye', 'geo-fencing', NULL, 'gods-eye', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(58, 'heat-map', 'heat-map', 'View Heat Map', 'geo-fencing', NULL, 'heat-map', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(59, 'others', 'others', 'Access others', 'others', NULL, 'others', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(60, 'view-sos', 'view-sos', 'Emergency Numbers', 'others', NULL, 'sos', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(61, 'add-sos', 'add-sos', 'add sos', 'others', NULL, 'sos', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(62, 'edit-sos', 'edit-sos', 'edit sos', 'others', NULL, 'sos', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(63, 'delete-sos', 'delete-sos', 'delete sos', 'others', NULL, 'sos', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(64, 'toggle-sos', 'toggle-sos', 'toggle-sos', 'others', NULL, 'sos', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(65, 'view-notifications', 'view-notifications', 'view notifications', 'promotion-management', NULL, 'notifications', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(66, 'add-notifications', 'add-notifications', 'view notifications', 'promotion-management', NULL, 'notifications', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(67, 'edit-notifications', 'edit-notifications', 'edit notifications', 'promotion-management', NULL, 'notifications', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(68, 'delete-notifications', 'delete-notification', 'delete notifications', 'promotion-management', NULL, 'notifications', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(69, 'view-cancellation', 'view-cancellation', 'View Cancellation Reason', 'others', NULL, 'cancellation', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(70, 'add-cancellation', 'add-cancellation', 'add cancellation', 'others', NULL, 'cancellation', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(71, 'edit-cancellation', 'edit-cancellation', 'edit cancellation', 'others', NULL, 'cancellation', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(72, 'delete-cancellation', 'delete-cancellation', 'delete cancellation', 'others', NULL, 'cancellation', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(73, 'toggle-cancellation', 'toggle-cancellation', 'toggle cancellation', 'others', NULL, 'cancellation', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(74, 'view-faq', 'view-faq', 'View FAQ', 'others', NULL, 'faq', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(75, 'add-faq', 'add-faq', 'add FAQ', 'others', NULL, 'faq', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(76, 'edit-faq', 'edit-faq', 'edit FAQ', 'others', NULL, 'faq', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(77, 'delete-faq', 'delete-faq', 'delete FAQ', 'others', NULL, 'faq', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(78, 'toggle-faq', 'toggle-faq', 'toggle FAQ', 'others', NULL, 'faq', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(79, 'user-management', 'user-management', 'View all user related menus', 'user-management', NULL, NULL, NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(80, 'view-users', 'view-users', 'Get all Users', 'user-management', NULL, 'users', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(81, 'add-user', 'add-user', 'add user', 'user-management', NULL, 'add-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(82, 'edit-user', 'edit-user', 'edit user', 'user-management', NULL, 'edit-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(83, 'delete-user', 'delete-user', 'delete user', 'user-management', NULL, 'delete-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(84, 'toggle-user', 'toggle-user', 'toggle-user', 'user-management', NULL, 'toggle-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(85, 'view-user-profile', 'view-user-profile', 'view Users profile', 'user-management', NULL, 'view-user-profile', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(86, 'view-delete-user', 'view-delete-user', 'view Deleted Users', 'user-management', NULL, 'view-delete-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(87, 'drivers-management', 'drivers-management', 'drivers management', 'drivers-management', NULL, NULL, NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(88, 'view-approval-pending-drivers', 'view-approval-pending-drivers', 'Get-All-approval-pending-Drivers', 'drivers-management', NULL, 'view-approval-pending-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(89, 'view-approved-drivers', 'view-approved-drivers', 'Get all approved drivers', 'drivers-management', NULL, 'view-approved-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(90, 'add-driver', 'add-driver', 'add drivers', 'drivers-management', NULL, 'add-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(91, 'edit-driver', 'edit-driver', 'edit drivers', 'drivers-management', NULL, 'edit-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(92, 'delete-driver', 'delete-driver', 'delete drivers', 'drivers-management', NULL, 'delete-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(93, 'view-driver-profile', 'view-driver-profile', 'View drivers Profile', 'drivers-management', NULL, 'view-driver-profile', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(94, 'driver-approval', 'driver-approval', 'drivers approval', 'drivers-management', NULL, 'driver-approval', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(95, 'driver-disapproval', 'driver-disapproval', 'drivers disapproval', 'drivers-management', NULL, 'driver-disapproval', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(96, 'driver-upload-documents', 'driver-upload-documents', 'drivers documents upload', 'drivers-management', NULL, 'driver-upload-documents', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(97, 'driver-rating-list', 'driver-rating-list', 'drivers rating list', 'drivers-management', NULL, 'driver-rating-list', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(98, 'driver-rating-view', 'driver-rating-view', 'drivers rating view', 'drivers-management', NULL, 'driver-rating-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(99, 'driver-wallet', 'driver-wallet', 'drivers rating view', 'drivers-management', NULL, 'driver-wallet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(100, 'negetive-balance-drivers', 'negetive-balance-drivers', 'drivers rating view', 'drivers-management', NULL, 'driver-wallet', 'negetive-balance-drivers', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(101, 'withdrawal-request-drivers', 'withdrawal-request-drivers', 'drivers rating view', 'drivers-management', NULL, 'driver-wallet', 'withdrawal-request-drivers', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(102, 'delete-request-drivers', 'delete-request-drivers', 'deleted drivers view', 'drivers-management', NULL, 'delete-request-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(103, 'manage-driver-needed-document', 'manage-driver-needed-document', 'List driver needed documents', 'drivers-management', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(104, 'add-driver-needed-document', 'add-driver-needed-document', 'Add driver needed documents', 'drivers-management', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(105, 'edit-driver-needed-document', 'edit-driver-needed-document', 'Edit driver needed documents', 'drivers-management', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(106, 'delete-driver-needed-document', 'delete-driver-needed-document', 'Delete driver needed documents', 'drivers-management', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(107, 'toggle-driver-needed-document', 'toggle-driver-needed-documentt', 'toggle-driver-needed-document', 'drivers-management', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(108, 'manage-driver-bank-info', 'manage-driver-bank-info', 'List driver bank info', 'drivers-management', 'bank_info', NULL, 'bank_info', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(109, 'toggle-bank-info', 'toggle-bank-info', 'List driver bank info', 'drivers-management', 'bank_info', NULL, 'bank_info', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(110, 'manage-subscription', 'manage-subscription', 'View Promo code', 'drivers-management', NULL, 'subscription', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(111, 'add-subscription', 'add-subscription', 'add Promo code', 'drivers-management', NULL, 'subscription', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(112, 'edit-subscription', 'edit-subscription', 'edit subscription', 'drivers-management', NULL, 'subscription', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(113, 'delete-subscription', 'delete-subscription', 'delete subscription', 'drivers-management', NULL, 'subscription', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(114, 'toggle-subscription', 'toggle-subscription', 'toggle-subscription', 'drivers-management', NULL, 'subscription', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(115, 'loyalty-rewards', 'loyalty-rewards', 'Loyalty Rewards', 'loyalty-rewards', NULL, 'loyalty-rewards', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(116, 'incentives', 'incentives', 'incentives', 'loyalty-rewards', NULL, 'incentives', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(117, 'update-incentives', 'update-incentives', 'update incentives', 'loyalty-rewards', NULL, 'incentives', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(118, 'referral-settings-view', 'referral-settings-view', 'referral settings view lists', 'loyalty-rewards', NULL, 'referral-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(119, 'view-drivers-levelup', 'view-drivers-levelup', 'View Driver Levelup', 'loyalty-rewards', NULL, 'view-drivers-levelup', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(120, 'change-reward-value', 'change-reward-value', 'Change Rward Value', 'loyalty-rewards', NULL, 'change-reward-value', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(121, 'add-drivers-levelup', 'add-drivers-levelup', 'add drivers', 'loyalty-rewards', NULL, 'add-drivers-levelup', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(122, 'edit-drivers-levelup', 'edit-drivers-levelup', 'edit drivers', 'loyalty-rewards', NULL, 'edit-drivers-levelup', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(123, 'delete-drivers-levelup', 'delete-driver', 'delete drivers', 'loyalty-rewards', NULL, 'delete-drivers-levelup', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(124, 'admin-management', 'admin-management', 'Admin  List', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(125, 'admin', 'admin', 'Admin  List', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(126, 'add-admin', 'add-admin', 'create admin', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(127, 'edit-admin', 'edit-admin', 'Edit Admin', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(128, 'delete-admin', 'delete-admin', 'Delete Admin', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(129, 'toggle-admin', 'toggle-admin', 'toggle status admin', 'admin', NULL, 'admin', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(130, 'report-management', 'report-management', 'View reports', 'report-management', NULL, 'report-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(131, 'user-report', 'user-report', 'Download User Report', 'report-management', NULL, 'user-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(132, 'driver-report', 'driver-report', 'Download Driver Report', 'report-management', NULL, 'driver-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(133, 'driver-duty-report', 'driver-duty-report', 'Download Driver Report', 'report-management', NULL, 'driver-duty-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(134, 'finance-report', 'finance-report', 'Download Finance Report', 'report-management', NULL, 'finance-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(135, 'owner-report', 'owner-report', 'Download Owner Report', 'report-management', NULL, 'owner-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(136, 'fleet-report', 'fleet-report', 'Download Finance Report', 'report-management', NULL, 'fleet-report', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(137, 'owner-management', 'owner-management', 'Owner management', 'owner-management', NULL, 'owners', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(138, 'manage-owner', 'manage-owners', 'Owner list', 'owner-management', 'manage-owners', 'owners', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(139, 'add-owner', 'add-owner', 'Add Owner', 'owner-management', 'manage-owners', 'add-owner', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(140, 'edit-owner', 'edit-owner', 'Edit Owner', 'owner-management', 'manage-owners', 'edit-owner', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(141, 'delete-owner', 'delete-owner', 'Delete Owner', 'owner-management', 'manage-owners', 'delete-owner', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(142, 'view-owner-profile', 'view-owner-profile', 'View owner Profile', 'owner-management', NULL, 'view-owner-profile', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(143, 'toggle-owner', 'toggle-owner', 'Toggle Owner Status', 'owner-management', 'manage-owners', 'toggle-owner', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(144, 'view-owner-document', 'view-owner-document', 'View Owner Document', 'owner-management', 'manage-owners', 'view-owner-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(145, 'view-delete-owner', 'view-delete-owner', 'View Delete Owner', 'owner-management', 'manage-owners', 'view-delete-owner', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(146, 'manage-owner-needed-document', 'manage-owner-needed-document', 'List owner needed documents', 'owner-management', NULL, 'manage-owner-needed-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(147, 'add-owner-needed-document', 'add-owner-needed-document', 'Add Owner needed documents', 'owner-management', NULL, 'add-owner-needed-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(148, 'edit-owner-needed-document', 'edit-owner-needed-document', 'Edit Owner needed documents', 'owner-management', NULL, 'edit-owner-needed-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(149, 'delete-owner-needed-document', 'delete-owner-needed-document', 'Delete Owner needed documents', 'owner-management', NULL, 'delete-owner-needed-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(150, 'toggle-owner-needed-document', 'toggle-owner-needed-document', 'toggle Owner needed document', 'owner-management', NULL, 'toggle-owner-needed-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(151, 'view-support-management', 'view-support-management', 'View Support Ticket Management', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(152, 'view-ticket-title', 'view-ticket-title', 'View ticket title', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(153, 'add-ticket-title', 'add-ticket-title', 'Add ticket title', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(154, 'edit-ticket-title', 'edit-ticket-title', 'Edit ticket title', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(155, 'delete-ticket-title', 'delete-ticket-title', 'Delete ticket title', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(156, 'toggle-ticket-title', 'toggle-ticket-title', 'Toggle ticket title', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(157, 'view-support-ticket', 'view-support-ticket', 'View support ticket', 'support-management', NULL, 'support-management', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(158, 'manage-fleet', 'manage-fleet', 'Manage fleets', 'owner-management', NULL, 'manage-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(159, 'view-fleet', 'view-fleet', 'view fleets', 'owner-management', NULL, 'view-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(160, 'add-fleet', 'add-fleet', 'Create new fleet', 'owner-management', NULL, 'add-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(161, 'edit-fleet', 'edit-fleet', 'Edit fleet', 'owner-management', NULL, 'edit-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(162, 'delete-fleet', 'delete-fleet', 'Delete fleet', 'owner-management', NULL, 'delete-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(163, 'toggle-fleet', 'toggle-fleet', 'Change status of fleet', 'owner-management', NULL, 'toggle-fleet', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(164, 'fleet-approval', 'fleet-approval', 'Change Approve status of fleet', 'owner-management', NULL, 'fleet-approval', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(165, 'view-fleet-document', 'view-fleet-document', 'View Fleet Document', 'owner-management', NULL, 'view-fleet-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(166, 'fleet-drivers-location-filter', 'fleet-drivers-location-filter', 'Get all drivers', 'owner-management', NULL, 'view-approved-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(167, 'fleet-drivers-owner-filter', 'fleet-drivers-owner-filter', 'Get all drivers', 'owner-management', NULL, 'view-approved-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(168, 'view-approved-fleet-drivers', 'view-approved-fleet-drivers', 'Get all approved drivers', 'owner-management', NULL, 'view-approved-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(169, 'view-pending-fleet-drivers', 'view-pending-fleet-drivers', 'Get all blocked drivers', 'owner-management', NULL, 'view-pending-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(170, 'add-fleet-drivers', 'add-fleet-drivers', 'add-fleet-drivers', 'owner-management', NULL, 'add-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(171, 'edit-fleet-drivers', 'edit-fleet-drivers', 'edit-fleet-drivers', 'owner-management', NULL, 'edit-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(172, 'approve-fleet-drivers', 'approve-fleet-drivers', 'toggle-fleet-drivers', 'owner-management', NULL, 'toggle-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(173, 'delete-fleet-drivers', 'delete-fleet-drivers', 'delete-fleet-drivers', 'owner-management', NULL, 'delete-fleet-drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(174, 'view-fleet-driver-profile', 'view-fleet-driver-profile', 'view-fleet-driver-profile', 'owner-management', NULL, 'view-fleet-driver-profile', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(175, 'fleet-driver-document-view', 'fleet-driver-document-view', 'fleet-driver-document-view', 'owner-management', NULL, 'fleet-driver-document-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(176, 'add-fleet-driver-document', 'add-fleet-driver-document', 'fleet-driver-document-view', 'owner-management', NULL, 'add-fleet-driver-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(177, 'edit-fleet-driver-document', 'edit-fleet-driver-document', 'fleet-driver-document-edit', 'owner-management', NULL, 'edit-fleet-driver-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(178, 'delete-fleet-driver-document', 'delete-fleet-driver-document', 'fleet-driver-document-upload', 'owner-management', NULL, 'delete-fleet-driver-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(179, 'toggle-fleet-driver-document', 'toggle-fleet-driver-document', 'fleet-driver-document-toggle', 'owner-management', NULL, 'toggle-fleet-driver-document', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(180, 'trip-request-view', 'trip-request-view', 'trip request view lists', 'trip-request', NULL, 'trip-request-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(181, 'ongoing-request-view', 'ongoing-request-view', 'ongoing request view lists', 'ongoing-request', NULL, 'ongoing-request-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(182, 'delivery-request-view', 'delivery-request-view', 'trip request view lists', 'delivery-request', NULL, 'delivery-request-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(183, 'manage-delivery-request', 'manage-delivery-request', 'trip request view lists', 'delivery-request', NULL, 'manage-delivery-request', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(184, 'schedule-delivery-request-view', 'schedule-delivery-request-view', 'trip request view lists', 'delivery-request', NULL, 'schedule-delivery-request-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(185, 'cancelled-delivery-request-view', 'cancelled-delivery-request-view', 'trip request view lists', 'delivery-request', NULL, 'cancelled-delivery-request-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(186, 'manage-business-settings', 'manage-business-settings', 'business settings lists', 'business-settings', NULL, 'manage-business-settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(187, 'general-settings-view', 'general-settings-view', 'general settings view lists', 'business-settings', NULL, 'general-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(188, 'transport-ride-settings-view', 'transport-ride-settings-view', 'transport ride settings view lists', 'business-settings', NULL, 'transport-ride-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(189, 'bid-ride-settings-view', 'bid-ride-settings-view', 'Bid ride settings view lists', 'business-settings', NULL, 'bid-ride-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(190, 'customization-settings-view', 'customization-settings-view', 'customization settings view lists', 'business-settings', NULL, 'customization-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(191, 'peak-zone-settings-view', 'peak-zone-settings-view', 'Peak Zone settings view', 'peak-zone-view', NULL, 'peak-zone-settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(192, 'peak-zone-view', 'peak-zone-view', 'Peak Zone view', 'peak-zone-view', NULL, 'peak-zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(193, 'peak-zone-map-view', 'peak-zone-map-view', 'Peak Zone Map view', 'peak-zone-view', NULL, 'peak-zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(194, 'peak-zone-toggle', 'peak-zone-toggle', 'Toggle Peak Zone status', 'peak-zone-view', NULL, 'peak-zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(195, 'delete-peak-zone', 'delete-peak-zone', 'Delete Peak Zone ', 'delete-peak-zone', NULL, 'peak-zone', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(196, 'manage-app-settings', 'manage-app-settings', 'app settings lists', 'app-settings', NULL, 'manage-app-settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(197, 'wallet-settings-view', 'wallet-settings-view', 'wallet settings view lists', 'app-settings', NULL, 'wallet-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(198, 'tip-settings-view', 'tip-settings-view', 'tips settings view lists', 'app-settings', NULL, 'tip-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(199, 'onboarding-screen-settings-view', 'onboarding-screen-settings-view', 'onboarding screen settings view lists', 'app-settings', NULL, 'onboarding-screen-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(200, 'toggle_onboarding', 'toggle_onboarding', 'toggle onboarding', 'app-settings', NULL, 'onboarding', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(201, 'edit_onboarding', 'edit_onboarding', 'edit onboarding', 'app-settings', NULL, 'onboarding', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(202, 'manage-third-party-settings', 'manage-third-party-settings', 'third party settings lists', 'third-party-settings', NULL, 'manage-third-party-settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(203, 'payment-gateway-settings-view', 'payment-gateway-settings-view', 'payment gateway settings view lists', 'third-party-settings', NULL, 'payment-gateway-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(204, 'sms-gateway-settings-view', 'sms-gateway-settings-view', 'sms gateway settings view lists', 'third-party-settings', NULL, 'sms-gateway-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(205, 'firebase-settings-view', 'firebase-settings-view', 'firebase settings view lists', 'third-party-settings', NULL, 'firebase-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(206, 'map-settings-view', 'map-settings-view', 'map settings view lists', 'third-party-settings', NULL, 'map-settings-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(207, 'mail-configuration-view', 'mail-configuration-view', 'mail configuration view lists', 'third-party-settings', NULL, 'mail-configuration-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(208, 'recaptcha-view', 'recaptcha-view', 'recaptcha view lists', 'third-party-settings', NULL, 'recaptcha-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(209, 'invoice-configuration-view', 'invoice-configuration-view', 'invoice configuration view lists', 'third-party-settings', NULL, 'invoice-configuration-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(210, 'notification-channel-view', 'notification-channel-view', 'notification channel view lists', 'third-party-settings', NULL, 'notification-channel-view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(211, 'cms-landing-website', 'cms-landing-website', 'cms-landing-website', 'cms-landing-website', NULL, 'cms-landing-website', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(212, 'header_footer', 'header_footer', 'header footer', 'cms-landing-website', NULL, 'header-footer', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(213, 'add_header_footer', 'add_header_footer', 'Add header footer', 'cms-landing-website', NULL, 'header-footer', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(214, 'edit_header_footer', 'edit_header_footer', 'Edit header footer', 'cms-landing-website', NULL, 'header-footer', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(215, 'delete_header_footer', 'delete_header_footer', 'Delete header footer', 'cms-landing-website', NULL, 'header-footer', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(216, 'landing_home', 'landing_home', 'landing home', 'cms-landing-website', NULL, 'landing-home', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(217, 'add_landing_home', 'add_landing_home', 'Add landing home', 'cms-landing-website', NULL, 'landing-home', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(218, 'edit_landing_home', 'edit_landing_home', 'Edit landing home', 'cms-landing-website', NULL, 'landing-home', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(219, 'delete_landing_home', 'delete_landing_home', 'Delete landing home', 'cms-landing-website', NULL, 'landing-home', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(220, 'landing_driver', 'landing_driver', 'landing driver', 'cms-landing-website', NULL, 'landing-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(221, 'add_landing_driver', 'add_landing_driver', 'Add landing driver', 'cms-landing-website', NULL, 'landing-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(222, 'edit_landing_driver', 'edit_landing_driver', 'Edit landing driver', 'cms-landing-website', NULL, 'landing-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(223, 'delete_landing_driver', 'delete_landing_driver', 'Delete landing driver', 'cms-landing-website', NULL, 'landing-driver', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(224, 'landing_aboutus', 'landing_aboutus', 'landing aboutus', 'cms-landing-website', NULL, 'landing-aboutus', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(225, 'add_landing_aboutus', 'add_landing_aboutus', 'Add landing aboutus', 'cms-landing-website', NULL, 'landing-aboutus', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(226, 'edit_landing_aboutus', 'edit_landing_aboutus', 'Edit landing aboutus', 'cms-landing-website', NULL, 'landing-aboutus', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(227, 'delete_landing_aboutus', 'delete_landing_aboutus', 'Delete landing aboutus', 'cms-landing-website', NULL, 'landing-aboutus', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(228, 'landing_user', 'landing_user', 'landing user', 'cms-landing-website', NULL, 'landing-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(229, 'add_landing_user', 'add_landing_user', 'Add landing user', 'cms-landing-website', NULL, 'landing-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(230, 'edit_landing_user', 'edit_landing_user', 'Edit landing user', 'cms-landing-website', NULL, 'landing-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(231, 'delete_landing_user', 'delete_landing_user', 'Delete landing user', 'cms-landing-website', NULL, 'landing-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(232, 'landing_contact', 'landing_contact', 'landing contact', 'cms-landing-website', NULL, 'landing-contact', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(233, 'add_landing_contact', 'add_landing_contact', 'Add landing user', 'cms-landing-website', NULL, 'landing-user', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(234, 'edit_landing_contact', 'edit_landing_contact', 'Edit landing contact', 'cms-landing-website', NULL, 'landing-contact', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(235, 'delete_landing_contact', 'delete_landing_contact', 'Delete landing contact', 'cms-landing-website', NULL, 'landing-contact', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(236, 'landing_quicklinks', 'landing_quicklinks', 'landing quicklinks', 'cms-landing-website', NULL, 'landing-quicklinks', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(237, 'add_landing_quicklinks', 'add_landing_quicklinks', 'Add landing quicklinks', 'cms-landing-website', NULL, 'landing-quicklinks', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(238, 'edit_landing_quicklinks', 'edit_landing_quicklinks', 'Edit landing quicklinks', 'cms-landing-website', NULL, 'landing-quicklinks', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(239, 'delete_landing_quicklinks', 'delete_landing_quicklinks', 'Delete landing quicklinks', 'cms-landing-website', NULL, 'landing-quicklinks', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(240, 'masters', 'masters', 'masters', 'masters', NULL, 'masters', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(241, 'languages', 'languages', 'languages', 'masters', NULL, 'languages', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(242, 'add_languages', 'add_languages', 'Add languages', 'masters', NULL, 'languages', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(243, 'delete_languages', 'delete_languages', 'delete languages', 'masters', NULL, 'languages', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(244, 'browse_languages', 'browse_languages', 'Browse languages', 'masters', NULL, 'languages', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(245, 'roles', 'roles', 'roles', 'masters', NULL, 'roles', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(246, 'create_roles', 'create_roles', 'create roles', 'masters', NULL, 'roles', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(247, 'edit_roles', 'edit_roles', 'Edit roles', 'masters', NULL, 'roles', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(248, 'permissions_roles', 'permissions_roles', 'permissions roles', 'masters', NULL, 'roles', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(249, 'delete_roles', 'delete_roles', 'delete roles', 'masters', NULL, 'roles', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(250, 'dispatcher-dashboard', 'dispatcher-dashboard', 'dispatcher dashboard', 'dispatcher dashboard', NULL, 'dispatcher dashboard', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(251, 'dispatcher-drivers', 'dispatcher-drivers', 'dispatcher drivers', 'dispatcher drivers', NULL, 'dispatcher drivers', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(252, 'dispatcher-ride', 'dispatcher-ride', 'dispatcher ride', 'dispatcher ride', NULL, 'dispatcher ride', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(253, 'dispatcher-ride-request', 'dispatcher-ride-request', 'dispatcher ride request', 'dispatcher ride request', NULL, 'dispatcher ride request', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(254, 'dispatcher-ride-request-view', 'dispatcher-ride-request-view', 'dispatcher ride request view', 'dispatcher ride request', NULL, 'dispatcher ride request view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(255, 'dispatcher-ride-request-cancel', 'dispatcher-ride-request-cancel', 'dispatcher ride request cancel', 'dispatcher ride request', NULL, 'dispatcher ride request cancel', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(256, 'dispatcher-ride-request-assign', 'dispatcher-ride-request-assign', 'dispatcher ride request assign', 'dispatcher ride request', NULL, 'dispatcher ride request assign', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(257, 'dispatcher-ongoing-request', 'dispatcher-ongoing-request', 'dispatcher ongoing request', 'dispatcher ongoing request', NULL, 'dispatcher ongoing request', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(258, 'dispatcher-ongoing-request-view', 'dispatcher-ongoing-request-view', 'dispatcher ongoing request view', 'dispatcher ongoing request', NULL, 'dispatcher ongoing request view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(259, 'dispatcher-ongoing-request-cancel', 'dispatcher-ongoing-request-cancel', 'dispatcher ongoing request cancel', 'dispatcher ongoing request', NULL, 'dispatcher ongoing request cancel', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(260, 'dispatcher-ongoing-request-assign', 'dispatcher-ongoing-request-assign', 'dispatcher ongoing request assign', 'dispatcher ongoing request', NULL, 'dispatcher ongoing request assign', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(261, 'manage-country', 'manage-country', 'View Country', 'settings', 'country', 'settings', 'country', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(262, 'add-country', 'add-country', 'add Country', 'settings', 'country', 'settings', 'country', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(263, 'edit-country', 'edit-country', 'edit country', 'settings', 'country', 'settings', 'country', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(264, 'delete-country', 'delete-country', 'delete country', 'settings', 'country', 'settings', 'country', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(265, 'toggle-country', 'toggle-country', 'toggle-country', 'settings', 'country', 'settings', 'country', NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(266, 'view-airport', 'view-airport', 'View all airport', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(267, 'Map-view-Airport', 'view-airport-map', 'map-view', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(268, 'Add-Airport', 'add-airport', 'Add airport', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(269, 'Edit-airport', 'edit-airport', 'Edit airport', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(270, 'Delete-Airport', 'delete-airport', 'Get all airport', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(271, 'Toggle-Airport', 'toggle-airport', 'Toggle Status Zones', 'price-management', NULL, 'airport', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(272, 'web-create-booking', 'web-create-booking', 'Create Web Booking Ride', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(273, 'view-web-profile', 'view-web-profile', 'View Web Booking Profile', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(274, 'view-web-history', 'view-web-history', 'View Web booking Ride history', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(275, 'view-web-history-detail', 'view-web-history-detail', 'View Web booking Ride history In Detail', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(276, 'view-web-support', 'view-web-support', 'View Support Tickets', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(277, 'create-web-support-ticket', 'create-web-support-ticket', 'Create Support Ticket', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(278, 'view-web-support-ticket-detail', 'view-web-support-ticket-detail', 'View Support Ticket Detail in Web Booking', 'web_booking', NULL, 'web_booking', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(279, 'app_modules_view', 'app_modules_view', 'View App Module', 'settings', 'app_modules_view', 'settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(280, 'add_app_modules', 'add_app_modules', 'add App Module', 'settings', 'add_app_modules', 'settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08');
INSERT INTO `permissions` (`id`, `slug`, `name`, `description`, `main_menu`, `sub_menu`, `main_link`, `sub_link`, `sort`, `icon`, `created_at`, `updated_at`) VALUES
(281, 'toggle_app_modules', 'toggle_app_modules', 'Toggle App Module', 'settings', NULL, 'settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(282, 'edit_app_modules', 'edit_app_modules', 'Edit App Module', 'edit_app_modules', NULL, 'settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(283, 'delete_app_modules', 'delete_app_modules', 'Delete App Module', 'delete_app_modules', NULL, 'settings', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(284, 'preference_view', 'preference_view', 'View Preference', 'others', 'preference_view', 'preference_view', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(285, 'create_preference', 'add_preference', 'add Preference', 'others', 'add_preference', 'add_preference', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(286, 'toggle_preference', 'toggle_preference', 'Toggle Preference', 'others', NULL, 'toggle_preference', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(287, 'edit_preference', 'edit_preference', 'Edit Preference', 'edit_preference', NULL, 'edit_preference', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(288, 'delete_preference', 'delete_preference', 'Delete Preference', 'others', NULL, 'delete_preference', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(289, 'bulk_upload', 'bulk_upload', 'Bulk upload', 'masters', 'bulk_upload', 'bulk_upload', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(290, 'upload_bulk_file', 'upload_bulk_file', 'upload bulk file', 'masters', 'upload_bulk_file', 'upload_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(291, 'download_bulk_file', 'download_bulk_file', 'download bulk file', 'masters', NULL, 'download_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(292, 'reupload_bulk_file', 'reupload_bulk_file', 'reupload_bulk_file', 'masters', NULL, 'reupload_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(293, 'driver_bulk_upload', 'driver_bulk_upload', 'Driver Bulk upload', 'drivers-management', 'driver_bulk_upload', 'driver_bulk_upload', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(294, 'driver_upload_bulk_file', 'driver_upload_bulk_file', 'driver upload bulk file', 'drivers-management', 'driver_upload_bulk_file', 'driver_upload_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(295, 'driver_download_bulk_file', 'driver_download_bulk_file', 'driver download bulk file', 'drivers-management', NULL, 'driver_download_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08'),
(296, 'driver_reupload_bulk_file', 'driver_reupload_bulk_file', 'driver reupload_bulk_file', 'drivers-management', NULL, 'driver_reupload_bulk_file', NULL, NULL, NULL, '2025-09-26 07:06:08', '2025-09-26 07:06:08');

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

--
-- Table structure for table `permission_role`
--

CREATE TABLE `permission_role` (
  `role_id` int(10) UNSIGNED NOT NULL,
  `permission_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `permission_role`
--

INSERT INTO `permission_role` (`role_id`, `permission_id`) VALUES
(2, 272),
(2, 273),
(2, 274),
(2, 275),
(2, 276),
(2, 277),
(2, 278),
(3, 1),
(3, 2),
(3, 6),
(3, 8),
(3, 130),
(3, 136),
(3, 137),
(3, 158),
(3, 159),
(3, 160),
(3, 161),
(3, 162),
(3, 163),
(3, 164),
(3, 165),
(3, 168),
(3, 169),
(3, 170),
(3, 171),
(3, 172),
(3, 173),
(3, 174),
(3, 176),
(3, 177),
(3, 178),
(3, 179),
(3, 180),
(5, 250),
(5, 251),
(5, 252),
(5, 253),
(5, 254),
(5, 255),
(5, 256),
(5, 257),
(5, 258),
(5, 259),
(5, 260),
(6, 2),
(6, 151),
(6, 157),
(7, 1),
(7, 2),
(7, 3),
(7, 4),
(7, 5),
(7, 6),
(7, 7),
(7, 8),
(7, 9),
(7, 10),
(7, 11),
(7, 12),
(7, 13),
(7, 14),
(7, 15),
(7, 16),
(7, 17),
(7, 18),
(7, 19),
(7, 20),
(7, 21),
(7, 22),
(7, 24),
(7, 25),
(7, 26),
(7, 27),
(7, 28),
(7, 29),
(7, 30),
(7, 31),
(7, 32),
(7, 33),
(7, 34),
(7, 35),
(7, 36),
(7, 37),
(7, 38),
(7, 39),
(7, 40),
(7, 41),
(7, 42),
(7, 43),
(7, 44),
(7, 45),
(7, 46),
(7, 47),
(7, 48),
(7, 49),
(7, 50),
(7, 51),
(7, 52),
(7, 53),
(7, 54),
(7, 55),
(7, 56),
(7, 57),
(7, 58),
(7, 59),
(7, 60),
(7, 61),
(7, 62),
(7, 63),
(7, 64),
(7, 65),
(7, 66),
(7, 67),
(7, 68),
(7, 69),
(7, 70),
(7, 71),
(7, 72),
(7, 73),
(7, 74),
(7, 75),
(7, 76),
(7, 77),
(7, 78),
(7, 79),
(7, 80),
(7, 81),
(7, 82),
(7, 83),
(7, 84),
(7, 85),
(7, 86),
(7, 87),
(7, 88),
(7, 89),
(7, 90),
(7, 91),
(7, 92),
(7, 93),
(7, 94),
(7, 95),
(7, 96),
(7, 97),
(7, 98),
(7, 99),
(7, 100),
(7, 101),
(7, 102),
(7, 103),
(7, 104),
(7, 105),
(7, 106),
(7, 107),
(7, 108),
(7, 109),
(7, 110),
(7, 111),
(7, 112),
(7, 113),
(7, 114),
(7, 115),
(7, 116),
(7, 117),
(7, 118),
(7, 119),
(7, 120),
(7, 121),
(7, 122),
(7, 123),
(7, 124),
(7, 125),
(7, 126),
(7, 127),
(7, 128),
(7, 129),
(7, 130),
(7, 131),
(7, 132),
(7, 133),
(7, 134),
(7, 135),
(7, 136),
(7, 137),
(7, 138),
(7, 139),
(7, 140),
(7, 141),
(7, 142),
(7, 143),
(7, 144),
(7, 145),
(7, 146),
(7, 147),
(7, 148),
(7, 149),
(7, 150),
(7, 151),
(7, 152),
(7, 153),
(7, 154),
(7, 155),
(7, 156),
(7, 157),
(7, 158),
(7, 159),
(7, 160),
(7, 161),
(7, 162),
(7, 163),
(7, 164),
(7, 165),
(7, 166),
(7, 167),
(7, 168),
(7, 169),
(7, 170),
(7, 171),
(7, 172),
(7, 173),
(7, 174),
(7, 175),
(7, 176),
(7, 177),
(7, 178),
(7, 179),
(7, 180),
(7, 181),
(7, 182),
(7, 183),
(7, 184),
(7, 185),
(7, 186),
(7, 187),
(7, 188),
(7, 189),
(7, 190),
(7, 191),
(7, 192),
(7, 193),
(7, 194),
(7, 195),
(7, 196),
(7, 197),
(7, 198),
(7, 199),
(7, 200),
(7, 201),
(7, 202),
(7, 203),
(7, 204),
(7, 205),
(7, 206),
(7, 207),
(7, 208),
(7, 209),
(7, 210),
(7, 211),
(7, 212),
(7, 213),
(7, 214),
(7, 215),
(7, 216),
(7, 217),
(7, 218),
(7, 219),
(7, 220),
(7, 221),
(7, 222),
(7, 223),
(7, 224),
(7, 225),
(7, 226),
(7, 227),
(7, 228),
(7, 229),
(7, 230),
(7, 231),
(7, 232),
(7, 233),
(7, 234),
(7, 235),
(7, 236),
(7, 237),
(7, 238),
(7, 239),
(7, 240),
(7, 241),
(7, 242),
(7, 243),
(7, 244),
(7, 245),
(7, 246),
(7, 247),
(7, 248),
(7, 249),
(7, 250),
(7, 251),
(7, 252),
(7, 253),
(7, 254),
(7, 255),
(7, 256),
(7, 257),
(7, 258),
(7, 259),
(7, 260),
(7, 261),
(7, 262),
(7, 263),
(7, 264),
(7, 265),
(7, 266),
(7, 267),
(7, 268),
(7, 269),
(7, 270),
(7, 271),
(7, 279),
(7, 280),
(7, 281),
(7, 282),
(7, 283),
(7, 284),
(7, 285),
(7, 286),
(7, 287),
(7, 288),
(7, 289),
(7, 290),
(7, 291),
(7, 292),
(7, 293),
(7, 294),
(7, 295),
(7, 296);

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

--
-- Table structure for table `personal_access_tokens`
--

CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `personal_access_tokens`
--

INSERT INTO `personal_access_tokens` (`id`, `tokenable_type`, `tokenable_id`, `name`, `token`, `abilities`, `last_used_at`, `expires_at`, `created_at`, `updated_at`) VALUES
(41, 'App\\Models\\User', 20, 'Dilip-iphone', 'a168cf93fee5e2e7f5ad91ba5cb9504247d3bba45933384c9a2613adf02bcfdc', '[\"*\"]', '2025-10-09 06:24:15', NULL, '2025-10-08 08:47:32', '2025-10-09 06:24:15'),
(59, 'App\\Models\\User', 18, 'Dilip-iphone', '3acf20e8b02b66218975b3e8efb86e8193f997fc3a1dc65cd3b2097bb31a46e8', '[\"*\"]', '2025-10-13 04:45:02', NULL, '2025-10-13 04:33:33', '2025-10-13 04:45:02'),
(71, 'App\\Models\\User', 30, 'Dilip-iphone', '0abb67a7925abc50819d828b89ae1111e28c864dfb88ecc75128129fb3cdff91', '[\"*\"]', '2025-10-13 12:04:43', NULL, '2025-10-13 12:04:36', '2025-10-13 12:04:43'),
(85, 'App\\Models\\User', 61, 'Dilip-iphone', 'c6e9d4564bf16708572d959b8722134c261b47b2af95747a8dbc8c6b271db979', '[\"*\"]', '2025-11-05 10:27:24', NULL, '2025-11-05 10:27:23', '2025-11-05 10:27:24'),
(86, 'App\\Models\\User', 62, 'Dilip-iphone', 'd47c3c224801a2ae04561e1489adfd5d0014fce8463826948f93ad9c94d6d61e', '[\"*\"]', '2025-11-05 10:27:44', NULL, '2025-11-05 10:27:43', '2025-11-05 10:27:44'),
(87, 'App\\Models\\User', 63, 'Dilip-iphone', 'c2c35ec04b9dea4f1f28f48bb9d4c38a024aec92cf5029a80912a7250cfd6938', '[\"*\"]', '2025-11-05 10:28:16', NULL, '2025-11-05 10:28:15', '2025-11-05 10:28:16'),
(88, 'App\\Models\\User', 64, 'Dilip-iphone', 'f3eeca45b2d420ab2486946783bab62fe296553555666ee43e09444b47e76f32', '[\"*\"]', '2025-11-05 10:28:47', NULL, '2025-11-05 10:28:46', '2025-11-05 10:28:47'),
(89, 'App\\Models\\User', 65, 'Dilip-iphone', '7ee38cdf4b6cbaf1e73590f25dcdc586e0167ef543df65e14d4cb7e19c80d2fb', '[\"*\"]', '2025-11-05 10:28:49', NULL, '2025-11-05 10:28:48', '2025-11-05 10:28:49'),
(90, 'App\\Models\\User', 66, 'Dilip-iphone', 'a108aecb7b65db2d5834392f0125c69ec8baaa53791cec6f493e9389051ab2a0', '[\"*\"]', '2025-11-05 10:29:19', NULL, '2025-11-05 10:29:18', '2025-11-05 10:29:19'),
(116, 'App\\Models\\User', 67, 'Dilip-iphone', '3957d6d9b29b23e9ce6f01179e027799f21210449d19f3f74a68e264f719aafe', '[\"*\"]', '2025-11-06 06:58:38', NULL, '2025-11-06 06:57:42', '2025-11-06 06:58:38'),
(117, 'App\\Models\\User', 47, 'Dilip-iphone', 'a754d0ad700921a346279843fb6d5dccfe7182c198d24be255e4bf710784651f', '[\"*\"]', '2025-11-06 07:27:45', NULL, '2025-11-06 07:06:45', '2025-11-06 07:27:45'),
(127, 'App\\Models\\User', 3, 'Dilip-iphone', 'e39fc221ee7edbabced226f733eefe0ba580850d7f499b929338e86d6110c180', '[\"*\"]', '2025-11-06 10:47:11', NULL, '2025-11-06 10:28:51', '2025-11-06 10:47:11'),
(128, 'App\\Models\\User', 2, 'Dilip-iphone', '6fd59cf30204979020dfe13f4bff5385840a9f8fd4d5a7e580d5642a071f371a', '[\"*\"]', '2025-11-06 11:04:39', NULL, '2025-11-06 10:30:48', '2025-11-06 11:04:39'),
(129, 'App\\Models\\User', 26, 'Dilip-iphone', '04b0d1402d2405eeef14f38694311a63eb0e1884d82a5fcb884aee2ec69d3dae', '[\"*\"]', '2025-11-06 10:48:12', NULL, '2025-11-06 10:47:40', '2025-11-06 10:48:12');

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

--
-- Table structure for table `poc_clients`
--

CREATE TABLE `poc_clients` (
  `id` char(36) NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `preferences`
--

CREATE TABLE `preferences` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `preference_prices`
--

CREATE TABLE `preference_prices` (
  `id` int(10) UNSIGNED NOT NULL,
  `zone_type_id` char(36) NOT NULL,
  `preference_id` int(10) UNSIGNED NOT NULL,
  `price` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `pre_payment_datas`
--

CREATE TABLE `pre_payment_datas` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `card_number` varchar(191) DEFAULT NULL,
  `payment_opt` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `driver_commission` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `projects`
--

CREATE TABLE `projects` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_name` varchar(191) NOT NULL,
  `poc_name` varchar(191) DEFAULT NULL,
  `poc_email` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `project_flavours`
--

CREATE TABLE `project_flavours` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `flavour_name` varchar(191) NOT NULL,
  `app_name` varchar(191) NOT NULL,
  `bundle_identifier` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `promo`
--

CREATE TABLE `promo` (
  `id` char(36) NOT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `code` varchar(191) NOT NULL,
  `user_specific` tinyint(1) NOT NULL DEFAULT 0,
  `minimum_trip_amount` int(11) NOT NULL DEFAULT 0,
  `maximum_discount_amount` int(11) NOT NULL DEFAULT 0,
  `discount_percent` int(11) NOT NULL DEFAULT 0,
  `total_uses` int(11) NOT NULL DEFAULT 0,
  `uses_per_user` int(11) NOT NULL DEFAULT 0,
  `from` datetime NOT NULL,
  `to` datetime NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `promo`
--

INSERT INTO `promo` (`id`, `transport_type`, `service_location_id`, `code`, `user_specific`, `minimum_trip_amount`, `maximum_discount_amount`, `discount_percent`, `total_uses`, `uses_per_user`, `from`, `to`, `active`, `created_at`, `updated_at`) VALUES
('b985946f-87f3-4843-ae5a-bf74e52f1d2a', 'both', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'OFF10', 0, 50, 500, 5, 1, 1000, '2025-11-06 00:00:00', '2026-12-01 23:59:59', 1, '2025-09-26 10:39:44', '2025-11-06 10:38:57');

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

--
-- Table structure for table `promo_code_users`
--

CREATE TABLE `promo_code_users` (
  `id` int(10) UNSIGNED NOT NULL,
  `promo_code_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `promo_users`
--

CREATE TABLE `promo_users` (
  `id` int(10) UNSIGNED NOT NULL,
  `promo_code_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `recent_searches`
--

CREATE TABLE `recent_searches` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `transport_type` varchar(191) DEFAULT NULL,
  `pick_lat` double(15,8) DEFAULT NULL,
  `pick_lng` double(15,8) DEFAULT NULL,
  `drop_lat` double(15,8) DEFAULT NULL,
  `drop_lng` double(15,8) DEFAULT NULL,
  `pick_address` text DEFAULT NULL,
  `pick_short_address` varchar(191) DEFAULT NULL,
  `drop_address` text DEFAULT NULL,
  `drop_short_address` varchar(191) DEFAULT NULL,
  `pickup_poc_name` varchar(191) DEFAULT NULL,
  `pickup_poc_mobile` varchar(14) DEFAULT NULL,
  `pickup_poc_instruction` varchar(14) DEFAULT NULL,
  `drop_poc_name` varchar(14) DEFAULT NULL,
  `drop_poc_mobile` varchar(14) DEFAULT NULL,
  `drop_poc_instruction` varchar(191) DEFAULT NULL,
  `total_distance` double(15,2) NOT NULL DEFAULT 0.00,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `poly_line` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `recent_searches`
--

INSERT INTO `recent_searches` (`id`, `user_id`, `transport_type`, `pick_lat`, `pick_lng`, `drop_lat`, `drop_lng`, `pick_address`, `pick_short_address`, `drop_address`, `drop_short_address`, `pickup_poc_name`, `pickup_poc_mobile`, `pickup_poc_instruction`, `drop_poc_name`, `drop_poc_mobile`, `drop_poc_instruction`, `total_distance`, `total_time`, `poly_line`, `created_at`, `updated_at`) VALUES
(1, 20, 'taxi', 19.23842690, 73.12888720, 19.15822240, 73.11572290, 'Kalyan Station Road, Bhanunagar Kalyan(West), Narayan Peth, Bhoiwada, Kalyan, Maharashtra, India', 'Kalyan Station Road', 'Casa Clara J Wing, 2, Downtown, Palava City, Antarli, Maharashtra, India', 'Casa Clara J Wing', NULL, NULL, NULL, NULL, NULL, NULL, 13264.00, 40.50, 'eoltBq~i}LKx@U^kBx@`BjCzB`EpAbCf@j@HCJHBNbE~Ch@h@j@v@f@nAxAzEbArCVh@pFhHlAvA^Tt@V`@?nDWVMRQVo@`@iAPYt@s@fHmG\\c@rCaCjBiA`BaAAwAPqGJe@R]FGhA[bEy@vBY\\IhDi@DMLCLD~BBpCAh@MnBw@TM|CqAhAc@`FuB~CyAhCeAzCsAlAe@`HsC`NeG~CkAtJoCdKyC|@YrFaBjAa@rDgAnD}AvMeEn@SN?jDaAfA]dAWRQpBo@jHmBrDiArBe@xAMhIc@fDSpJCx@L|B?~@AhBFxBPvUnAvCRnCDn@El@[f@g@~BkD~CaEfA_B~D_FLCb@xJn@|H\\hF^vEZvCR`DN~C~ApU~@nLb@vEZxEVlDTnEbBjThArLZpCf@~C`A`FjA`GPv@n@HZJdAAx@ErC[rAQnFi@rDe@jN{AAjKnCH\\DzQ?jGC`FBl@KfC_@jB[XK`Cg@bDg@vAMr@EhH_ABkG', '2025-10-03 06:26:45', '2025-10-03 06:26:45'),
(2, 20, 'personal', 19.23842690, 73.12888720, 19.01234560, 72.98765430, 'Sample Pickup Address', 'Short Address', 'Sample Drop Address', 'Short Drop Address', NULL, NULL, NULL, NULL, NULL, NULL, 10.50, 30.00, 'encoded_polyline_string_here', '2025-10-03 06:30:23', '2025-10-03 06:30:23'),
(3, 2, 'taxi', 21.22418997, 72.88941924, 21.22237289, 72.89107315, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50', NULL, NULL, NULL, NULL, NULL, NULL, 460.00, 1.90, 'ajp`Caf{{LFH@NGLSBMQ?OgAqGnBk@d@ElFoALr@', '2025-10-06 11:00:22', '2025-10-06 11:00:22'),
(4, 2, 'taxi', 21.23000488, 72.90089674, 21.22349302, 72.89979436, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', '128, Swaminarayan Nagar-1, Nana Varachha, Surat, Gujarat 395013, India', '128', NULL, NULL, NULL, NULL, NULL, NULL, 913.00, 3.30, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~B[p@GNC', '2025-10-07 13:20:50', '2025-10-07 13:20:50'),
(5, 20, 'taxi', 23.16467840, 79.95165540, 23.18298790, 80.05692550, 'Jabalpur railway station, Madhya Pradesh State Highway 22, Tagore Railway Colony, South Civil Lines, Jabalpur, Madhya Pradesh, India', 'Jabalpur railway station', 'Jabalpur Airport, Airport Area, Khamaria, Dumna, Madhya Pradesh, India', 'Jabalpur Airport', NULL, NULL, NULL, NULL, NULL, NULL, 14257.00, 25.00, 'wiklCcq~fNoAmDe@qAYm@Qg@fBw@zDkBkAiCIIw@sBc@ASOKY@YLWTKXATJBBn@a@d@q@hDsFh@qAf@gBf@aCNyAPqEHyEAMBEV_INwBN{DIKBKJC?uMJcEJqAJyCh@cFdAeGCKFIHBBFrFXP}@^yDFgC@sAHyAR}A`@qBTg@H]Ds@?}CB[OwEYwDc@kAo@}AcEmKoAkDs@sCuAeDKMsAu@e@g@iAuAcA_AwA_AuBeBcAaA]a@c@{@yAgD[cAe@oBQ]sA_C]oAWk@mAeBqB{CiB{Bg@_@iF}CcDcE}BoDM[Ea@IkAMEAOFML?HJ?Fh@PrAbAfBfB^T\\HVBrAAZGf@UDy@g@gBQ_@m@e@aCaBs@q@Yc@a@wB}A{IgAuHEoA@_JCk@Qq@cA_Du@mBGc@@s@Bo@f@}EaAcGuA_ISs@QYkD{B]YW[_KmQ[_@e@]yCcBy@k@_@e@O_@Qm@mBcKOq@qBgGW{@i@gCSeBKo@}AyGwAwCQy@?[B_@lAkFL_AD{AOk@gBwEWa@OSiBqAkFsDqCqBe@e@kA{A}AyCcA_C{A}BoEcGcCeDqAoByAyCKc@@]hAmDDg@Eq@cB}I}BmICk@B[dAwC~@aC~@wCDc@Ei@M_@iLiZgEaK]_AKi@?YMIESDQLKR?@@dAa@zQoKd@]HMDSNMR?HDhAm@RSLg@Dg@C[{BwE_AoB?KNOpEiCCOwGoNxIMbABvCK~CpH', '2025-10-08 05:16:25', '2025-10-08 05:16:25'),
(6, 20, 'taxi', 23.18740720, 79.90511190, 23.20500170, 79.90392300, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Vijay Nagar', 'Karmeta, Jabalpur, Madhya Pradesh, India', 'Karmeta', NULL, NULL, NULL, NULL, NULL, NULL, 3085.00, 9.40, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', '2025-10-08 05:20:58', '2025-10-08 05:20:58'),
(7, 20, 'taxi', 19.15822240, 73.11572290, 19.23618660, 73.13139510, 'Casa Clara J Wing, 2, Downtown, Palava City, Antarli, Maharashtra, India', 'Casa Clara J Wing', 'Kalyan station, Station Rd, Bhoiwada, Kalyan, Maharashtra, India', 'Kalyan station', NULL, NULL, NULL, NULL, NULL, NULL, 13791.00, 44.50, 'wy|sBglg}LCjGBTkFv@}@J_BHoEl@cCf@WHqB^uDj@yXEsCBwBACNkDjDsC|CwE`FCNIHM?qAhAsE~Ee@Vq@NmBXyBf@~F|[d@rCpB~JOZOHYH_@Pg@?g@C{AJUBgA`@gKhDu@XmAXo@Dm@NMFIRWf@]jAM~@FXBf@Q`DSzHSxAOh@e@jAi@v@iA~@i@n@g@bAoGnNo@bBcA~BIRoBw@wFkAo@QyAk@kCoAiFqBkBcAy@w@qBmAu@k@QS}JyGiLsHaDkBkLkHwNoJkA_A_EsD_EeE_I{HUYuGiGuByB}MwMqHkHkFiFcBeBmD}DcEgEaF}EwByBiF}DcGgEqBcByBwAgAy@q@k@{@c@{GqF_CyBaAw@oBeAiAy@oAeAk@]SIu@MyFY[Am@Uq@e@iAmAq@g@KGCKw@iAm@c@_DgA{@QwFu@o@Ag@Fa@HCJK@EAmEvC_At@eHhGsCbCW`@c@dBSb@YXKBuEZk@Ks@_@g@g@gAsAiBaCuBmCc@s@k@aB}B{Hc@u@s@{@g@e@oDcCOCGM?Gs@_AyCsFiCkEgAuB]e@UO_@e@MCEI@MFIJAr@q@l@y@t@sAl@}Ax@kCNBnIu@f@Kj@h@Xt@', '2025-10-08 10:03:20', '2025-10-08 10:03:20'),
(8, 2, 'taxi', 19.15822180, 73.11572157, 19.15419418, 73.11307188, 'Casa Urbano Q 606, Downtown,Palava phase, 2, Antarli, Maharashtra 421204, India', 'Casa Urbano Q 606', 'Cluster_thane_168  Antarli, Maharashtra 421204, India', 'Cluster_thane_168  Antarli', NULL, NULL, NULL, NULL, NULL, NULL, 815.00, 3.60, 'wy|sBglg}LCjGbHgAfF@PGfBy@bBu@DPKFBX@hK', '2025-10-09 11:03:35', '2025-10-09 11:03:35'),
(9, 2, 'taxi', 19.15822180, 73.11572157, 21.17024007, 72.83106074, 'Casa Urbano Q 606, Downtown,Palava phase, 2, Antarli, Maharashtra 421204, India', 'Casa Urbano Q 606', '7, VIP Rd, Laxmi Nagar, Udhana, Surat, Gujarat 395002, India', '7', NULL, NULL, NULL, NULL, NULL, NULL, 404676.00, 521.10, 'wy|sBglg}LCjGBTkFv@}@J_BHoEl@cCf@WHqB^uDj@yXEsCBwBACNkDjDcChCORwE`FCNIHM?qAhAsE~Ee@Vq@NmBXyBf@~F|[d@rCpB~JOZOHYH_@Pg@?g@C{AJUBgA`@gKhDu@XmAXo@Dm@NMFIRWf@]jAM~@FXBf@Q`DSzHSxAOh@e@jAi@v@iA~@i@n@g@bAoGnNo@bBcA~BIRoBw@wFkAo@QyAk@kCoAiFqBkBcAy@w@qBmAu@k@QS}JyGiLsHaDkBkLkHwNoJkA_A_EsD_EeE_I{HUYuGiGuByB}MwMqHkHkFiFcBeBmD}DcEgEaF}EwByBiF}DcGgEqBcByBwAgAy@q@k@{@c@{GqF_CyBaAw@oBeAiAy@oAeAk@]SIu@MyFY[Am@Uq@e@iAmAq@g@KGCKw@iAm@c@_DgA{@QwFu@o@Ag@Fa@HCJK@EAmEvC_At@eHhGsCbCW`@c@dBSb@YXKBuEZk@Ks@_@g@g@y@aAqAr@k@`@{Az@_DlB}@j@cAv@sA^mGx@_CVm@HiCFy@EyDa@cDKSBo@XaAZiDB_ACc@Ka@Q[Yq@gAe@WSGG@aBSQGWYYa@Wi@q@s@oAw@o@[{@E]L?NJnA`Ej^JtBIpCUtF]zFU`CW~@sAvCuB~DkCvFiDzF{A`CS\\aEbJ_BhDoEjIs@lAcArBgDxDaC~BcIpHyJpJcC|BkDrCiErDiBfB_JtLgBvBwD|DQTwBrBiCxAo@ZaGdDo@ZuBrAkK~I_@XsIcO_ByCg@iAHK{AcCg@gAoHyN}BaFyBqE{MyV}EcJ{L_U}EiHsCwDw@y@uAqAsCwByF}D}A{@gD}AuFwBa@M_Cw@cCq@_Eu@uC[sCU_HQcB?uSl@cSh@wHZmCPy^pB}F^}D`@}F|@wHpAaDVoA?wBEmAG]?[FqGu@mXkDwFq@}Cg@{Bk@{PyBkCg@i_@kI{GyA_ImBqCy@yEoBe@CyDmBgBgAcAu@mB}AaFyEqByBiEmGs@qAgB{DmCqGX[uA{De@kBOoAU_DOoBk@{MIiCWqDy@iHMgBCgADoC?Q`@WPGbDi@bGiF~SeQxBsBdCsBjBgBzCgDdBwBdBiCdFuIzS{_@nCyFdDwHdDqIdEoL`DyJrEyJVi@rC_E?]BIdCkEz@gA`BgBtBsB`DkCpHeFfCcBvAeAbAgA`@s@Ti@ViADk@D}@IaBASSy@Ww@{BaEkDeHeEyIcBuDyB_GcCyHoA_EkCwKcA{EiC_OkAsIqAkMk@uIc@aMGkHYa[M{Pm@i_@IyAqA}_@_AqWc@yJg@gH{@gJy@mHcDsX{Eib@mGkh@cCySYkDOmDAcCFgEJaBLuAxI_p@dA{Hv@wGRoCJsEAgDQiEWmBsAuJQiCMoF@yCDqBNyCr@eLJkBFuDAyDGqEWuGi@iS_@uIWwESkBy@_FiEuTmJig@yCmOcA}EyAkIoGoRqAmDkEaGkAyAyA_BwBqBkCuBkBsAgDoBaAg@_DsAsC_AwDaAgDq@_LsBuF}@wG{@wCYm_@iEqH{@yF{@mAU{FoA}GaBgCy@mJoD_JkEuFyCmG{CoIkEu_@uRiLaGe_@iRwJaFcCuA_Ae@cAo@iGqD}DkCo@e@iCeBcFwDeG{E{}@gr@gI_HyGiFmEgDeCmByBgBoA}@aG_FcIkHuHcIoM_NqEqEmJiIi[aV_GqEiF}D}EwDa@Y_LsJqKyLqKmO}EeH}EuEuBwA{EiCsKaFcEiCmDmCgDcDa@i@}AgBeBeCsD{FkI_NaA}A_A{AcH}KkKsP_JyN{IcNqCqE_EeG_BsBqCwC{BuBmB}A_C}Aw@e@aHgDiC_A_G_BsF}@uD_@gDSkCEkEBkEPqDZyGx@{H|@a@Be@HiAD}EDqBAeCEoBEyDKmCCuBG{GJoDZq@H_GlAyEnBk@\\gB|@eEnCwAbAuBrAyGnEue@n\\k{@pm@cE~CaR`NuD~BaCrAmDdBiF`BgDt@yDl@kNdB{QnBaGr@cCR}QtBmT~BiMxAyG\\{ENaIGcMg@_Ns@}Jc@aLe@qEYmAMgEo@}@SyBo@uBw@kAe@kIkEaOmHgNqGeFkCkAu@wAaAgA{@mCkCqAcByDcGqHuM_CiEaFqIy@yAsGyKsGcLmA}BwHwMuIkOuA{BiEmGyEuG}F}GcBaCmB{B}AsBsG_I}AuB_AcAsHkJoCeCyDkCsEqByCcAyAc@cC_@{BYmFWqFHyFl@mBVcMpB}Dn@iEl@eARgQlC_BT{D`@uGZ_EBqBAiBE_DOiGq@uDm@sCk@mJcD}CqAcCkAuCiBmBsAkBwAyEuEm@m@}EmGqA{BqCkFyB_FaK_W{Me[_CaGuAeDsBkGkDiP{@{EmFwWa@sDWsCcB{Zu@gLy@sMwDcl@q@_LqC}b@gCga@[yJB}FBiCh@_J|AgLz@eE~@_EpB}F|BuFbBgD|DuGlCiEbGuJfDiF~JgPtE}HjCoFhCsFdBeErBsFfCgInBaH~BeKz@{Et@}Ev@eG|OoyAvDo]hIgy@rAwLtAqKhCgVLwBFsBC}CUsD]qDWaB[gBu@iCa@kAgB{DmCkEsC{Dgs@{{@aT_XsLsN{GuFcGsCsDeA[GyCSaNVoW@oeAfM_DXoh@tHsX~EcXbEyNjAgGJwDCyBKmB[aFaAqAc@eF_CiBcAaCmBuBsBiFgH{@qBqMi\\yLqYmDiJo@o@y@aB_@WWK{@IgCGo@GWKa@Ya@s@IYQoCMu@Yu@OW[]q@c@yGwCwCmAuBiAkBmAsBiBaDcDQA_HbCuCp@o@Jg@NoFnCuBn@gA\\cB^y@\\aCrAuBtAcAb@m@}FmAuOYgDAiDGgA[kDw@yJa@wBg@kBo@}AiAsBsAgBcD}Ce@_@yAaAuB}@wDsAoCyAeAs@gCuBoB}B_AyAiAwBSk@Ua@s@eCiBgJQsAm@}Cy@uCoA{CgO_]cI}Vm@yA{AeC_AoA_B}AeAy@kFaDcEiCeA{@oAyAq@eAkAiCsC{Gk@eAkA{AsEwFcG{IiBuCeBqBcXuXoCsCyIkIcb@y_@qBoBqCyB_BkAaB{@}@a@c_@mNqCaAuD}@oC]kAKU?uFg@mAU}@_@eQsK_Au@{@}@gAaBQ_@qBeF_@u@g@e@m@_@i@U_AMs@AkRf@gAEqASgA]{@a@eAy@k@s@Wc@iB}Du@_AaAi@}@U{NmA}@Qc@KsAk@eAw@eGgFgGcFeEyCaFkDiQgN_@_@{@_AoCuDwAsA{AeAe@WgCqAoBmAkUoPgJuGuNeKyDwBwKwFeLoGcD}AeG}BiSsHsC{@qLgEeIeDiIyCc_@kNsAc@{Aa@_B]mBY}CWiDKuB?qCL{L~@oCLkCRgFXcK|@qCNeGd@kDTk\\pAoBTcNbCuALeBF}BCuAG_Di@}C{@gJ_EsAq@cBkAiG_FcAo@yAo@}CmAsAs@sFwB_D}@oIsBGPuAYw@I{Eu@@UkLsA}BS}KsAeHcA_D[_BKwCWuAYqAa@yAy@gAy@yDyDaFeFeBuA_BeAeAi@cBq@aCo@wAU_CU{BG{A@oAFsARoCv@qB|@wGvD{@\\qA^mAPgADeB?sAOuA[kBq@_Bq@oCqAoGqCiHiCiIgC}@]_EwBeHyEwE_DsCcBaJuF}@g@u@]wCcAqCm@aFw@{\\{FiBe@{@]}Aq@gDcBgE}AwBm@{ZiF{VeEaAQmCs@iDu@uMaDyCm@cYqG{WeHsEgAiGcBmJoCmBw@iCsAsGsDwEoCqG_EaCeB_ByAgAoAoA}A}CkEkC{DyAsBuAaBqCkCyJaJ{EgFwAwA}@q@}AcAeEyBwDiBsFmCeFoBaTeKmDkBeAs@{@u@gAmAeJgM_C_DqC{D_C}CqB{Bk@{Aq@yAg@gBuAsGi@sB}AeF{EkMsBcFa@wAS_@g@gBYs@{AaHS_Ao@iBgAwBuCkDwEkF{CwCkD_DyB}B_D{DgBuCaDiGk@}@sA{AuDqDeFiFiJiK}HsJwMkQwCsDqHgHuGeGsAwAsEmFsUsYmB}BsDoDuDeDsSqPkTwO{CgCoBoBiEoFmBiCiAqAkBeBcCqBcEoDoDwCmIeHaFeE{PaNkBoAkBeAkCgAwE_BaEeBiDeBoAo@aBeAwAkAw@{@aAuAg@}@oIuRmNe\\{Vgk@eAgBy@eAmAiA}AiAgBy@eA]kAYuASmBOmC?mLTsAD_B@uCO}BWcB[mCy@_CcAmBgAuAeA{@s@cBeBoAaBsA}BeA}Bs@yBmB}HaDcN}@_DuJaY_AaDwC{McFkUgB{GqAeEiJcWcBeEwBoE_Wcg@_HwMqBsEsAwDeAsDu@uC_EaRuEaT}AsGmBoHaBkGy@_C_AsBoEmHsL_RgBiCsCmEMK_MwTaAmBk@w@cAeB_D_G_BsCaAqAm@u@{EwEqX{VwCsCwEiEiH_G_C{BeIqIuFuEwC_CkGkFkPwNcCgCoB{BsAuA{EmEuIyHoHcIyAcB_FiFoB_CgCsDyCkEoP{V_EgHwSs]cEqHmB_D{AqCgDgFkDsEwCmDaJ_JsAqAeVqVwLgMoGeHkB_BgAu@eCkA}Bm@uAQ}N}@gEc@qAU}@[mBaAuB_BkB}AeDiCqFoEyEwDqAmAq@s@i@s@w@oAe@eAm@eB{DwLcE{McBgFaBoFaDuJmCsIaB}EeAcCo@_Bo@cA}@mAkAmAiBiBsOqNePoOcRgQaCqBk@o@{EmEaAaAaMeLuQsP{DqDaFmE_UcRk@_@_FmCoWyL}G{CeI{DQGuDkBi@_@eA}@s@y@y@{Aa@aAgAeEoB{IaA_Dm@}AyAmCWg@]i@u@y@mCoB{@Y_CaAsJsCyDcAkBs@oB}@yCcBoCmB}AyAqAeAaAq@_DcBcOqHKXeJoEoC}AKQ_FeC{DaBkDaAiFoAmCe@aD_@gDScDI}BAwFN_EZ_Ix@sEj@uKlAkHv@eC^uEf@kCPyAB_CCwBSiBWqA]aBe@iBw@{BoAoA_AgBcBaAkAmAgBkA_CcA_D_@wAYoBWsBIcBgAS_BK}@AqAFuBPkBl@sCt@g@TaAr@W`@q@~AqCfJY|@MLaFtQmBfGiAdDaG~RyPhj@y@jDu@bE{CbNg@bBeAnC_AfBuBhDoUh^aH~KmRxY}AdCyCpEe@Z_@NGNyB|@oBn@iEfAyBh@eDf@I@EA[DiADwEI{Fk@yASmAQmDWaGO{BBqI`@aBDwG?}XDoBIgFg@gC_@S@aEy@_@Ge@OaCa@U?cAR{Aj@gAv@URe@n@sCrEWb@]`@}AvAy@f@_Br@wBz@_DdA_@HiBH}FEyFIsHYaBCkAGkCAw@By@H_ALgNbDoHhBqCp@u@LkAH}@?iAM_GkAyFqAoAScAKmAAkBTe@LmBnAmTbRk@f@eAv@_Al@qAl@gGvBoH`CyFnBkATaCZ_h@tE_j@xEuK~@aBTmJzB_O|DsEz@uTbD}@RsBj@wDpAiLhEsE`B_Bt@eHpEqH|E{RrOqLlKi@d@gClBgPtJoC|AcEbCsBzAkFjEcBjA{F|CmQxIwI`EyBzAmFfEgClBiDfCeF~D{DhEyF`GwA`AgAn@UT]b@k@fA}N|ZqEfKsApD{GhTgChI]dAYfAIn@MpAm@jJi@lGBtM@f@Fh@Nx@|CnKb@vAHb@@REL_IeBiDo@OIq@?k@Ds@Ps@d@qBdCaC~CkBlCsA`Bk@`AgCzEuDtGc@hASjAs@hFa@zBWt@eCvEoB`Do@l@gBlAoA~@_B~BiCdD}DjEmBbB}FxEmApAoB`C}G`LeAnAg@ZuGvDmDdCs@p@eBxBwDbFmFpHsGxISXaDhGeOrXiAtBgDbGu@~@{CnCsBjBeDzCkA~@yBvAIJk@\\{Af@}@RgC^iBTwAZe@RwAz@o@r@y@jAm@dAQJo@|@c@`@c@X}An@kFjBcUdIuLrE]V{GhGiBjBuEbEsArAaAnA_@p@qHtKmAjB}DzF_AxAcFfHiHhKkIzJwH|IyExFsCxDUh@[z@kCbJs@dBe@v@aB`C_@b@g@b@}ClBmF~C_FzC}@t@oEhEm@b@]LcARqDCsADs@Hm@PkBbAu@t@q@`AgArB_@l@iDhDgAx@[`@s@nAO\\]hA{A~DsCfGaAxB]`AaJl\\mGtToAxDmBbEgDtGcFpI_CdEg@xAiBtHuAtGk@vBk@nAyFfK]d@]`@wIlGyHnFaAt@sAr@}B~@s@\\s@f@kDxCeOfMqA|@a@f@sBzCwBtBiAxAeAdBe@lAs@vBoApC{@xAgCfFuA~B}@rAcD|DiChCu@n@yDtC_BhAgCnAwAl@uAp@}DrAqEhAuHzAqCb@oBFm@F{@P_Cr@_B^e@XcC`DmFtGqAhBu@x@mE|Do@v@}ApCkAnCcAlCW`A[zAKT_@^wFhCMHgEzD{DxCqAn@SFO@eBEe@?yAH{@LuBr@q@XgAVg@Hy@Fw@To@Zq@l@sAtAuA|@iBx@u@d@YTwB~BmEtD_BlBiCrFs@vA_@b@@Vo@rDOZyDlEyBxA_BMeABgAfAs@bA_ArCq@vCMXSx@m@rAQT_@\\q@d@]NcARcC\\eDn@q@DmDDmKEuEAoBWeB]uImBc@GIEy@Ic@AwDPUDg@XkBpAk@Ta@JSB[JSNSPWh@g@xAs@~AY`@_@Ve@Ns@Ny@DgB?eEBy@Eg@OiA_Ae@k@kAsB]s@{@_DG}AESGMKEY@c@VYPcAXc@P{ArA}@b@qD~@oErA}@Pw@?oGcAeEaAgGoAc@Ga@?aBJcFf@}@?m@KwBm@gBOy@Aa@Ba@N]V[f@iBvDe@r@]ReBX}@Bw@Qm@Uq@IY?e@JUNi@b@[f@oAp@a@Vy@XeAT]TO\\ARFTZj@@PCLSRc@Pc@BYEw@YiG_DYSSSgBuCO[M_@My@u@aHI]K[Wa@y@aA_As@wBoAiD}AqAWeBQ}Gc@g@Bc@DaB`@m@Ha@EWKWQU]Ke@EgAKs@Sa@MKWIk@EuBEkBOcCc@sCk@_BU{AWkD[yA?aCKyAAu@JcKrBk@Nm@ToBd@q@HeOo@aCEkADoBTy@ViEzBo@Vs@Pm@F[Ca@Gi@Qu@i@}AoB]QOCU@o@RYNm@h@q@x@QXc@b@[NUH}AByJUyHJuACsAM_Do@{Cu@wFmBaCi@_Ca@{Fg@oDWqGo@sBWy@CkABu@JmDn@y@HqAPyAd@sCfA{@`@_Cv@sCn@cCz@uAj@aAT_BBmBP]@mDYuAOg@K{@Eg@?YB}@L}EbAwB`@o@P_@Na@Fq@DY?mC]wD[YC]Qc@[kAeAa@WYKo@EkB?QC{E_Bw@Yu@]s@e@a@][_@_@mA_A{COw@KYYe@eA{Aa@w@OOqDgB[Mc@GQ@w@PoARi@P}@h@sAh@YTwArBmEzCc@LgADUJU^GZBPN^xApA`@l@|@nB^p@Tl@Hl@BrBAb@Id@W^s@f@_Bz@mBr@q@PaEn@aAZ}Az@a@Lg@FuAFe@CoBWuAIY@kLQmC@g@J{@OgAG_@Gm@Sk@Ow@CwAJ}@No@VaE`C_BlAYXgAfBm@l@]V}@\\i@A{KmA_AGWBe@LYRU\\OLYHoADWD[JaDbBeBfA@TGPSJS@KGuAOQIcAMWKe@k@OUUQQGQC]POROHe@Ho@AyBa@k@G[Dm@PSCMQOi@YyA[i@U]Qc@KWIKUIg@GgBa@a@U_@GW?QEMOu@mC[g@i@gAa@g@o@m@_@i@_@][OQUc@aAU]e@m@u@iAuBsAgBa@gB_@_@UiAmA[Yy@k@KAc@?wAU]BOLKXMfAOVOF{@C{@P[?OMCM?g@LoB\\iAn@qAZa@p@c@^OVQRwAEMKCMN[r@_@R}@X_A^UNWZ]l@_@|@[fAKdAy@pBk@fCOxBi@`CIhAGd@ENa@~@Oh@D\\JRjA`BHXCVUXgA|@y@~@M^Iz@ShC_@rAgFfO}BfFYn@gB|Cy@hAUToFpDw@VeB\\aBf@a@D_BA_@H{@`@eAr@oDlCwC~A{GjDm@T}@d@i@h@_@v@_ApCa@dAQ\\a@`@]L_B@_DZuCb@}Bz@g@f@QTK\\I`AuBtEEZ@z@Cj@Y`BKx@Df@Tl@^v@D`@C`@o@zAMP}@NaAZqANMH[r@[t@ILODo@BUJYZe@Le@JeAh@e@H}AOm@ISB[RORw@p@yA~@a@`A]^cAp@u@fAI\\BpAmA~FUr@_@j@YXc@Ts@Ny@B{@E[Iw@c@g@e@s@oAu@uBEc@D}@FY@g@Oc@Ua@Ow@G]MQc@Q_@CaADYEYWo@qAM]Ii@C}AGGO?INQrAShA_AzBe@x@}@dA}@t@u@b@s@l@GLa@~AeAnCKr@Ir@Op@sA`EMz@?FFv@Bn@AXSrA@t@R|@@bAE`B@nAT|B`@nCJ\\j@nA^rABd@FNEf@cA`GWxBGRSzBCdA@b@Jv@J^`@|Cf@dCl@xAh@lAF\\APEPQ\\o@t@QPULo@VOVaAbG_AzHMnAA`ABl@f@fEGZQRc@XOXYpCKTgAl@a@`@g@t@sAlEKn@HvBCrAKn@KVgEbFeBrAYb@Gd@ChACRKXSNeAZe@VcCjBgAf@s@TcARcAXiAp@eCfBMN_@pAw@fAMV]tAQdAAh@Dj@A\\KR{AbAcAfAs@h@y@`@wA`@iCd@s@Bo@EaFy@aAEa@AoEp@k@BkAGq@@[B_@HgCjAw@f@m@h@UZ_@bASRMHODm@DcCK{@OmBk@e@E]@]ROPa@hAYx@_@d@WP[Nc@HeAHwAD_ER_ACq@EQ@ODYTMRoAvCQ`@UVq@^sDhAg@Va@`@a@h@yDzFQNQHiGf@WHeAfBsCtFk@f@QFiA?m@H_@PiApAu@`Ak@h@WLsBd@sAVuAP]LsAt@q@l@w@^aATc@Py@b@s@f@sAdAy@~@_@t@K\\OzA?jAHhAR~Af@pB@XIVQ^kAjAgBfAkE`CsCnAsAx@cAhAyDbGkApBSTmBfA}@r@[f@K^oArJQjBCr@BzCDnAZfEBpAGzAMdBIf@m@xCk@bDOlAm@|BEX?bAR~ACXGT[VuBfAWHi@Hc@BgB?o@TaAf@IHIRAd@BTVdADd@K^KJWBwA?cAF_@AcAO{Ag@{@[S?QJYZs@|@yGtGmCzCIFKPi@RmCb@OCmDb@wATs@TYLgDx@aAHg@DYHUPITEt@Uh@e@hAQn@E`@Ch@PvALXVd@N~@NdBP`@\\j@FXCd@c@lAYb@_@Vk@Lm@Bu@Nk@X_@XMTIZ@r@H`@TVvA`AJLHXN~@Ev@YrA[j@kA~@e@\\UZQ`@Sr@@TFRXXd@XJRFXEv@Gj@?`@N`@\\f@P`@Lj@Jh@X`@|@`Ad@~@^`ALh@?Te@xEGT_@t@i@d@w@`@_Bd@q@NWJq@f@wA|@kDrBw@h@_@Zo@~@c@~@Cn@B~BLn@P`@nBrCV^L^Dn@PdARVTPzAp@j@Lv@F^JPH`@\\nA|AH\\@b@G\\M\\SXiCzB{@j@kAd@WR}@|@g@XyB`Aq@h@sAvAE^HXr@l@hCpBRRNTR|@NpAPh@XVRH\\Av@UL@DJCJ_@\\KLIh@Cd@KVILo@^}CzAKNAVHZb@`A@NE`@g@|AMZSPY@c@CuC]s@@QDMLGZ?TZvCl@`DPhCHpBVbEDhBCd@Od@MTCLQHWTs@Zk@Nq@JgAF{Et@aI`Ac@Rg@^mAl@kA`AIPGZYt@?LH\\P^Dx@?n@I\\WVMHQXUzAMZIHKFg@JOJCPHn@N`@`@~@BLAb@QZa@b@MZCd@Ev@Oh@i@`Aa@j@a@d@YPYFkDA}@HiBZaEdAg@@_AEuAKYDWVIXBt@RpARd@XTxBbAXTJX?RETaAfC[p@a@\\}A|@[x@OTSHKJGP@PFNh@PZDX?p@W^Mb@Cb@?Z?vD`@rEj@dDV|@Jp@DhADv@NpAh@ZRFPA\\aAtC?XLRPFh@DtAf@bAf@\\\\FTHn@Ez@EZWt@ORgAdAKX@XNd@Xd@xAjBPj@BZEZMVoAnAo@`B[pAEj@ExAE`@c@nAU^QLWBMAm@[sAy@QAONEHAb@Jp@JVZd@J`@ATKXYd@YZM`@Ej@@zAIhAJhACd@IT[Rm@Lu@Bm@?sJtAkDb@SLSZEZBl@XzB?h@AT_@bAkBfDO`@_@~AEf@AnAPfEJ~@\\~ATn@PXb@`@^R~@Hz@GfBa@`BQzAGf@Dx@Tn@V`Aj@z@r@\\`@HXDj@Gx@[|@OZ{@t@o@^}BfAa@VkBbBwAzAiGpFuBxA[^O`@Mv@GjGAjAAPGTUXgB~AmEhD_AbA[`AMx@Gv@G~AGxCIlA@PNx@Hv@DxAE~@CZ^fBXz@`CrERVhAz@h@`@RXJ\\n@vDr@jEHTNN\\H\\Bt@AdBKl@Bd@LTZDV?HW|BMhCQfAU|@k@rA]bAQ~@Ed@IdDJpB@n@ChBPvF?lASbCAf@Bx@?hAJnAC|@SdBMb@Kv@Gv@CnFRzBVr@dBdC~BlCdBnCnApBJXAZc@z@k@hBEl@@^RlAFbA@lBKrByBnPKnAAbAHz@LTnAd@d@d@dAxBV~@Dh@KtDRxHH`@`@x@Vz@LjABr@Ij@Ul@Y`@c@XMD_@?sHeA{Cc@[Mk@Y]Uc@c@[KMAiBBa@EaCs@eCw@gAU_E[eB_@aA[oBgAe@UiI{BsD{@eEyAgH_DSBeBbAqA`AiAbAqAdB_@V[F_@?m@EcE}@qAOsA_@}A{@]_@y@sAs@i@_Am@o@k@k@YcCYaE{@eC]e@Ky@Ia@FMFmAjAe@~@YhAEjBFrBAf@IZy@hCU~@QZYRcCl@q@Xe@^w@x@_@n@ELCl@Ff@Rj@p@|@NX^`B@l@Id@W`@eAv@q@`Aq@zAO`@aB~F@XLZr@z@hBzAXb@L\\BTA`@G\\Q^w@h@_@XQTu@`BKZAb@HXX^r@n@p@d@TZTn@DTBXAf@YhAqA|Cc@b@MHWDoBNqDNi@HQF_FxD_BxAUZ_@dAIz@@`ANjAf@|Bl@nBVf@TZhA`Ad@n@d@`Ad@h@bBx@p@PbBJtADh@Hz@Rr@TTJt@~@xApC\\|@Hl@G`@Sb@eAnA[RYLe@Hg@DyCBYBSJIJKf@EvAi@`Cu@bB@z@T`A@t@WfCm@xA]`@s@\\a@BWAiAS}@I[Ds@b@]`@G`@@d@LVt@p@R^|@nDb@pBj@pBBp@?XKnAB`@BPhBnFLl@?z@ARMf@o@x@kApA{@lA[Rw@L_IVoCDiBCwJ]sJ_@}AU_AAg@@{ATwCn@}@TUHm@b@c@n@Yt@I`@GdAXdLZrDBbAEpB_@dG[nBa@`Ba@l@WPaDfB{AlAUFe@AoAi@a@CUD[Tu@r@cAz@}DrB_Br@oAX_@DgHIkBIoE_@wJ[{@?sBFc@Aw@M{Aa@kAO{@@u@NaDdAuATwK`@y@AcBMcCe@{@SaBY_Ge@kHYqCAwCFw@AeDUiCAsAJkEt@{BVyFRaGH}@H{C|@e@Fk@?cBKo@BgEl@]HaDpBkAh@W@cARNhAJNpAxJ^bE@VO~BYdBu@bGCt@H~@\\xAb@jA`E|IbCpGPp@J~@An@Kz@@R[~CAXBTNZTLl@JNJV`@T~@Dp@E\\Y`A?jAD|@GrAKv@oBjIC`@Lz@Vz@f@lAp@vB\\hAr@~AXd@~AhBfC~DfAtBx@tB\\jA^~CDj@?z@MhF@jBb@fERj@Xp@h@tCLf@Z~@zArCRbAPfBNd@v@xAfAzAr@z@h@~@F\\FbELtBThAAd@UtABZJX|@lAp@lAb@vATbAXbCFt@ZrFd@|CVfAJt@r@xCt@|D^zFXlF\\fERfCHlCHvEJbCj@hHXdDPpADj@B|@Ap@Ex@UjBc@vBCp@@f@ZvBhAdFNvAF`OC`CCv@OtA_@hB}A|FkAfEi@pAo@rAe@l@k@f@u@b@sAZkJpBcGv@qBRyFb@uAXy@V_@Rs@p@WZcBxCgBpDu@dAsCbDsDfFkAnBg@jAe@fBu@jDQvAa@rEYpI?nBC`ABlBv@`KRzCTtCRxJGbDk@fGS~AUzCK|AIx@U~@kCpISz@El@EdA@vDDhAHvAP|Af@rHR`CJnCCh@WvC@t@Hv@~@vGn@jDNdB~@xUJfFHjAlBhK|@nEDf@Bh@AlAUzA_@`CWjAoHda@_AzEyB|LOn@[n@}A~B{AtCqBhE{On]{@dCi@pBaAzEe@fBY|@q@hAyAtAw@z@w@lAg@jBSnBG`BB~@RpAf@zBbBrFz@nCT~@T|AF|@AbBIjAo@tDwAlHYpB?NKHMC}@DHDe@Jq@ACHoA`@wAh@{KtDgDrA{VvK{@f@cCjBqAnAmEfDqC`CmDjDwF`GmElF_Ar@}DrB{GbEiBjAkDjB{BtAk@l@QTyA~Cg@|@o@`A[VeCrA{@v@aAtAsBvDMNARi@j@aAv@e@VGNMDuAvBUf@Uv@Kl@OnBq@fGg@dNOfB_@rAUp@e@~@gClEs@~Aa@fAMx@A^Bx@R`BHb@Pf@p@tAbF|Hj@`AXn@ZrAPxA@dA?`@Gl@[~BUjA{AbGi@dBQ|@Gx@DvBNdF@dAYzMCvADlND`CL`BR~@h@|AxCdI\\fAv@jDt@tD~@~DrArFn@nCjD`TtIjl@d@rChKv_@lEzO|@dD`AbD`EnOdErOv@jDLz@JlABzBGzAM~A_ApImB|OkA|Jm@bDqDfPeAdF_ApDeAjFmA`F[dBcAnEqBhKUvBEbCTrMJjF@jAXbJHjF@jAGbBWpBElAF`Ab@tDZfBlA`J~@~Hv@~FTfBLdBa@~SKpIEbAMrMB`AFbAH~@h@hH`@nF?t@EvAOtCMpDi@rIYvEMl@eEhK}AnDgD~HmAnCmA~C_BnDaArBoBvEoAnCwBjEuAtDiAxCUtA?fAHbAT~BB`BAx@Gd@kAtGc@dDWbAg@`A[d@_A`AoCtBo@n@g@v@m@tBiDfMsAxEuBvHMt@IpAQlJStFeClg@OpDS|BYnBwBnKmIfVcA`DYnAG`A@NEJf@vD@l@?~BYdFs@|Jg@`Ii@tHm@nJa@tFgBfWCxB?xEJzWCpILDBRENMDQCEIgAJ{@Cih@jA{HLOJk@h@{PbRwMdOk`@za@i@\\aAVuAPmAD}@?qIQcC?u@Dm@J_@L]P{@l@gB`AyP~LoJdIyAhA_Aj@c@ToAv@mAh@cE|AeIrCgDhAqFpA{MbDs@J}DRkCb@yCx@uDjAeEjAuGvBc@R}DhC{Av@mIlDaG|BoAt@UTQ^e@lBK`AIlDJJANKFC?{Ito@sCnPoAzH{BzLaBvIuBlLcApGK`@[h@}D~Dw@dA}@|AYlAKdA?l@J`AXvAbBpG|E`UNnALdDCp@Gd@]vA_@v@eApB_@pAGj@Cz@PtFThElAzEx@~CXzAJx@b@xIf@|Gj@fE`AjGbAbHBVlDbTj@bDdDpOf@vBv@|CLv@FvCCv@uAnPUjAQl@Wl@oAzM_AnHGtCDnB\\zEf@tD`@|C@bABtBBRRp@qSHuGJoABBWqAFmB?sDV{B`@uA`@}Aj@mAp@oA|@w@r@sR`TwAzAyAbAy@b@cCz@sA^_ANeIj@cHr@cARi@NmDlAsAl@oNxJoF|DaBbAmA|@yHbEcHhEwH|EuA`AkBhB_BjBeAz@s@d@qCnAsDvAc@LwB~@aJbGg@PuAjAsNtJuBrAwGrE{A~@sDfC]XmApA}@xAwHbOmA|BYn@aLzT{DlHcBnDiWtg@}AbD}@tBaEhIuJhR{@`BiAnCg@jB_ApDw@tBkA`CcApBiBbE_AjCg@fBs@hD[lCShEW~Du@rIMnAa@vCq@xCu@bCmBpFcBlEcAzCqCpH{@nCsOdb@uAdEaChGqCzHw@dCcGvVk@vBo@vCq@hCe@lASb@s@dAmBxB_EzDkG~GMA_GtG{QfSiEtEiC~CiAbBmBxDcAzBmKbUiAfBeEpIaEzIgAxBg@r@g@f@u@`@w@Vm@HeA@qBWyFiAiDq@mLuBgGoAgK}BcGwAmLcCmBWcG_@q[_BiMiAqASuAKwC_@ca@qDeBOgEa@}@EeFc@yIcAeEm@cASqA[gWaDqFw@cQ}BuJeBiQmDk@CaHkA_FeAyBs@mEkBaDyAwD}AmF_CuAi@mD_AyA[iB]}CWuCMkEFwPf@_RJeDBmAC_CQsAEuBF_BNaRtDcAH}NJaBHgARm@P_Cz@q@N}@HaBAyAKuDBsEIgAB{ALe@HqSfFcFpAmBPcBAi@EqAUmAa@{@g@YS_A{@gAwA}BcDiJcMk@m@y@o@kAg@qLaEoEiBcB[m@G_BGqDEyD?uFWgMc@yCE_CKkAQc@KaDiAgBa@cAIy@AyKLu@AwAQ_WoEaDe@oEu@wImBmJ_CkAQwBKaA?uRx@s@@yKUkABcBPqFx@uC\\qCd@{Dr@oGbAiCVeHZ{CHeDRcAJKJiIv@gKx@yARg@?c@DPzCl@zGh@lFPjCVnGH|DGhEy@pYiAtd@KlFFvZDdBFbAj@rGJlBAbCS`I?rFTnQLvBLpA~AbK^bEJbCD|A?fDKvD[xJQfFMhCQxA[`BW|@{BrGqGtSoIhWcCzHiClKc@rCMfAYdDw@nIq@bJQjCAlA@lAFpA^zEbBfRr@fGzC|M`@`CThBX|CLbCPpJCb@?pEHnDR~BfApJJ|A@jB?x@EbAS~AQlAe@bBg@rAq@rAk@`AuYja@yG~JgA~AmFhH{@xAc@dA[bA[~AMrACfABfBf@bGnBpTX`E@tAIjBWnBYhAk@~AQ^mAjBqBlBeAhA}@rAa@v@g@vA{@jDiCzKu@nCqFpUcB~HmCrK_FbUi@zBaCbJ{@rCaC~Ie@jB_DdLaDrKq@|Bc@pBa@pBgClJqApF_@jCuAdOe@vDsEl[@x@A^q@zFiAbFe@|AaBlEk@Ia@G{JoCeA]UMkFoB}Ag@uBg@wAOY?kBDqDXmRfBcDZcHj@uI|@iE`@mDT_Ht@mBPmBJkJb@uE\\W@eEb@eB`@wCx@e@ReBb@y@J{@HwEj@SFo@FkBBsEXsDX]HyDXe@C}CT{@DmBB{CT_D^kE`@eCJeGNgA@m@_LA_@QGGQBSLKMmAUqB_@{DQ{CMQoAeQsH`A_Fn@MFIE}Gv@gLxAcD^gC`@OBaAJgFx@_CVoAZ}Ex@wDt@sCXKI?OBCeBiIEGqACgENqDTcCXSE}@]qAUs@TeB^TbAwBXwAN', '2025-10-10 08:19:17', '2025-10-10 08:19:17'),
(10, 2, 'taxi', 19.15822180, 73.11572157, 29.32186013, 73.90092283, 'Casa Urbano Q 606, Downtown,Palava phase, 2, Antarli, Maharashtra 421204, India', 'Casa Urbano Q 606', '150, near Tagore College, RHB Colony, Suratgarh, Rajasthan 335804, India', '150', NULL, NULL, NULL, NULL, NULL, NULL, 1347685.00, 1492.70, 'wy|sBglg}LCjGBTkFv@}@J_BHoEl@cCf@WHqB^uDj@yXEsCBwBACNkDjDcChCORwE`FCNIHM?qAhAsE~Ee@Vq@NmBXyBf@~F|[d@rCpB~JpAzH|D`TlAnHBX@xAAdDI|BEfKOtPIpAyBpQg@nFnEfE|GnHlBdBpBtBjGjHpBtBlGdGrDjD|@v@bC|Bz@hAR`@hClI\\t@jAdB|DrFpHxKzHfL~BpDpBrCdAxAz@fAbA~AnCtDjCbEzMnSbDvEdCvDlGzIdCxD`BnCdBhCzArB|CxDnAxAfGtGxAfB|AdBd@l@LDDNILC@YbAoCpHkAnCwAnCgB~Cc@h@}BxBgDnCmBjBmB~BkHnKkCbEoAbCcA`Bm@l@c@Z{Az@cLdFkH|EwB`BiE|BgElBsGjCiBv@]^MROh@oAdI_@lCgAjEc@rBARqAjEYjAM`ACl@a@~BQ|@]bAc@`A{@zAi@l@m@^kARy@D_CIcCB}CDaAAyBWwCa@wBo@kD_AgAa@yAU{@Au@He@NaAr@QTMZIf@BfAHn@nAvEFf@@ZKdA_@bA{@zAWXSLuCv@wHrByAZe@@_AKgDu@oXsGcGoBuD{@aA]e@?W@mAVyDh@i@PYNUT[R_@Lm@D_AC}Eo@uEYkB]_Cu@y@KeCIuBOiHeA{DmA}CiAqEaCwCsAwA_@mDi@qCWo@O_Ai@qAw@[Kc@Ee@@cCb@k@RsAz@kNpKmFzDsDrCaBjAiBbAeAd@q@NgDf@}IvB}FfBy@ZeCnBw@z@o@|@oAvAgCdDiEnFsBpCI~@@XLRz@z@rEnE~CdD\\j@Jh@@d@A|AFpBN`BBRVh@Zh@?Rb@j@hDhDb@^jApApBxC~@tBXbAFhABz@X~AJpAPdDBl@JdACxAk@dHuCd\\uCh\\e@|EMnBUvBOpBqClZHh@OrBgApLOtBGpC@hAyCHa@Ri@[YMiBUe@CwCc@oAIqBKy@K]SKIkAQk@@cBIaEDu@B_DVkAHoDNSEaNz@yBN_k@`D{Kr@gBFsAD}VtAuIl@mBJeDEcDQyE]eACkGByAA_KNs@DqAV{@ZuE`CwFpDqHtDqDhA}EtAeOlEmBf@oDhA{A`@uAb@}Ab@_Cx@{EtA_P|EkEjAqC`AyJ|CaCx@aBh@{@\\[@oFdCaFdC}AjAu@v@sAdB{CfESZALmFxG{AvBs@z@{AvAkFnEcAr@aFvDqDdDO@mC~AsAt@qAl@iC`A{Af@_Br@o@d@g@h@]d@Yh@iB|EALm@p@o@dA[v@Kh@Gp@YnFeAvPu@vJ{A|UQvAc@nA{ApC_B~BwAhBIVEZA`AR`BN^X`@l@X|@Zz@j@TX`@fAb@~AFj@?n@Kx@[|@o@lAG`@?z@Z`Dz@bHXt@TRh@NV@rAIz@@|LpAx@F~B@^L\\ZXj@V|@@v@Ib@s@|AmA`Co@~AG`@@p@DXfBzHvAfHJX~B~Eh@tA`@x@RXbAx@NRJ\\Cr@SjAcAvD]nB@f@Fj@FVXr@NXf@d@lGhFvChCpChCjG~EvAnAh@p@Pd@Hd@?r@Kf@M\\MRQPw@h@cCpA_GnCsAj@q@RqALsALe@NeAf@kAp@sD~AgAp@q@t@cAdBaA~A[^{ArAaBlBy@tAa@z@k@|@oB~BoBnBo@f@qCnB_BrAw@nASTyAjCMh@?d@FZT\\ZNb@DZIRKPYJ_@Ak@M_AAY[e@eAaA{@c@iA_@aAMoYoAsDKuGa@eEe@_Fw@uDy@uD_AmBWqAEiABiBRmAZcD`BuCxAyErC{ZtP[ToCrAkBt@{Ab@cB\\kEd@mMjBoCRyA@qBAcISeBDsAHkAV}Ah@sAv@oA~@_@^wI~Ky@r@{@j@yBx@wI~B{@XcIxD{@d@kA^u@PsBXyAFk@?kBUcBe@yC}@qCcAoBk@aHiCeDeAm@OaBWkBGiBFw@JeBb@y@^m@^yAjA{DhC_Af@qBn@yBp@cD|@wNhEoDz@sBj@wA\\m@H}@FwABs@C_AIa@MsAg@oIcCeCm@yBg@oEoAoDq@aBWyAYiBU_ACkABeAJaFdAsBf@_Et@eCXuFRqQ\\{D@oCEyAMiBYgAW_Bg@mKmDeNcEuAe@qAYeAQgAM}AIqFC_b@FgO@}AKu@GgAUaBg@u@]gBaAaDoBk@WoBs@w@QoBW_BKuA?sBNmAP_B`@k@PoAn@{A~@y@p@cJtIoOlNaAbA}AlBqFpIuKvQ}ApCwAvB]`@cAx@gAj@gBn@yFzAyErAuHzAoBb@mGvAkBn@}Az@mAhAMNw@fA}AnCy@|AiB`D}@bAm@d@gB`AeA^iGhByInCsGtB_QbFiB\\qAJcABeAG{Ca@kHmAmBO}BE{BFuBTsB^{Bn@yCnAwBdAiAn@eN|GeAb@aB\\kAJuA@gAIm@Kw@Ui@Sw@e@qBeBoC}CgFoFi@c@q@c@gAi@y`@qPyDeB}Ao@wFcDwB}@wHwEqGoD}Ao@gA]{@S}HgAyQ{ByPeBuBWcEo@wRiDq@QiCgA_EkBcA]mASqAIsCBkCDoBAu@Eq@IoBg@kBm@cA_@yAw@s@g@mAkAkDuD{CsDkCeCcCsBmE_DmBmAgCeAeAYiImBqGyA_FcAaBg@yAs@iBiAsGiFsCoBmAaAcGqEoFgESWcCmBuBwBkB{BaEyEuCuDeAkA_@k@uFaHa@e@eAy@oJuFoEyCqDyBaBcA}@s@_AoAs@qA_@qAYcBy@sFYkAc@mAmFyKiC_F{AiBwG}Fw@k@m@a@}Ak@y@Se@GuAEiADyLrAwGz@_NdA}BAiDOuGc@gAEgAD{ATgAVqFrAkAL}ADgB?sHIwFJiDBqBFeJ?aODaNRyMJeDC_GU}Ik@mNs@wKi@[CmBCwAFsDf@gb@rHqF|@eIzAyA\\iC^oNhCiBRgCRoBFqC?iOMse@QcFEiAGmCWsF_AgFaAqo@mM{AW{AMsA?iAH_AP}Bt@uInDuBn@eC^ye@~EkHt@mAP}A`@wJdDmBb@}APuABoACyBSkDk@}A_@}By@uD}A{@WgAQ{@Au@Dy@RgAb@}BnAyB`A_AT}@Ly@B{AC}@KcASe@MaPcGkBe@eC_@_CIaFCwM@mOAaECeH?kBFaANi@LmBr@mCvAuQvKcK`Gq@^{@^{A`@aBPcBBcACaAK{@UcA]kAi@w@g@}DiD{ByBuBaCkBeBwAmAS@aCeBcB_AmBe@k@IyBKkEGaAIQIqg@]qGEkBC_E?{@BiBPqAXgA`@iAn@aAp@gLfKkKzJkH~GkDfDsAjAeBbB{@n@kAp@iAb@_ATu@JiCJaLFiFF{EBaLLaHF{HH}HAeTRwEJ}PLaNLqD?y@C_AImAWaC}@{BqAgBmAeAw@uCgBo@c@mB}@eA[g@Ms@IeCMkQc@uIU_COoDc@}@OeBe@mBm@qCgAsDqAg@KqBSwBBgAJa@Hw@T}DjByCbAoARkBLmCAOCae@q@gBMmAUkBo@wA{@eAeAm@u@k@{@e@qAQm@[aB}@cHq@yGKmAYwJQcBe@uB]oAqAiFw@oEoEc]Ig@_@qAs@aBi@aAiA}AwA}Ai@g@{@eAwDuFmCiD}@cAsEqG}AmCwAmBu@y@gA}@WOy@_@wAc@{@Qy@GkA?u@DwAVqAb@mAl@}C~A{@f@g@^kAlAgEdGqAvAiBxAwGtEmJxGqD`CiFvDsApA{CtD{JzMiDlEsCdDkDlDeK|JgAjA}BvBsB|AsAp@yAd@aB\\qDd@cD^oBJkINoCJyPX_LFoB?uBEsFDsNd@mLn@sDZwDJwIZkTdAmBF}H@}@GsADyALsHpA_N|@uHr@aHj@qCXkBLaAB_AXcLV_EFeDOyUw@mABg@@qBZqD~@wDbA}B`@uEd@w@LoGb@}MRy@P_LTcCEi@CiAKoDe@gAGaBHaEh@u@@w@Eu@Qu@[_@Yi@k@{@uAUo@Mm@Ek@DeGGiAUqAcA_F]uCQ_Aa@gASa@k@u@eA{@mKaGc@O}CgBkA}@kAmAoA{AgBaCqH_McAoAs@q@cEoDiFeFkDkDm@e@iAo@kD_Bq@i@[[k@iA[eAk@gCGUa@u@gCiD_NcQ{@y@{@c@gA]w@McHq@yA]kAc@qA{@oAuA]o@g@sA[sAI{@C_BN_Df@gF?y@McA]{@qCeEkA_B_D}D}@aAgBiCyByD{AuCy@kAaAeAkA_Ao@]aK_FyB{@}Cu@kHcByEkAcGoAu@KqAEoEJ}DVmDf@gIrAoP~Bs^hGcC\\eCVkH\\mBH{F`@cL|@eHt@qAXkF~AeEtAyAVkIv@oDV{CDwL]_FO{@?yBLyMnAwHl@mGr@_It@{@P{Hr@mBBgRUkIMgB@gBPaDd@mAHmA?cCO}@Q{Co@eAKqA?mAPoBb@cDt@kDr@gJ|BcHpByJxB{AXi@LaANmHzAgFjAcBTaBHcDFwEByFLcAF_BXwEr@_BP_MlB_I`A_AFuBDaBE_AIwCa@eJgBc@G_@Ak@DaAV}FhBa@RaLpDq_@tL_GrBq@RyFpAuBZ{BVqJvAcCVwCTo_@zAwE?eCM{FcAeZqFuBW}BK{B@kBLyAPaNhBuFt@wG`AaWbDmCPsRz@eCFgVhAsJZiNp@mVdAcPp@sSt@iBLuBXkAVuCv@mA`@kHtB}Bt@uF~AmQzFgLrD}NtE{A\\yBP{A?yBUoYoDuL}AsHaAwDi@_PsB{G}@oD_@oBYcAIoCKeA@mBNuBb@aIpBgHlBoG`BaLxC}FtA}OtBmSjC_[`EuEd@sXnDu@LkOrBaW~CiH~@}Cj@{j@jHmOjB{D^cQzB{Cl@iEh@uJtAqMbBuBTeLr@geAzGuFNkVxAeAJmv@~EqET_PfA}Lv@yF`@yBLqAN}CHsA@sACkDUiAMyAWu]}I_UcGeLoCgCc@oC]yGc@oDEuTQuEAeSIi^U_N?uQYmEOw@DmF]iH_@OJcI[kBA{DNoC\\iARgEfAkB^oATwALOEEEoBNeDF_IBuBEqDUwH_Aw@CeABeBRaAX}CzAaDtAuA^a@HuBRcAPwCx@yF~BgAf@mAt@s@X}@v@yDpDmGjGkBzA}EjDkAp@wBfAsI|D}B~@_^~Lw@b@mA`A}F~FgClCeM`My@r@aAt@gVhPQPaHnEgGxD}AfAk@VePjKiJzFs@Z}@ZcBXwLtAkFp@{@FaFn@eKfAsI`AoDf@s@F{EZyP|As@B[F{FE_KQcX_@wAB_CLi@Fq@Re@Tg@^o@t@aD~Gk@zA}InSk@~@cAfAs@l@eAl@mAd@oB`@_BTiBDoDIkI[sACiOk@iOa@iDM_LQaFOcFOaFOuLi@sHU_HW{LWiIa@wL_@oMc@_@ByGDsCDcHDmV^mB@iCBeCGmPy@aBMwTgAgI_@aDWcNwAmDYaVoBmD]aEg@e@Kq@Q{BaAkCmAiTyK{AcAwVmSoBcBo@g@kDyCaHwFcTyPaAaAsEuD{BcBeBcA[McBc@mAMgACsNT{DPuINkFB_EFuBCuIYmGWgDQgGSeD?_CCmE[mHq@qD]{Im@ePuAcAK}WsBeM_AoKcAkOqA{@E_Iu@sBQiFo@eNkB}AMqOwBsBQmGYaDIgCW}AK_BW}Ag@kAo@wAmAsLcMeCeCy@m@{@a@cA]w@O}@IoBC{@LgCr@iDdA_KlCgFnA_BViBL}A@}AIuAUoA[wAk@g@WiAy@_BuAgKyJuDuD}JgJ_D}CkL}KiNeNcHyGsAcAoBgA}EmByDyAiAUs@IsACe@@wBXoAd@kAp@mHtEu{@li@iDzBmDnB_EfCqHnEcBfAgAb@aAReAFw@@{Fa@_McA{E]sBScCa@sHmBgDu@eGaAeEo@mG}AgIcBeZcGkCc@aLaAcAOqA_@}Bw@{A[oBM{Qa@kB@uHTmCReANaATgBp@{Ax@e@ZsB|@eAXiAJcA?w@IkAS_AYyEmDoAaA{DqC]Sq@[{@Y{@ScAMa@A[He@AaAFmALwA\\_Bh@sLbDuB`@iA?eMYwA?}@EwAO{G]oVeBcJc@kL_AuQ_AkLm@mOoA_MgAcIk@}Iw@oZkBoAAwDNsA?{AM{@O{@Sm@QeBw@}AiAsS}OeHoFcPiMma@c[gEmDq@g@a@Q{GaFeDyBs@_@w@W_AQwAIaBAyD?iEEkFi@cBYeBg@}Aq@cAm@cCeAu@a@qAeAqAoAi@s@uGyJw@}@eAw@w@e@qAe@kOkD{D}@gCw@yKmC{DiAyIoBg@IoAIs@AeBJqAT_I`BuFfAi@PeAJ}@A{AUoIgB}HsB_NeDkAc@iAq@y@o@_AeAyGaLW_@{@}AuHgM_GoJcAyA{HaMiC}DmAsA{EeE{@m@}A}@_Bm@mA[oB[qBMw_@aAgCIaAMgAW}Ak@_F_C{EiCmAq@}@_@}@Uu@KiAGeAD{@JqAZmAh@cIlFkCjB{Az@u@Z}A^}NxBqEt@iA^_ANkB\\uNnBuC^cC^yH|@gn@xIcALyCRqADaCA_\\}AwZoAgI[aPm@aDJQBmBNeSpDyEx@oKnBiCh@{I`ByEv@o\\xGoKxBaAPoBNm@BaBA}AK{AUgAUoBi@iBw@wBuAmAgAkAsAiNaTgBgCcBsCmFmI_GyI}@{@e@[iAk@yCw@cCi@kCa@yBO}HSuBF{CXBRsL|AEO_Gr@iUdCeJfAsCVeANiBZ_JlAuCb@kEn@yBNmB@{BIgBQwDi@}FmAgGyAcHoAyASgBKwBBaBRmT~EsD`AcJnB_Dh@mCf@uEr@Q\\qS~C}Dp@sANSWkH`AcIfAoAZaAb@cAp@iAnAcDdF}DbGaBxAqAr@cA\\}ATsADyAKeF{@qCg@uAMwB?oAHu@HmCn@_P`EiCl@WAqLpCeCf@aBLw@@yAMeIqAyDq@qG{@qEc@yAAsAJiEbA{@Ly@D{AEm@IiA[w@_@eAy@u@_Ae@}@wBiF_B}DwDiJqAiDw@iCgBsEeEsIqB}DQUmGeMq@iAu@}@uAuAy@o@yIcJoBeBsReSeIyIsCqDqB{BiJoL{F{HYi@_G_Qi@eAmDsEy@{A_@_AyBwHYy@iB}CiBsCWk@g@aBOiAi@wCm@}B{@qB_L}Va@eAqBuEmCcFoGmNm@oAwCcEuAiBkAeBuAmC}AiDgBcE}A_Ek@uBWyAQ}As@eJGoB?kCHsECuAQ{AOs@oAcDaA{BwF}N_AyCoAcFkB{IYw@MYkAgBw@u@_@YmBy@mAc@oGgCwEiB{BeAeAs@eAcAe@o@oAyBu@kA{@{AeEqJmE_Iy@oAe@i@oAcAWQsAo@iFcB{@ScRgGwDmAsG{BiCcA_Bi@sAi@uPeImEwB{G_DcG_DaAm@mCsBw@u@uBaC}@mA{AcC{@eBa@aAcAqC_GsWaBiGw@}AgAcBcAoAmAgAaGcEyJyG_@]oC}AqJyEkCcBiM_JsSwMsE_C}@[aDs@kQqDkJwA_Di@aLeCqBi@_QcEeG}A{Bq@gBs@aDo@_PgCuCg@qHmAeJyAgBa@eEs@aLeBsFo@}Gq@yAKoEc@mMcBwRuCoA]{Am@gMkHwIgFkCyAcCyAmFmCgA]kASqAEcIR{EVuNjA_CZqOzCaDf@qBPiAFgFJ{AHoQZsBFsAR_@FwAj@wErB_D~AeA\\yAZw@FeAAoHS}AB{BPoSpCcD\\oBZaD`@wKvA}BVuEp@gI`AgQzBsV|C}JpAkC`@{Hz@eAFkAAwHe@oAAuTVaILwEIaW?eTLkHJqAFmB?sDV{B`@uA`@}Aj@mAp@oA|@w@r@sR`TwAzAyAbAy@b@cCz@sA^_ANeIj@cHr@cARi@NmDlAsAl@oNxJoF|DaBbAmA|@yHbEcHhEwH|EuA`AkBhB_BjBeAz@s@d@qCnAsDvAc@LwB~@aJbGg@PuAjAsNtJuBrAwGrE{A~@sDfC]XmApA}@xAwHbOmA|BYn@aLzT{DlHcBnDiWtg@}AbD}@tBaEhIuJhR{@`BiAnCg@jB_ApDw@tBkA`CcApBiBbE_AjCg@fBs@hD[lCShEW~Du@rIMnAa@vCq@xCu@bCmBpFcBlEcAzCqCpH{@nCsOdb@uAdEaChGqCzHw@dCcGvVk@vBo@vCq@hCe@lASb@s@dAmBxB_EzDkG~GMA_GtG{QfSiEtEiC~CiAbBmBxDcAzBmKbUiAfBeEpIaEzIgAxBg@r@g@f@u@`@w@Vm@HeA@qBWyFiAiDq@mLuBgGoAgK}BcGwAmLcCmBWcG_@q[_BiMiAqASuAKwC_@ca@qDeBOgEa@}@EeFc@yIcAeEm@cASqA[gWaDqFw@cQ}BuJeBiQmDk@CaHkA_FeAyBs@mEkBaDyAwD}AmF_CuAi@mD_AyA[iB]}CWuCMkEFwPf@_RJeDBmAC_CQsAEuBF_BNaRtDcAH}NJaBHgARm@P_Cz@q@N}@HaBAyAKuDBsEIgAB{ALe@HqSfFcFpAmBPcBAi@EqAUmAa@{@g@YS_A{@gAwA}BcDiJcMk@m@y@o@kAg@qLaEoEiBcB[m@G_BGqDEyD?uFWgMc@yCE_CKkAQc@KaDiAgBa@cAIy@AyKLu@AwAQ_WoEaDe@oEu@wImBmJ_CkAQwBKaA?uRx@s@@yKUkABcBPqFx@uC\\qCd@{Dr@oGbAiCVeHZ{CHeDRcAJwAHcNlA_RrAsH\\yACeJl@kBP{ZlB{If@iNx@qCXyGx@gCViABaCGaAK_`@mByI]iL]{ADuC`@c@HuExA{E|AuDfAcT|GyPbFqExAuBj@qCl@g@NkB`@qH|BiHdC{NvEcB^wDh@iOfCgDb@_C`@mAR_A^cDpByDlCmCpAwAb@iATgBRmLr@yKd@{g@pCuKh@cF^mB\\qA^eChAwH`EsCpA{Ad@kBZqAJcB?aBKeMqA_Gq@yD]yCc@_J_AyKoAcCOgJWcQc@sBMiDa@qaAsOqCYcACqAFcBXaHpBgARo@HwBHoBIkZaC_RuAi^sCsNcAcACaMg@uBUoDe@mD[{BIuCAuLFcG?gC@oHEsD?gEEkB@kBE_JCiDFa@B_H@}MIyFLyACqCO_BEqECy`@BwVHsBNiBTqBd@cGrBuFpBk@XiVnIkEvAaNxEaErA{Ah@cBt@yHvC{CdAsEvAiJ`Da@PcN~E}TxH_D|@yFpBoAn@uA|@iDjCqF|D{OlLmCtAyEdBoA^qB`@mBPcA@cFQmAIyIO}KKkL[eHO}Fa@uBWaIeAcEc@uHeA{XqDaNyAaHs@uFw@kQwB{AQy@QqB{@{A_Am@k@sBkCaC_DuEoFaC}CwFmIeCqD]a@aCkBuBkA_Bg@uA]mBUgCK}IDwOt@kGH_FAoEFeF\\wBVcOrCe`@pHoJ~BwOjCuGnAsJ`BuALqAB_BEuRuA_D_@qZsB_FGq\\YgCEiDDuJr@_QvA}Kx@yJ|@{XbDoCNmg@d@gDCoBKaDa@cCc@}OyDmH}Ai@KmJ}B}G}AiKyBcScEwJyB}GeBuFmAwBYiNu@}Ky@}F_@aEQaOaAeF]kLaAoAI{Hu@yAAoViBkU{Aw@IcFKmCKmPmAaBGgE]iAOuCq@}@W{CmAaAe@aAq@qIoGoOcMmc@g]qJ{H}\\}WuYeU_VsQ}LyJgOmLkPaMcIgGgAk@y@]cAYgB[_Eg@mUmB__@mCqWwA}CUuFe@sIc@kGa@sKk@iIo@sg@aDyBUcO}@}e@}Cyc@kCqUoAma@eC{d@_CoMy@qX}Awb@gCaEGyC@{AGsAKqIsA{CUiKq@kJg@yCAqBF}@JmCh@cp@bQeTtFm~@rV}IdCwMhD_f@lMeCj@i@JaCL{BAgBKwRkB{DKsBAuAGy@GyCe@qDw@mDe@mYqCcSaBa_@uDoDWaGYaBEcAAuH^kEHiBKkAQ}Ag@uDuBcCsA}DoBg@Gc@SwCgBsAMk@OK@eImAsGaAoKeB_UmDeQwCiNsBeAGm@?sBV_C\\y@Hm@@gAI_Ca@c@GqDw@sB_@_CY{HqAyJeBwDg@{DeAkQ{C_F}@sF}@uHeA{Cg@gMqBwQiC{_@_GmAOmF{@_CUcLcBoS{CwEw@sEm@eBMsBQqG_@iHC_KDsAFkBRaAP{Bt@eAf@uCnByFpFcAn@wFnCsQ|HyAf@cKpCiHrCmFzBw^jP_TrJuGvCaElB_@LMRcDn@uEv@c@B[EwAH{DC_AGDe@p@eC^_APWv@s@v@m@bBeAZWJMN?JH?PXRdAjBvAxCT^JTrB~BmDnAYTUp@YbADPCPEDnA`Kp@pEPpBjA|JTdAd@`EtC`Rv@~Dd@tAHJANCDVdBd@~AnAdD~@tB@Ln@|A\\h@b@^nFtCrAz@lA`Ad@l@Zp@Tv@HRDr@DpCGlCGhBFh@h@bBHl@VpDNjAJXVpA^dFX^LXBB\\@RFxEL~DJx@Hf@PjDlB`An@nCxBDJDR@z@ClBDh@T^\\XZNf@JzBF`@DHPCr@Kb@uCrJE\\@P?N@Pj@bC~AxJdAvGv@jFXhCTrEDf@BzCCh@g@hAQ\\]d@gAfAwInG{AxAq@z@g@z@O^[dAMr@w@~HOhAQrB@~A_@rHk@bHo@pI_@~LOtKFbD?zBIjBKvAoAdNKv@aA~Eq@hDw@`D[vBc@rGEbByA`X]vGO|FWnLPd@Bt@Fl@XjAN\\b@d@ZTt@Xd@HZ@`@Ad@Ip@YPMhA}AdA}A`AyAVc@Lk@@YC_AGa@Si@KUW[w@k@y@Uc@Co@@kBJe@EeB\\yBTaBLsH\\wCAsCM{Fe@iF{@kGcBmBq@}EuByGwCej@uUgFmB{Bq@wEkAoGiAmGm@cDUuBGec@c@a`AeBqNUiHSsESuPgAg\\gBmGQaGIcJD{j@f@sBBsFVaTx@_GRcILgMAsIQuDE_Rc@ux@uBgXq@eZs@qhAkCyGMq]w@{Ma@mWm@aHQ}l@kBeHSo^iAcISkPm@aFYiDYqHcAqEs@eFgAqEgAiW_I}ZoJev@uUw_@mL_R}FkDaAmJ{CuPgFsJsCql@}Qc`@uLiGeB}EqAoF_B_WcHqHwBeT}FkLeDy_@oKij@oOaFqA{fDe_Amr@cSc\\mJqGmBcLyDc_@uM_L_EiEyAuAi@qVqIcUoH_A]wh@{Pu[kK}HeCeDkA}UwHaZoJcFuAqCo@mGmAmFw@mKiAaV}CyLoBcDo@{MkDaGgBmd@mN_Cu@_y@qViEuAgEmAcCy@qW}HmBk@yWgIsDeAuv@{UcDiAmEaBeNcGePkI{I}EezAgw@wJgFuS{KgPwIsc@oU_CsAkh@qXoQgJyr@_]_`@aRmHmDeUyKkLsFqCuAkIuDwF{B{FuBgGoBeEqAsU{GqvAsa@g`@aLgLcDsa@cM}MyEgNcFmIaDi_@gNoaAu^a[eLqZeLcG}BsiC}`Ay]sMoGyBuLuEuEeBsK}D{DoAmJgCaDq@kF}@kIkAeFg@gQ}@}BCgC?aCAsNTwMfAkDb@aIfA}@PkK~BiK|CmV|IeQ~F_FnBkBt@wP~F_ElAmJ~BiGpAiJtAoCRyGp@sLhAsUfC_RrAum@lD_BHga@tEo[vDwI`AiUnCkSzBgM~AyQrB_CZiJ|AmDv@uRtDcB`@eAPqBVmFb@_CHsE?mGWqMmAkHu@wS_CiCW{Di@cFUqCGwE?sHViGl@_CZiDn@{JrB_ZxGeNdDyDx@}KrCqDdAqJbDiGdCkElBuFlC_GdD_JtFqE~CqEjD_EfDkJpIuDfDgC~BoMfLmH`GcErCaDlBuFxCiCjA_DnAqEzAkFxAiHbByEx@eEb@eD^sFV{FNgBB_GEgKY{Ea@aIaAqSgEsKkBsGqAsF{@gGm@w@G_AAkGYcFKqG@gGLme@hAsDNkKXeJDcGEoFOsLw@yG}@_Eq@gH{AmHyB{E}AkNqG{EiCsDaCcIyF{EsD{CgCiDoCgJaHeSmO_]{VoVaPyDkCsGeFeKwIgH}GaCmCsBmCkBqC{BwDsBaEwAgDqAkD_BkFm@kC_BoImDsSk@kD]e@{@eBc@o@Y]y@m@kAi@o@Qi@IgAE_BJkB^I?WIkDr@sB^e\\jH{ErAqFjBaEbBwCxAiEjCmCrB_Av@qClCmBtB}BxC}@rAuBnDuDpH{AdDqAlD]dAqCjLg@bCoAvIuBbPW~CMlB?bCRbGNzCBhB?jBt@|OFj@VhBZlETnF@pBA~CUxEwBhVu@dFg@xBw@lCoAlDw@fB_BvCiEnHqCdEkB~BmCvCoBjBcDjCmD~BcDdByY~MmBbAwGzCcD|A}HnDgBt@gAl@wJnE_GhCsN|FkSnIcEfB_A^oFdCcHvD{A~@cQbK{@j@{GtD_OzI{JdGmEbCyHvEiGlDcAh@{GxDaHzDmCtAaBlAw@f@oZxP{BbAoOvIuC~AuHtEaFtDqCxBwTrRuJnI_EpDwHtG}FfFiK`JgAbA_EfDmCbCuB`BaB~A}IxH_M`MoEvEmChCaBfBoU~UwAxAeB~AWX{BtBcBhBmBdBcClCeD|C{MzMs@v@{HrHeEhEeO~Ns@v@gQ~PeOtOiBpByFvFkDrDwAvA_GhGwEvEqB|Bk@b@aBbC{PdQ_DzCqFvFmAnAkA`AcDpDuBlBq@x@UXgEnEcGdGwDfEiIlImK`LsCnCaUxUyEdFeChCqDdEsh@zi@wFrFg]j]gl@ll@qEtE{HrHaThTqH|H_H~G_DhDaCtCaIbIqCdC{EtDwDhCeGvDkHvE_SbMm^jUsD|BqLzHgFfDwT~NiSvMoAz@gKdGyStKeHjD_EvBoNfHmB~@yDvBgPrIqGbDmO`IqDlB}J|FaCzAmBnAeBlAoR~MmG|E{IfGcNpJwYxRaQbMePlM_CfBiDlCwMhKcKfIyBbBw@r@aPlMeFhEqI~HwH|G_B~A{GhGaCtByQpPiCxBqDnCmFdDaExBuBbAaFrBeEtAgAZcATeLfDkDz@aIzB_EbAwZrIuEvAoPvFuNdFaPtFq`@vNmOpFuXrJwPzFgHbC{H~BsBj@cGlBuRxFkMvDwPbFyJzCmLjDuXjIcD~@cBn@a_@zKqN`EaLbDuBr@iGdBol@hQyLrDwZdJsC`A{ElB{s@r\\e_@bQwY|MaLlFoKzEiyAxq@yMfGoM~F}HtDcWjLcOvG}An@kMfGgItDwDrB_FtCeDzBuAdAqDzCkAfAsCtCeC`Cg\\n\\gHjHwT~TgEdEcFfFiGbG_MdMoDlDqBvBeNbNiSnSoGtGgCnC_DzCwUrVmMhMyC|CkBlBuGfHmEtEoGfI_ErG{CvF}@hBgBhEu@pB_DzHmA`DaK|Vmb@xfAiAlCsAlD_AzBaIrSqBdF}GlQsBbFwB|EyI~QiFfL_JlR{AfD{BrE{ApCaBjD{IfR{HlPoBjEeE|IsDjIkApCsNz[gAnC}B~EkF~LkAfCaMhYyI~RcEhJ}ExK_Ox\\_DlHyJ`UeHbOaCzEuDbIiEzIqLlVw@dBySfc@kElJeAlCaElIaGdLo_AjoBu@pAMPcNuNqCgCmDeCeAe@sBkA_DgAkBg@}SyEcMuCcMoCmFqAsB]cCo@cEeAeIkBwDiA_ASmBS}@CoM?eg@HcAJgF?c@BULk@GgADsA?SJU?qAEoDB@a@gBCyQu@}Uy@}G]_KYiCU}IeAwCg@eJw@aDSMB}@C_AG}BIoDUaPk@_Ia@qCQ_AQ}@CiIo@e@GkL_AiJgAoEk@mNq@gEWiMi@}Jc@q@A?LoBBcF^wAEkAAuAK[GSJSGeBwAc@?[MeH{FIC_EeDaA}@mFkE_@]IOAOaAiAeFeEg@a@MHc@?uGoCeDsBw@k@yBiBuG_FiG{EkB_BmB`Ds@z@m@`@iEtAcC~@mCpAeDlBuCxAaG|Bu@b@u@r@g@t@]h@Y^mAjAg@l@cAxAuHsHcAsAiBeC}A_BmBsEc@Oi@Ba@d@m@f@wG~HsA|A_@n@Mj@Al@LZjB`Cp@x@zWxYjGxGv@dAXx@Lz@HfCFrEBfA@|B?lBPpQ@vGDrBJrIBbAJPBTIROJSAQM{CMgCBc@DkCCmRH{JNgNHgEPsDAq@BmCAqDD_FAoHMoOq@iQw@eJe@uHWm@B{FYsSaA[@s@Dk@AKAYHW?UIQYORQBo@Oi@Q_DMgCS]D_]_BuASSKk@CsAQaj@cCmDMqAFKR[Ni@HSNINoC|GaA|By@`B_BvCqI~NgDtFmAbC_C|Dk@v@wHlM}FbJkAbBkCbE}@`BaAzCaBtGIPaBfFyBpG_@~@i@dAc@l@qF`J}GrL}@bB{D~GuAnBuCbFyAdBiBdBmC`Cq@z@_Ad@mH`HyC`CuBxAaEbDKDcKzGyCvBaDbC_@Ns@j@iD|Dq@|@sGvHaBrByArBy@pAo@jAi@l@uEfHaBdCm@bAcBlCw@bBFNCTKJG@m@t@mArBaGdL]x@uBbE}@lByD~Gi@z@i@dAqFzJwGlMmAtC{GjMgAhByE|I{AnCcCvE}AvB}K`Ns@t@eAlAcNnQsAhBmCnEmD|FmGbJ}C~E{LbRqA~AcBpAuAz@wK~FkBlASReApAq@rASh@[rAGb@Gt@E|GM~DYrDa@dDoBtJc@jBg@zAa@|@a@p@y@dAmAbAiAn@oBv@{MnE}JvDcBv@eHdEuA~@kAjAqA~A_A`BcD`HoBjEgPl^y@rBiBzDsAlC{AbDi@pAiIpQ{@lBaAlBaCnE[p@m@`BcArDa@hBa@jASz@Uh@c@`@oAx@c@b@qEfCoAx@eB`BaAbAwBdCeCxC}ClDgE|EeDdEk@z@oArAq@h@gAr@yB|@}L|DaGxBoChAmC~@gAd@kAn@wAjAkAlAo@jAg@nAeBpG{EtOsAdF{@lDs@~BiAtCeAtBmEzH_C~DyJ`Q_BvCq@`A_AdAaBrAmAn@aAb@qBh@qBXuLtAwARi[bDy@J}Bf@u@V{Ar@gBrAg@h@}GxJkF~HkHhKeEhGWj@u@tAkD`IsAfDgB`Fu@`Bc@v@w@|@kCbCiBfBo@~@q@nAk@|A]pAk@rD]~CcD~TuArIYdAg@nAe@~@i@t@}ArBgBvBaAtAgA|BgApCaBlDgC`EeD~E_@t@cBdCaAdAaFxDoF~DcAz@eAhA[`@_AnB_@lAe@jCKhAQzBg@xJIt@UpAe@fBiAxBgGvJkAzA]Zo@`@_A`@q@PqDd@kRtB}Fv@oI~@ik@~GkN`BuJv@iK|@}BNaYhDaYlCw@J{Ct@yP~FoZfKgAd@cBn@gBv@}ChAyAn@{D|AqBz@kG|BkF~AmQ|E{DvAuDzAiD`BwP`G}`@xNsZzJuj@lRmGrB}DjAiEjAse@rOqE~AaGdBq_A`WaQpEoHjBuXjHa^lI{OrDyNhDoEbAkS~EyO|DsG`ByG|AoKpCeCz@wBd@uHdCwGbBkB\\}@HcOz@iIt@g`@|BeVpAwRp@gXn@{IXmIFiHNoEB}@?sBD{GViN~@_BDwILsNX}EP{a@dA}IVuHZeDJaETsEPcFJqh@^o\\`@uS^_BAwAM}NiC}KuBaIkBwJsB}MqCoGiAaFcAkHiB}IcB_E}@w_@eJiHcB{GeAsCa@eGmAgLqCiKuBmHyAqCa@{AGkCBgB\\mBbA}DhCmEbDoAt@c@\\}EpCaI~E_JrFoStLa`@pUsFrDcKjG}DjCaCvAqBdA}FbDeJ`GqDlBiBj@iSrFuCr@kIzBqBn@iFtAcEdAu@`@yPvEkCp@_VpGeB`@uAP}MnDyLpD}CbAoD~@_ARoNdE{SrG_DfAsAh@eAt@yAl@iGfBgIhCkBb@EFe@JiP~E_Ch@_D|@uEfAmANaH~A}@r@eAj@_GjC{Bv@iANqAD_@Cm@Sg@YeAw@uOePmGuGsCuCwDuD_DgDKI?]iJqJ{ByBiCqBuAw@eCkAwAYcL}A_Ca@wKuAwDe@uFy@gH}@}h@wGqAIg@@QDOIEMuDu@gBUc@C{HkAsI}Aw@MmE}@mLsBoAc@wAy@aBiAyBcAeEkC}CqBwG}DgB}@yHsEiBaA{Aa@k@KwBKsA@m`@fBuCNeCHyANuH`Awn@hJ{Dj@kCb@eBZQRUF[IMOAC_ABcB?gGDwP@uBB}CByOPsB?qDD}D@aUV}JFiADuNFeCLeFd@iLzAi@DaBVs@HmBHqAEcBSkGwAuBYmEGqIH_A?gQ\\kNHkQGaw@?oKEoGBsHAaKFqCDkGDgGNqFDqCD{DC_IFcBFyJRiBPgBb@_A`@aBbAeHhFuEdDuBdB}@n@cCz@cCl@oZpFePlCcL|AaKjByBb@uAZiKnB_KbBaDt@y@ZmAn@}@n@o@n@a@h@o@dAsDpHoC|FyAlCu@`Ay@t@uBtAy@\\u@Va@FiBb@qQjDmGtAmXjFw@JmAH}A?qBIaPgByAQ_DOkBBiBLcBX_ARcG|BwAf@q@NcAJwBDaCMiASqBs@gL_GsRmJ{J{EuAc@uA[kBOcA?yAFy@JqAXgHlBoB`@uANy@DsAC{AIwAScAY{G}BePeGmI{CiNkFiAo@mBoA_EcEuAwAuA}As@gAoBaEsAaC_@k@cBiBqBcBqAs@yCuA_DcAiB]eBWiBKwBAwADmCRw@J[DgB?q@FQFgEJ}Kd@uDRoCHwD^s@BoKnAwFn@yBZuALm@JyI~@qEn@mD`@oCXwBXkNxAiDX_J~@}PjByBRgGr@oAb@oClAsCbBgJfFqDvBiBnAs@j@{AtAyO~P]d@BTIPW\\wApAsAx@gCdAg@F_@?eAJiE@YCGEKUye@UcIEuECcA@{CPqQpBuGz@{QpBcDXoKnAmBHcBDqN?sUA{@CaHg@eAMc@AMFsBJeXKgBIMIcPAo@CaHBmZEkD@oFEsO@kNHiBC_DWwC_@gLmA}Ik@{C_@wEs@kBSgAQs@QQDSIMOEKwI_AiQsBmFm@cJmAeBMmA?kBP}@Pg@Lq@XcBdAqAfAaLhKu@v@_HlG_A|@sL|JWVaBtAkD`DkArAo@j@iAt@gBj@iBT}@BgBGgDOkAC_I]mFQw@DOJS@QKGOi@G{CIiEGe^cAqA@[BMCIG_BOsNk@oO_@sBB}@DYICEqDOwKyA}a@{FuX_E{Z}EiEm@aMmB_Da@}XeEgBUaVyDuKgBud@eIkDk@aAK{AAs@@}Q~AqCLqACkAMs@OuEuAgJqCiJsCo@WoVmHaBi@o@WaB_AeAs@sDmCsAgA}NqKkIoGcFcE_CwAoG_DcM_GcL{FgBw@w@YaAQiBM]AqEHyPr@kHRqLDkLDuFAsLDwKBu@HqAH}IbBkEdAeBZwAFkAAk@EiIoAiBWqAKu@Ba@AsEi@gIo@uDg@g@KsGaAmAUcBs@s@UyBa@}PoBqGy@qWkDkLcA{NgAcBKeE_@iFo@{I}@sRsC_D[kF]cLoAqDi@eUwCmKmAe\\kDsQuBeJcAkFg@wBMoRc@mEOeFWwIUgAGuAWwAc@}LaFgBq@aIcDoBs@yCq@yNkCgEq@wD_@{HkAyQcDuOqCyAg@s@[}l@gN_KeCuCo@gEiAeQoE}PeEuIyBgGyAkB_@qCq@uBa@{ASqA[_Di@cAGeC@}LTyED}AGgDBwEAaELcEBeHJcJHcTZgNNqDLyA?gDSuOcCwCi@us@}KwKqAwCa@_B[SJc@?iHs@aHo@iRwAi@e@yAU{Bm@yLwDaI}BsQaG{GyBsBi@a@Ou@MWv@WlAaFx[k@bE]zCs@zEa@~Ag@`AyHpKaEfGoIfLaHnJmAtAeBzBy@z@cA~A_AzBa@|Ai@xCgE|XuArHmAdIY|Ac@~AuDxLkBvGiJbZgAzDoDnLa@hAoLhWqMrYoBxEwGhOkDbIc@bA_@x@{Oha@o@jB]vAiBxL}A`KuDlSGh@{CjPS|@{A~EmBxF_HjScL~\\aG~Q}@vCwAfEy@pBeGzLuD~HyFfLoOh[oCxFYb@aDrG}EzJw@tBo@zBq@vDqA`JiCdQ}ClTm@lDqA|IqBxN}Ifm@sA|JoGvb@{A~KqDfVoEt[YtDKfBMv@kAlPO~BQjD_BnTUbC}@|HsDp]s@`H{@jJaBhO_A|IcBhPk@dFa@bF{@jQk@tJQtEg@hLW~EwAtO[bDe@tFuAjOaAdL_ClU_@pDe@pEY~BwHld@}@~FgAjFkBxLu@rEc@fBk@xAu@tAaP~SeNpR_GlIuNpRsEhG_A`Ay@l@aIhEgBv@ySzLoCbBeB~AeAjAeMtO}D~EuClDcAlAiApB{@z@iA|@aB`AsAj@}@XiAZcJzAwEv@k@NoAh@}@f@mAfAi@r@w@pAqElLe@pAs@bCcAnBoEnL_@dAsLh[a@~@wB~FwBjF_AnBa@bAcApBD`@Qf@Sd@Qh@aEnKaQpd@mA~CU`AK`A?RKVSNSBWGOQa@EWQMEo@GOEuGc@i@BqWyAob@{CkAA}BXo@PeDtA_KrEeHxCoM`GiJjE}BbAiExBaIrDuWrMoAp@GNyAx@qBz@OAoDlB_GnC{@\\sMlGcDrB_EtBeChAqDtAeHnDm@XcAZgCb@kM~@yBT}Ab@gBdA}H`GoDnC}A~@mAd@iGtBqe@bOoCv@mB\\a`@pE_QlBsGt@sB\\sKvCk_@dKmL~Cyr@tRoRhFwDfAKL_FvA{AZcAJUCwAJu`@dBuUbAyAJmB^qA\\_JpCQLiBp@_Bf@wBl@uDfAO@aU`HsPbFgXpEqa@dHqF|@{@ZmAx@cC`DsLdPw@z@s@b@cHzBgS~GgXzIwKlD}B~@cA\\iBf@uEzAeBv@c@LiDx@{FjBy@`@gFzCqDzB_q@ba@cE`CsCdBkEnDe[bWkGdFeDrCqCvBsTlQgDtCcZfVgLdJuGpF{DzC_H|FwTlQuC~BmDjDgLvLoCnCwF~FiBfBuG|G}E~EwLjMiInI{OpP}H`IoL`MiGjGkK|KuM`No^l_@qMdNwD|Du@bAEHEX_@z@Or@Er@@l@RxDd@xNFt@v@fDz@jE~@`ElLpj@nAdG@^GP]L[@y]^eRJg@FaDdAsR|GgE|AaD`A]BsVzHiCv@s@X[ZWb@wHrPQRqDjDoE`E{OdO_@N_@@m@K_AOuUqFeGuA}FyAwB_@u@Cq@?uCVkKdAeEh@yRlC_BVe@`@i@|@aRn`@gUzd@yUrd@y@xAaH~KuFdJsCzEqD~F_RxZgE`HqKnPuHfLmFdJwGlL}Ql\\}FzJcXxf@sEdIiBzCy@`AoTtQqIfHuPzN}CdDiEpFsAtBgAdBk@p@y@x@o@h@e@Xm@ZkBl@cKzB{@Vc@PqAv@eMtIkWrQkNvJ}KnI{a@~[{YzTgDbC{LlJgPxLwCzBoRtNy[|VuAbAmKnI_QbLqOrJ}YtQwBbBw@z@m@dAwA`DaFvNoHvT}FzPyNhc@_B|E_HtPgB|DcAzA{@v@_@Ze@ZyAn@iAZmAPyL`@}AN{AXi@T_Ar@cBbBk@`Ae@pAuClJeCxH{DzM{Lld@aHjWuE~PoIrZ}FrS{FdTqLdb@oAzEoObr@aAxDm@fBaA`C}A|CcKfPyAzBe@hAkAbCs@lA_D|DWV{JjN{@bAmAfAsCtBwLjIiQtKgQpK]TyAz@sAjA_AfAk@~@u@~As@fCcFrTkA`E}Jh\\wCbJ}BvH{@lCeArCo@zAsElJ_E~Iy@zA}A|BqJrLkEfFaIvHiHxGiB~AuGlF}EzEiHhHmC`CcAn@iMhHoBdAmDvA}DrAiHhC{JhDkA\\_ATmAPmDViDTcALkIzAwCp@kRxFcPrF}@Ve@Rk@ROPmEw@oDk@}TmEib@wHaA?kJaBe@OeEq@cHyAs@SmIgBa@B_@A}H}AkAQiAMeCGmBDmTvA[}@iHqP}FeNyAgDq@mBi@sBs@kDwEwV}A}HWiAsAoHg@yB_BcJqBkKO_@{AoIO]GYGUAEuP}@yBS_CYaEo@]QoKg@{FWmQo@kFe@gAMmE}@kD_A}B{@wEuBsFaDkKqFaGaDgHcEcD_ByK_GiH_EaSqKyH_EwEmCuPyI}CqBiNmHaCiAoI{EwH_EyRmKqAo@sHaDsDsAcK_DkBu@_DeAwH}BiIuCsBk@yBy@{A_@mIsCyRoGkF_BaEsAkO_FcDy@cEq@sFs@}G_AwFm@{De@eC_@qFkA{@Um@U_AW}EcBmFiCqe@gZkAo@gDaBwEuBmFgBaEiA{WaGqTaFaK}BgRmE}LuDqGwBwAa@aFqBkHuBuJeDwLyDyQ_GmIoCiRiGoE{AyUyHoA_@{Dy@sFu@oJaAgHq@iEe@yDa@wEg@gBWiB]_EkAcCcAwBkAwByAgB{A{@y@eC{CsGwKw@{AwEcI_B{B_BuB}BeCyAoAcFgD}BoAuGmCgC}@s_@kO_Cy@eBq@}EaCeEwCgBwAwB{BkHeImL}M_IsIeCwCkBuBiBeByAgAsA}@}C}A_Aa@eE_BwP{GmIeDwH{CwIiDqCeAyBaAmE_BiHyCgIaDg_@aOeB{@mEgCoCkBsO_MmKgIgDmCmF_DsBaAaCaAiEmA_FcAcJaAyCYgDWiHq@mEq@eB[kCq@aRsFoJ{CqIeCkFcBkF}AcDw@eDmAoTyG_EqAaHsBaK_DuIaC}IwBqR{DoCo@eCi@eHeBiGiBkDiAwM}EkLqE}MoFiLsEqGaCwCoAk\\wM}MkFyF{ByY_LwXaLy\\yMiHsCmGaCcBk@aAY{_@aIoMiC}EiAiDgA{e@yRuReIcFuByEuBaG{BqGmCeIaD_GeBkEy@eJy@}TcByH_A{YoEiYoEoSuDoE_AwNoCsFkAwHyAsI{A{LkCgH}ByEsBwBeAqEkCgi@ma@sDkCwS_Psu@kk@_D{BeGsEsCwB_GuEsRyN_[wUiEcDgGqE_GeEsHcF{H_FiNgI}TuLqNoGmImDcKoEyVmKs|@o_@_UqJeNcGydA{c@yViKiXmLoHqDmC{A_NsIoKwH_LmI}CsCsFsDsCmBaE}Cgp@ef@iGyE{EgD_DqByDoBuB}@_Bm@eMkDiHiBYFWAyBc@cLkBkOoCaLcCqFmAeFs@_DWgAKMEESaPc@}FQiAIwD_@iSiCqJuAkIcAwEq@iOkBsCe@iDs@iCw@oDsAmCmAeFiCsQqJcKoF}DqByCaB{IsEmDmB_FgCiCuA}ZaPeCiAqDsAyC{@gDq@}GcAsGy@}[kEuNiBeC_@cEi@yE_Acq@{QiHoBoAYeHmC{HyDqQuJiE_CyM{GwMyFwd@mRsHcDmDuAwE{Ao^oHgOyCsh@mKuBc@sJmBmDs@wE}@wVcFsO}CsF{AaEsA}Ao@}C{A{WiNc_Asf@uLsG{LiGiKyFkZaPsSwK}EeCsFyCaJuEwEwB}HeD}d@cQyDsAaFkB{DuAkt@gXyGeCg@CaAU_^wKw@IKNSBSGIUBU@AaGoC{Aw@_IuDqCwAw@k@IQmXeMaHcDcKkEuHkDaA_@mMgG}CwA_D{AmLiFkGwCoM{FgN_GyImDsEcB_HmCeFcBiFoBsI_DkIwCeEyAmGeCgGoBqUkIkHiCoRqHkOiGmXeLcFuBcJ}DsWyKaEgBkSsImBu@{IyDwJcEaFyBaWgKw_@oNoMyE_\\sLkFmBgDsAkDqAgDkBuCkBkNcKaVuQqDiC{GeFoGyEcVmQwM{J{EkDiHmF_C}Am@[_EyAoBa@sWuCcGg@cKiAsGc@qEo@oD[mCOcBKo@EqCi@{Gk@oF_@wFs@gEw@iCm@cCw@qCcAuBs@kEcB}I_DmNqF{YwKuGcCsC_AkD{@qDq@a`@wFi`@yFwDs@uEmAeFcB_F_CmCwAqAy@uEiDuCcCaEoE_C{CsB}C}AkCiCmFeLcVyBoEwBqDyBuC_BeBgB{AwC}BqBqAsZ{OkNsHiH_EsJyFy[sS{NmJyPyKeTeNcIkF}VgPaE_Cmr@o\\cCcAaF}AeDw@eEu@wLmBmF{@eOgCuc@gHcy@}MqXkEwY{EkEu@w[cF_a@uGqIwAmKeBoV}DiPkCiDg@uCi@gLiBkF_AkZ{EsYyEaHgAuGgA{HmAgAOw@QwIwA{Dy@sBi@kA]qCeAsDeBoBeAuCmBsOqKih@a^{a@kY}CkB}[sTiHeFu@q@aBmAe@YMC_KyGkHgFaNcJi^{Vw[wTed@a[oQyLkDmBuDcBsMkFuUwJsc@oQcKyEgFkCeZkPq_@yS_CmA}BaAaC{@iFqAmGoAcH{@}ToCoEy@oEeAiF{AmCs@yNeEuDcA{@YiKsC{JqCgDw@yB]eD[cBKiYa@_QQmh@q@{DUsDg@sDy@cCq@cc@mMeVmHqScGeVkHuIcCid@aNaEkAeBc@gOmEqHuB_JoCaC_A_D{AwBwAkBwAcBaBcBoBgF}GsIsLeMsQmIaL_HqJkGmIwMyQeDsEqAwBqLiP{@eAyB}B{BkBiAy@}BuAkAm@mAm@wFyBcLqEsu@}YcHaCgEqAy`@}LiNgE}a@iMs[{K_LaEwJkDiNeF_A[mLgEcXoJcBq@kJaDkRcHiJuDaEgBqEyBoJiEyCyAm@]{BcA{o@m\\eFcCcTqKiFsC}HsEiIqFeE{CoFkEuEyDmHgH_GmGyc@og@}_@gc@mFcFaCoBeDyBuCeB}DoBaBu@iE_BaA]yEkAuCm@mG_AaE_@gFSaHGyA@cBFuHl@a\\vCoTjB{BVcJt@}Ed@kF\\eMjAw@L]AyDTuIR}FE_Jm@mDe@kBY_Ey@_G_BuDuA_VsJuLaFmk@uUm]qNsJoEeIoEwHeEso@w^kOqIuWgOeIsEmHyEyHmF{QcMcp@yc@eG}DsIyFgGsE{BmBeBcBwCaDcJsKeb@ue@cAmAeCwB{BaBcAq@{FmCcC_AyD}@oAU{Dg@cDOmSGy^CcOEeEFqCJu^`Coh@hDyJZgHHwFAmGIoK]mJg@aF[wjB{JaFMsB?_DF}rAxDcEJqB?{EQuD[}BUkB[}Bg@mEsAwAg@iCoAuBeAka@yUaFoCwReLyIwEcMqHiGkDaUyMqDsBiHaEoFeD{CcBiC{AyLqIiDeCcKuIaE{DcN}M{IqIkB{AaPuOyl@sk@eCeC_KqJcCaCsBoB_CaCkBiBuBmBoDwCkB_BeEaDsJyGwD_CcH_EoKiF}RoJuMmGwEyBwDmB_QiI{KmFaFaC_QiIgMiGeAk@yEeDkh@kd@qBiBeKyIeFmE{FkF{HqG}@}@cJ_IyAoAgKiJ}CiCqCgCgK}I{EgEcDcD_BmBoIuLwMsReE}FyAuBiBsCo@_A_A{AuImMyDyF{BgDgTc[kC}DgE}FyGeIsHiIcBeBiF}EoGoFeFyDmHiFqLaH{EiCwHsDoJwDgE}AiGwBgHqCge@qPiHmCePgGsFqBaIoCqIcC_^uIwS}EeKoC_Bg@eBq@aLwEiZ}LuIsDeE_B_P{G_GoC}DqBwHiEkNkH}JeF_GoCoHsDiMaGw[uOab@gSqZwNiBw@cDmAiCu@kEcAiGkAei@mJqCe@uB_@sEu@_KiBgPmCkLsBoEs@uFkAkMwBco@yKaLoBiY_FkNcCwHoAqVkEsp@gLkSmD{EeAgDeAsFuBuDiBaYgO_NgHu@e@gPwIuSsKyDuByM}GsDqBc\\}PwDkBeVmM_LeGsGgDsTkLcKmFsBkA{OoIuDqB{EcCwBoAqM_HiHqDwK}Fks@o_@mIsEaCgAk@WqPcJySsKaOkHqIaE_D{A_EmBwGkD}L}FmSwJ{UkL}YuNmHoDmBaAqLwFiG{CuEwB_FeC_PyHgX{MsCoAiDiB_GqCya@uS{SuJ_PwHiZaO}DkBid@sT{V_M_w@o_@mEoB_H{BuQoEyOoDoJaCws@}PaN_Do^{IoM{CkQ_E}SiF_WaGwIeBqQgDyDw@uNoCw]eHoMcCyMmCwp@mMgZ}FuIuAuDw@kEoA}PeFqFuAsk@ePkD}@kF{Aq^cKuKyCmLiDqXuHuF_BeF}AgNuDsDgAcFsAqFcB}EcBcKeEwQ_J}JcFaCcAsN_HeLuFeHeD{QeJkb@oSyKkFgEuB}YsNuPeIiKgFmS}JwPyIaPyHmIsDsFsCoN{G}MwGyNgH{z@ua@eJoE_HcDgVwL{VsL{LiGcIuDa^cQwZcOkTkK{EsBsu@aZsNaFkQuGg_C}z@uSsHgIyCeEuA_SgHuN_FiOsFwUcJkCy@uIgDiFkBaUmI}@Wo@YiKuD}B_A}LkEiBs@mMoEke@_QmJiDcC_AmKyDcG}BcGqBc|Aii@_A_@eJuEoIwEyZyPyBiAgBeA{JqFkGwCgIgDstCgiAaVyJwW}JwXuKa@UgC_A{ImD{{Aam@k\\sM_O}FwDcB{R}JkSwKiAg@}SwKaAc@qEcC{TgL}LsGiHqDgHyCyr@wXoMqF}c@aSmLmFcJ{DaHaDa[cN}YqMeMsFqi@cVaK_EuFqBqe@{OgR{GgQiGqd@sOuS_HqKoD_o@gTao@mTkN}EsKoDyP{F{JoCqJeCoKwC_PeEiMkDwUmGs\\uIoEeAeLcDkNwE{CaA}I{CiCy@{Ak@iCu@uN}EoRyGyKsDqMkE_i@iQqL{DkFcBeEcByDeB_D}AwEwBkKiFwPwHcl@wXcEcBcHkD}m@yYif@gUqRcJ{MgGmx@g`@_GqCsEwBiQsHyD_BoLgFq[{MwNiGwq@}YgEeBeFcCeGgCeTgJ{CoA{McGiOqGgEeBiOyGyFgCiBu@uGsCiOcGkBy@aDyAiFsBeDaBaJ}DyI_EiLyFmF}BcJqDkJaEwGkCqAi@iB{@km@wWaUsJgKmEqc@oRmJ_E}JqEea@aQkU}JmEmBeHyCgL}EiKmEoFiCwO}G}B}@wBaAoGiCoZ}Moj@cVuF_CkTiJsGyC_E}AsEwBiP_HwHiDqEmBcKsEcDsAq[iNsM_Gcu@o[{FeCeBq@aGmCg\\sNykB}x@kSwIcKsEyRoIqiAuf@wEwBmY_MikBwx@oMwFmNeG}DeBwEsBaBs@{BaAgJ{DyScJmK}EcDaBwLyFuBcAsHaDcOqHiEmBqf@qU{GwC_a@cRiDcBg_@_QaLmFsKgFgYoMam@mYqM}FqDgBgMyFgHgDaIqDaR{IyHmD}RmJ}FmCsAq@__@_Qoe@yT}DcBaZqNeEiBmXoMaBs@_O_HaK_FgEgBcc@uSqs@q\\gWqLkIyDsBy@iAs@sGwCaEqBqVaLyAw@{TeKsJ}EuJsEcImD{_@mQ}EcCoXeMaLqFkMeGmHcDoG_D{JoEgN}GiIsD_ZmNiGoCgT_KkIwDgMiHwQyKae@mYqYiQmVmOqRkLwG_EmGaEyD}BuD_CaQiKiFkDcCuAsHsEuIsFsFeDmLiHyEsCqTcNgb@iWoVoOmVcO{^cUkAq@wDcCkIaFqOoJkFeDaC{AqRqLkBgAkEkCcIeFiNuI_Aa@kD}B_GmDqVkOsNaJuEmCoAy@cB_AyA_AsO{IuI{EaNmHai@cZuDuBcDqB}Ay@iScLeLkGcMgH{DwB{GoD_a@_UqRmK}QiK{PeKeNeH{EiCkBiAmCuA{G_EoE_CiOqI{]}RiUqMsOsIuc@uVuEiCaH_EoDmBcMcHuEiCq@WkEeCiFsC_IoEkCcB_y@ce@qL}GsOyIkt@gb@oHiEwi@c[iUuMua@{UaFsCyJsFcSkLsQeK}i@g[qKkGuOoI}H_E}NiH}A}@mFiCiUcL{FiCuFsB{]wKoAc@{@SyNwEgc@_NmCeAmDuBmAaAcGkFuEaE{FkF{CmC{J{IsMmLym@{i@wBuBuAyAyYs\\_KgL{HyIiFgFyBmBoB{AuF{DwUkPsNuJgKkH_HgFwCgCkJqIiC{Bm@o@yz@yu@gn@ij@oAcA_VcTuE{DaEuDiIkHcEqDiEyDaEsDsE{D_CiBeJwGqBqA_LeG_NeHqMiGcN}GeD{AaLwF_CmAcD{A}FyC_HeD}LgGmq@g\\{A_Ame@mUmVsLwYwNwFkCeHsDeEoByJ}E}`@}RkKeFwAu@}@_@uDgBiu@y^}CwAuDmBgOqH_[oOiFcC}BmA{BiAk@]wYoN_MeGqIaEum@oZkaCgkA}M{G_W_MeS_K_D{AuC{A}GcEiEgDmBcBgCiCuQkQaH}G_B{AyAiAsDsBeBu@cDeAgR}E{PwEiF_BiC_AkF_CcdA_h@ycAqg@qdC{mAcK{EmQuHuu@}Zey@s\\qKeEmp@wVcWyJoEaBmAg@aP}F}k@aUmHaDoLgFcN}FehAif@iMqF}x@a^aVkKaA_@{r@wZqToJek@yVujAog@yMsFuvD{{A{N_GeyAul@iGsCcgAml@cHyDmDgCuAmAkAoAkt@a}@_LeNgZq^wEwFoC{CoDcDsAgAiCoBmBmAgCwAuu@w_@_JmEwO{HmFsCmH{DuBkA{IeEwNuHs@YkL_G{BeA}EgC{TaL{SqK}R{J{JgF}EcCaHcD{K{FoV{LsAy@sJ}E_GwC}J_F{W}MwU}LwIaEmIoEwSaKa]kQcYkNgY{Nus@o^{LoGaDyA{F{CaCgAaqDuiBwgAoj@e^sQoIoE_OkHkBgAoEyBkD_BiJiFcMcG}EeCaLsFcOaIqL}F}H_EgRoJuy@eb@sIoEo_@eRyEiCiRsJqG_D{LoG_Bu@kC{AqCkBaCiBqEcE{F}EmCeCgDqCeBmAmBmA{DkCcE}BaCmAoDaB}BgAgFmBwDoAaG_BeOiDkCu@cDiAwAm@iFeCoDoBcAo@oHgFeFkD}F{DiD_CsE{CeBqAaJgGkFoDuIyFiCiB_DoBwCsBoFkDqUuOgBsAQB]EoAa@aDq@yBgAaCaBYGy@JUZOJSFSBS?[KuAn@e]lb@_m@zt@{@rA[z@]lAkMvk@Kn@GzACdi@ElTCxBGZe@~@sCrEmBzCcPzWcGhJiB~BaCnByG|F_IpGgEtDMHoGrFoPrNIRkGhFuEvDaYbViH|FuC|BOBMPiB|AoFsI}ImOeG{J_HkLoSa]I[}AeB][eJ{GuHaFsBy@eC_@{BOcAGkAAgJa@y@GsAYuAa@et@a`@oc@yUsCwAs~@uf@eRsKiO_JsBqAkNiIsd@aWiaAmi@oBiA_QoJ}q@w_@}NgI_DiBa[}Pmc@gV_j@eZgGeDWCiB_A{BsAKOmKaG}s@k`@gKyF}_Awg@{HkEs@m@iCmCuCaDaH_IsJuKqDeE{SyU}BcCyv@c|@wHsIeF_Gcs@cx@aBmAq@a@cCw@aLqCeY}GiIyBuf@sLuXaHcG{A}xCot@an@yOiASiAM}@CaA@cBLuKjByj@dKgbBrZuGhA{Cj@iBh@kMlEaVfIyR~GsL~D}QnGkExAmAVqANuAFuACah@aEoACqBJ_AJmAZqHlDoj@lXuBfAeKdFaAh@uAbAi@f@}@lAw@rAiDpGcCvEyClFqBrCwBdCe@^kE~B{GnDmLnGwJfFqA\\q@Fo@?}FSiTmAw@GuHWaWqAuJa@mCQuG[c@AiVuAyH]uJg@aBAiCHiBVwAVqAb@gTtJoCtAw[`OcAZ}A`@{C`@kt@fCqHRiGRkKVk}@zBsQd@_i@pA_Vn@gQ\\e@?wBOoBYaw@sRkm@iOuDaAenA_YkZaHo{@wS{}@_Us[kGqMsCoZoGeYiGil@_MaTwEo@GeDm@kDy@oBk@CEcGkAmc@mHyDo@uAOmBImBF]BaBXmGtA_b@pJ{y@vPsu@rOeOzCcI~A_Bd@u]dMeQrHmRnIsK`FiMvFaEdBkWrLcC|@eBd@}JxBm[`HkItBuXlHwMfDmMjD}NrD}JjCgGvA}Dn@ml@fEkZhC{J|@eX`CuGh@}JpAwB\\wMfBwAReAHmBHaBAoCWcYaEkO_C{YgEyOsBqYoDwk@eHwQ_CeWaDoNgBkBS_B]mA]{LaEaGgBgOmFsAq@oIsFoNoJoHkF}GmE]MmDuB{C_CIOgCgBsCmBkQsL_Ai@iAk@kAa@oi@oNcc@cLuFqAkT_GyYuHmBo@_Ag@cBoA}CgCmn@oj@oZcXoUsSuIqHuAeA_Bs@go@ySelAk`@uk@oR{L{DkL{DcOwEyBe@yBUc@CofBa@kCCoKAqGEceAe@kaAi@gAEy@G_AQwAa@u@[oByAy@}@u@oAsRo^g@eAgM}UgAaBu@_A{@s@y@g@OKiC}@yQiF[Im@IoGUiBEqBSiAY_A[u@[e@YmB_BuHwHw@y@aK{LuJcMq]w`@gAeAyAaAeAe@yBq@u@MoAIcZQak@Y}`@UqNKoFAwADqBZq@NsBt@wUfK_ChAw@h@uAlAiA~As@nAi@tA}EjOeHzTaAhC]l@cAzA}@z@aC|Aeo@tZwi@nWgAl@qFfCc@PDPAh@MZUNYDYISUGScEHaMv@oH\\}EZeFVuF\\}ATcAVIA}Bf@eAFiLNg@B`AdHVdBiATRhBmANaAHuFbA', '2025-10-10 08:52:37', '2025-10-10 08:52:37'),
(11, 2, 'delivery', 21.22604923, 72.89995059, 21.23000488, 72.90089674, '2, Bhagavan Nagar Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', '2', '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', NULL, NULL, NULL, NULL, NULL, NULL, 704.00, 2.60, 'sup`C_g}{LR?HJDTBIFCI]m@uE]oBQoA_KpBcEz@_Dd@', '2025-10-10 11:32:41', '2025-10-10 11:32:41'),
(12, 2, 'taxi', 21.22561012, 72.89919253, 21.22427717, 72.89884921, '114, Bhagavan Nagar, Shradhdha Society, Nana Varachha, Surat, Gujarat 395013, India', '114', '40, Sarthana Jakat Naka, Simada Gam, Kapodra Patiya, suart, Surat, Gujarat 395013, India', '40', NULL, NULL, NULL, NULL, NULL, NULL, 278.00, 1.20, 'csp`Cec}{LhFaA~@K^dC}@R', '2025-10-10 11:35:45', '2025-10-10 11:35:45'),
(13, 2, 'taxi', 21.23000488, 72.90089674, 21.17024010, 72.83106070, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', 'Surat, Gujarat, India', 'Surat', NULL, NULL, NULL, NULL, NULL, NULL, 11495.00, 33.10, 'inq`Cum}{LP|@pCfLxEhQ`@vAlFs@|FiAjAOx@G|DKt@?`@DnAVxATnOGxCIhAMtGiA|Fs@dNkAzAQjBIxJ{@r@]l@z@`IbN~JnPbDnF`HbL`AzAlD|FdA`C|IxVfAxCDTxKdYtE|K|@zBnEdLjElInC|Eb@x@~B~DnCfFjIhOv@vA\\v@`@v@rCrE|CvFl@tANVPFHNATb@\\jCzDrA|BzDvHzBtJr@lDHbAp@fDrD|N`@lBDf@\\jIx@bG\\nApBjGlA`Ef@bBtCzIt@hCjAfDh@fBpAfDx@zBr@zAvA|Dv@rBbBnFrBxF~@q@\\HZR`@x@v@vBfCjF~AxCj@bAP?JJjCMtGOpFEhBI~@AbCS\\?hA]r@MdCS@NTbAwBXwAN', '2025-10-10 12:11:45', '2025-10-10 12:11:45');
INSERT INTO `recent_searches` (`id`, `user_id`, `transport_type`, `pick_lat`, `pick_lng`, `drop_lat`, `drop_lng`, `pick_address`, `pick_short_address`, `drop_address`, `drop_short_address`, `pickup_poc_name`, `pickup_poc_mobile`, `pickup_poc_instruction`, `drop_poc_name`, `drop_poc_mobile`, `drop_poc_instruction`, `total_distance`, `total_time`, `poly_line`, `created_at`, `updated_at`) VALUES
(14, 2, 'taxi', 19.25530730, 76.76687591, 19.25731560, 76.76468490, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 'Anusaya E-Square', NULL, NULL, NULL, NULL, NULL, NULL, 853.00, 3.90, 'oxotB}opsM_@`FS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', '2025-10-13 04:51:20', '2025-10-13 04:51:20'),
(15, 2, 'taxi', 19.25524558, 76.76693391, 19.25584320, 76.78183190, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 'Shivaji Engineering College', NULL, NULL, NULL, NULL, NULL, NULL, 4175.00, 13.90, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFHGIUE}AcA{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', '2025-10-13 05:39:35', '2025-10-13 05:39:35'),
(16, 2, 'taxi', 19.23261376, 76.75393794, 19.25731560, 76.76468490, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 'Anusaya E-Square', NULL, NULL, NULL, NULL, NULL, NULL, 3554.00, 10.90, 'ylktB}xmsM_FoAeM}FsM_OwAoBU@aNaDmEiA{Be@}CmAcAg@OMQIo@KqD_BkA_@sIqFuCgBaC}AeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', '2025-10-13 05:56:17', '2025-10-13 05:56:17'),
(17, 2, 'taxi', 21.22415278, 72.88954128, 21.21640453, 72.88893141, '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '149', 'B-66, Yogi Raj Scoiety, Nana Varachha, Surat, Gujarat 395011, India', 'B-66', NULL, NULL, NULL, NULL, NULL, NULL, 1273.00, 3.90, 'gjp`Cqf{{LBLHJ@NEJxCpNd@fCB@lCm@fEs@rBa@lA[dJqAFIL@zA[fGiB~Ag@q@eC`@M', '2025-10-13 09:53:03', '2025-10-13 09:53:03'),
(18, 10, 'Taxi', 18.52460910, 73.87862390, 18.52914530, 73.87414840, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1539.00, 8.00, NULL, '2025-10-17 06:35:53', '2025-10-17 06:35:53'),
(19, 10, 'Taxi', 18.52460910, 73.87862390, 18.52914530, 73.87414840, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1539.00, 8.00, NULL, '2025-10-17 06:35:53', '2025-10-17 06:35:53'),
(20, 10, 'Taxi', 18.52460910, 73.87862390, 18.57934300, 73.90891680, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7893.00, 24.00, NULL, '2025-10-17 08:35:13', '2025-10-17 08:35:13'),
(21, 60, 'taxi', 19.24899070, 76.76534873, 19.25731560, 76.76468490, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 'Anusaya E-Square', NULL, NULL, NULL, NULL, NULL, NULL, 1688.00, 5.50, 'ejntBwapsMyCxFy@bB]TSDeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', '2025-11-05 10:47:58', '2025-11-05 10:47:58'),
(22, 2, 'taxi', 19.25634327, 76.76536683, 19.25194993, 76.76398885, 'Sakhla Flot, Shop No 5, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Sakhla Flot', 'Unnamed Road, Parbhani, Maharashtra 431402, India', 'Unnamed Road', NULL, NULL, NULL, NULL, NULL, NULL, 514.00, 1.60, 's~otBkfpsMFWrAZrEr@tB`@xCz@xCjA`Cr@', '2025-11-05 11:28:08', '2025-11-05 11:28:08'),
(23, 2, 'taxi', 19.25634330, 76.76536670, 20.59368400, 78.96288000, 'Sakhla Flot, Shop No 5, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Sakhla Flot', 'India', 'India', NULL, NULL, NULL, NULL, NULL, NULL, 392003.00, 402.70, 'w_ptByfpsMFY{GuCgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwB`H_IhAeB~@mBZu@|@wDz@}Ev@qD`DiQhAqF|@_FzBeNb@gDDcAEoAOmAS_ACYw@iBiBkD[w@m@gAoQq]aBiDaAiBkS{`@gBgDoFsKuBgE{E{JqTuc@_AoB}@{B{GeRCQif@qsAwBeGc@sB[cCOqBe@mLy@yTw@{Ps@oSqBkf@S}DMyE@oCZgCRuAh@sBvAmEtHmUtA{DlC}IT}@RaBReBH{B?yAq@iZ[wLw@_Vg@oU]gLQqJeBon@GcCQyESgBe@kBmAeDqA_DuDcLaEuMyA_Fa@{@mA{B_BiB}AsAgH{EwGiEgFcDuKiHoD_C}ByA}CwBgHuEsE{CcJaGmHaFwi@g^oCcBiIuF}CqBoAgAmAwA}AcC_@o@iMoYmDuIw@_BqCmGy@eBy@qBiGoNa@y@_HuOkDyHaO~GcCv@iCf@iPfCkX`EqB^_@Aa@GSFc@X_AV]F_@Vq@KoC`@oCXsDAgAKgC]qBi@eWeKsEsBqDsAwf@mScMkFQEwXoLeC_AuAq@_Bi@yUwJcLoEsF_CcAm@a@q@e@_Ae@aBE_@@c@^mD@UE][_Aa@u@e@a@gAm@sKuEgCkA{B_A{BaAgDeAu@MqCW{CSqDQoDUsACgKg@cGa@{AUuD}@_PmGqD{A_QuGmOuFi`@_OkAYkC]_CIwHBem@\\}XP_M@aPHeEFwK?g]TYCkQHqCIkBUiMiCmDm@c|@mQy@WsEw@qFqAa]aHeWsFaE]o@Ci@I]KwD}AgB}@uBo@wDe@aMgCkDUwI_@iF[iBGwCSkH]SBuESsUiAo@EwA[_@QqAw@USqAuAUc@{@uBiAaDk@wAAQoBgFcAqCiCiHcDaJc\\g}@{BwF_BqEa@_AgB_Fc@oBkNk_@_HcR}DiK]cAcAcCqCqEuAuAqCcCuJoHe@a@UMe`@{YwF}Dw[oVaD{Ba@c@cGvIqAjBwC~DaEbG_@n@m@p@eGtEgD|AiC`AoATeDN}Ix@sDVmK`@sCN{DL}AC{DQoF?yCDiCVwB^s@D}@CeAOaEaAsFgBqAq@sFcCkCqAkEkCyCyA}GgCsAu@eCeCaBmBYYYQc@QoE_AaJ}Bw@U]Mw@o@qD{Dk@w@wB}FYc@{AuA}CkC}AwAQIi@k@g@_@QKyCeAwD}AkBU{KeAa@?iK|Bi@FwFm@_@KWSWi@So@?O[aAmDkI}AeFmCiJ_@mAS]y@q@m@_@oA[kU{DgFq@{@YWQuB}BwMuH_Ag@]U{LcJkMyI{_Age@wBsA_FgDqHwEkXsP{QkL}IsFeo@oa@]OaAQaCUy@UqGo@uDUg@OkWaCoGu@gUcDyB]}NmB{Ca@}W{B_Jq@kGa@uMgAyLyBqOyCoMwBa@C_@F[NeB|AkAjAwAhA[Pe@Lm@FyA?oIIgEKkVWg@@wACs@Gm@Oc@Qm@a@a@_@gFsHmDkFo@eAuAmBmAkAaAs@y@c@{HmBeOcDyK}B{w@qPyCq@wu@wLcBa@qNiFkAi@sm@oZkDgBqB_AyByA{i@oc@uAeAeA_AoIuG_CqBSUaBoA}A{Ae\\e_@wB_CiCmCi@a@uCeBaKaGsTcNyCwByIaImN{Li@k@cIaHoCsCeHaIg@w@Ww@Ii@GkAAcDW{MIaECIIoAQy@Wm@qBgDGQ{FmJMYY_Ba@aF?}@@q@p@kHJcADyBEgAQeAk@qBaA{CeA}CkDoJWe@QOO^ALgDzHs@rAU\\qClCgAt@a@RAHI@GG?GkNgTeAeBiAyA{BqDa@w@Ma@yH}Lk@cAmBoCm@oA]c@m@[]M_B[kHoBoBu@uBm@u@OgAQoBGcADqA?yCUqC_@}RuBuBYgCUeKkA_D[iT}B{@OkE]kA?}BQCFSFwQJiPBwDB{VJmADcC?mMF{BBsCa@uAGeIFqCCo@Em@Qo@_@yFeEs@a@cAa@o@_@u@WeVmJi@]_@_@uDaGiCiEs@s@a@W{IqDsFgCu@c@IOaB{@kFeC{B{@iA]yA]aC_@sBSaa@yDuBYc@IsDeAmE}AoAi@iCsA{ByAsSePw@}@c@c@m@u@k@y@sCuFy@kAg@k@u@s@w@k@gAk@wCiAkO{FcB{@_Am@yDuC_Aw@}AeAsB{@_Bc@_AIuBEk@AoAJ}AXyDrAuAj@{DrAq@Rw@N}AJ{ADwHa@y@GgC?cBDcBPwHzAkD`@{@Dy@?iCGuL{@oM{@mEYmF_@iKi@cE[}BMoCCq@ByAJuN|AwGd@{D`@iBJcLhA_Ix@sFv@eATqOpD{GzAiBd@eCd@gPtDmg@`LoD~@{B|@gCtAyHvE}D|BsIfFcB|@w@^u@XoCf@o@FoS`@qGHwNRqD@uT^eCB}MTcLNiHHoLNeVVoQTcFBmHIeE?iGV_BR}RdEyFpAgEr@uSdBoBV{Bh@qCdAyKpEsAd@uChAiJ~D}DrAoFdBgJrCaHfBeThFmHjBga@bKwG`BeGxAoNrDmKfC{QvEaJxBqBj@wQdEuGz@i_@bEaCTiFVeA?cBEuAGqC_@mAUkCu@mBs@_Ac@eC_B{F_E{DuCyB{A_H_FeCyAsAk@{@[sAa@s@O}AUsAMuBGeA?IDsADmBPi@Hi@@iCr@eFfBcMpEaKlDu@RgAd@{BrAe@^mAnAw@fAg@v@oJ~S_@p@q@z@i@j@{AlAw@`@kE`B{CdAoPtEmHnB}FzAk@Rw@RyDp@kH|AuCf@qO~BgD`@kBHgBCoBMiBWcOeByHeAwBUsBKgBAyEP}Hn@iEXeCDmE@}BQmEu@_Ey@kDk@sD_@kHc@oEKaDFsBJyCTeFp@oB\\aCh@qEv@}Hp@gLbBeCXmFZuQbCsAZmBXyRjC{Fb@ik@rC}CLkKh@qB?iBIqEy@gIgBwBc@sCq@{s@kOyA_@uOcD}SqEoNyC}[_H}@KoAIsCB_@DcBDoQx@qGX}CPmI\\oAJkARwBj@c@NiCzAmAbAw@z@aAtAs@vA_AhCeBzFgEnMwJvZ_Kt[yBbHoKb\\eFvOmIbXaG|QeFpPcPzm@oKx`@iDrMi@dBm@dB{@hBkAtBcBbCaCrCg@d@_D`Cw@f@kCpA}DzAcAZeF|@gLhBoTfDm]fFmUrDeLbBuEt@yJtAaHl@gENwE@qDIcEOwGk@kEo@}Co@iD}@{G_CaEgBq_@{PqBaAcTmJeFoBoA_@wA[mBU}AIsA?sAFy@HiBX}D~@mBr@sC|Aqa@zXiNhJyBdB_MdMmFpFqIxI_@d@kEnEkBdBuMnNwGtGuCxCiApA{AxAwA`BcC~B_DtDcFdGgFfFmAvAe@t@g@|@w@nBwBnHi@pA}@bBk@~@mExFi`@xe@wLbOcBvBiDzDkEnEqC`DoH~IkAvAsF|GcEvFiBxBmAjAcBnA_CrA_NbHmI|E]NkZ`QkCbB}@x@_C`C_BpBa@n@{AzCq@`Bq@pB_B`Go@vAa@r@m@x@wAvAwGlF_IxHqAhA_e@hd@{CxCwAxAsMbMwCnCsH~GsBfBgD~CgGjFgAr@s@\\qAf@oBd@kBV}AFgBAcCSmPaBuVmCeRoBsLiAw@KeFk@mGi@cBKyGWgFAyNReSZ{HPoAJ{ARa@JkAf@s@^cAz@}A~A{@hA]v@a@pA]nBM`AcDd_@W~C]rCuBnNoBhOeA~HcAhGqFt_@gAbIk@hDQp@m@fBcAbBe@l@_Az@y@n@iBz@kBh@{AVuS~C}Cl@iEp@u@R}B`Au@^yA~@sCxBiBpAuEpDgC~Ac@TsClAwGtBqCv@uBd@iDj@uHhAwGt@IJa@J{KfB}A`@y@\\i@^k@n@c@v@W|@QfAAlAFv@N|@`AhDBr@zDxKhEpNhAxDTdAnAbEX`BBd@CbAGl@]hAS`@Yf@c@^q@b@m@ZyAj@e@JoJtDq@ZmAz@m@t@MXa@rAE~@Fr@Lt@Lb@b@n@d@b@p@^~@Rt@Bp@Gr@Oh@Y`@[X[Zq@Ni@F]By@GeAIa@{AwEqCsIwAmEuA_F[eBAe@_HwV_EePqFyViCgNcGs^kAaIyFg_@oDeU_@wB_hCklPyIyj@aC_NyC}NsDcPcDkM}EsPeBuFgD_K{DuKwEuLwFsMyDqIkH}NmKeS{J}Qy@_ByD{GaFuJeBwD_AoBaG_LqCyEiIePaG_LcI{NeEqHeFeKcCqE_DgFwAoCqBgEkPa[}C_GoDaHsJsQgCaF}U{c@oEsIcD}F}]aq@aCsEoF{JiIcPoDmIqCaHcA}CgEuNcAcEk@uCw@iDi@oC_DaOkCgKeBqF}ByGuBmFyB}EuDsHcEiHmE{GiE{F_E_F}SoUgH{H_DeDgNkOkFuGqEiG}C_FgCmEwKuSa_@}r@gEmIwEyJcDoH}FmNgD_JiGkQaGsRyC}KiBaHgDuNsCyMmCsNoBqK_DsPoGm]gCsMw@qEsBcKcC}MmDaP_B}GaBmGeGuS_Li]oFkNwB}EiDmHmGwNcIcPcBgD_BaDcAkB{MqWsFwK}N}YkDcHeLyTsKgT}CaG}EqJ_KqR{KqToIgPkF_LoHwNgFyJ_FcKsDaH_IoOeD{G{R_`@sTgc@y\\up@mHoN}M_XeCkFcUwc@ebAkoBy`A}lByTcc@gBsDeVye@_Pa[gAaCcCeG{B_GoCoIcAiDyAaG_A_Es@oDuAaIeAyHw@uHa@_Fi@cKs@sV_@sOi@eN_@cOGsEa@uOQ}Di@uRQsEYmKMuGUmBGsEU}Je@qTcBen@cAm^}@y\\Y}Ii@_NiAgUmDwi@}@aLcB}QoBkRwCeWkAyIgHaf@}DeVsI{c@}Gi[iCyKuDgOaGyTwK__@iFkPmCeIuIqVmGsPeEwKmGwOqCsGgG}N_See@gH}PmEeKuAeDwCaH{BuF}BcFe^}z@ge@ihAWi@u`@k_AcVqk@{Yqr@cPy_@cLcXgYiq@kOm^as@{bB}FeN{EkLkKuV{Ns]sMyZ}A{DiCkHmBiGkDyMeBsImAcHk@oE{@kHq@iJm@gL}@qU_Csp@k@yMwFwzAkBqf@wAg_@oHonBqA}\\cAqYkA{YuAq_@aBub@_AqWsBgh@sBim@_Dqy@o@iRe@oMO_CGaC]iIs@mSgA_XsAe_@c@qH[_Ei@_Fu@oGgBqKoCiMe@gBgA}DeBuFmFgNeAeCcMmW_Uud@qBuDuOw[cPu\\wBiEeDgHwKmT}GiN{BkEmD}HqEkKkAwCcC{GqAyCoGqRkDkLmPsm@_BsFuBcIoOyj@{BoI_HqVqUe{@kC{JqVs}@aU_z@}a@e|Aq`@wxAqTsv@{d@gaBu@gCaFkQqQao@cLaa@}CuKyIg[s\\mkAeE_OkNag@q@yBaKq^yCgKwAkFkSos@wV_}@wDoM{DuNoByGqiAq`E{Ugz@sGmUcAgDaEeOkBoGwNch@cB{FiG_U_CoJyWshAsq@ytCiP}q@{]qzAmP{q@gUeaAsBaJkHqZkJ{`@yUybAsA}FgDcNqO_p@sDwO}V_fAwEmSmJ{`@sEeRmMgj@cC_LsGkXkUacAmGmXeAyEiBaKs@iEsAmKiAiLs@}KSkE]oMGuF?eJx@qfBBaGNgXCsDMiFIgB_@uFa@kEuCkUiCuSqDiZiBuOoBeOgF_b@s@gFoNikAcBuKg@kD{ByQeC_T?u@eAyJcAiMc@oHm@qMa@kNIaEC_EBmMDeLPoHXwJ@}BNyC`AiMPcErAgNbAqIx@gGnBsK`B_J`BuKtEcWhDcSb\\glBtDuTvCiPtF}[rDwSpEoXdAiHt@gG`BcPd@oG`A{QNoFl@k^?_F@wFEaDByDZkMP__@NwZHiO@}G@cF?yFJkNDsBJcJv@acBDeOAyFEyDW{Nc@iM_@yGe@kHq@cIi@_Gk@}Es@yFyBcO}BiMgBqIuCcMaX_eA_HuWs@eCsBgIQQIQw@{BwCkH_@iAaFyR]WW_@Me@Ai@Fg@Rc@Z[b@Sd@Eb@D`@P^Zj@TPBdFDNDlX]xFGpEKhHIfB@^Bnd@tIzGjAj@JZDjDS|W_BdE_@lAQ`AWdDgBrFaDjA_AhE{BpI}EFMdLyGlBeAdBu@`FyA`A_@jHqB`Eu@rEo@nEe@|Cc@dC[z@G|Fy@vXeDxB[bBKLINBB@jBQtIg@dCGdXsA~CKFOBUaAScAc@a@[Wa@mEgJKSLMT_@t@eFb@eDzAsJfCoPJaBj@cCLYf@o@d@c@tA{@z@Wp@Mf@@tARnDlAFKk@oGSiCCs@AkAJ_AzKqc@rA{EVeANeA@mABKOsAAeAJcAJa@p@}A`@_AHW?Ui@aGGsBCyCQqKOmOE}BB_BHm@|AgG~EcRnAsENo@Dc@@g@Ak@_@oFg@_HOoCKeBG}C?sOG{IEQAiBByAAwABmBCsLFiDHgANo@~DuHdJeQT]X{@xAiDlAmDtB{Gx\\uaAzAoE|BoGfAaDFOD[d@}AvDiK^u@hHiSxAoEdFgNnMkKzC_C~BeBBGH_HZqJPmGn@oOFgH\\qH?yCPwIPqDN_FbAsEJWbOkk@vGsUpA}DfFoT~@sBzAK`Fs@zCiAvAgClT}RzXkXdOoHv`@eRbFyBpCgBrIwIrCwCpDoEnDiD~GuHp@yAfGmThA{EjHia@B]_C}h@u@sRg@{J?s@@WlEwMlPce@vHsSv_@ydAbc@emApBiGpBgFd@oBj@eB~@eCxAoDzPse@Nm@~LulApB}RdJax@BsBj@{C|S}_ApH{]pDcQfP_z@dC_MrCmLn@_CBk@E}FBgAYy\\CoH@yBSi]JkCzBuSlD}YhBgOn@{F@s@_AoQYcIOuQCuBFa@hCgEXeALcAFo@HyBBaFF}CC{BKoAMgAi@oBqBqEOY`@y\\RuL@i@i@{TWaKhA@vHKjTPlECfBMrEs@tCi@bBO~A@l@@|u@nEhN~@`DH~BQv@OzAe@f@UdDsBfD}B`GmEhMuI~CmBxAeA|@g@zR{M|Q{LtDkCn{@qk@jFgDdw@mh@~DoCM_EKcF?aBAgAOeDC{@FeCKk@KK[Im@Cy@KkAWSMSSU_@_@qAS{@M{@E_BEiDsBImH_AaDk@yBq@N_AlBuJ', '2025-11-05 11:36:32', '2025-11-05 11:36:32'),
(24, 72, 'taxi', 20.80957015, 75.77873502, 20.80088138, 75.77477373, '725, Jamner, Maharashtra 424206, India', '725', 'Unnamed Road, Dongareji Maharaj Nagar, Jamner, Maharashtra 424206, India', 'Unnamed Road', NULL, NULL, NULL, NULL, NULL, NULL, 1234.00, 3.40, 'ak_~BcpomMDg@h@En@@vAVp@Rz@PdCX|BP`@A`DFlBRbGV|DDp@H\\Jt@`@hAv@JRrBz@fBtAk@zBcA~E', '2025-11-06 06:32:54', '2025-11-06 06:32:54'),
(25, 72, 'taxi', 20.80957015, 75.77873502, 20.80615964, 75.77696610, '725, Jamner, Maharashtra 424206, India', '725', '18, Ayodhya Nagar, Jamner, Maharashtra 424206, India', '18', NULL, NULL, NULL, NULL, NULL, NULL, 563.00, 2.50, 'ak_~BcpomMDg@h@En@@vAVp@Rz@PdCXvBPB~Ac@zClDd@', '2025-11-06 07:40:49', '2025-11-06 07:40:49'),
(26, 72, 'taxi', 21.23000488, 72.90089674, 21.22382275, 72.90050011, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', 'A-5, Vrajbhumi Twp Sector-1, Nana Varachha, Surat, Gujarat 395013, India', 'A-5', NULL, NULL, NULL, NULL, NULL, NULL, 1163.00, 3.90, 'onq`Ckm}{LqARCWlDc@tCg@`OaDpAU`Ci@dBUlBOjBWJIJBBLIJA?LlA@f@u@Hm@NYZAZ?ZF\\TfDP?', '2025-11-06 08:38:14', '2025-11-06 08:38:14'),
(27, 72, 'taxi', 21.23830212, 72.90089674, 21.22559169, 72.90009275, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', 'Rushikesh township, No 01/504, Varachha Main Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', 'Rushikesh township', NULL, NULL, NULL, NULL, NULL, NULL, 1761.00, 5.70, 'abs`Cum}{LLhAhB[~A_@b@fAh@lB|@rBJBzCe@t@O|@KpHwAdDe@rBSpCc@fDo@BG~Fy@fQsDNEDVQD^fCZnBZ`Ct@I', '2025-11-06 09:17:48', '2025-11-06 09:17:48'),
(28, 72, 'taxi', 21.23515203, 72.90089674, 21.21087102, 72.89484266, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '65', 'Star Deal Godown Rd, Mansarovar Society, Yoginagar Society, Surat, Gujarat 395011, India', 'Star Deal Godown Rd', NULL, NULL, NULL, NULL, NULL, NULL, 3390.00, 8.80, 'unr`Cqm}{LlB_@TMTY`ClCdAnAhC]rBSpCc@fDo@BGhBWThApCfLxEhQ`@vAlFs@|FiAjAOx@G|DKt@?`@DnAVxATnOGxCIhAMtGiA|Fs@dNkAzAQjBIh@hEt@hFR?jFg@', '2025-11-06 09:37:24', '2025-11-06 09:37:24'),
(29, 72, 'Taxi', 20.80938750, 75.77423440, 20.81588230, 75.78147910, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1427.00, 5.00, NULL, '2025-11-06 10:27:21', '2025-11-06 10:27:21'),
(30, 72, 'Taxi', 20.80938750, 75.77423440, 21.04177070, 75.78755170, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 29266.00, 49.00, NULL, '2025-11-06 10:32:15', '2025-11-06 10:32:15'),
(31, 72, 'Taxi', 20.80938750, 75.77423440, 21.04634610, 75.78829090, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 29061.00, 50.00, NULL, '2025-11-06 10:40:46', '2025-11-06 10:40:46'),
(32, 72, 'Taxi', 20.80938750, 75.77423440, 20.70990300, 75.68395080, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 16007.00, 24.00, NULL, '2025-11-06 10:44:21', '2025-11-06 10:44:21');

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

--
-- Table structure for table `recent_searches_stops`
--

CREATE TABLE `recent_searches_stops` (
  `id` int(10) UNSIGNED NOT NULL,
  `recent_searche_id` int(10) UNSIGNED DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `short_address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `poc_name` varchar(191) DEFAULT NULL,
  `poc_mobile` varchar(14) DEFAULT NULL,
  `poc_instruction` varchar(14) DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `recent_searches_stops`
--

INSERT INTO `recent_searches_stops` (`id`, `recent_searche_id`, `address`, `short_address`, `latitude`, `longitude`, `poc_name`, `poc_mobile`, `poc_instruction`, `order`, `created_at`, `updated_at`) VALUES
(1, 15, 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 'Anusaya E-Square', 19.25731560, 76.76468490, NULL, NULL, NULL, 1, '2025-10-13 05:39:35', '2025-10-13 05:39:35');

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

--
-- Table structure for table `requests`
--

CREATE TABLE `requests` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `request_number` varchar(191) NOT NULL,
  `is_later` tinyint(1) NOT NULL DEFAULT 0,
  `poly_line` longtext DEFAULT NULL,
  `on_search` tinyint(1) NOT NULL DEFAULT 1,
  `assign_method` varchar(191) NOT NULL DEFAULT '0',
  `is_rental` tinyint(1) NOT NULL DEFAULT 0,
  `rental_package_id` int(10) UNSIGNED DEFAULT NULL,
  `is_out_station` tinyint(1) NOT NULL DEFAULT 0,
  `ride_otp` int(11) DEFAULT NULL,
  `instant_ride` tinyint(1) NOT NULL DEFAULT 0,
  `book_for_other` tinyint(1) NOT NULL DEFAULT 0,
  `book_for_other_contact` varchar(191) NOT NULL DEFAULT '0',
  `attempt_for_schedule` int(11) NOT NULL DEFAULT 0,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `transport_type` enum('taxi','delivery') DEFAULT NULL,
  `is_without_destination` tinyint(1) NOT NULL DEFAULT 0,
  `goods_type_id` int(10) UNSIGNED DEFAULT NULL,
  `goods_type_quantity` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `zone_type_id` char(36) DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `fleet_id` char(36) DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `trip_start_time` timestamp NULL DEFAULT NULL,
  `return_time` timestamp NULL DEFAULT NULL,
  `discounted_total` double(10,2) DEFAULT NULL,
  `is_round_trip` tinyint(1) DEFAULT NULL,
  `arrived_at` timestamp NULL DEFAULT NULL,
  `accepted_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `is_driver_started` tinyint(1) NOT NULL DEFAULT 0,
  `is_driver_arrived` tinyint(1) NOT NULL DEFAULT 0,
  `is_trip_start` tinyint(1) NOT NULL DEFAULT 0,
  `is_completed` tinyint(1) NOT NULL DEFAULT 0,
  `is_airport` tinyint(1) NOT NULL DEFAULT 0,
  `is_parcel` tinyint(1) NOT NULL DEFAULT 0,
  `parcel_type` varchar(191) DEFAULT NULL,
  `paid_at` varchar(191) DEFAULT NULL,
  `is_cancelled` tinyint(1) NOT NULL DEFAULT 0,
  `is_pet_available` tinyint(1) DEFAULT 0,
  `is_luggage_available` tinyint(1) DEFAULT 0,
  `reason` char(36) DEFAULT NULL,
  `custom_reason` varchar(191) DEFAULT NULL,
  `cancel_method` enum('0','1','2','3') NOT NULL COMMENT '0 => Automatic,1 => User,2 => Driver,3=> Dispatcher',
  `total_distance` double(15,2) NOT NULL DEFAULT 0.00,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `is_surge_applied` tinyint(1) NOT NULL DEFAULT 0,
  `payment_opt` varchar(191) NOT NULL COMMENT '0 => card,1 => cash,2 => wallet,3=>wallet/cash',
  `payment_intent_id` varchar(191) DEFAULT NULL,
  `card_token` varchar(191) DEFAULT NULL,
  `is_paid` tinyint(1) NOT NULL DEFAULT 0,
  `request_eta_amount` double(15,2) NOT NULL DEFAULT 0.00,
  `offerred_ride_fare` double(15,2) NOT NULL DEFAULT 0.00,
  `is_bid_ride` tinyint(1) NOT NULL DEFAULT 0,
  `is_trip_meter` tinyint(1) NOT NULL DEFAULT 0,
  `accepted_ride_fare` double(15,2) NOT NULL DEFAULT 0.00,
  `user_rated` tinyint(1) NOT NULL DEFAULT 0,
  `driver_rated` tinyint(1) NOT NULL DEFAULT 0,
  `promo_id` char(36) DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `requested_currency_code` varchar(191) DEFAULT NULL,
  `requested_currency_symbol` varchar(191) DEFAULT NULL,
  `additional_charges_reason` varchar(191) DEFAULT NULL,
  `additional_charges_amount` double(10,2) NOT NULL DEFAULT 0.00,
  `unit` enum('1','2') NOT NULL COMMENT '1 => kilometers,2 => miles',
  `if_dispatch` tinyint(1) NOT NULL DEFAULT 0,
  `dispatcher_id` char(36) DEFAULT NULL,
  `booked_by` int(10) UNSIGNED DEFAULT NULL,
  `web_booking` tinyint(4) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `requests`
--

INSERT INTO `requests` (`id`, `company_key`, `request_number`, `is_later`, `poly_line`, `on_search`, `assign_method`, `is_rental`, `rental_package_id`, `is_out_station`, `ride_otp`, `instant_ride`, `book_for_other`, `book_for_other_contact`, `attempt_for_schedule`, `user_id`, `transport_type`, `is_without_destination`, `goods_type_id`, `goods_type_quantity`, `service_location_id`, `zone_type_id`, `driver_id`, `fleet_id`, `owner_id`, `trip_start_time`, `return_time`, `discounted_total`, `is_round_trip`, `arrived_at`, `accepted_at`, `completed_at`, `cancelled_at`, `is_driver_started`, `is_driver_arrived`, `is_trip_start`, `is_completed`, `is_airport`, `is_parcel`, `parcel_type`, `paid_at`, `is_cancelled`, `is_pet_available`, `is_luggage_available`, `reason`, `custom_reason`, `cancel_method`, `total_distance`, `total_time`, `is_surge_applied`, `payment_opt`, `payment_intent_id`, `card_token`, `is_paid`, `request_eta_amount`, `offerred_ride_fare`, `is_bid_ride`, `is_trip_meter`, `accepted_ride_fare`, `user_rated`, `driver_rated`, `promo_id`, `timezone`, `requested_currency_code`, `requested_currency_symbol`, `additional_charges_reason`, `additional_charges_amount`, `unit`, `if_dispatch`, `dispatcher_id`, `booked_by`, `web_booking`, `created_at`, `updated_at`, `deleted_at`) VALUES
('021fcf57-34a9-4590-ab72-95030d4ff0cc', NULL, 'REQ_176242547753', 0, 'ql_~BgtnmMCj@M?X}I\\gI}BOqEg@kEYyAGeDWa@IkCc@q@We@e@kCeDo@cBoDiMYe@UWQMUKeAW_ASq@KoFmAyPsEiLkBeG{@_GaAaO{AaDm@oCm@qEaBcJoCkAY_DcAwCoAcCu@mB[mBUwA[y@Gq@@mI|@iCPw@A]G]QWWoAsBeDiFm@s@e@Oa@CmABgCT}Lp@gAAuCMsAAcC\\uCTeL@kCOqDe@uDo@eAMaAIgJc@{DOkE[yK{@}GOcIK_PcAoMyAyHu@sFq@sD[iBY{Ak@oEuA{AWcAC{@NaBd@mHpD}F|CaAv@{AvAoC`B_Bz@uAz@m@XaKrBqA\\iDhAqE|Ak@PeEb@aBX{J~BcCp@g@RyBbAuGrDeBp@aAZmEbAa@L_@T]\\cA`BcBfDqB~AgAl@_CbByAp@kLdE_OzFmC~@}ExBmAZ{MfBoIlAw@@sAIuKaAg@?iAJiEp@}Cj@mAJ{@AcAKq[sGgBWcB?{Ol@cCBwAMmBYeJmBsLsCwASq@EqAAkHSsD@sCDqA?}Da@oLwAc]sDeACsS~@mGx@cNnBgAH{F~@sA`@iBx@}KvFqGhDuAl@s@PiKfA}ALqA?aGKkK^uGX]D{@RiM|Dg@JYAWIwCmBgC{Bo@e@SIo@Ew@EcUN}GF_Zx@yEPoAJu@N_T|FsA\\aBT{Iz@_BJeGNwAAeCQaCUs@Cw@DcHbAuEj@cEFyOF_NHoPi@mYLgDDeAOgCgAw@a@yBgAcAa@wCwAi@Uc@Ki@QkCc@_Iu@mNmBqDm@{A]_Bc@u@IkDOgBEuAKoHWwKg@eCKeBSiAA_AEg@IwFOi@CiGAwFGaC?aAPUAYCHw@?k@OeAUgCcBuKk@eEo@mD[uA_HgT_@gA[qAe@sAa@yAm@eBe@cBkAkDqEmNmCkIk@sByCnAKJiArDeAbDgB|Fg@hAcAfBk@~@q@xAq@jAeA`AkBpBo@h@eAr@w@p@}AdBeAbBkAnA_@n@k@jAA@', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 3, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 29.27, 49.00, 0, '1', NULL, NULL, 0, 422.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 1, '2025-11-06 10:37:57', '2025-11-06 10:46:08', NULL),
('025497df-d5d5-4e29-89d8-3da5313c8e01', NULL, 'REQ_17602478512', 0, 'mjp`Ceg{{LH`@HJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@uALE[', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-12 05:45:01', NULL, NULL, NULL, '2025-10-12 05:44:50', '2025-10-12 05:44:39', '2025-10-12 05:45:06', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.67, 2.60, 1, '1', NULL, NULL, 1, 32.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-12 05:44:11', '2025-10-12 05:45:40', NULL),
('03693f51-5e3f-4a21-bee7-bfb74731ab2c', NULL, 'REQ_176241850369', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsAXnB', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 0, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:42:12', '2025-11-06 08:42:03', NULL, '2025-11-06 08:47:33', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.86, 2.60, 1, '1', NULL, NULL, 0, 63.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 08:41:43', '2025-11-06 08:47:33', NULL),
('042346b2-9811-4822-a1b2-8574f2470dfd', NULL, 'REQ_176242310474', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'e33631d9-6e1f-48a7-9c4d-a370580bb343', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:04:38', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.89, 4.00, 1, '1', NULL, NULL, 0, 81.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:58:24', '2025-11-06 10:04:38', NULL),
('06035a58-d39b-4ac8-afdc-848d5dd24ff5', NULL, 'REQ_176008792382', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@vE}@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 09:43:35', NULL, NULL, NULL, '2025-10-10 09:31:33', '2025-10-10 09:19:26', '2025-10-10 09:53:57', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.76, 2.10, 1, '1', NULL, NULL, 1, 56.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:18:43', '2025-10-10 10:04:09', NULL),
('0668bf58-4cc2-4100-a676-48027a615976', NULL, 'REQ_175983096712', 0, 'kjp`Cyf{{LFTHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDIwAMiA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 09:56:54', NULL, NULL, NULL, '2025-10-07 09:56:45', '2025-10-07 09:56:40', '2025-10-07 09:57:01', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.69, 2.40, 1, '1', NULL, NULL, 1, 31.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 09:56:07', '2025-10-07 10:03:57', NULL),
('06aaa489-3528-4f15-86bb-3305569d505e', NULL, 'REQ_175985215534', 0, 'ulp`Cae{{L^OREPKN@DHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@Lh@xAaBPFx@x@K', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:49:37', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.78, 2.80, 1, '1', NULL, NULL, 0, 33.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:49:15', '2025-10-07 15:49:37', NULL),
('0870cf67-7ce8-452e-bf11-0d3a65ad6e98', NULL, 'REQ_175983177192', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDIwA_Ch@KACE_@qBWa@KIf@M', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 10:17:58', NULL, NULL, NULL, '2025-10-07 10:17:47', '2025-10-07 10:10:19', '2025-10-07 10:18:03', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.84, 3.00, 1, '1', NULL, NULL, 1, 34.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 10:09:31', '2025-10-07 10:18:24', NULL),
('0995397f-eebe-4bb5-b990-45b823c54ed7', NULL, 'REQ_175985163739', 0, 'mjp`Cag{{LH\\HJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGd@I', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:41:12', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.44, 1.50, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:40:37', '2025-10-07 15:41:12', NULL),
('0a26718a-6534-47bd-b5fb-e9f5ebfad843', NULL, 'REQ_175985148729', 0, 'mjp`Cag{{LH\\HJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGd@I', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:38:20', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.44, 1.50, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:38:07', '2025-10-07 15:38:20', NULL),
('0b353677-1a98-4a66-ac03-2cbed7efc06b', NULL, 'REQ_176242473323', 0, '}wotB}ppsMMAc@bGS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-11-06 10:29:28', NULL, NULL, NULL, '2025-11-06 10:29:16', '2025-11-06 10:29:00', '2025-11-06 10:29:40', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.88, 4.00, 1, '1', NULL, NULL, 1, 79.00, 0.00, 0, 0, 0.00, 0, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:25:33', '2025-11-06 10:30:24', NULL),
('0e65439a-0a99-4d32-a95e-cedd6f23a9f5', NULL, 'REQ_175984817638', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:43:15', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:42:56', '2025-10-07 14:43:15', NULL),
('10e4cd40-1b72-41ea-8720-b076da8207f8', NULL, 'REQ_175985176074', 0, 'cjp`Ccf{{LFF@Bp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDVI', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:43:05', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.61, 1.90, 1, '1', NULL, NULL, 0, 29.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:42:41', '2025-10-07 15:43:05', NULL),
('128d55e3-2acf-4669-9a92-8014865aec3c', NULL, 'REQ_175990071246', 0, 'wiklCcq~fNoAmDe@qAYm@Qg@fBw@zDkBkAiCIIw@sBc@ASOKY@YLWTKXATJBBn@a@d@q@hDsFh@qAf@gBf@aCNyAPqEHyEAMBEV_INwBN{DIKBKJC?uMJcEJqAJyCh@cFdAeGCKFIHBBFrFXP}@^yDFgC@sAHyAR}A`@qBTg@H]Ds@?}CB[OwEYwDc@kAo@}AcEmKoAkDs@sCuAeDKMsAu@e@g@iAuAcA_AwA_AuBeBcAaA]a@c@{@yAgD[cAe@oBQ]sA_C]oAWk@mAeBqB{CiB{Bg@_@iF}CcDcE}BoDM[Ea@IkAMEAOFML?HJ?Fh@PrAbAfBfB^T\\HVBrAAZGf@UDy@g@gBQ_@m@e@aCaBs@q@Yc@a@wB}A{IgAuHEoA@_JCk@Qq@cA_Du@mBGc@@s@Bo@f@}EaAcGuA_ISs@QYkD{B]YW[_KmQ[_@e@]yCcBy@k@_@e@O_@Qm@mBcKOq@qBgGW{@i@gCSeBKo@}AyGwAwCQy@?[B_@lAkFL_AD{AOk@gBwEWa@OSiBqAkFsDqCqBe@e@kA{A}AyCcA_C{A}BoEcGcCeDqAoByAyCKc@@]hAmDDg@Eq@cB}I}BmICk@B[dAwC~@aC~@wCDc@Ei@M_@iLiZgEaK]_AKi@?YMIESDQLKR?@@dAa@zQoKd@]HMDSNMR?HDhAm@RSLg@Dg@C[{BwE_AoB?KNOpEiCCOwGoNxIMbABvCK~CpH', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:19:31', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 14.26, 25.00, 1, '1', NULL, NULL, 0, 207.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 05:18:32', '2025-10-08 05:19:31', NULL),
('150045fa-13bc-4984-97f5-58172d7caba5', NULL, 'REQ_176234400214', 0, 'qxotBsopsM]vES`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 3, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 12:32:34', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.85, 3.90, 1, '1', NULL, NULL, 0, 75.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 12:00:02', '2025-11-05 12:32:34', NULL),
('1acb4604-1b53-442a-82ca-3bc8c28b9164', NULL, 'REQ_17603386893', 0, 'oxotB}opsM_@`FS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'delivery', 0, 5, 'Loose', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'e9b87f67-553f-4c5d-a08f-d1e89220aaf8', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 06:58:38', 0, 0, 0, 0, 0, 1, 'Send Parcel', 'Sender', 1, 0, 0, NULL, NULL, '1', 4.10, 14.60, 1, '1', NULL, NULL, 0, 207.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 06:58:09', '2025-10-13 06:58:38', NULL),
('1d18982f-6726-4518-bcaf-8324a5f8bef6', NULL, 'REQ_176242043682', 0, 'gjp`Ckf{{LBFHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@S', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:15:06', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.49, 1.60, 1, '1', NULL, NULL, 0, 51.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:13:56', '2025-11-06 09:15:06', NULL),
('22b9fe31-17a2-4bb6-a15d-83c6d3bc9d27', NULL, 'REQ_17600877899', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@vE}@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:16:49', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.76, 2.10, 1, '1', NULL, NULL, 0, 54.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:16:29', '2025-10-10 09:16:49', NULL),
('2514b43d-c34d-48dc-a9bd-ff42147a75d1', NULL, 'REQ_175984326715', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~B[p@GNC', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:23:16', NULL, '2025-10-07 13:28:34', 1, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, 'ced0f99b-5ce0-446d-b362-c1bd6c7bd7ed', NULL, '2', 0.91, 3.30, 1, '1', NULL, NULL, 0, 36.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 13:21:07', '2025-10-07 13:28:34', NULL),
('2984be9b-08f1-44bb-8dbe-5bc09b84671c', NULL, 'REQ_17603506622', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIhAM@p@dAIeAHAq@ZEbBI~BGtAUHLd@d@PJ\\Fb@@`@Lh@xAaBPFx@TC', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-13 10:18:39', NULL, NULL, NULL, '2025-10-13 10:18:27', '2025-10-13 10:18:18', '2025-10-13 10:20:13', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.84, 3.40, 1, '1', NULL, NULL, 1, 36.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 10:17:42', '2025-10-13 10:21:00', NULL),
('299b5587-fff2-4141-a2de-202275573b42', NULL, 'REQ_175983298552', 0, 'kjp`C_g{{LFZHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLvD}A', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 10:53:56', NULL, NULL, NULL, '2025-10-07 10:44:46', '2025-10-07 10:30:50', '2025-10-07 10:54:30', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.59, 2.30, 1, '1', NULL, NULL, 1, 31.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 10:29:45', '2025-10-07 11:29:20', NULL),
('2b5a8e44-ad48-44a4-bc37-c2a975fd617d', NULL, 'REQ_176033619192', 0, 'ylktB}xmsM_FoAeM}FsM_OwAoBU@aNaDmEiA{Be@}CmAcAg@OMQIo@KqD_BkA_@sIqFuCgBaC}AeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 06:58:39', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 3.55, 10.90, 1, '1', NULL, NULL, 0, 162.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 06:16:31', '2025-10-13 06:58:39', NULL),
('2e903934-601e-4b95-94d9-d4d8794f907a', NULL, 'REQ_17594768781', 1, 'eoltBq~i}LKx@U^kBx@`BjCzB`EpAbCf@j@HCJHBNbE~Ch@h@j@v@f@nAxAzEbArCVh@pFhHlAvA^Tt@V`@?nDWVMRQVo@`@iAPYt@s@fHmG\\c@rCaCjBiA`BaAAwAPqGJe@R]FGhA[bEy@vBY\\IhDi@DMLCLD~BBpCAh@MnBw@TM|CqAhAc@`FuB~CyAhCeAzCsAlAe@`HsC`NeG~CkAtJoCdKyC|@YrFaBjAa@rDgAnD}AvMeEn@SN?jDaAfA]dAWRQpBo@jHmBrDiArBe@xAMhIc@fDSpJCx@L|B?~@AhBFxBPvUnAvCRnCDn@El@[f@g@~BkD~CaEfA_B~D_FLCb@xJn@|H\\hF^vEZvCR`DN~C~ApU~@nLb@vEZxEVlDTnEbBjThArLZpCf@~C`A`FjA`GPv@n@HZJdAAx@ErC[rAQnFi@rDe@jN{AAjKnCH\\DzQ?jGC`FBl@KfC_@jB[XK`Cg@bDg@vAMr@EhH_ABkG', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, '2025-10-03 19:34:00', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-03 10:24:35', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 13.26, 40.50, 1, '1', NULL, NULL, 0, 637.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-03 07:34:38', '2025-10-03 10:24:35', NULL),
('2fb8078a-ab36-42b5-9575-e523b6d26cf1', NULL, 'REQ_176008786358', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@vE}@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:18:21', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.76, 2.10, 1, '1', NULL, NULL, 0, 54.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:17:43', '2025-10-10 09:18:21', NULL),
('2ff54127-7086-4a72-a01f-c4626c4dd542', NULL, 'REQ_176242361939', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:09:06', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.89, 4.00, 1, '1', NULL, NULL, 0, 79.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:06:59', '2025-11-06 10:09:06', NULL),
('316679ff-9aab-4db8-a5f3-bf47c26041ae', NULL, 'REQ_175984781660', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:38:06', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:36:56', '2025-10-07 14:38:06', NULL),
('33947e59-02ea-48f0-8869-0e981e4a9651', NULL, 'REQ_176009254433', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@pDq@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 10:36:58', NULL, NULL, NULL, '2025-10-10 10:36:35', '2025-10-10 10:36:15', '2025-10-10 10:37:24', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.74, 2.10, 1, '1', NULL, NULL, 1, 56.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:35:44', '2025-10-10 11:05:24', NULL),
('3462615f-7cc6-46ec-837f-e345d6b265d1', NULL, 'REQ_176033166380', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:01:24', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.86, 3.90, 1, '1', NULL, NULL, 0, 75.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 05:01:03', '2025-10-13 05:01:24', NULL),
('34a6634e-c2b6-4a56-b410-54708acb48e0', NULL, 'REQ_175990086134', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:26:03', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 05:21:01', '2025-10-08 05:26:03', NULL),
('356e7a5d-099a-47ec-a57a-d4a6fdbd1270', NULL, 'REQ_175984768410', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:35:59', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:34:44', '2025-10-07 14:35:59', NULL),
('37f13178-45a2-4896-ac01-6a9905f286c6', NULL, 'REQ_175984895948', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:57:13', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:55:59', '2025-10-07 14:57:13', NULL),
('396c4a35-3b21-4a72-a02a-40afa7848fc9', NULL, 'REQ_17603538667', 0, 'onq`Ckm}{LqARCWlDc@tCg@`OaDpAU~@URhAHt@Jl@?b@IJFNH\\LN', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 11:11:57', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.78, 3.10, 1, '1', NULL, NULL, 0, 35.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 11:11:06', '2025-10-13 11:11:57', NULL),
('3b7ed5f5-3ff8-4279-b6a0-5de4ddc54767', NULL, 'REQ_175974851674', 0, 'ajp`Caf{{LFH@NGLSBMQ?OgAqGnBk@d@ElFoALr@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'e33631d9-6e1f-48a7-9c4d-a370580bb343', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 11:03:41', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.46, 1.90, 1, '1', NULL, NULL, 0, 57.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-06 11:01:56', '2025-10-06 11:03:41', NULL),
('3be3a846-cf2a-472a-8a17-ee95513f33f7', NULL, 'REQ_176233998149', 0, 'ejntBwapsMyCxFy@bB]TSDeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1123, 0, 0, '0', 1, 60, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:03:34', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 1.69, 5.50, 1, '1', NULL, NULL, 0, 49.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 10:53:01', '2025-11-05 11:03:34', NULL),
('3c076355-9de8-41f7-a675-c6ca7a0146f5', NULL, 'REQ_176008730585', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@O[gBIDGl@KFcAF', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:12:11', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.80, 2.30, 1, '1', NULL, NULL, 0, 58.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:08:25', '2025-10-10 09:12:11', NULL),
('3ddf584a-016d-4177-883a-3e881a5f5d79', NULL, 'REQ_176234427344', 0, 'qxotBsopsM]vES`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-05 12:05:01', NULL, NULL, NULL, '2025-11-05 12:04:50', '2025-11-05 12:04:44', '2025-11-05 12:05:33', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.85, 3.90, 1, '0', NULL, NULL, 0, 39.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 12:04:33', '2025-11-05 12:05:44', NULL),
('46202850-79e7-4d9e-a437-f55eab207948', NULL, 'REQ_176033961241', 1, 'oxotB}opsM_@`FS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 1, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '26b1689e-8339-4b51-a7d9-817e0c4b509f', NULL, NULL, NULL, '2025-10-13 19:12:55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 4.10, 14.30, 1, '1', NULL, NULL, 0, 897.00, 508.50, 1, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 07:13:32', '2025-10-13 07:13:32', NULL),
('474b06eb-8dc4-45be-8322-b6e02ceba661', NULL, 'REQ_176009207231', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@K^dCaB^m@HRnA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:29:35', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 1.04, 3.30, 1, '1', NULL, NULL, 0, 70.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:27:52', '2025-10-10 10:29:35', NULL),
('49c9de06-0d6a-4f39-bfb3-17a7328fcb51', NULL, 'REQ_176009220336', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@K^dCaB^m@HRnA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:30:17', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 1.04, 3.30, 1, '1', NULL, NULL, 0, 70.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:30:03', '2025-10-10 10:30:17', NULL),
('4b9cde6f-5500-4257-a0bf-daebb6491939', NULL, 'REQ_176242590912', 1, 'ql_~BgtnmMCj@M?X}I\\gIDsBBsCDa@h@En@@vAVp@Rz@PdCX|BP`@A`DFlBRbGV|DDp@H\\Jt@`@hAv@JRrBz@fBtAdAl@zAh@rExAdAd@hHlEr@r@pBvBpHnFhAbAbBtBhA~AbBrBhCnCbBnBbHfJ~LlPrBdCZRXJdAXnDt@dA\\|Ar@b@X`BdBd@XnD|AzBjAfAd@xAv@|FzDxAtA`EtEVRpBrAhDtBfA`AdD|D`@p@Nb@PrARxDHfCVvA`@bA^l@r@p@nD`CbJ|Ez@l@h@f@^h@`@x@dB~DdAdB\\`@nBrApCdBl@h@r@|@l@jAjCtGj@`ApLxOhErFr@rAh@dBx@vCj@hAzE`HjH`LxJhQrBzD|C|Gh@z@bAhAl@b@nAh@|CbBhD~AtDfB`DvB`D|BxFrE`DdCfBdBv@|@vArB~EfI|CnElAxAzBjBhDxBbClAdEpAtB|@rExBrFbCbD`Ab@J`C\\zGt@ZHb@VXVVf@LZnA|F|@lFN`@RXNLh@TnA`@l@Zj@d@`@h@pA|C^z@~HnMx@lA`At@`B~@xGlDbBlApBjBlFbFhDzCzJnIfJrHnBrAvBrAhQxJlBlA`Az@pAdBxAvA^VvJhFrBnAdB|AhI`JjDnF|AnC~BxDdB~CPb@XdAX`BjA`NNtClAXVEPBx@d@PFf@?nBeA', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 1, 72, NULL, 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, '2025-11-07 17:00:00', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:50:08', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', NULL, NULL, 0, 493.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 1, '2025-11-06 10:45:09', '2025-11-06 10:50:09', NULL),
('4c700060-8ce8-46d0-8365-865fb5276436', NULL, 'REQ_176217216088', 0, 'ejp`Ccf{{LHF@Bp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@k@_B', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-03 12:16:50', NULL, NULL, NULL, '2025-11-03 12:16:40', '2025-11-03 12:16:35', '2025-11-03 12:16:56', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.59, 3.10, 1, '1', NULL, NULL, 1, 35.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-03 12:16:00', '2025-11-05 11:28:50', NULL),
('4cdca157-6c57-4b2c-8a46-6283ade1a837', NULL, 'REQ_175985239149', 0, 'ulp`Cae{{L^OREPKN@DHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@Lh@xAaBPFx@x@K', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 15:54:09', NULL, NULL, NULL, '2025-10-07 15:53:57', '2025-10-07 15:53:51', '2025-10-07 15:55:16', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.78, 2.80, 1, '1', NULL, NULL, 1, 33.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:53:11', '2025-10-07 15:59:07', NULL),
('4de7c812-88ac-4096-ab01-6ba1be6698de', NULL, 'REQ_175975039948', 0, 'iop`Cof{{LVbAzAe@REgAqGnBk@d@ElFoAfDaAY[', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-06 11:34:37', NULL, NULL, NULL, '2025-10-06 11:34:24', '2025-10-06 11:34:18', '2025-10-06 11:34:47', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.60, 2.70, 1, '1', NULL, NULL, 1, 33.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-06 11:33:19', '2025-10-06 11:35:31', NULL),
('5007a27f-46eb-47c4-a8df-bc9945dd21eb', NULL, 'REQ_175991193728', 0, 'mjp`Ceg{{LH`@HJp@Cl@Kl@APDVVLVb@ExBIdBSBULKQy@q@sBo@L', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-08 08:26:18', NULL, NULL, NULL, '2025-10-08 08:26:08', '2025-10-08 08:25:56', '2025-10-08 08:26:24', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.44, 1.60, 1, '1', NULL, NULL, 1, 27.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 08:25:37', '2025-10-08 08:29:12', NULL),
('503e1931-a502-4213-ad73-caa0f6810b2c', NULL, 'REQ_175974863491', 0, 'ajp`Caf{{LFH@NGLSBMQ?OgAqGnBk@d@ElFoALr@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 11:08:56', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.46, 1.90, 1, '1', NULL, NULL, 0, 29.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-06 11:03:54', '2025-10-06 11:08:56', NULL),
('51b911e6-2ab2-49d9-a76e-a4c26b457ed8', NULL, 'REQ_176008688174', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@O[gBIDGl@KFcAF', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:01:40', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.80, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:01:21', '2025-10-10 09:01:40', NULL),
('54c77d6f-c062-4aec-8167-d28a89aece74', NULL, 'REQ_176035027972', 0, 'kjp`C{f{{LFVHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@_DX', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-13 10:13:44', NULL, NULL, NULL, '2025-10-13 10:12:17', '2025-10-13 10:12:09', '2025-10-13 10:16:01', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.69, 2.70, 1, '1', NULL, NULL, 1, 33.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 10:11:19', '2025-10-13 10:16:24', NULL),
('55b63d0a-ac8f-4c0a-9829-062de43d3eea', NULL, 'REQ_176033158745', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'e33631d9-6e1f-48a7-9c4d-a370580bb343', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:00:19', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.86, 3.90, 1, '1', NULL, NULL, 0, 80.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 04:59:47', '2025-10-13 05:00:19', NULL),
('56e3768a-d172-4e0f-bb8b-032f6bbe00a0', NULL, 'REQ_176009167399', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@KHj@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 10:23:26', NULL, NULL, NULL, '2025-10-10 10:21:34', '2025-10-10 10:21:26', '2025-10-10 10:23:38', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.86, 2.50, 1, '1', NULL, NULL, 1, 60.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:21:13', '2025-10-10 10:26:12', NULL),
('5f071cc3-402d-4ea8-a121-b617d3246e9d', NULL, 'REQ_176241957870', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@ZG', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 0, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-11-06 09:00:47', NULL, NULL, NULL, '2025-11-06 09:00:28', '2025-11-06 09:00:10', '2025-11-06 09:01:05', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.65, 1.80, 1, '1', NULL, NULL, 1, 53.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 08:59:38', '2025-11-06 09:01:32', NULL),
('5f8dc4f3-2066-493d-b9e1-7354f37b9b43', NULL, 'REQ_175991622953', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:38:28', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 09:37:09', '2025-10-08 09:38:28', NULL),
('6165727e-5fd5-4edc-bf38-16e09af27053', NULL, 'REQ_176234031036', 0, 'ejntBwapsMyCxFy@bB]TSDeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1123, 0, 0, '0', 1, 60, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:03:33', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 1.69, 5.50, 1, '1', NULL, NULL, 0, 49.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 10:58:30', '2025-11-05 11:03:33', NULL),
('62bc8cf4-0581-47c0-818c-ffe479b594dc', NULL, 'REQ_176242351762', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:06:04', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.89, 4.00, 1, '1', NULL, NULL, 0, 79.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:05:17', '2025-11-06 10:06:04', NULL),
('635bf70c-369a-417d-a766-ddedf62aa41e', NULL, 'REQ_176033999957', 1, 'oxotBcppsM_@fFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 1, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '26b1689e-8339-4b51-a7d9-817e0c4b509f', NULL, NULL, NULL, '2025-10-13 19:40:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 4.10, 14.70, 1, '1', NULL, NULL, 0, 919.00, 919.00, 1, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 07:19:59', '2025-10-13 07:19:59', NULL),
('6678ca5e-3e73-431f-8e77-564f5ce46c0d', NULL, 'REQ_176033152517', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 04:59:35', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.86, 3.90, 1, '1', NULL, NULL, 0, 39.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 04:58:45', '2025-10-13 04:59:35', NULL),
('6bf02c74-667d-4dd1-8401-dfbadb6315dc', NULL, 'REQ_176033876281', 0, 'oxotB}opsM_@`FS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'delivery', 0, 5, 'Loose', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '7425a5e0-024b-4ecf-b85c-5bc3fdb712b3', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 06:59:54', 0, 0, 0, 0, 0, 1, 'Send Parcel', 'Receiver', 1, 0, 0, NULL, NULL, '1', 4.10, 14.60, 1, '1', NULL, NULL, 0, 332.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 06:59:22', '2025-10-13 06:59:54', NULL),
('6d6d2d72-4a7c-4889-8957-4b473e536708', NULL, 'REQ_175984728619', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:30:57', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:28:06', '2025-10-07 14:30:57', NULL),
('6f45efab-6db6-42e3-95f6-396d2eb597b6', NULL, 'REQ_176033401742', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFHGIUE}AcA{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-13 05:41:08', NULL, NULL, NULL, '2025-10-13 05:40:44', '2025-10-13 05:40:39', '2025-10-13 05:42:01', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 4.18, 13.90, 1, '0', NULL, NULL, 0, 198.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 05:40:17', '2025-10-13 07:00:31', NULL),
('71a157db-a1cd-4b5f-9533-3a6533ef4c25', NULL, 'REQ_175990067497', 0, 'wiklCcq~fNoAmDe@qAYm@Qg@fBw@zDkBkAiCIIw@sBc@ASOKY@YLWTKXATJBBn@a@d@q@hDsFh@qAf@gBf@aCNyAPqEHyEAMBEV_INwBN{DIKBKJC?uMJcEJqAJyCh@cFdAeGCKFIHBBFrFXP}@^yDFgC@sAHyAR}A`@qBTg@H]Ds@?}CB[OwEYwDc@kAo@}AcEmKoAkDs@sCuAeDKMsAu@e@g@iAuAcA_AwA_AuBeBcAaA]a@c@{@yAgD[cAe@oBQ]sA_C]oAWk@mAeBqB{CiB{Bg@_@iF}CcDcE}BoDM[Ea@IkAMEAOFML?HJ?Fh@PrAbAfBfB^T\\HVBrAAZGf@UDy@g@gBQ_@m@e@aCaBs@q@Yc@a@wB}A{IgAuHEoA@_JCk@Qq@cA_Du@mBGc@@s@Bo@f@}EaAcGuA_ISs@QYkD{B]YW[_KmQ[_@e@]yCcBy@k@_@e@O_@Qm@mBcKOq@qBgGW{@i@gCSeBKo@}AyGwAwCQy@?[B_@lAkFL_AD{AOk@gBwEWa@OSiBqAkFsDqCqBe@e@kA{A}AyCcA_C{A}BoEcGcCeDqAoByAyCKc@@]hAmDDg@Eq@cB}I}BmICk@B[dAwC~@aC~@wCDc@Ei@M_@iLiZgEaK]_AKi@?YMIESDQLKR?@@dAa@zQoKd@]HMDSNMR?HDhAm@RSLg@Dg@C[{BwE_AoB?KNOpEiCCOwGoNxIMbABvCK~CpH', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:18:24', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 14.26, 25.00, 1, '1', NULL, NULL, 0, 470.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 05:17:54', '2025-10-08 05:18:24', NULL),
('729f82e9-8346-45d5-8fe7-39450f62ea0e', NULL, 'REQ_175985199319', 0, 'cjp`Ccf{{LFF@Bp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDVI', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 15:47:25', NULL, NULL, NULL, '2025-10-07 15:47:04', '2025-10-07 15:46:55', '2025-10-07 15:47:31', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.61, 1.90, 1, '1', NULL, NULL, 1, 29.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:46:33', '2025-10-07 15:48:07', NULL),
('72a87905-a303-4950-9ce8-ef6c4c9eb83a', NULL, 'REQ_176035338021', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@O[gBI]m@uE{@L', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-13 11:03:37', NULL, NULL, NULL, '2025-10-13 11:03:24', '2025-10-13 11:03:15', '2025-10-13 11:03:49', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.89, 2.60, 1, '0', NULL, NULL, 1, 32.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 11:03:00', '2025-10-13 11:08:00', NULL),
('76530f8d-9d9f-4f5a-b3b6-69c66f314be5', NULL, 'REQ_17624234125', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 5, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:22:22', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.89, 4.00, 1, '1', NULL, NULL, 0, 79.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:03:32', '2025-11-06 10:22:22', NULL),
('7fd96122-aa76-4ab1-9ccf-f4cfd36c2c8b', NULL, 'REQ_176242034995', 0, 'gjp`Ckf{{LBFHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@S', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:13:22', '2025-11-06 09:12:54', NULL, '2025-11-06 09:13:44', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.49, 1.60, 1, '1', NULL, NULL, 0, 51.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:12:29', '2025-11-06 09:13:44', NULL),
('80ecc65f-ac2d-4425-855a-47bd83ca400f', NULL, 'REQ_176241886582', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsAXnB', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 0, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-11-06 08:49:06', NULL, NULL, NULL, '2025-11-06 08:48:54', '2025-11-06 08:48:33', '2025-11-06 08:49:16', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.86, 2.60, 1, '1', NULL, NULL, 1, 63.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 08:47:45', '2025-11-06 08:49:55', NULL),
('814f577d-32ff-41f8-b5eb-59709e744838', NULL, 'REQ_175991095010', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@uALMs@IAgBP', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 08:09:29', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.73, 2.50, 1, '1', NULL, NULL, 0, 32.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 08:09:10', '2025-10-08 08:09:29', NULL),
('82af1c7d-f4d1-49e4-8acc-5bb8a074b6b9', NULL, 'REQ_176035019598', 0, 'kjp`C{f{{LFVHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@_DX', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 10:10:35', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.69, 2.70, 1, '1', NULL, NULL, 0, 33.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 10:09:55', '2025-10-13 10:10:35', NULL),
('849b74ec-9698-46e9-bab1-8caf2df3b791', NULL, 'REQ_175985183190', 0, 'cjp`Ccf{{LFF@Bp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDVI', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:46:25', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.61, 1.90, 1, '1', NULL, NULL, 0, 29.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:43:51', '2025-10-07 15:46:25', NULL),
('876d6d87-bff1-4c09-a91a-ad1c14206958', NULL, 'REQ_17598475517', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:32:50', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:32:31', '2025-10-07 14:32:50', NULL),
('887836d8-38b6-4a7d-a507-e068962e5aab', NULL, 'REQ_175984831788', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:45:46', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:45:17', '2025-10-07 14:45:46', NULL),
('889c5477-8b49-4a97-8c89-278ad1e1eff8', NULL, 'REQ_176033170384', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-13 05:03:24', NULL, NULL, NULL, '2025-10-13 05:02:38', '2025-10-13 05:02:16', '2025-10-13 05:07:29', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.86, 3.90, 1, '1', NULL, NULL, 1, 78.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 05:01:43', '2025-10-13 05:38:42', NULL),
('88e2f4dc-3a68-486b-a38a-e17c9d1428b9', NULL, 'REQ_175991449780', 0, 'ojp`Cig{{LJd@HJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@L', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-08 09:09:05', NULL, NULL, NULL, '2025-10-08 09:08:54', '2025-10-08 09:08:40', '2025-10-08 09:09:54', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.58, 1.90, 1, '1', NULL, NULL, 1, 29.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 09:08:17', '2025-10-08 09:10:57', NULL);
INSERT INTO `requests` (`id`, `company_key`, `request_number`, `is_later`, `poly_line`, `on_search`, `assign_method`, `is_rental`, `rental_package_id`, `is_out_station`, `ride_otp`, `instant_ride`, `book_for_other`, `book_for_other_contact`, `attempt_for_schedule`, `user_id`, `transport_type`, `is_without_destination`, `goods_type_id`, `goods_type_quantity`, `service_location_id`, `zone_type_id`, `driver_id`, `fleet_id`, `owner_id`, `trip_start_time`, `return_time`, `discounted_total`, `is_round_trip`, `arrived_at`, `accepted_at`, `completed_at`, `cancelled_at`, `is_driver_started`, `is_driver_arrived`, `is_trip_start`, `is_completed`, `is_airport`, `is_parcel`, `parcel_type`, `paid_at`, `is_cancelled`, `is_pet_available`, `is_luggage_available`, `reason`, `custom_reason`, `cancel_method`, `total_distance`, `total_time`, `is_surge_applied`, `payment_opt`, `payment_intent_id`, `card_token`, `is_paid`, `request_eta_amount`, `offerred_ride_fare`, `is_bid_ride`, `is_trip_meter`, `accepted_ride_fare`, `user_rated`, `driver_rated`, `promo_id`, `timezone`, `requested_currency_code`, `requested_currency_symbol`, `additional_charges_reason`, `additional_charges_amount`, `unit`, `if_dispatch`, `dispatcher_id`, `booked_by`, `web_booking`, `created_at`, `updated_at`, `deleted_at`) VALUES
('89cf4c65-ec9e-4a53-9a11-235219939dca', NULL, 'REQ_176242636637', 0, 'ql_~BgtnmMCj@M?X}I\\gI}BOqEg@kEYyAGeDWa@IkCc@q@We@e@kCeDo@cBoDiMYe@UWQMUKeAW_ASq@KoFmAyPsEiLkBeG{@_GaAaO{AaDm@oCm@qEaBcJoCkAY_DcAwCoAcCu@mB[mBUwA[y@Gq@@mI|@iCPw@A]G]QWWoAsBeDiFm@s@e@Oa@CmABgCT}Lp@gAAuCMsAAcC\\uCTeL@kCOqDe@uDo@eAMaAIgJc@{DOkE[yK{@}GOcIK_PcAoMyAyHu@sFq@sD[iBY{Ak@oEuA{AWcAC{@NaBd@mHpD}F|CaAv@{AvAoC`B_Bz@uAz@m@XaKrBqA\\iDhAqE|Ak@PeEb@aBX{J~BcCp@g@RyBbAuGrDeBp@aAZmEbAa@L_@T]\\cA`BcBfDqB~AgAl@_CbByAp@kLdE_OzFmC~@}ExBmAZ{MfBoIlAw@@sAIuKaAg@?iAJiEp@}Cj@mAJ{@AcAKq[sGgBWcB?{Ol@cCBwAMmBYeJmBsLsCwASq@EqAAkHSsD@sCDqA?}Da@oLwAc]sDeACsS~@mGx@cNnBgAH{F~@sA`@iBx@}KvFqGhDuAl@s@PiKfA}ALqA?aGKkK^uGX]D{@RiM|Dg@JYAWIwCmBgC{Bo@e@SIo@Ew@EcUN}GF_Zx@yEPoAJu@N_T|FsA\\aBT{Iz@_BJeGNwAAeCQaCUs@Cw@DcHbAuEj@cEFyOF_NHoPi@mYLgDDeAOgCgAw@a@yBgAcAa@wCwAi@Uc@Ki@QkCc@_Iu@mNmBqDm@{A]_Bc@u@IkDOgBEuAKoHWwKg@eCKeBSiAA_AEg@IwFOi@CiGAwFGaC?aAPUAYCHw@?k@OeAUgCcBuKk@eEo@mD[uA_HgT_@gA[qAe@sAa@yAm@eBe@cBkAkDqEmNmCkIk@sByCnAKJiArDeAbDgB|Fg@hAcAfBk@~@q@xAq@jAeA`AkBpBo@h@eAr@w@p@}AdBeAbBkAnA_@n@k@jAA@', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 1, 72, 'delivery', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0353aad2-e9fd-4a22-ba1e-e6610dbe7a55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 29.27, 50.00, 0, '1', NULL, NULL, 0, 592.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 1, '2025-11-06 10:52:46', '2025-11-06 10:52:47', NULL),
('8a5d087f-d796-4f4e-898d-53ddd40f375a', NULL, 'REQ_176009218029', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@K^dCaB^m@HRnA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:29:56', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 1.04, 3.30, 1, '1', NULL, NULL, 0, 70.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:29:40', '2025-10-10 10:29:56', NULL),
('8f24cc50-059c-4bb8-8f20-7b209e9a3292', NULL, 'REQ_176009432922', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@K^dCaB^DV', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 11:06:41', NULL, NULL, NULL, '2025-10-10 11:06:25', '2025-10-10 11:06:14', '2025-10-10 11:06:48', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.98, 3.10, 1, '1', NULL, NULL, 1, 68.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 11:05:29', '2025-10-10 11:08:32', NULL),
('90c1a996-0444-4631-a952-5283abd22639', NULL, 'REQ_176033399890', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFHGIUE}AcA{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:40:07', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 4.18, 13.90, 1, '1', NULL, NULL, 0, 226.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 05:39:58', '2025-10-13 05:40:07', NULL),
('9195554f-1fd6-4036-9516-c1ca7f2dcb3d', NULL, 'REQ_175990234124', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:50:43', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 05:45:41', '2025-10-08 05:50:43', NULL),
('92be54c4-8764-4fc7-a0be-5c20f5ae2741', NULL, 'REQ_175984713066', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:26:12', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:25:30', '2025-10-07 14:26:12', NULL),
('93439cdd-d084-4f7a-b468-dee4a59ae1bd', NULL, 'REQ_176008694386', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@O[gBIDGl@KFcAF', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:07:34', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.80, 2.30, 1, '1', NULL, NULL, 0, 58.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:02:23', '2025-10-10 09:07:34', NULL),
('9386e7d5-af45-4d55-b173-5cbdb026364a', NULL, 'REQ_176009072738', 0, 'onq`Ckm}{LqARCWlDc@tCg@`OaDpAU`Ci@dBUlBOjBWJIJBBLIJA?LlA@f@u@Hm@NYZAZ?ZF\\aAJ[TWb@IT[dB?JDF`@GB`@H\\Bn@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:06:14', NULL, '2025-10-10 10:06:49', 1, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 1.30, 4.20, 1, '1', NULL, NULL, 0, 81.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:05:27', '2025-10-10 10:06:49', NULL),
('96438441-81df-440d-b6d3-1c172df85d6c', NULL, 'REQ_175991714198', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:52:34', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 09:52:21', '2025-10-08 09:52:34', NULL),
('97c89395-18f7-4acd-8e27-9391b0bd58f3', NULL, 'REQ_175991107548', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@uALMs@IAgBP', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-08 08:12:14', NULL, NULL, NULL, '2025-10-08 08:12:03', '2025-10-08 08:11:57', '2025-10-08 08:12:19', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.73, 2.50, 1, '1', NULL, NULL, 1, 32.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 08:11:15', '2025-10-08 08:12:51', NULL),
('9cd15f24-193d-4e8a-9da3-826d1bc5113e', NULL, 'REQ_176033163178', 0, 'mxotBkppsMa@nFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '5c461cda-be1a-4c6d-beeb-bfa2808d759d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:00:52', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.86, 3.90, 1, '1', NULL, NULL, 0, 61.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 05:00:31', '2025-10-13 05:00:52', NULL),
('9ed5bbfe-2540-40be-ba9c-13be023f21f8', NULL, 'REQ_175983661537', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAE_@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 11:33:11', NULL, NULL, NULL, '2025-10-07 11:32:52', '2025-10-07 11:30:36', '2025-10-07 11:34:10', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.52, 2.00, 1, '1', NULL, NULL, 1, 29.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 11:30:15', '2025-10-07 12:13:34', NULL),
('a42ef3e4-10e9-4810-8c3f-bef0e5440c93', NULL, 'REQ_176241909064', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@rCi@', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 0, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:51:53', '2025-11-06 08:51:44', NULL, '2025-11-06 08:53:14', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.72, 2.00, 1, '1', NULL, NULL, 0, 55.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 08:51:30', '2025-11-06 08:53:14', NULL),
('a5a4c085-8ebe-492d-90d4-45095f7e16e8', NULL, 'REQ_17600911323', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsAJp@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:19:02', '2025-10-10 10:12:46', NULL, '2025-10-10 10:19:26', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.83, 2.40, 1, '1', NULL, NULL, 0, 59.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 10:12:12', '2025-10-10 10:19:26', NULL),
('a673a7ee-c86f-4dfa-bc36-0d7f6ed7b9ac', NULL, 'REQ_17603387271', 0, 'oxotB}opsM_@`FS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APeAq@{@a@u@QaAIi@Cw@D_ANwCt@e@DMAdEoQ@U`AkELs@RyA`@oIRoBjBcJ\\aBEMKEkDaAo@IgEEIPSFSCMMEUFULI@UHUAyDN_EAi@^aKFaBl@aDf@gBTo@rAkB~DiEdBqBrBwBvAaB`BbB|@VtB\\QfAa@bBvAb@FHETS\\cAhA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'delivery', 0, 5, 'Loose', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0353aad2-e9fd-4a22-ba1e-e6610dbe7a55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 06:59:06', 0, 0, 0, 0, 0, 1, 'Send Parcel', 'Sender', 1, 0, 0, NULL, NULL, '1', 4.10, 14.60, 1, '1', NULL, NULL, 0, 133.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 06:58:47', '2025-10-13 06:59:06', NULL),
('a73d3f2e-f423-4939-aaa1-ea9a65f45ec2', NULL, 'REQ_175984563999', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BG', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:02:31', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.41, 1.60, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:00:39', '2025-10-07 14:02:31', NULL),
('aab1ca33-b974-4f58-91a2-c6eabf0ac03f', NULL, 'REQ_175985168034', 0, 'mjp`Cag{{LH\\HJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGd@I', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:41:31', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.44, 1.50, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:41:20', '2025-10-07 15:41:31', NULL),
('b1243551-fc43-4804-b7bf-272a3c5428ff', NULL, 'REQ_175948548563', 0, 'eoltBq~i}LKx@U^kBx@`BjCzB`EpAbCf@j@HCJHBNbE~Ch@h@j@v@f@nAxAzEbArCVh@pFhHlAvA^Tt@V`@?nDWVMRQVo@`@iAPYt@s@fHmG\\c@rCaCjBiA`BaAAwAPqGJe@R]FGhA[bEy@vBY\\IhDi@DMLCLD~BBpCAh@MnBw@TM|CqAhAc@`FuB~CyAhCeAzCsAlAe@`HsC`NeG~CkAtJoCdKyC|@YrFaBjAa@rDgAnD}AvMeEn@SN?jDaAfA]dAWRQpBo@jHmBrDiArBe@xAMhIc@fDSpJCx@L|B?~@AhBFxBPvUnAvCRnCDn@El@[f@g@~BkD~CaEfA_B~D_FLCb@xJn@|H\\hF^vEZvCR`DN~C~ApU~@nLb@vEZxEVlDTnEbBjThArLZpCf@~C`A`FjA`GPv@n@HZJdAAx@ErC[rAQnFi@rDe@jN{AAjKnCH\\DzQ?jGC`FBl@KfC_@jB[XK`Cg@bDg@vAMr@EhH_ABkG', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-03 10:03:12', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 13.26, 40.50, 1, '1', NULL, NULL, 0, 637.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-03 09:58:05', '2025-10-03 10:03:12', NULL),
('b19b432c-94b0-4481-8df9-ca3df44e9554', NULL, 'REQ_175985281681', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@Lp@lBxAi@rAk@[iA', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 16:00:45', NULL, NULL, NULL, '2025-10-07 16:00:35', '2025-10-07 16:00:30', '2025-10-07 16:00:51', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.77, 2.80, 1, '1', NULL, NULL, 1, 33.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 16:00:16', '2025-10-07 16:01:15', NULL),
('b2456fc2-1e2a-4ec5-a91a-c2cf04e40f28', NULL, 'REQ_175985179133', 0, 'cjp`Ccf{{LFF@Bp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUYqAYqDVI', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:43:37', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.61, 1.90, 1, '1', NULL, NULL, 0, 29.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 15:43:11', '2025-10-07 15:43:37', NULL),
('b35dc563-972f-4f28-9fc7-8a916b4e0924', NULL, 'REQ_176242307079', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 6, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:09:07', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 0.89, 4.00, 1, '1', NULL, NULL, 0, 39.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:57:50', '2025-11-06 10:09:07', NULL),
('b476b4e4-8381-40ae-9931-ab85fcb69b10', NULL, 'REQ_176242039022', 0, 'gjp`Ckf{{LBFHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@S', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:13:19', NULL, '2025-11-06 09:13:52', 1, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.49, 1.60, 1, '1', NULL, NULL, 0, 51.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:13:10', '2025-11-06 09:13:52', NULL),
('b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', NULL, 'REQ_17598306111', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@cAuCm@R', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 09:52:22', NULL, NULL, NULL, '2025-10-07 09:52:13', '2025-10-07 09:52:08', '2025-10-07 09:53:51', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.65, 2.50, 1, '1', NULL, NULL, 1, 32.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 09:50:11', '2025-10-07 09:54:40', NULL),
('b781cd99-f482-49c9-a584-fd3470c6cc16', NULL, 'REQ_176009452125', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@Ol@dDPJ@B', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 11:09:33', NULL, NULL, NULL, '2025-10-10 11:09:20', '2025-10-10 11:08:57', '2025-10-10 11:09:42', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.77, 2.10, 1, '1', NULL, NULL, 1, 56.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 11:08:41', '2025-10-10 11:13:09', NULL),
('b79cc7c1-e560-47a2-b475-a952b84c5b44', NULL, 'REQ_176242314067', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:01:08', '2025-11-06 10:00:55', NULL, '2025-11-06 10:03:09', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.89, 4.00, 1, '1', NULL, NULL, 0, 79.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 09:59:00', '2025-11-06 10:03:09', NULL),
('b9d1711c-13ee-4237-8e4e-3d42391242db', NULL, 'REQ_175984763769', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:34:04', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:33:57', '2025-10-07 14:34:04', NULL),
('bd969391-93dd-4eaf-9452-f130e0dab76e', NULL, 'REQ_176234410965', 0, 'qxotBsopsM]vES`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-05 12:02:43', NULL, NULL, NULL, '2025-11-05 12:02:32', '2025-11-05 12:02:21', '2025-11-05 12:02:52', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.85, 3.90, 1, '1', NULL, NULL, 1, 39.00, 0.00, 0, 0, 0.00, 0, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 12:01:49', '2025-11-05 12:03:15', NULL),
('be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', NULL, 'REQ_176234213464', 0, 's~otBkfpsMFWrAZrEr@tB`@xCz@xCjA`Cr@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-05 11:31:00', NULL, NULL, NULL, '2025-11-05 11:30:37', '2025-11-05 11:29:47', '2025-11-05 11:31:09', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.51, 1.60, 1, '1', NULL, NULL, 1, 27.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 11:28:54', '2025-11-05 11:31:45', NULL),
('bef667fd-56dd-4b54-a388-716676ba4b61', NULL, 'REQ_175983022939', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLrGkCd@zAFAh@Q', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-07 09:45:51', NULL, NULL, NULL, '2025-10-07 09:45:24', '2025-10-07 09:45:16', '2025-10-07 09:45:57', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.71, 2.50, 1, '1', NULL, NULL, 1, 32.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 09:43:49', '2025-10-07 09:48:52', NULL),
('c0b44ebd-7744-41ac-ae72-1b74073ad857', NULL, 'REQ_175984692821', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:22:54', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:22:08', '2025-10-07 14:22:54', NULL),
('c0c428da-2d5b-40e5-a0d5-cc82b1ecbb82', NULL, 'REQ_175984544032', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BG', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:57:57', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.41, 1.60, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 13:57:20', '2025-10-07 13:57:57', NULL),
('c18d1ca3-239d-4aca-963a-151bfc471be1', NULL, 'REQ_176234630626', 0, 'cxotBkrpsMk@nHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:12:29', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 0.89, 4.00, 1, '1', NULL, NULL, 0, 39.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 12:38:26', '2025-11-06 09:12:29', NULL),
('c408c378-5e2c-4a0a-b33d-28302a6bfc05', NULL, 'REQ_175984698282', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:24:15', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:23:02', '2025-10-07 14:24:15', NULL),
('c6bc4f01-d4c3-4cde-94a3-b4a9082e07c1', NULL, 'REQ_17600875714', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@v@O[gBIDAFI[EEU?OB', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 1, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:15:58', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.78, 2.30, 1, '1', NULL, NULL, 0, 56.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 09:12:51', '2025-10-10 09:15:58', NULL),
('c8d0d4a9-d182-457a-832a-c05523582884', NULL, 'REQ_17598487841', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:54:08', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:53:04', '2025-10-07 14:54:08', NULL),
('c95f0da9-ee22-4756-9e89-33b057cff77e', NULL, 'REQ_176217103156', 0, 'ejp`Ccf{{LHF@Bp@Cl@Kl@APDVVLVb@ExBIdBSBULKdBUJE@GEM', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-03 11:58:10', NULL, NULL, NULL, '2025-11-03 11:58:00', '2025-11-03 11:57:55', '2025-11-03 11:58:20', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.38, 1.50, 1, '1', NULL, NULL, 1, 27.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-03 11:57:12', '2025-11-03 12:14:24', NULL),
('cddaf5f6-35b8-4dda-b21f-3c083312f93c', NULL, 'REQ_176035215128', 0, 'kjp`C}f{{LFXHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLd@d@PJ\\Fb@@`@LPd@uALMs@IAeCTIw@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'delivery', 0, 4, 'Loose', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-13 10:43:51', NULL, NULL, NULL, '2025-10-13 10:43:13', '2025-10-13 10:43:02', '2025-10-13 10:44:17', NULL, 1, 1, 1, 1, 0, 1, 'Send Parcel', 'Sender', 0, 0, 0, NULL, NULL, '0', 0.79, 3.00, 1, '1', NULL, NULL, 1, 34.00, 0.00, 0, 0, 0.00, 1, 1, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 10:42:31', '2025-10-13 10:44:45', NULL),
('d107bd4e-184a-4eb9-b885-61358c064b95', NULL, 'REQ_17603606977', 0, 'onq`Ckm}{LqARCWlDc@tCg@`OaDpAU`Ci@dBUlBOjBWJIJBBLIJA?LlA@f@u@Hm@NYZAZ?ZF\\aAJ[TWb@ITGV', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-13 13:05:38', NULL, NULL, NULL, '2025-10-13 13:05:20', '2025-10-13 13:05:09', '2025-10-13 13:07:48', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 1.17, 4.20, 1, '1', NULL, NULL, 1, 40.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-13 13:04:57', '2025-10-13 13:54:20', NULL),
('d16ea42d-aab5-41f2-9dd4-d9226d39ac60', NULL, 'REQ_176242328741', 0, 'exotBgrpsMi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 6, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:22:23', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 0.89, 4.00, 1, '1', NULL, NULL, 0, 79.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:01:27', '2025-11-06 10:22:23', NULL),
('da1a46d1-8bbd-4115-a3bf-c187a0fe14c6', NULL, 'REQ_176242553743', 0, 'mxotBuppsMa@xFS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', NULL, NULL, NULL, NULL, NULL, 75.00, NULL, NULL, NULL, NULL, '2025-11-06 10:40:20', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.87, 3.90, 1, '1', NULL, NULL, 0, 78.00, 0.00, 0, 0, 0.00, 0, 0, 'b985946f-87f3-4843-ae5a-bf74e52f1d2a', 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:38:57', '2025-11-06 10:40:20', NULL),
('e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', NULL, 'REQ_176242595077', 0, '}wotB}ppsMMAc@bGS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-11-06 10:46:37', NULL, NULL, NULL, '2025-11-06 10:46:12', '2025-11-06 10:46:08', '2025-11-06 10:46:45', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.88, 3.90, 1, '1', NULL, NULL, 1, 78.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 10:45:50', '2025-11-06 11:01:01', NULL),
('e70ef4dc-dd1d-413f-a98b-9a57990dbfff', NULL, 'REQ_176233975321', 0, 'ejntBwapsMyCxFy@bB]TSDeAa@cDkAqKiDq@S}DyAuBm@eDm@kDi@{A_@oH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1123, 0, 0, '0', 1, 60, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:03:34', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 1.69, 5.50, 1, '1', NULL, NULL, 0, 49.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 10:49:13', '2025-11-05 11:03:34', NULL),
('e854d55d-e276-4f68-9845-dcd543dac50e', NULL, 'REQ_175991667064', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:49:35', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 09:44:30', '2025-10-08 09:49:35', NULL),
('e86ca748-fcca-42d6-8dad-f6db719c4acf', NULL, 'REQ_176009634061', 0, 'csp`Cec}{LhFaA~@K^dC}@R', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 11:40:35', NULL, NULL, NULL, '2025-10-10 11:40:23', '2025-10-10 11:39:50', '2025-10-10 11:40:54', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.28, 1.20, 1, '1', NULL, NULL, 1, 45.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 11:39:00', '2025-10-10 12:11:03', NULL),
('e8f8ce05-c0db-4eb5-8b03-65eb5dc1365e', NULL, 'REQ_176242565950', 0, 'ql_~BgtnmMCj@M?X}I\\gI}BOqEg@kEYyAGeDWa@IkCc@q@We@e@kCeDo@cBoDiMYe@UWQMUKeAW_ASq@KoFmAyPsEiLkBeG{@_GaAaO{AaDm@oCm@qEaBcJoCkAY_DcAwCoAcCu@mB[mBUwA[y@Gq@@mI|@iCPw@A]G]QWWoAsBeDiFm@s@e@Oa@CmABgCT}Lp@gAAuCMsAAcC\\uCTeL@kCOqDe@uDo@eAMaAIgJc@{DOkE[yK{@}GOcIK_PcAoMyAyHu@sFq@sD[iBY{Ak@oEuA{AWcAC{@NaBd@mHpD}F|CaAv@{AvAoC`B_Bz@uAz@m@XaKrBqA\\iDhAqE|Ak@PeEb@aBX{J~BcCp@g@RyBbAuGrDeBp@aAZmEbAa@L_@T]\\cA`BcBfDqB~AgAl@_CbByAp@kLdE_OzFmC~@}ExBmAZ{MfBoIlAw@@sAIuKaAg@?iAJiEp@}Cj@mAJ{@AcAKq[sGgBWcB?{Ol@cCBwAMmBYeJmBsLsCwASq@EqAAkHSsD@sCDqA?}Da@oLwAc]sDeACsS~@mGx@cNnBgAH{F~@sA`@iBx@}KvFqGhDuAl@s@PiKfA}ALqA?aGKkK^uGX]D{@RiM|Dg@JYAWIwCmBgC{Bo@e@SIo@Ew@EcUN}GF_Zx@yEPoAJu@N_T|FsA\\aBT{Iz@_BJeGNwAAeCQaCUs@Cw@DcHbAuEj@cEFyOF_NHoPi@mYLgDDeAOgCgAw@a@yBgAcAa@wCwAi@Uc@Ki@QkCc@_Iu@mNmBqDm@{A]_Bc@u@IkDOgBEuAKoHWwKg@eCKeBSiAA_AEg@IwFOi@CiGAwFGaC?aAPUA{AUiBe@uCk@cNcDoBc@SEoEgAaB[o@AeOn@{ADi@DgCH}CP{FLoA@oFK{E@kGWoBAmAK[OKUWgAU}ABUI_@AoADoAf@wCBQn@}CHm@VaAn@yAdAeEL}AHaD\\AEsD{B@GD?^@~@', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 1, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:42:49', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '0', 29.06, 50.00, 0, '1', NULL, NULL, 0, 426.00, 0.00, 0, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 1, '2025-11-06 10:40:59', '2025-11-06 10:42:49', NULL),
('ea93932a-edbb-458a-9639-1ca659768790', NULL, 'REQ_176234346057', 0, 'kvotBirpsMs@EEFi@jHS`BcB[s@SoH_DgAg@k@ImA@[HKFv@~@r@bApBdDL`@APVPTDFH', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-05 11:52:35', NULL, NULL, NULL, '2025-11-05 11:52:17', '2025-11-05 11:51:57', '2025-11-05 11:52:47', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.93, 4.20, 1, '1', NULL, NULL, 1, 40.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 11:51:00', '2025-11-05 11:59:21', NULL),
('eba5c9ff-8ed7-4ef8-8e90-5fb6e98f75ff', NULL, 'REQ_175984706298', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:24:41', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:24:22', '2025-10-07 14:24:41', NULL),
('ec0c6146-ef53-4400-b1f2-8a2a4c6699cb', NULL, 'REQ_175984847169', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 2, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:52:08', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:47:51', '2025-10-07 14:52:08', NULL),
('ec15251e-7b06-4e86-8705-9d7832d2c53c', NULL, 'REQ_176234250512', 0, 's~otBkfpsMFWrAZrEr@tB`@xCz@xCjAlCx@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-11-05 11:35:35', NULL, NULL, NULL, '2025-11-05 11:35:23', '2025-11-05 11:35:17', '2025-11-05 11:35:48', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 0.52, 1.60, 1, '1', NULL, NULL, 1, 27.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-05 11:35:05', '2025-11-05 11:36:16', NULL),
('ec31feea-63da-42b2-a9a3-abd82070fcd4', NULL, 'REQ_175984538714', 0, 'cjp`Ccf{{LHJp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BG', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:56:49', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.41, 1.60, 1, '1', NULL, NULL, 0, 27.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 13:56:27', '2025-10-07 13:56:49', NULL),
('f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', NULL, 'REQ_176009535329', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~@K^dCaB^m@HBR', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, '2025-10-10 11:28:47', NULL, NULL, NULL, '2025-10-10 11:28:32', '2025-10-10 11:22:55', '2025-10-10 11:28:56', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 1.01, 3.20, 1, '1', NULL, NULL, 1, 69.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-10 11:22:33', '2025-10-10 11:33:53', NULL),
('f7de06e3-aa54-4a57-b4e9-ababec0ea2e3', NULL, 'REQ_175984690031', 0, 'ajp`Caf{{LFHp@Cl@Kl@APDVVLVb@ExBIdBSbBI~BGtAUHLnBw@Oc@', 1, '0', 0, NULL, 0, 1987, 0, 0, '0', 0, 2, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:22:00', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 0.55, 2.30, 1, '1', NULL, NULL, 0, 31.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-07 14:21:40', '2025-10-07 14:22:00', NULL),
('f85bece5-7d66-4c8c-aae3-82a15451c9da', NULL, 'REQ_175991633620', 0, 'gxolC_nufN}As@gBcAsJgF{CkBqAq@nDqIpAwCl@aBf@kAgAc@iBcAkAi@kCwAiCwAsGgCe@KyGbOgFnLeChFKCQBkAp@{KpDgKpDkA^_F`BkAXcGxBSF', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 1, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:43:58', 0, 0, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '1', 3.09, 9.40, 1, '1', NULL, NULL, 0, 161.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 09:38:56', '2025-10-08 09:43:58', NULL),
('f95268c9-7ad7-490b-83ef-75dcad6b186b', NULL, 'REQ_176241928828', 0, 'inq`Cum}{LP|@pCfLbM{A`Eg@dHsA~B[UoBs@J', 1, '0', 0, NULL, 0, 1154, 0, 0, '0', 0, 72, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:56:51', '2025-11-06 08:55:07', NULL, '2025-11-06 08:58:50', 1, 1, 0, 0, 0, 0, NULL, NULL, 1, 0, 0, NULL, NULL, '2', 0.96, 2.90, 1, '1', NULL, NULL, 0, 66.00, 0.00, 0, 0, 0.00, 0, 0, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-11-06 08:54:48', '2025-11-06 08:58:50', NULL),
('f964df16-6317-4431-9f8b-4bf40e55213f', NULL, 'REQ_175991781389', 0, 'wy|sBglg}LCjGBTkFv@}@J_BHoEl@cCf@WHqB^uDj@yXEsCBwBACNkDjDsC|CwE`FCNIHM?qAhAsE~Ee@Vq@NmBXyBf@~F|[d@rCpB~JOZOHYH_@Pg@?g@C{AJUBgA`@gKhDu@XmAXo@Dm@NMFIRWf@]jAM~@FXBf@Q`DSzHSxAOh@e@jAi@v@iA~@i@n@g@bAoGnNo@bBcA~BIRoBw@wFkAo@QyAk@kCoAiFqBkBcAy@w@qBmAu@k@QS}JyGiLsHaDkBkLkHwNoJkA_A_EsD_EeE_I{HUYuGiGuByB}MwMqHkHkFiFcBeBmD}DcEgEaF}EwByBiF}DcGgEqBcByBwAgAy@q@k@{@c@{GqF_CyBaAw@oBeAiAy@oAeAk@]SIu@MyFY[Am@Uq@e@iAmAq@g@KGCKw@iAm@c@_DgA{@QwFu@o@Ag@Fa@HCJK@EAmEvC_At@eHhGsCbCW`@c@dBSb@YXKBuEZk@Ks@_@g@g@gAsAiBaCuBmCc@s@k@aB}B{Hc@u@s@{@g@e@oDcCOCGM?Gs@_AyCsFiCkEgAuB]e@UO_@e@MCEI@MFIJAr@q@l@y@t@sAl@}Ax@kCNBnIu@f@Kj@h@Xt@', 1, '0', 0, NULL, 0, 1241, 0, 0, '0', 0, 20, 'taxi', 0, NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', '8da1d1c2-9923-425a-936d-339f4f6f9375', 9, NULL, NULL, '2025-10-08 10:04:27', NULL, NULL, NULL, '2025-10-08 10:04:09', '2025-10-08 10:04:04', '2025-10-08 10:05:09', NULL, 1, 1, 1, 1, 0, 0, NULL, NULL, 0, 0, 0, NULL, NULL, '0', 13.79, 44.50, 1, '1', NULL, NULL, 1, 312.00, 0.00, 0, 0, 0.00, 1, 1, NULL, 'America/Boise', 'USD', '$', NULL, 0.00, '1', 0, NULL, NULL, 0, '2025-10-08 10:03:33', '2025-10-08 10:24:39', NULL);

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

--
-- Table structure for table `requests_meta`
--

CREATE TABLE `requests_meta` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `assign_method` enum('1','2') NOT NULL COMMENT '1 => one-by-one,2 => all',
  `is_later` tinyint(1) NOT NULL DEFAULT 0,
  `distance_to_pickup` double(15,8) NOT NULL DEFAULT 0.00000000,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `request_bills`
--

CREATE TABLE `request_bills` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `base_distance` int(11) NOT NULL,
  `total_distance` double(15,8) NOT NULL DEFAULT 0.00000000,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `distance_price` double(10,2) NOT NULL DEFAULT 0.00,
  `price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `time_price` double(10,2) NOT NULL DEFAULT 0.00,
  `waiting_charge_per_min` int(11) NOT NULL DEFAULT 0,
  `calculated_waiting_time` int(11) NOT NULL DEFAULT 0,
  `after_trip_start_waiting_time` int(11) NOT NULL DEFAULT 0,
  `before_trip_start_waiting_time` int(11) NOT NULL DEFAULT 0,
  `airport_surge_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `waiting_charge` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax_percentage` int(11) NOT NULL DEFAULT 0,
  `promo_discount` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commision` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commission_from_driver` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commision_with_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `driver_commision` double(10,2) NOT NULL DEFAULT 0.00,
  `tips` double(10,2) NOT NULL DEFAULT 0.00,
  `total_amount` double(10,2) NOT NULL DEFAULT 0.00,
  `requested_currency_code` varchar(191) NOT NULL,
  `requested_currency_symbol` varchar(191) DEFAULT NULL,
  `additional_charges_reason` varchar(191) DEFAULT NULL,
  `additional_charges_amount` double(10,2) NOT NULL DEFAULT 0.00,
  `preference_price_total` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_bills`
--

INSERT INTO `request_bills` (`id`, `request_id`, `base_price`, `base_distance`, `total_distance`, `total_time`, `price_per_distance`, `distance_price`, `price_per_time`, `time_price`, `waiting_charge_per_min`, `calculated_waiting_time`, `after_trip_start_waiting_time`, `before_trip_start_waiting_time`, `airport_surge_fee`, `waiting_charge`, `cancellation_fee`, `service_tax`, `service_tax_percentage`, `promo_discount`, `admin_commision`, `admin_commission_from_driver`, `admin_commision_with_tax`, `driver_commision`, `tips`, `total_amount`, `requested_currency_code`, `requested_currency_symbol`, `additional_charges_reason`, `additional_charges_amount`, `preference_price_total`, `created_at`, `updated_at`) VALUES
(1, '4de7c812-88ac-4096-ab01-6ba1be6698de', 5.00, 5, 0.60000000, 2.70, 5.00, 0.00, 5.00, 14.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.45, 5.45, 27.55, 0.00, 33.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-06 11:34:47', '2025-10-06 11:34:47'),
(2, 'bef667fd-56dd-4b54-a388-716676ba4b61', 5.00, 5, 0.71000000, 2.50, 5.00, 0.00, 5.00, 13.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.40, 5.40, 26.60, 0.00, 32.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 09:45:57', '2025-10-07 09:45:57'),
(3, 'b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', 5.00, 5, 0.65000000, 2.50, 5.00, 0.00, 5.00, 13.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.40, 5.40, 26.60, 0.00, 32.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 09:53:51', '2025-10-07 09:53:51'),
(4, '0668bf58-4cc2-4100-a676-48027a615976', 5.00, 5, 0.69000000, 2.40, 5.00, 0.00, 5.00, 12.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.35, 5.35, 25.65, 0.00, 31.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 09:57:01', '2025-10-07 09:57:01'),
(5, '0870cf67-7ce8-452e-bf11-0d3a65ad6e98', 5.00, 5, 0.84000000, 3.00, 5.00, 0.00, 5.00, 15.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.50, 5.50, 28.50, 0.00, 34.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 10:18:03', '2025-10-07 10:18:03'),
(6, '299b5587-fff2-4141-a2de-202275573b42', 5.00, 5, 0.59000000, 2.30, 5.00, 0.00, 5.00, 12.00, 5, 4, 0, 4, 10.00, 20.00, 0.00, 3.00, 5, 0.00, 3.00, 2.35, 8.35, 44.65, 0.00, 53.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 10:54:30', '2025-10-07 10:54:30'),
(7, '9ed5bbfe-2540-40be-ba9c-13be023f21f8', 5.00, 5, 0.52000000, 2.00, 5.00, 0.00, 5.00, 10.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.25, 5.25, 23.75, 0.00, 29.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 11:34:10', '2025-10-07 11:34:10'),
(8, '729f82e9-8346-45d5-8fe7-39450f62ea0e', 5.00, 5, 0.61000000, 1.90, 5.00, 0.00, 5.00, 10.00, 5, 0, 0, 0, 10.00, 0.00, 4.00, 2.00, 5, 0.00, 2.00, 5.45, 9.45, 23.55, 0.00, 33.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 15:47:31', '2025-10-07 15:47:31'),
(9, '4cdca157-6c57-4b2c-8a46-6283ade1a837', 5.00, 5, 0.78000000, 2.80, 5.00, 0.00, 5.00, 14.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.45, 5.45, 27.55, 0.00, 33.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 15:55:16', '2025-10-07 15:55:16'),
(10, 'b19b432c-94b0-4481-8df9-ca3df44e9554', 5.00, 5, 0.77000000, 2.80, 5.00, 0.00, 5.00, 14.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.45, 5.45, 27.55, 0.00, 33.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-07 16:00:51', '2025-10-07 16:00:51'),
(11, '97c89395-18f7-4acd-8e27-9391b0bd58f3', 5.00, 5, 0.73000000, 2.50, 5.00, 0.00, 5.00, 13.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.40, 5.40, 26.60, 0.00, 32.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-08 08:12:19', '2025-10-08 08:12:19'),
(12, '5007a27f-46eb-47c4-a8df-bc9945dd21eb', 5.00, 5, 0.44000000, 1.60, 5.00, 0.00, 5.00, 8.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.15, 5.15, 21.85, 0.00, 27.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-08 08:26:24', '2025-10-08 08:26:24'),
(13, '88e2f4dc-3a68-486b-a38a-e17c9d1428b9', 5.00, 5, 0.58000000, 1.90, 5.00, 0.00, 5.00, 10.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.25, 5.25, 23.75, 0.00, 29.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-08 09:09:54', '2025-10-08 09:09:54'),
(14, 'f964df16-6317-4431-9f8b-4bf40e55213f', 5.00, 5, 13.79000000, 44.50, 5.00, 44.00, 5.00, 223.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 15.00, 5, 0.00, 15.00, 14.10, 44.10, 267.90, 0.00, 312.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-08 10:05:09', '2025-10-08 10:05:09'),
(15, '06035a58-d39b-4ac8-afdc-848d5dd24ff5', 10.00, 10, 0.76000000, 2.10, 10.00, 0.00, 10.00, 21.00, 10, 2, 0, 2, 15.00, 20.00, 0.00, 7.00, 10, 0.00, 7.00, 6.60, 20.60, 59.40, 0.00, 80.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 09:53:57', '2025-10-10 09:53:57'),
(16, '56e3768a-d172-4e0f-bb8b-032f6bbe00a0', 10.00, 10, 0.86000000, 2.50, 10.00, 0.00, 10.00, 25.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 5.00, 10, 0.00, 5.00, 5.00, 15.00, 45.00, 0.00, 60.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 10:23:38', '2025-10-10 10:23:38'),
(17, '33947e59-02ea-48f0-8869-0e981e4a9651', 10.00, 10, 0.74000000, 2.10, 10.00, 0.00, 10.00, 21.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 5.00, 10, 0.00, 5.00, 4.60, 14.60, 41.40, 0.00, 56.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 10:37:24', '2025-10-10 10:37:24'),
(18, '8f24cc50-059c-4bb8-8f20-7b209e9a3292', 10.00, 10, 0.98000000, 3.10, 10.00, 0.00, 10.00, 31.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 6.00, 10, 0.00, 6.00, 5.60, 17.60, 50.40, 0.00, 68.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 11:06:48', '2025-10-10 11:06:48'),
(19, 'b781cd99-f482-49c9-a584-fd3470c6cc16', 10.00, 10, 0.77000000, 2.10, 10.00, 0.00, 10.00, 21.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 5.00, 10, 0.00, 5.00, 4.60, 14.60, 41.40, 0.00, 56.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 11:09:42', '2025-10-10 11:09:42'),
(20, 'f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', 10.00, 10, 1.01000000, 3.20, 10.00, 0.00, 10.00, 32.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 6.00, 10, 0.00, 6.00, 5.70, 17.70, 51.30, 0.00, 69.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 11:28:56', '2025-10-10 11:28:56'),
(21, 'e86ca748-fcca-42d6-8dad-f6db719c4acf', 10.00, 10, 0.28000000, 1.20, 10.00, 0.00, 10.00, 12.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 4.00, 10, 0.00, 4.00, 3.70, 11.70, 33.30, 0.00, 45.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-10 11:40:54', '2025-10-10 11:40:54'),
(22, '025497df-d5d5-4e29-89d8-3da5313c8e01', 5.00, 5, 0.67000000, 2.60, 5.00, 0.00, 5.00, 13.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.40, 5.40, 26.60, 0.00, 32.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-12 05:45:06', '2025-10-12 05:45:06'),
(23, '889c5477-8b49-4a97-8c89-278ad1e1eff8', 10.00, 10, 0.86000000, 3.90, 10.00, 0.00, 10.00, 39.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 7.00, 10, 0.00, 7.00, 6.40, 20.40, 57.60, 0.00, 78.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 05:07:29', '2025-10-13 05:07:29'),
(24, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 10.00, 10, 4.18000000, 13.90, 10.00, 0.00, 10.00, 139.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 17.00, 10, 0.00, 17.00, 16.40, 50.40, 177.60, 30.00, 198.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 05:42:01', '2025-10-13 05:42:21'),
(25, '54c77d6f-c062-4aec-8167-d28a89aece74', 5.00, 5, 0.69000000, 2.70, 5.00, 0.00, 5.00, 14.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.45, 5.45, 27.55, 0.00, 33.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 10:16:01', '2025-10-13 10:16:01'),
(26, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 5.00, 5, 0.84000000, 3.40, 5.00, 0.00, 5.00, 17.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.60, 5.60, 30.40, 0.00, 36.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 10:20:13', '2025-10-13 10:20:13'),
(27, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 5.00, 5, 0.79000000, 3.00, 5.00, 0.00, 5.00, 15.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.50, 5.50, 28.50, 0.00, 34.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 10:44:17', '2025-10-13 10:44:17'),
(28, '72a87905-a303-4950-9ce8-ef6c4c9eb83a', 5.00, 5, 0.89000000, 2.60, 5.00, 0.00, 5.00, 13.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.40, 5.40, 26.60, 0.00, 32.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 11:03:49', '2025-10-13 11:03:49'),
(29, 'd107bd4e-184a-4eb9-b885-61358c064b95', 5.00, 5, 1.17000000, 4.20, 5.00, 0.00, 5.00, 21.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.80, 5.80, 34.20, 0.00, 40.00, 'USD', '$', NULL, 0.00, 0.00, '2025-10-13 13:07:48', '2025-10-13 13:07:48'),
(30, 'c95f0da9-ee22-4756-9e89-33b057cff77e', 5.00, 5, 0.38000000, 1.50, 5.00, 0.00, 5.00, 8.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.15, 5.15, 21.85, 0.00, 27.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-03 11:58:20', '2025-11-03 11:58:20'),
(31, '4c700060-8ce8-46d0-8365-865fb5276436', 5.00, 5, 0.59000000, 3.10, 5.00, 0.00, 5.00, 16.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.55, 5.55, 29.45, 0.00, 35.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-03 12:16:56', '2025-11-03 12:16:56'),
(32, 'be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', 5.00, 5, 0.51000000, 1.60, 5.00, 0.00, 5.00, 8.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.15, 5.15, 21.85, 0.00, 27.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-05 11:31:09', '2025-11-05 11:31:09'),
(33, 'ec15251e-7b06-4e86-8705-9d7832d2c53c', 5.00, 5, 0.52000000, 1.60, 5.00, 0.00, 5.00, 8.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.15, 5.15, 21.85, 0.00, 27.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-05 11:35:48', '2025-11-05 11:35:48'),
(34, 'ea93932a-edbb-458a-9639-1ca659768790', 5.00, 5, 0.93000000, 4.20, 5.00, 0.00, 5.00, 21.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.80, 5.80, 64.20, 30.00, 40.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-05 11:52:47', '2025-11-05 11:52:58'),
(35, 'bd969391-93dd-4eaf-9452-f130e0dab76e', 5.00, 5, 0.85000000, 3.90, 5.00, 0.00, 5.00, 20.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.75, 5.75, 33.25, 0.00, 39.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-05 12:02:52', '2025-11-05 12:02:52'),
(36, '3ddf584a-016d-4177-883a-3e881a5f5d79', 5.00, 5, 0.85000000, 3.90, 5.00, 0.00, 5.00, 20.00, 5, 0, 0, 0, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 2.00, 1.75, 5.75, 63.25, 30.00, 39.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-05 12:05:33', '2025-11-05 12:05:40'),
(37, '80ecc65f-ac2d-4425-855a-47bd83ca400f', 10.00, 10, 0.86000000, 2.60, 10.00, 0.00, 10.00, 26.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 6.00, 10, 0.00, 6.00, 5.10, 17.10, 45.90, 0.00, 63.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-06 08:49:16', '2025-11-06 08:49:16'),
(38, '5f071cc3-402d-4ea8-a121-b617d3246e9d', 10.00, 10, 0.65000000, 1.80, 10.00, 0.00, 10.00, 18.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 5.00, 10, 0.00, 5.00, 4.30, 14.30, 38.70, 0.00, 53.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-06 09:01:05', '2025-11-06 09:01:05'),
(39, '0b353677-1a98-4a66-ac03-2cbed7efc06b', 10.00, 10, 0.88000000, 4.00, 10.00, 0.00, 10.00, 40.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 7.00, 10, 0.00, 7.00, 6.50, 20.50, 58.50, 0.00, 79.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-06 10:29:40', '2025-11-06 10:29:40'),
(40, 'e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', 10.00, 10, 0.88000000, 3.90, 10.00, 0.00, 10.00, 39.00, 10, 0, 0, 0, 15.00, 0.00, 0.00, 7.00, 10, 0.00, 7.00, 6.40, 20.40, 57.60, 0.00, 78.00, 'USD', '$', NULL, 0.00, 0.00, '2025-11-06 10:46:45', '2025-11-06 10:46:45');

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

--
-- Table structure for table `request_cancellation_fees`
--

CREATE TABLE `request_cancellation_fees` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `is_paid` tinyint(1) NOT NULL DEFAULT 0,
  `paid_request_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_cancellation_fees`
--

INSERT INTO `request_cancellation_fees` (`id`, `request_id`, `user_id`, `driver_id`, `cancellation_fee`, `is_paid`, `paid_request_id`, `created_at`, `updated_at`) VALUES
(1, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', 2, NULL, 3.60, 1, '729f82e9-8346-45d5-8fe7-39450f62ea0e', '2025-10-07 13:27:45', '2025-10-07 15:47:31'),
(2, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', NULL, 9, 1.80, 0, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', '2025-10-07 13:28:34', '2025-10-07 13:28:34'),
(3, '9386e7d5-af45-4d55-b173-5cbdb026364a', NULL, 1, 8.10, 0, '9386e7d5-af45-4d55-b173-5cbdb026364a', '2025-10-10 10:06:33', '2025-10-10 10:06:33'),
(4, 'b476b4e4-8381-40ae-9931-ab85fcb69b10', NULL, 1, 5.10, 0, 'b476b4e4-8381-40ae-9931-ab85fcb69b10', '2025-11-06 09:13:52', '2025-11-06 09:13:52'),
(5, 'b79cc7c1-e560-47a2-b475-a952b84c5b44', NULL, 1, 7.90, 0, 'b79cc7c1-e560-47a2-b475-a952b84c5b44', '2025-11-06 10:03:09', '2025-11-06 10:03:09');

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

--
-- Table structure for table `request_delivery_proofs`
--

CREATE TABLE `request_delivery_proofs` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `after_load` tinyint(1) NOT NULL DEFAULT 0,
  `after_unload` tinyint(1) NOT NULL DEFAULT 0,
  `proof_image` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_delivery_proofs`
--

INSERT INTO `request_delivery_proofs` (`id`, `request_id`, `after_load`, `after_unload`, `proof_image`, `created_at`, `updated_at`) VALUES
(1, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 1, 0, 'wPNjOdwLmLfDkEaN87ND9T5FhlR2PpxeiDL49oir.jpg', '2025-10-13 10:43:49', '2025-10-13 10:43:49'),
(2, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 1, 0, '175WoLCoOo6VunzSPUFXaZAZnvXKuNTaroTe7oJe.jpg', '2025-10-13 10:44:01', '2025-10-13 10:44:01'),
(3, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 1, 0, '28jHxbUqOBNbz9ErYLISrBrWGrp1r16ioLMfbb86.png', '2025-10-13 10:44:10', '2025-10-13 10:44:10'),
(4, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 1, 0, 'SCwl7gNS7A48ukGMIio3PeHqjLz1EJEIhSt2XJRR.png', '2025-10-13 10:44:20', '2025-10-13 10:44:20');

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

--
-- Table structure for table `request_eta`
--

CREATE TABLE `request_eta` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `base_distance` int(11) NOT NULL,
  `total_distance` double(15,8) NOT NULL DEFAULT 0.00000000,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `distance_price` double(10,2) NOT NULL DEFAULT 0.00,
  `price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `time_price` double(10,2) NOT NULL DEFAULT 0.00,
  `waiting_charge` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax_percentage` int(11) NOT NULL DEFAULT 0,
  `promo_discount` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commission` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commission_with_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `driver_commission` double(10,2) NOT NULL DEFAULT 0.00,
  `total_amount` double(10,2) NOT NULL DEFAULT 0.00,
  `requested_currency_code` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_eta`
--

INSERT INTO `request_eta` (`id`, `request_id`, `base_price`, `base_distance`, `total_distance`, `total_time`, `price_per_distance`, `distance_price`, `price_per_time`, `time_price`, `waiting_charge`, `cancellation_fee`, `service_tax`, `service_tax_percentage`, `promo_discount`, `admin_commission`, `admin_commission_with_tax`, `driver_commission`, `total_amount`, `requested_currency_code`, `created_at`, `updated_at`) VALUES
(1, '2e903934-601e-4b95-94d9-d4d8794f907a', 5.00, 1, 13.26000000, 40.50, 10.00, 123.00, 10.00, 405.00, 0.00, 0.00, 56.00, 10, 0.00, 0.00, 0.00, 0.00, 637.00, 'USD', '2025-10-03 07:34:38', '2025-10-03 07:34:38'),
(2, 'b1243551-fc43-4804-b7bf-272a3c5428ff', 5.00, 1, 13.26000000, 40.50, 10.00, 123.00, 10.00, 405.00, 0.00, 0.00, 56.00, 10, 0.00, 0.00, 0.00, 0.00, 637.00, 'USD', '2025-10-03 09:58:05', '2025-10-03 09:58:05'),
(3, '3b7ed5f5-3ff8-4279-b6a0-5de4ddc54767', 10.00, 1, 0.46000000, 1.90, 10.00, 0.00, 10.00, 19.00, 0.00, 0.00, 3.00, 5, 0.00, 0.00, 0.00, 0.00, 57.00, 'USD', '2025-10-06 11:01:56', '2025-10-06 11:01:56'),
(4, '503e1931-a502-4213-ad73-caa0f6810b2c', 5.00, 5, 0.46000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-06 11:03:54', '2025-10-06 11:03:54'),
(5, '4de7c812-88ac-4096-ab01-6ba1be6698de', 5.00, 5, 0.60000000, 2.70, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-06 11:33:19', '2025-10-06 11:33:19'),
(6, 'bef667fd-56dd-4b54-a388-716676ba4b61', 5.00, 5, 0.71000000, 2.50, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-07 09:43:49', '2025-10-07 09:43:49'),
(7, 'b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', 5.00, 5, 0.65000000, 2.50, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-07 09:50:11', '2025-10-07 09:50:11'),
(8, '0668bf58-4cc2-4100-a676-48027a615976', 5.00, 5, 0.69000000, 2.40, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 09:56:07', '2025-10-07 09:56:07'),
(9, '0870cf67-7ce8-452e-bf11-0d3a65ad6e98', 5.00, 5, 0.84000000, 3.00, 5.00, 0.00, 5.00, 15.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 34.00, 'USD', '2025-10-07 10:09:31', '2025-10-07 10:09:31'),
(10, '299b5587-fff2-4141-a2de-202275573b42', 5.00, 5, 0.59000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 10:29:45', '2025-10-07 10:29:45'),
(11, '9ed5bbfe-2540-40be-ba9c-13be023f21f8', 5.00, 5, 0.52000000, 2.00, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-07 11:30:15', '2025-10-07 11:30:15'),
(12, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', 5.00, 5, 0.91000000, 3.30, 5.00, 0.00, 5.00, 17.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 36.00, 'USD', '2025-10-07 13:21:07', '2025-10-07 13:21:07'),
(13, 'ec31feea-63da-42b2-a9a3-abd82070fcd4', 5.00, 5, 0.41000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 13:56:27', '2025-10-07 13:56:27'),
(14, 'c0c428da-2d5b-40e5-a0d5-cc82b1ecbb82', 5.00, 5, 0.41000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 13:57:20', '2025-10-07 13:57:20'),
(15, 'a73d3f2e-f423-4939-aaa1-ea9a65f45ec2', 5.00, 5, 0.41000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 14:00:39', '2025-10-07 14:00:39'),
(16, 'f7de06e3-aa54-4a57-b4e9-ababec0ea2e3', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:21:40', '2025-10-07 14:21:40'),
(17, 'c0b44ebd-7744-41ac-ae72-1b74073ad857', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:22:08', '2025-10-07 14:22:08'),
(18, 'c408c378-5e2c-4a0a-b33d-28302a6bfc05', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:23:02', '2025-10-07 14:23:02'),
(19, 'eba5c9ff-8ed7-4ef8-8e90-5fb6e98f75ff', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:24:22', '2025-10-07 14:24:22'),
(20, '92be54c4-8764-4fc7-a0be-5c20f5ae2741', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:25:30', '2025-10-07 14:25:30'),
(21, '6d6d2d72-4a7c-4889-8957-4b473e536708', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:28:06', '2025-10-07 14:28:06'),
(22, '876d6d87-bff1-4c09-a91a-ad1c14206958', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:32:31', '2025-10-07 14:32:31'),
(23, 'b9d1711c-13ee-4237-8e4e-3d42391242db', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:33:57', '2025-10-07 14:33:57'),
(24, '356e7a5d-099a-47ec-a57a-d4a6fdbd1270', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:34:44', '2025-10-07 14:34:44'),
(25, '316679ff-9aab-4db8-a5f3-bf47c26041ae', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:36:56', '2025-10-07 14:36:56'),
(26, '0e65439a-0a99-4d32-a95e-cedd6f23a9f5', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:42:56', '2025-10-07 14:42:56'),
(27, '887836d8-38b6-4a7d-a507-e068962e5aab', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:45:17', '2025-10-07 14:45:17'),
(28, 'ec0c6146-ef53-4400-b1f2-8a2a4c6699cb', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:47:51', '2025-10-07 14:47:51'),
(29, 'c8d0d4a9-d182-457a-832a-c05523582884', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:53:04', '2025-10-07 14:53:04'),
(30, '37f13178-45a2-4896-ac01-6a9905f286c6', 5.00, 5, 0.55000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-07 14:55:59', '2025-10-07 14:55:59'),
(31, '0a26718a-6534-47bd-b5fb-e9f5ebfad843', 5.00, 5, 0.44000000, 1.50, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 15:38:07', '2025-10-07 15:38:07'),
(32, '0995397f-eebe-4bb5-b990-45b823c54ed7', 5.00, 5, 0.44000000, 1.50, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 15:40:37', '2025-10-07 15:40:37'),
(33, 'aab1ca33-b974-4f58-91a2-c6eabf0ac03f', 5.00, 5, 0.44000000, 1.50, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-07 15:41:20', '2025-10-07 15:41:20'),
(34, '10e4cd40-1b72-41ea-8720-b076da8207f8', 5.00, 5, 0.61000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-07 15:42:41', '2025-10-07 15:42:41'),
(35, 'b2456fc2-1e2a-4ec5-a91a-c2cf04e40f28', 5.00, 5, 0.61000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-07 15:43:11', '2025-10-07 15:43:11'),
(36, '849b74ec-9698-46e9-bab1-8caf2df3b791', 5.00, 5, 0.61000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-07 15:43:51', '2025-10-07 15:43:51'),
(37, '729f82e9-8346-45d5-8fe7-39450f62ea0e', 5.00, 5, 0.61000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-07 15:46:33', '2025-10-07 15:46:33'),
(38, '06aaa489-3528-4f15-86bb-3305569d505e', 5.00, 5, 0.78000000, 2.80, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-07 15:49:15', '2025-10-07 15:49:15'),
(39, '4cdca157-6c57-4b2c-8a46-6283ade1a837', 5.00, 5, 0.78000000, 2.80, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-07 15:53:11', '2025-10-07 15:53:11'),
(40, 'b19b432c-94b0-4481-8df9-ca3df44e9554', 5.00, 5, 0.77000000, 2.80, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-07 16:00:16', '2025-10-07 16:00:16'),
(41, '71a157db-a1cd-4b5f-9533-3a6533ef4c25', 5.00, 1, 14.26000000, 25.00, 10.00, 133.00, 10.00, 250.00, 0.00, 0.00, 41.00, 10, 0.00, 0.00, 0.00, 0.00, 470.00, 'USD', '2025-10-08 05:17:54', '2025-10-08 05:17:54'),
(42, '128d55e3-2acf-4669-9a92-8014865aec3c', 5.00, 5, 14.26000000, 25.00, 5.00, 47.00, 5.00, 125.00, 0.00, 0.00, 10.00, 5, 0.00, 0.00, 0.00, 0.00, 207.00, 'USD', '2025-10-08 05:18:32', '2025-10-08 05:18:32'),
(43, '34a6634e-c2b6-4a56-b410-54708acb48e0', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 05:21:01', '2025-10-08 05:21:01'),
(44, '9195554f-1fd6-4036-9516-c1ca7f2dcb3d', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 05:45:41', '2025-10-08 05:45:41'),
(45, '814f577d-32ff-41f8-b5eb-59709e744838', 5.00, 5, 0.73000000, 2.50, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-08 08:09:10', '2025-10-08 08:09:10'),
(46, '97c89395-18f7-4acd-8e27-9391b0bd58f3', 5.00, 5, 0.73000000, 2.50, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-08 08:11:15', '2025-10-08 08:11:15'),
(47, '5007a27f-46eb-47c4-a8df-bc9945dd21eb', 5.00, 5, 0.44000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-10-08 08:25:37', '2025-10-08 08:25:37'),
(48, '88e2f4dc-3a68-486b-a38a-e17c9d1428b9', 5.00, 5, 0.58000000, 1.90, 5.00, 0.00, 5.00, 10.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 29.00, 'USD', '2025-10-08 09:08:17', '2025-10-08 09:08:17'),
(49, '5f8dc4f3-2066-493d-b9e1-7354f37b9b43', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 09:37:09', '2025-10-08 09:37:09'),
(50, 'f85bece5-7d66-4c8c-aae3-82a15451c9da', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 09:38:56', '2025-10-08 09:38:56'),
(51, 'e854d55d-e276-4f68-9845-dcd543dac50e', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 09:44:30', '2025-10-08 09:44:30'),
(52, '96438441-81df-440d-b6d3-1c172df85d6c', 5.00, 1, 3.09000000, 9.40, 10.00, 21.00, 10.00, 94.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 161.00, 'USD', '2025-10-08 09:52:21', '2025-10-08 09:52:21'),
(53, 'f964df16-6317-4431-9f8b-4bf40e55213f', 5.00, 5, 13.79000000, 44.50, 5.00, 44.00, 5.00, 223.00, 0.00, 0.00, 15.00, 5, 0.00, 0.00, 0.00, 0.00, 312.00, 'USD', '2025-10-08 10:03:33', '2025-10-08 10:03:33'),
(54, '51b911e6-2ab2-49d9-a76e-a4c26b457ed8', 5.00, 5, 0.80000000, 2.30, 5.00, 0.00, 5.00, 12.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 31.00, 'USD', '2025-10-10 09:01:21', '2025-10-10 09:01:21'),
(55, '93439cdd-d084-4f7a-b468-dee4a59ae1bd', 10.00, 10, 0.80000000, 2.30, 10.00, 0.00, 10.00, 23.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 58.00, 'USD', '2025-10-10 09:02:23', '2025-10-10 09:02:23'),
(56, '3c076355-9de8-41f7-a675-c6ca7a0146f5', 10.00, 10, 0.80000000, 2.30, 10.00, 0.00, 10.00, 23.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 58.00, 'USD', '2025-10-10 09:08:25', '2025-10-10 09:08:25'),
(57, 'c6bc4f01-d4c3-4cde-94a3-b4a9082e07c1', 5.00, 1, 0.78000000, 2.30, 10.00, 0.00, 10.00, 23.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 56.00, 'USD', '2025-10-10 09:12:51', '2025-10-10 09:12:51'),
(58, '22b9fe31-17a2-4bb6-a15d-83c6d3bc9d27', 5.00, 1, 0.76000000, 2.10, 10.00, 0.00, 10.00, 21.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 54.00, 'USD', '2025-10-10 09:16:29', '2025-10-10 09:16:29'),
(59, '2fb8078a-ab36-42b5-9575-e523b6d26cf1', 5.00, 1, 0.76000000, 2.10, 10.00, 0.00, 10.00, 21.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 54.00, 'USD', '2025-10-10 09:17:43', '2025-10-10 09:17:43'),
(60, '06035a58-d39b-4ac8-afdc-848d5dd24ff5', 10.00, 10, 0.76000000, 2.10, 10.00, 0.00, 10.00, 21.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 56.00, 'USD', '2025-10-10 09:18:43', '2025-10-10 09:18:43'),
(61, '9386e7d5-af45-4d55-b173-5cbdb026364a', 10.00, 10, 1.30000000, 4.20, 10.00, 0.00, 10.00, 42.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 81.00, 'USD', '2025-10-10 10:05:27', '2025-10-10 10:05:27'),
(62, 'a5a4c085-8ebe-492d-90d4-45095f7e16e8', 10.00, 10, 0.83000000, 2.40, 10.00, 0.00, 10.00, 24.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 59.00, 'USD', '2025-10-10 10:12:12', '2025-10-10 10:12:12'),
(63, '56e3768a-d172-4e0f-bb8b-032f6bbe00a0', 10.00, 10, 0.86000000, 2.50, 10.00, 0.00, 10.00, 25.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 60.00, 'USD', '2025-10-10 10:21:13', '2025-10-10 10:21:13'),
(64, '474b06eb-8dc4-45be-8322-b6e02ceba661', 10.00, 10, 1.04000000, 3.30, 10.00, 0.00, 10.00, 33.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 70.00, 'USD', '2025-10-10 10:27:52', '2025-10-10 10:27:52'),
(65, '8a5d087f-d796-4f4e-898d-53ddd40f375a', 10.00, 10, 1.04000000, 3.30, 10.00, 0.00, 10.00, 33.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 70.00, 'USD', '2025-10-10 10:29:40', '2025-10-10 10:29:40'),
(66, '49c9de06-0d6a-4f39-bfb3-17a7328fcb51', 10.00, 10, 1.04000000, 3.30, 10.00, 0.00, 10.00, 33.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 70.00, 'USD', '2025-10-10 10:30:03', '2025-10-10 10:30:03'),
(67, '33947e59-02ea-48f0-8869-0e981e4a9651', 10.00, 10, 0.74000000, 2.10, 10.00, 0.00, 10.00, 21.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 56.00, 'USD', '2025-10-10 10:35:44', '2025-10-10 10:35:44'),
(68, '8f24cc50-059c-4bb8-8f20-7b209e9a3292', 10.00, 10, 0.98000000, 3.10, 10.00, 0.00, 10.00, 31.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 68.00, 'USD', '2025-10-10 11:05:29', '2025-10-10 11:05:29'),
(69, 'b781cd99-f482-49c9-a584-fd3470c6cc16', 10.00, 10, 0.77000000, 2.10, 10.00, 0.00, 10.00, 21.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 56.00, 'USD', '2025-10-10 11:08:41', '2025-10-10 11:08:41'),
(70, 'f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', 10.00, 10, 1.01000000, 3.20, 10.00, 0.00, 10.00, 32.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 69.00, 'USD', '2025-10-10 11:22:33', '2025-10-10 11:22:33'),
(71, 'e86ca748-fcca-42d6-8dad-f6db719c4acf', 10.00, 10, 0.28000000, 1.20, 10.00, 0.00, 10.00, 12.00, 0.00, 0.00, 4.00, 10, 0.00, 0.00, 0.00, 0.00, 45.00, 'USD', '2025-10-10 11:39:00', '2025-10-10 11:39:00'),
(72, '025497df-d5d5-4e29-89d8-3da5313c8e01', 5.00, 5, 0.67000000, 2.60, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-12 05:44:11', '2025-10-12 05:44:11'),
(73, '6678ca5e-3e73-431f-8e77-564f5ce46c0d', 5.00, 5, 0.86000000, 3.90, 5.00, 0.00, 5.00, 20.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 39.00, 'USD', '2025-10-13 04:58:45', '2025-10-13 04:58:45'),
(74, '55b63d0a-ac8f-4c0a-9829-062de43d3eea', 10.00, 1, 0.86000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 4.00, 5, 0.00, 0.00, 0.00, 0.00, 80.00, 'USD', '2025-10-13 04:59:47', '2025-10-13 04:59:47'),
(75, '9cd15f24-193d-4e8a-9da3-826d1bc5113e', 12.00, 25, 0.86000000, 3.90, 25.00, 0.00, 10.00, 39.00, 0.00, 0.00, 3.00, 5, 0.00, 0.00, 0.00, 0.00, 61.00, 'USD', '2025-10-13 05:00:31', '2025-10-13 05:00:31'),
(76, '3462615f-7cc6-46ec-837f-e345d6b265d1', 5.00, 1, 0.86000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 75.00, 'USD', '2025-10-13 05:01:03', '2025-10-13 05:01:03'),
(77, '889c5477-8b49-4a97-8c89-278ad1e1eff8', 10.00, 10, 0.86000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 78.00, 'USD', '2025-10-13 05:01:43', '2025-10-13 05:01:43'),
(78, '90c1a996-0444-4631-a952-5283abd22639', 5.00, 1, 4.18000000, 13.90, 10.00, 32.00, 10.00, 139.00, 0.00, 0.00, 20.00, 10, 0.00, 0.00, 0.00, 0.00, 226.00, 'USD', '2025-10-13 05:39:58', '2025-10-13 05:39:58'),
(79, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 10.00, 10, 4.18000000, 13.90, 10.00, 0.00, 10.00, 139.00, 0.00, 0.00, 17.00, 10, 0.00, 0.00, 0.00, 0.00, 198.00, 'USD', '2025-10-13 05:40:17', '2025-10-13 05:40:17'),
(80, '2b5a8e44-ad48-44a4-bc37-c2a975fd617d', 10.00, 10, 3.55000000, 10.90, 10.00, 0.00, 10.00, 109.00, 0.00, 0.00, 14.00, 10, 0.00, 0.00, 0.00, 0.00, 162.00, 'USD', '2025-10-13 06:16:31', '2025-10-13 06:16:31'),
(81, '1acb4604-1b53-442a-82ca-3bc8c28b9164', 10.00, 10, 4.10000000, 14.60, 10.00, 0.00, 10.00, 146.00, 0.00, 0.00, 18.00, 10, 0.00, 0.00, 0.00, 0.00, 207.00, 'USD', '2025-10-13 06:58:09', '2025-10-13 06:58:09'),
(82, 'a673a7ee-c86f-4dfa-bc36-0d7f6ed7b9ac', 15.00, 13, 4.10000000, 14.60, 10.00, 0.00, 5.00, 73.00, 0.00, 0.00, 15.00, 15, 0.00, 0.00, 0.00, 0.00, 133.00, 'USD', '2025-10-13 06:58:47', '2025-10-13 06:58:47'),
(83, '6bf02c74-667d-4dd1-8401-dfbadb6315dc', 15.00, 15, 4.10000000, 14.60, 15.00, 0.00, 15.00, 219.00, 0.00, 0.00, 39.00, 15, 0.00, 0.00, 0.00, 0.00, 332.00, 'USD', '2025-10-13 06:59:22', '2025-10-13 06:59:22'),
(84, '46202850-79e7-4d9e-a437-f55eab207948', 50.00, 50, 4.10000000, 14.30, 20.00, 0.00, 50.00, 715.00, 0.00, 0.00, 41.00, 5, 0.00, 0.00, 0.00, 0.00, 897.00, 'USD', '2025-10-13 07:13:32', '2025-10-13 07:13:32'),
(85, '635bf70c-369a-417d-a766-ddedf62aa41e', 50.00, 50, 4.10000000, 14.70, 20.00, 0.00, 50.00, 735.00, 0.00, 0.00, 42.00, 5, 0.00, 0.00, 0.00, 0.00, 919.00, 'USD', '2025-10-13 07:19:59', '2025-10-13 07:19:59'),
(86, '82af1c7d-f4d1-49e4-8acc-5bb8a074b6b9', 5.00, 5, 0.69000000, 2.70, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-13 10:09:55', '2025-10-13 10:09:55'),
(87, '54c77d6f-c062-4aec-8167-d28a89aece74', 5.00, 5, 0.69000000, 2.70, 5.00, 0.00, 5.00, 14.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 33.00, 'USD', '2025-10-13 10:11:19', '2025-10-13 10:11:19'),
(88, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 5.00, 5, 0.84000000, 3.40, 5.00, 0.00, 5.00, 17.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 36.00, 'USD', '2025-10-13 10:17:42', '2025-10-13 10:17:42'),
(89, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 5.00, 5, 0.79000000, 3.00, 5.00, 0.00, 5.00, 15.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 34.00, 'USD', '2025-10-13 10:42:31', '2025-10-13 10:42:31'),
(90, '72a87905-a303-4950-9ce8-ef6c4c9eb83a', 5.00, 5, 0.89000000, 2.60, 5.00, 0.00, 5.00, 13.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 32.00, 'USD', '2025-10-13 11:03:00', '2025-10-13 11:03:00'),
(91, '396c4a35-3b21-4a72-a02a-40afa7848fc9', 5.00, 5, 0.78000000, 3.10, 5.00, 0.00, 5.00, 16.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 35.00, 'USD', '2025-10-13 11:11:06', '2025-10-13 11:11:06'),
(92, 'd107bd4e-184a-4eb9-b885-61358c064b95', 5.00, 5, 1.17000000, 4.20, 5.00, 0.00, 5.00, 21.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 40.00, 'USD', '2025-10-13 13:04:57', '2025-10-13 13:04:57'),
(93, 'c95f0da9-ee22-4756-9e89-33b057cff77e', 5.00, 5, 0.38000000, 1.50, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-11-03 11:57:12', '2025-11-03 11:57:12'),
(94, '4c700060-8ce8-46d0-8365-865fb5276436', 5.00, 5, 0.59000000, 3.10, 5.00, 0.00, 5.00, 16.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 35.00, 'USD', '2025-11-03 12:16:00', '2025-11-03 12:16:00'),
(95, 'e70ef4dc-dd1d-413f-a98b-9a57990dbfff', 5.00, 5, 1.69000000, 5.50, 5.00, 0.00, 5.00, 28.00, 0.00, 0.00, 3.00, 5, 0.00, 0.00, 0.00, 0.00, 49.00, 'USD', '2025-11-05 10:49:13', '2025-11-05 10:49:13'),
(96, '3be3a846-cf2a-472a-8a17-ee95513f33f7', 5.00, 5, 1.69000000, 5.50, 5.00, 0.00, 5.00, 28.00, 0.00, 0.00, 3.00, 5, 0.00, 0.00, 0.00, 0.00, 49.00, 'USD', '2025-11-05 10:53:01', '2025-11-05 10:53:01'),
(97, '6165727e-5fd5-4edc-bf38-16e09af27053', 5.00, 5, 1.69000000, 5.50, 5.00, 0.00, 5.00, 28.00, 0.00, 0.00, 3.00, 5, 0.00, 0.00, 0.00, 0.00, 49.00, 'USD', '2025-11-05 10:58:30', '2025-11-05 10:58:30'),
(98, 'be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', 5.00, 5, 0.51000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-11-05 11:28:54', '2025-11-05 11:28:54'),
(99, 'ec15251e-7b06-4e86-8705-9d7832d2c53c', 5.00, 5, 0.52000000, 1.60, 5.00, 0.00, 5.00, 8.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 27.00, 'USD', '2025-11-05 11:35:05', '2025-11-05 11:35:05'),
(100, 'ea93932a-edbb-458a-9639-1ca659768790', 5.00, 5, 0.93000000, 4.20, 5.00, 0.00, 5.00, 21.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 40.00, 'USD', '2025-11-05 11:51:00', '2025-11-05 11:51:00'),
(101, '150045fa-13bc-4984-97f5-58172d7caba5', 5.00, 1, 0.85000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 75.00, 'USD', '2025-11-05 12:00:02', '2025-11-05 12:00:02'),
(102, 'bd969391-93dd-4eaf-9452-f130e0dab76e', 5.00, 5, 0.85000000, 3.90, 5.00, 0.00, 5.00, 20.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 39.00, 'USD', '2025-11-05 12:01:49', '2025-11-05 12:01:49'),
(103, '3ddf584a-016d-4177-883a-3e881a5f5d79', 5.00, 5, 0.85000000, 3.90, 5.00, 0.00, 5.00, 20.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 39.00, 'USD', '2025-11-05 12:04:33', '2025-11-05 12:04:33'),
(104, 'c18d1ca3-239d-4aca-963a-151bfc471be1', 5.00, 5, 0.89000000, 4.00, 5.00, 0.00, 5.00, 20.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 39.00, 'USD', '2025-11-05 12:38:26', '2025-11-05 12:38:26'),
(105, '03693f51-5e3f-4a21-bee7-bfb74731ab2c', 10.00, 10, 0.86000000, 2.60, 10.00, 0.00, 10.00, 26.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 63.00, 'USD', '2025-11-06 08:41:43', '2025-11-06 08:41:43'),
(106, '80ecc65f-ac2d-4425-855a-47bd83ca400f', 10.00, 10, 0.86000000, 2.60, 10.00, 0.00, 10.00, 26.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 63.00, 'USD', '2025-11-06 08:47:45', '2025-11-06 08:47:45'),
(107, 'a42ef3e4-10e9-4810-8c3f-bef0e5440c93', 10.00, 10, 0.72000000, 2.00, 10.00, 0.00, 10.00, 20.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 55.00, 'USD', '2025-11-06 08:51:30', '2025-11-06 08:51:30'),
(108, 'f95268c9-7ad7-490b-83ef-75dcad6b186b', 10.00, 10, 0.96000000, 2.90, 10.00, 0.00, 10.00, 29.00, 0.00, 0.00, 6.00, 10, 0.00, 0.00, 0.00, 0.00, 66.00, 'USD', '2025-11-06 08:54:48', '2025-11-06 08:54:48'),
(109, '5f071cc3-402d-4ea8-a121-b617d3246e9d', 10.00, 10, 0.65000000, 1.80, 10.00, 0.00, 10.00, 18.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 53.00, 'USD', '2025-11-06 08:59:38', '2025-11-06 08:59:38'),
(110, '7fd96122-aa76-4ab1-9ccf-f4cfd36c2c8b', 10.00, 10, 0.49000000, 1.60, 10.00, 0.00, 10.00, 16.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 51.00, 'USD', '2025-11-06 09:12:29', '2025-11-06 09:12:29'),
(111, 'b476b4e4-8381-40ae-9931-ab85fcb69b10', 10.00, 10, 0.49000000, 1.60, 10.00, 0.00, 10.00, 16.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 51.00, 'USD', '2025-11-06 09:13:10', '2025-11-06 09:13:10'),
(112, '1d18982f-6726-4518-bcaf-8324a5f8bef6', 10.00, 10, 0.49000000, 1.60, 10.00, 0.00, 10.00, 16.00, 0.00, 0.00, 5.00, 10, 0.00, 0.00, 0.00, 0.00, 51.00, 'USD', '2025-11-06 09:13:56', '2025-11-06 09:13:56'),
(113, 'b35dc563-972f-4f28-9fc7-8a916b4e0924', 5.00, 5, 0.89000000, 4.00, 5.00, 0.00, 5.00, 20.00, 0.00, 0.00, 2.00, 5, 0.00, 0.00, 0.00, 0.00, 39.00, 'USD', '2025-11-06 09:57:50', '2025-11-06 09:57:50'),
(114, '042346b2-9811-4822-a1b2-8574f2470dfd', 10.00, 1, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 4.00, 5, 0.00, 0.00, 0.00, 0.00, 81.00, 'USD', '2025-11-06 09:58:24', '2025-11-06 09:58:24'),
(115, 'b79cc7c1-e560-47a2-b475-a952b84c5b44', 10.00, 10, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 09:59:00', '2025-11-06 09:59:00'),
(116, 'd16ea42d-aab5-41f2-9dd4-d9226d39ac60', 10.00, 10, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 10:01:27', '2025-11-06 10:01:27'),
(117, '76530f8d-9d9f-4f5a-b3b6-69c66f314be5', 10.00, 10, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 10:03:32', '2025-11-06 10:03:32'),
(118, '62bc8cf4-0581-47c0-818c-ffe479b594dc', 10.00, 10, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 10:05:17', '2025-11-06 10:05:17'),
(119, '2ff54127-7086-4a72-a01f-c4626c4dd542', 10.00, 10, 0.89000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 10:06:59', '2025-11-06 10:06:59'),
(120, '0b353677-1a98-4a66-ac03-2cbed7efc06b', 10.00, 10, 0.88000000, 4.00, 10.00, 0.00, 10.00, 40.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 79.00, 'USD', '2025-11-06 10:25:33', '2025-11-06 10:25:33'),
(121, '021fcf57-34a9-4590-ab72-95030d4ff0cc', 5.00, 5, 29.27000000, 49.00, 5.00, 122.00, 5.00, 245.00, 0.00, 0.00, 20.00, 5, 0.00, 0.00, 0.00, 0.00, 422.00, 'USD', '2025-11-06 10:37:57', '2025-11-06 10:37:57'),
(122, 'da1a46d1-8bbd-4115-a3bf-c187a0fe14c6', 10.00, 10, 0.87000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 78.00, 'USD', '2025-11-06 10:38:57', '2025-11-06 10:38:57'),
(123, 'e8f8ce05-c0db-4eb5-8b03-65eb5dc1365e', 5.00, 5, 29.06000000, 50.00, 5.00, 121.00, 5.00, 250.00, 0.00, 0.00, 20.00, 5, 0.00, 0.00, 0.00, 0.00, 426.00, 'USD', '2025-11-06 10:40:59', '2025-11-06 10:40:59'),
(124, 'e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', 10.00, 10, 0.88000000, 3.90, 10.00, 0.00, 10.00, 39.00, 0.00, 0.00, 7.00, 10, 0.00, 0.00, 0.00, 0.00, 78.00, 'USD', '2025-11-06 10:45:50', '2025-11-06 10:45:50'),
(125, '89cf4c65-ec9e-4a53-9a11-235219939dca', 15.00, 13, 29.27000000, 50.00, 10.00, 163.00, 5.00, 250.00, 0.00, 0.00, 66.00, 15, 0.00, 0.00, 0.00, 0.00, 592.00, 'USD', '2025-11-06 10:52:46', '2025-11-06 10:52:46');

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

--
-- Table structure for table `request_places`
--

CREATE TABLE `request_places` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `pick_lat` double(15,8) DEFAULT NULL,
  `pick_lng` double(15,8) DEFAULT NULL,
  `drop_lat` double(15,8) DEFAULT NULL,
  `drop_lng` double(15,8) DEFAULT NULL,
  `request_path` longtext DEFAULT NULL,
  `pick_address` text DEFAULT NULL,
  `drop_address` text DEFAULT NULL,
  `pickup_poc_name` varchar(191) DEFAULT NULL,
  `drop_poc_name` varchar(191) DEFAULT NULL,
  `pickup_poc_mobile` varchar(191) DEFAULT NULL,
  `pickup_poc_instruction` varchar(191) DEFAULT NULL,
  `drop_poc_mobile` varchar(191) DEFAULT NULL,
  `drop_poc_instruction` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_places`
--

INSERT INTO `request_places` (`id`, `request_id`, `pick_lat`, `pick_lng`, `drop_lat`, `drop_lng`, `request_path`, `pick_address`, `drop_address`, `pickup_poc_name`, `drop_poc_name`, `pickup_poc_mobile`, `pickup_poc_instruction`, `drop_poc_mobile`, `drop_poc_instruction`, `created_at`, `updated_at`) VALUES
(1, '2e903934-601e-4b95-94d9-d4d8794f907a', 19.23842690, 73.12888720, 19.15822240, 73.11572290, NULL, 'Kalyan Station Road, Bhanunagar Kalyan(West), Narayan Peth, Bhoiwada, Kalyan, Maharashtra, India', 'Casa Clara J Wing, 2, Downtown, Palava City, Antarli, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-03 07:34:38', '2025-10-03 07:34:38'),
(2, 'b1243551-fc43-4804-b7bf-272a3c5428ff', 19.23842690, 73.12888720, 19.15822240, 73.11572290, NULL, 'Kalyan Station Road, Bhanunagar Kalyan(West), Narayan Peth, Bhoiwada, Kalyan, Maharashtra, India', 'Casa Clara J Wing, 2, Downtown, Palava City, Antarli, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-03 09:58:05', '2025-10-03 09:58:05'),
(3, '3b7ed5f5-3ff8-4279-b6a0-5de4ddc54767', 21.22418997, 72.88941924, 21.22237289, 72.89107315, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 11:01:56', '2025-10-06 11:01:56'),
(4, '503e1931-a502-4213-ad73-caa0f6810b2c', 21.22418997, 72.88941924, 21.22237289, 72.89107315, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 11:03:54', '2025-10-06 11:03:54'),
(5, '4de7c812-88ac-4096-ab01-6ba1be6698de', 21.22522477, 72.88943499, 21.22194283, 72.89199147, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '13, Vandna Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 11:33:19', '2025-10-06 11:33:19'),
(6, 'bef667fd-56dd-4b54-a388-716676ba4b61', 21.22416903, 72.88944807, 21.21839203, 72.88985811, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', 'Row-House, Prabhudarshan Raw House, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 09:43:49', '2025-10-07 09:43:49'),
(7, 'b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', 21.22416710, 72.88945380, 21.22020166, 72.89039657, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '339, Syamdham Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 09:50:11', '2025-10-07 09:50:11'),
(8, '0668bf58-4cc2-4100-a676-48027a615976', 21.22413680, 72.88959630, 21.22074549, 72.89170716, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 09:56:07', '2025-10-07 09:56:07'),
(9, '0870cf67-7ce8-452e-bf11-0d3a65ad6e98', 21.22415966, 72.88946752, 21.22145527, 72.89207999, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 10:09:31', '2025-10-07 10:09:31'),
(10, '299b5587-fff2-4141-a2de-202275573b42', 21.22414184, 72.88962610, 21.21927153, 72.88993355, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 10:29:45', '2025-10-07 10:29:45'),
(11, '9ed5bbfe-2540-40be-ba9c-13be023f21f8', 21.22418390, 72.88943230, 21.22067298, 72.89015483, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 11:30:15', '2025-10-07 11:30:15'),
(12, '2514b43d-c34d-48dc-a9bd-ff42147a75d1', 21.23000488, 72.90089674, 21.22349302, 72.89979436, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '128, Swaminarayan Nagar-1, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:21:07', '2025-10-07 13:21:07'),
(13, 'ec31feea-63da-42b2-a9a3-abd82070fcd4', 21.22416122, 72.88949937, 21.22069111, 72.88951579, NULL, '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '19, Shyamdham Simada Rd, Laxmi Market, Syamdham Chokdi, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:56:27', '2025-10-07 13:56:27'),
(14, 'c0c428da-2d5b-40e5-a0d5-cc82b1ecbb82', 21.22416122, 72.88949937, 21.22069111, 72.88951579, NULL, '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '19, Shyamdham Simada Rd, Laxmi Market, Syamdham Chokdi, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 13:57:20', '2025-10-07 13:57:20'),
(15, 'a73d3f2e-f423-4939-aaa1-ea9a65f45ec2', 21.22416122, 72.88949937, 21.22069111, 72.88951579, NULL, '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '19, Shyamdham Simada Rd, Laxmi Market, Syamdham Chokdi, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:00:39', '2025-10-07 14:00:39'),
(16, 'f7de06e3-aa54-4a57-b4e9-ababec0ea2e3', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:21:40', '2025-10-07 14:21:40'),
(17, 'c0b44ebd-7744-41ac-ae72-1b74073ad857', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:22:08', '2025-10-07 14:22:08'),
(18, 'c408c378-5e2c-4a0a-b33d-28302a6bfc05', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:23:02', '2025-10-07 14:23:02'),
(19, 'eba5c9ff-8ed7-4ef8-8e90-5fb6e98f75ff', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:24:22', '2025-10-07 14:24:22'),
(20, '92be54c4-8764-4fc7-a0be-5c20f5ae2741', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:25:30', '2025-10-07 14:25:30'),
(21, '6d6d2d72-4a7c-4889-8957-4b473e536708', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:28:06', '2025-10-07 14:28:06'),
(22, '876d6d87-bff1-4c09-a91a-ad1c14206958', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:32:31', '2025-10-07 14:32:31'),
(23, 'b9d1711c-13ee-4237-8e4e-3d42391242db', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:33:57', '2025-10-07 14:33:57'),
(24, '356e7a5d-099a-47ec-a57a-d4a6fdbd1270', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:34:44', '2025-10-07 14:34:44'),
(25, '316679ff-9aab-4db8-a5f3-bf47c26041ae', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:36:56', '2025-10-07 14:36:56'),
(26, '0e65439a-0a99-4d32-a95e-cedd6f23a9f5', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:42:56', '2025-10-07 14:42:56'),
(27, '887836d8-38b6-4a7d-a507-e068962e5aab', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:45:17', '2025-10-07 14:45:17'),
(28, 'ec0c6146-ef53-4400-b1f2-8a2a4c6699cb', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:47:51', '2025-10-07 14:47:51'),
(29, 'c8d0d4a9-d182-457a-832a-c05523582884', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:53:04', '2025-10-07 14:53:04'),
(30, '37f13178-45a2-4896-ac01-6a9905f286c6', 21.22417716, 72.88944170, 21.21980505, 72.88995165, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 14:55:59', '2025-10-07 14:55:59'),
(31, '0a26718a-6534-47bd-b5fb-e9f5ebfad843', 21.22413591, 72.88963683, 21.22053515, 72.88964052, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:38:07', '2025-10-07 15:38:07'),
(32, '0995397f-eebe-4bb5-b990-45b823c54ed7', 21.22413591, 72.88963683, 21.22053515, 72.88964052, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:40:37', '2025-10-07 15:40:37'),
(33, 'aab1ca33-b974-4f58-91a2-c6eabf0ac03f', 21.22413591, 72.88963683, 21.22053515, 72.88964052, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:41:20', '2025-10-07 15:41:20'),
(34, '10e4cd40-1b72-41ea-8720-b076da8207f8', 21.22419872, 72.88940951, 21.22037481, 72.89086260, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:42:41', '2025-10-07 15:42:41'),
(35, 'b2456fc2-1e2a-4ec5-a91a-c2cf04e40f28', 21.22419872, 72.88940951, 21.22037481, 72.89086260, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:43:11', '2025-10-07 15:43:11'),
(36, '849b74ec-9698-46e9-bab1-8caf2df3b791', 21.22419872, 72.88940951, 21.22037481, 72.89086260, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:43:51', '2025-10-07 15:43:51'),
(37, '729f82e9-8346-45d5-8fe7-39450f62ea0e', 21.22419872, 72.88940951, 21.22037481, 72.89086260, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:46:33', '2025-10-07 15:46:33'),
(38, '06aaa489-3528-4f15-86bb-3305569d505e', 21.22463534, 72.88941655, 21.21939343, 72.88840067, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:49:15', '2025-10-07 15:49:15'),
(39, '4cdca157-6c57-4b2c-8a46-6283ade1a837', 21.22463534, 72.88941655, 21.21939343, 72.88840067, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 15:53:11', '2025-10-07 15:53:11'),
(40, 'b19b432c-94b0-4481-8df9-ca3df44e9554', 21.22419216, 72.88941555, 21.21848235, 72.88939945, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-07 16:00:16', '2025-10-07 16:00:16'),
(41, '71a157db-a1cd-4b5f-9533-3a6533ef4c25', 23.16467840, 79.95165540, 23.18298790, 80.05692550, NULL, 'Jabalpur railway station, Madhya Pradesh State Highway 22, Tagore Railway Colony, South Civil Lines, Jabalpur, Madhya Pradesh, India', 'Jabalpur Airport, Airport Area, Khamaria, Dumna, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:17:54', '2025-10-08 05:17:54'),
(42, '128d55e3-2acf-4669-9a92-8014865aec3c', 23.16467840, 79.95165540, 23.18298790, 80.05692550, NULL, 'Jabalpur railway station, Madhya Pradesh State Highway 22, Tagore Railway Colony, South Civil Lines, Jabalpur, Madhya Pradesh, India', 'Jabalpur Airport, Airport Area, Khamaria, Dumna, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:18:32', '2025-10-08 05:18:32'),
(43, '34a6634e-c2b6-4a56-b410-54708acb48e0', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:21:01', '2025-10-08 05:21:01'),
(44, '9195554f-1fd6-4036-9516-c1ca7f2dcb3d', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 05:45:41', '2025-10-08 05:45:41'),
(45, '814f577d-32ff-41f8-b5eb-59709e744838', 21.22416466, 72.88948495, 21.22044920, 72.88924355, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '368, Mahavir Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 08:09:10', '2025-10-08 08:09:10'),
(46, '97c89395-18f7-4acd-8e27-9391b0bd58f3', 21.22416466, 72.88948495, 21.22044920, 72.88924355, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '368, Mahavir Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 08:11:15', '2025-10-08 08:11:15'),
(47, '5007a27f-46eb-47c4-a8df-bc9945dd21eb', 21.22412590, 72.88966350, 21.22231288, 72.89032012, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '36, Vandana Part 1, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 08:25:37', '2025-10-08 08:25:37'),
(48, '88e2f4dc-3a68-486b-a38a-e17c9d1428b9', 21.22411840, 72.88968176, 21.21936561, 72.88925327, '[{\"lat\":21.230005,\"lng\":72.9008967}]', '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '22, Shyamdham Society-1, Tulsi Shyam Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:08:17', '2025-10-08 09:09:54'),
(49, '5f8dc4f3-2066-493d-b9e1-7354f37b9b43', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:37:09', '2025-10-08 09:37:09'),
(50, 'f85bece5-7d66-4c8c-aae3-82a15451c9da', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:38:56', '2025-10-08 09:38:56'),
(51, 'e854d55d-e276-4f68-9845-dcd543dac50e', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:44:30', '2025-10-08 09:44:30'),
(52, '96438441-81df-440d-b6d3-1c172df85d6c', 23.18740720, 79.90511190, 23.20500170, 79.90392300, NULL, 'Vijay Nagar, Jabalpur, Madhya Pradesh, India', 'Karmeta, Jabalpur, Madhya Pradesh, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 09:52:21', '2025-10-08 09:52:21'),
(53, 'f964df16-6317-4431-9f8b-4bf40e55213f', 19.15822240, 73.11572290, 19.23618660, 73.13139510, '[{\"lat\":19.1582217,\"lng\":73.1157217}]', 'Casa Clara J Wing, 2, Downtown, Palava City, Antarli, Maharashtra, India', 'Kalyan station, Station Rd, Bhoiwada, Kalyan, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 10:03:33', '2025-10-08 10:05:09'),
(54, '51b911e6-2ab2-49d9-a76e-a4c26b457ed8', 21.23000488, 72.90089674, 21.22628738, 72.89957576, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'Marutidham  near Sathana SMC Hall, Bhagavan Nagar, Sarthana Jakat Naka, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:01:21', '2025-10-10 09:01:21'),
(55, '93439cdd-d084-4f7a-b468-dee4a59ae1bd', 21.23000488, 72.90089674, 21.22628738, 72.89957576, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'Marutidham  near Sathana SMC Hall, Bhagavan Nagar, Sarthana Jakat Naka, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:02:23', '2025-10-10 09:02:23'),
(56, '3c076355-9de8-41f7-a675-c6ca7a0146f5', 21.23000488, 72.90089674, 21.22628738, 72.89957576, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'Marutidham  near Sathana SMC Hall, Bhagavan Nagar, Sarthana Jakat Naka, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:08:25', '2025-10-10 09:08:25'),
(57, 'c6bc4f01-d4c3-4cde-94a3-b4a9082e07c1', 21.23000488, 72.90089674, 21.22610205, 72.89977793, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2, Bhagavan Nagar Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:12:51', '2025-10-10 09:12:51'),
(58, '22b9fe31-17a2-4bb6-a15d-83c6d3bc9d27', 21.23000488, 72.90089674, 21.22493568, 72.89982252, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '88, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:16:29', '2025-10-10 09:16:29'),
(59, '2fb8078a-ab36-42b5-9575-e523b6d26cf1', 21.23000488, 72.90089674, 21.22493568, 72.89982252, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '88, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:17:43', '2025-10-10 09:17:43'),
(60, '06035a58-d39b-4ac8-afdc-848d5dd24ff5', 21.23000488, 72.90089674, 21.22493568, 72.89982252, '[{\"lat\":21.2241628,\"lng\":72.8894593}]', '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '88, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 09:18:43', '2025-10-10 09:53:57'),
(61, '9386e7d5-af45-4d55-b173-5cbdb026364a', 21.23000488, 72.90089674, 21.22442906, 72.89970651, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2/2/12, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:05:27', '2025-10-10 10:05:27'),
(62, 'a5a4c085-8ebe-492d-90d4-45095f7e16e8', 21.23000488, 72.90089674, 21.22441469, 72.89930418, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2/2/36, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:12:12', '2025-10-10 10:12:12'),
(63, '56e3768a-d172-4e0f-bb8b-032f6bbe00a0', 21.23000488, 72.90089674, 21.22422185, 72.89936319, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '10A, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:21:13', '2025-10-10 10:21:13'),
(64, '474b06eb-8dc4-45be-8322-b6e02ceba661', 21.23000488, 72.90089674, 21.22479660, 72.89803281, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2/B/20, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:27:52', '2025-10-10 10:27:52'),
(65, '8a5d087f-d796-4f4e-898d-53ddd40f375a', 21.23000488, 72.90089674, 21.22479660, 72.89803281, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2/B/20, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:29:40', '2025-10-10 10:29:40'),
(66, '49c9de06-0d6a-4f39-bfb3-17a7328fcb51', 21.23000488, 72.90089674, 21.22479660, 72.89803281, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2/B/20, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:30:03', '2025-10-10 10:30:03'),
(67, '33947e59-02ea-48f0-8869-0e981e4a9651', 21.23000488, 72.90089674, 21.22504975, 72.89949227, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '90, Gurukul Rd, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 10:35:44', '2025-10-10 10:35:44'),
(68, '8f24cc50-059c-4bb8-8f20-7b209e9a3292', 21.23000488, 72.90089674, 21.22440343, 72.89867654, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '2, Swaminarayan Nagar Society, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 11:05:29', '2025-10-10 11:05:29'),
(69, 'b781cd99-f482-49c9-a584-fd3470c6cc16', 21.23000488, 72.90089674, 21.22503475, 72.89840262, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'B-25, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 11:08:41', '2025-10-10 11:08:41'),
(70, 'f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', 21.23000488, 72.90089674, 21.22472816, 72.89861921, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'B-25, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 11:22:33', '2025-10-10 11:22:33'),
(71, 'e86ca748-fcca-42d6-8dad-f6db719c4acf', 21.22561012, 72.89919253, 21.22427717, 72.89884921, '[{\"lat\":21.2241578,\"lng\":72.8895054}]', '114, Bhagavan Nagar, Shradhdha Society, Nana Varachha, Surat, Gujarat 395013, India', '40, Sarthana Jakat Naka, Simada Gam, Kapodra Patiya, suart, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-10 11:39:00', '2025-10-10 11:40:54'),
(72, '025497df-d5d5-4e29-89d8-3da5313c8e01', 21.22411872, 72.88966533, 21.21981411, 72.88904037, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '313, Harekrishna Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-12 05:44:11', '2025-10-12 05:44:11'),
(73, '6678ca5e-3e73-431f-8e77-564f5ce46c0d', 19.25524640, 76.76693360, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 04:58:45', '2025-10-13 04:58:45'),
(74, '55b63d0a-ac8f-4c0a-9829-062de43d3eea', 19.25524640, 76.76693360, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 04:59:47', '2025-10-13 04:59:47'),
(75, '9cd15f24-193d-4e8a-9da3-826d1bc5113e', 19.25524640, 76.76693360, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:00:31', '2025-10-13 05:00:31'),
(76, '3462615f-7cc6-46ec-837f-e345d6b265d1', 19.25524640, 76.76693360, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:01:03', '2025-10-13 05:01:03'),
(77, '889c5477-8b49-4a97-8c89-278ad1e1eff8', 19.25524640, 76.76693360, 19.25731560, 76.76468490, '[{\"lat\":19.2554996,\"lng\":76.7668127}]', 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:01:43', '2025-10-13 05:07:29'),
(78, '90c1a996-0444-4631-a952-5283abd22639', 19.25524558, 76.76693391, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:39:58', '2025-10-13 05:39:58'),
(79, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 19.25524558, 76.76693391, 19.25584320, 76.78183190, '[{\"lat\":19.2553077,\"lng\":76.7668759}]', 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 05:40:17', '2025-10-13 05:42:01'),
(80, '2b5a8e44-ad48-44a4-bc37-c2a975fd617d', 19.23261376, 76.75393794, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 06:16:31', '2025-10-13 06:16:31'),
(81, '1acb4604-1b53-442a-82ca-3bc8c28b9164', 19.25530825, 76.76687423, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 'User', 'User', '+91123456789', NULL, '+91123456789', NULL, '2025-10-13 06:58:09', '2025-10-13 06:58:09'),
(82, 'a673a7ee-c86f-4dfa-bc36-0d7f6ed7b9ac', 19.25530825, 76.76687423, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 'User', 'User', '+91123456789', NULL, '+91123456789', NULL, '2025-10-13 06:58:47', '2025-10-13 06:58:47'),
(83, '6bf02c74-667d-4dd1-8401-dfbadb6315dc', 19.25530825, 76.76687423, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 'User', 'User', '+91123456789', NULL, '+91123456789', NULL, '2025-10-13 06:59:22', '2025-10-13 06:59:22'),
(84, '46202850-79e7-4d9e-a437-f55eab207948', 19.25530762, 76.76687725, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 07:13:32', '2025-10-13 07:13:32'),
(85, '635bf70c-369a-417d-a766-ddedf62aa41e', 19.25535541, 76.76691245, 19.25584320, 76.78183190, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 07:19:59', '2025-10-13 07:19:59'),
(86, '82af1c7d-f4d1-49e4-8acc-5bb8a074b6b9', 21.22414122, 72.88960665, 21.22015416, 72.88889185, NULL, '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '335, Harekrishna Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 10:09:55', '2025-10-13 10:09:55'),
(87, '54c77d6f-c062-4aec-8167-d28a89aece74', 21.22414122, 72.88960665, 21.22015416, 72.88889185, '[{\"lat\":21.230005,\"lng\":72.9008967}]', '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '335, Harekrishna Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 10:11:19', '2025-10-13 10:16:01'),
(88, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 21.22413390, 72.88951310, 21.21954814, 72.88824242, '[{\"lat\":21.230005,\"lng\":72.9008967}]', '149, Amidhara Cir Rd, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', 'Hari Krishna Society, 23, Saraswat Society, Yamuna Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 10:17:42', '2025-10-13 10:20:13'),
(89, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 21.23000500, 72.90089670, 21.23000500, 72.90089670, '[{\"lat\":21.230005,\"lng\":72.9008967}]', '152, Bhid Bhanjan Society, Nana Varachha, Surat, Gujarat 395013, India', '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'User', 'User', '+91123456789', NULL, '+91123456789', NULL, '2025-10-13 10:42:31', '2025-10-13 10:44:17'),
(90, '72a87905-a303-4950-9ce8-ef6c4c9eb83a', 21.23000488, 72.90089674, 21.22636332, 72.90089674, '[{\"lat\":21.2241656,\"lng\":72.8895653}]', '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '1, A-63, Bhagavan Nagar Rd, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 11:03:00', '2025-10-13 11:03:49'),
(91, '396c4a35-3b21-4a72-a02a-40afa7848fc9', 21.23000488, 72.90089674, 21.22518383, 72.90089674, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'F2, 204, Rishikesh building, near smc community hall, Bhagavan Nagar, Bhagawan Nagar Scoiety, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 11:11:06', '2025-10-13 11:11:06'),
(92, 'd107bd4e-184a-4eb9-b885-61358c064b95', 21.23000488, 72.90089674, 21.22472691, 72.90073816, '[{\"lat\":21.2240956,\"lng\":72.8896614}]', '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'B/6-401,Vrajbhumi-1 Vraj Chok, Varachha Main Rd, Sarthana Jakat Naka, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 13:04:57', '2025-10-13 13:07:48'),
(93, 'c95f0da9-ee22-4756-9e89-33b057cff77e', 21.22419622, 72.88943097, 21.22119867, 72.88981553, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '199, Vandana Part 1, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-03 11:57:12', '2025-11-03 11:57:12'),
(94, '4c700060-8ce8-46d0-8365-865fb5276436', 21.22419779, 72.88941488, 21.21986381, 72.89030470, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '367, Syamdham Society, Nana Varachha, Surat, Gujarat 395011, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-03 12:16:00', '2025-11-03 12:16:00'),
(95, 'e70ef4dc-dd1d-413f-a98b-9a57990dbfff', 19.24899070, 76.76534873, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:49:13', '2025-11-05 10:49:13'),
(96, '3be3a846-cf2a-472a-8a17-ee95513f33f7', 19.24899070, 76.76534873, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:53:01', '2025-11-05 10:53:01'),
(97, '6165727e-5fd5-4edc-bf38-16e09af27053', 19.24899070, 76.76534873, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:58:30', '2025-11-05 10:58:30'),
(98, 'be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', 19.25634327, 76.76536683, 19.25194993, 76.76398885, NULL, 'Sakhla Flot, Shop No 5, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road, Parbhani, Maharashtra 431402, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:28:54', '2025-11-05 11:28:54'),
(99, 'ec15251e-7b06-4e86-8705-9d7832d2c53c', 19.25634327, 76.76536683, 19.25167962, 76.76451255, NULL, 'Sakhla Flot, Shop No 5, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Unnamed Road, Parbhani, Maharashtra 431402, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:35:05', '2025-11-05 11:35:05'),
(100, 'ea93932a-edbb-458a-9639-1ca659768790', 19.25492906, 76.76737580, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 11:51:00', '2025-11-05 11:51:00'),
(101, '150045fa-13bc-4984-97f5-58172d7caba5', 19.25539687, 76.76690340, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 12:00:02', '2025-11-05 12:00:02'),
(102, 'bd969391-93dd-4eaf-9452-f130e0dab76e', 19.25539687, 76.76690340, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 12:01:49', '2025-11-05 12:01:49'),
(103, '3ddf584a-016d-4177-883a-3e881a5f5d79', 19.25539687, 76.76690340, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 12:04:33', '2025-11-05 12:04:33'),
(104, 'c18d1ca3-239d-4aca-963a-151bfc471be1', 19.25527720, 76.76728050, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 12:38:26', '2025-11-05 12:38:26'),
(105, '03693f51-5e3f-4a21-bee7-bfb74731ab2c', 21.23000488, 72.90089674, 21.22428717, 72.89897997, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '5, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:41:43', '2025-11-06 08:41:43'),
(106, '80ecc65f-ac2d-4425-855a-47bd83ca400f', 21.23000488, 72.90089674, 21.22428717, 72.89897997, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '5, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:47:45', '2025-11-06 08:47:45'),
(107, 'a42ef3e4-10e9-4810-8c3f-bef0e5440c93', 21.23000488, 72.90089674, 21.22512382, 72.89907586, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '91, opp. Shree Swaminarayan Paramsukh Gurukul, near Smc Community Hall, Sarthana Jakat Naka, M D Park Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:51:30', '2025-11-06 08:51:30'),
(108, 'f95268c9-7ad7-490b-83ef-75dcad6b186b', 21.23000488, 72.90089674, 21.22434655, 72.90008973, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', '1, near Balanand Vidhyalay, Swaminarayan Nagar-1, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:54:48', '2025-11-06 08:54:48'),
(109, '5f071cc3-402d-4ea8-a121-b617d3246e9d', 21.23000488, 72.90089674, 21.22580952, 72.89927132, NULL, '65, RUXMANI SOCIETY, Nana Varachha, Surat, Gujarat 395013, India', 'row house, Shradhdha Society, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 08:59:38', '2025-11-06 08:59:38'),
(110, '7fd96122-aa76-4ab1-9ccf-f4cfd36c2c8b', 21.22421060, 72.88950138, 21.22004633, 72.88967337, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:12:29', '2025-11-06 09:12:29'),
(111, 'b476b4e4-8381-40ae-9931-ab85fcb69b10', 21.22421060, 72.88950138, 21.22004633, 72.88967337, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:13:10', '2025-11-06 09:13:10'),
(112, '1d18982f-6726-4518-bcaf-8324a5f8bef6', 21.22421060, 72.88950138, 21.22004633, 72.88967337, NULL, '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', '49-50, opp. Amidhara Society, Amardeep Society, Moti Nagar, Nana Varachha, Surat, Gujarat 395013, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:13:56', '2025-11-06 09:13:56'),
(113, 'b35dc563-972f-4f28-9fc7-8a916b4e0924', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:57:50', '2025-11-06 09:57:50'),
(114, '042346b2-9811-4822-a1b2-8574f2470dfd', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:58:24', '2025-11-06 09:58:24'),
(115, 'b79cc7c1-e560-47a2-b475-a952b84c5b44', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 09:59:00', '2025-11-06 09:59:00'),
(116, 'd16ea42d-aab5-41f2-9dd4-d9226d39ac60', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:01:27', '2025-11-06 10:01:27'),
(117, '76530f8d-9d9f-4f5a-b3b6-69c66f314be5', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:03:32', '2025-11-06 10:03:32'),
(118, '62bc8cf4-0581-47c0-818c-ffe479b594dc', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:05:17', '2025-11-06 10:05:17'),
(119, '2ff54127-7086-4a72-a01f-c4626c4dd542', 19.25528483, 76.76725645, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:06:59', '2025-11-06 10:06:59'),
(120, '0b353677-1a98-4a66-ac03-2cbed7efc06b', 19.25519240, 76.76697716, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:25:33', '2025-11-06 10:25:33'),
(121, '021fcf57-34a9-4590-ab72-95030d4ff0cc', 20.80938750, 75.77423440, 21.04177070, 75.78755170, NULL, 'Jamner Bus Stand, Jamner, Maharashtra, India', 'Bhusawal, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:37:57', '2025-11-06 10:37:57'),
(122, 'da1a46d1-8bbd-4115-a3bf-c187a0fe14c6', 19.25521203, 76.76697649, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:38:57', '2025-11-06 10:38:57'),
(123, 'e8f8ce05-c0db-4eb5-8b03-65eb5dc1365e', 20.80938750, 75.77423440, 21.04634610, 75.78829090, NULL, 'Jamner Bus Stand, Jamner, Maharashtra, India', 'Bhusawal Railway Station Waiting Hall, Gandhi Nagar, Gadkari Nagar, Bhusawal, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:40:59', '2025-11-06 10:40:59'),
(124, '4b9cde6f-5500-4257-a0bf-daebb6491939', 20.80938750, 75.77423440, 20.70785830, 75.68335320, NULL, 'Jamner Bus Stand, Jamner, Maharashtra, India', 'Pahur, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:45:09', '2025-11-06 10:45:09'),
(125, 'e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', 19.25519114, 76.76698018, 19.25731560, 76.76468490, NULL, 'Unnamed Road, Apana Nagar, Parbhani, Maharashtra 431401, India', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:45:50', '2025-11-06 10:45:50'),
(126, '89cf4c65-ec9e-4a53-9a11-235219939dca', 20.80938750, 75.77423440, 21.04177070, 75.78755170, NULL, 'Jamner Bus Stand, Jamner, Maharashtra, India', 'Bhusawal, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:52:46', '2025-11-06 10:52:46');

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

--
-- Table structure for table `request_preferences`
--

CREATE TABLE `request_preferences` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `preference_price_id` int(10) UNSIGNED NOT NULL,
  `price` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `request_ratings`
--

CREATE TABLE `request_ratings` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `rating` double(8,2) NOT NULL DEFAULT 0.00,
  `comment` varchar(191) DEFAULT NULL,
  `user_rating` tinyint(1) NOT NULL DEFAULT 0,
  `driver_rating` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_ratings`
--

INSERT INTO `request_ratings` (`id`, `request_id`, `user_id`, `driver_id`, `rating`, `comment`, `user_rating`, `driver_rating`, `created_at`, `updated_at`) VALUES
(1, '4de7c812-88ac-4096-ab01-6ba1be6698de', 2, 9, 4.00, NULL, 0, 1, '2025-10-06 11:35:00', '2025-10-06 11:35:00'),
(2, '4de7c812-88ac-4096-ab01-6ba1be6698de', 2, 9, 4.00, NULL, 1, 0, '2025-10-06 11:35:31', '2025-10-06 11:35:31'),
(3, 'bef667fd-56dd-4b54-a388-716676ba4b61', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 09:46:10', '2025-10-07 09:46:10'),
(4, 'bef667fd-56dd-4b54-a388-716676ba4b61', 2, 9, 5.00, NULL, 1, 0, '2025-10-07 09:48:52', '2025-10-07 09:48:52'),
(5, 'b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 09:54:35', '2025-10-07 09:54:35'),
(6, 'b5c7c4b6-4b8d-4ad4-ba6e-fd08daa9f652', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 09:54:40', '2025-10-07 09:54:40'),
(7, '0668bf58-4cc2-4100-a676-48027a615976', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 09:57:10', '2025-10-07 09:57:10'),
(8, '0668bf58-4cc2-4100-a676-48027a615976', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 10:03:57', '2025-10-07 10:03:57'),
(9, '0870cf67-7ce8-452e-bf11-0d3a65ad6e98', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 10:18:15', '2025-10-07 10:18:15'),
(10, '0870cf67-7ce8-452e-bf11-0d3a65ad6e98', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 10:18:24', '2025-10-07 10:18:24'),
(11, '299b5587-fff2-4141-a2de-202275573b42', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 11:28:48', '2025-10-07 11:28:48'),
(12, '299b5587-fff2-4141-a2de-202275573b42', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 11:29:20', '2025-10-07 11:29:20'),
(13, '9ed5bbfe-2540-40be-ba9c-13be023f21f8', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 11:42:57', '2025-10-07 11:42:57'),
(14, '9ed5bbfe-2540-40be-ba9c-13be023f21f8', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 12:13:33', '2025-10-07 12:13:33'),
(15, '729f82e9-8346-45d5-8fe7-39450f62ea0e', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 15:48:00', '2025-10-07 15:48:00'),
(16, '729f82e9-8346-45d5-8fe7-39450f62ea0e', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 15:48:07', '2025-10-07 15:48:07'),
(17, '4cdca157-6c57-4b2c-8a46-6283ade1a837', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 15:55:27', '2025-10-07 15:55:27'),
(18, '4cdca157-6c57-4b2c-8a46-6283ade1a837', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 15:59:07', '2025-10-07 15:59:07'),
(19, 'b19b432c-94b0-4481-8df9-ca3df44e9554', 2, 9, 4.00, NULL, 0, 1, '2025-10-07 16:01:02', '2025-10-07 16:01:02'),
(20, 'b19b432c-94b0-4481-8df9-ca3df44e9554', 2, 9, 4.00, NULL, 1, 0, '2025-10-07 16:01:15', '2025-10-07 16:01:15'),
(21, '97c89395-18f7-4acd-8e27-9391b0bd58f3', 2, 9, 4.00, NULL, 0, 1, '2025-10-08 08:12:37', '2025-10-08 08:12:37'),
(22, '97c89395-18f7-4acd-8e27-9391b0bd58f3', 2, 9, 4.00, NULL, 1, 0, '2025-10-08 08:12:51', '2025-10-08 08:12:51'),
(23, '5007a27f-46eb-47c4-a8df-bc9945dd21eb', 2, 9, 4.00, NULL, 0, 1, '2025-10-08 08:26:42', '2025-10-08 08:26:42'),
(24, '5007a27f-46eb-47c4-a8df-bc9945dd21eb', 2, 9, 4.00, NULL, 1, 0, '2025-10-08 08:29:12', '2025-10-08 08:29:12'),
(25, '88e2f4dc-3a68-486b-a38a-e17c9d1428b9', 2, 9, 4.00, NULL, 0, 1, '2025-10-08 09:10:50', '2025-10-08 09:10:50'),
(26, '88e2f4dc-3a68-486b-a38a-e17c9d1428b9', 2, 9, 4.00, NULL, 1, 0, '2025-10-08 09:10:57', '2025-10-08 09:10:57'),
(27, 'f964df16-6317-4431-9f8b-4bf40e55213f', 20, 9, 4.00, NULL, 0, 1, '2025-10-08 10:05:24', '2025-10-08 10:05:24'),
(28, 'f964df16-6317-4431-9f8b-4bf40e55213f', 20, 9, 3.00, NULL, 1, 0, '2025-10-08 10:24:39', '2025-10-08 10:24:39'),
(29, '06035a58-d39b-4ac8-afdc-848d5dd24ff5', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 10:03:58', '2025-10-10 10:03:58'),
(30, '06035a58-d39b-4ac8-afdc-848d5dd24ff5', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 10:04:09', '2025-10-10 10:04:09'),
(31, '56e3768a-d172-4e0f-bb8b-032f6bbe00a0', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 10:26:06', '2025-10-10 10:26:06'),
(32, '56e3768a-d172-4e0f-bb8b-032f6bbe00a0', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 10:26:12', '2025-10-10 10:26:12'),
(33, '33947e59-02ea-48f0-8869-0e981e4a9651', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 11:04:48', '2025-10-10 11:04:48'),
(34, '33947e59-02ea-48f0-8869-0e981e4a9651', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 11:05:24', '2025-10-10 11:05:24'),
(35, '8f24cc50-059c-4bb8-8f20-7b209e9a3292', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 11:08:04', '2025-10-10 11:08:04'),
(36, '8f24cc50-059c-4bb8-8f20-7b209e9a3292', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 11:08:32', '2025-10-10 11:08:32'),
(37, 'b781cd99-f482-49c9-a584-fd3470c6cc16', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 11:11:00', '2025-10-10 11:11:00'),
(38, 'b781cd99-f482-49c9-a584-fd3470c6cc16', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 11:13:09', '2025-10-10 11:13:09'),
(39, 'f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 11:30:07', '2025-10-10 11:30:07'),
(40, 'f1f0adec-2fd0-4c7b-bc79-0c8a8b1df1b2', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 11:33:53', '2025-10-10 11:33:53'),
(41, 'e86ca748-fcca-42d6-8dad-f6db719c4acf', 2, 1, 4.00, NULL, 1, 0, '2025-10-10 11:47:28', '2025-10-10 11:47:28'),
(42, 'e86ca748-fcca-42d6-8dad-f6db719c4acf', 2, 1, 4.00, NULL, 0, 1, '2025-10-10 12:11:03', '2025-10-10 12:11:03'),
(43, '025497df-d5d5-4e29-89d8-3da5313c8e01', 2, 9, 4.00, NULL, 0, 1, '2025-10-12 05:45:35', '2025-10-12 05:45:35'),
(44, '025497df-d5d5-4e29-89d8-3da5313c8e01', 2, 9, 5.00, NULL, 1, 0, '2025-10-12 05:45:40', '2025-10-12 05:45:40'),
(45, '889c5477-8b49-4a97-8c89-278ad1e1eff8', 2, 1, 3.00, 'good 👍', 1, 0, '2025-10-13 05:38:26', '2025-10-13 05:38:26'),
(46, '889c5477-8b49-4a97-8c89-278ad1e1eff8', 2, 1, 4.00, 'good 👍😊', 0, 1, '2025-10-13 05:38:42', '2025-10-13 05:38:42'),
(47, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 2, 1, 4.00, NULL, 0, 1, '2025-10-13 05:54:45', '2025-10-13 05:54:45'),
(48, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 2, 1, 3.00, 'good 👍', 1, 0, '2025-10-13 07:00:31', '2025-10-13 07:00:31'),
(49, '54c77d6f-c062-4aec-8167-d28a89aece74', 2, 9, 4.00, NULL, 1, 0, '2025-10-13 10:16:17', '2025-10-13 10:16:17'),
(50, '54c77d6f-c062-4aec-8167-d28a89aece74', 2, 9, 4.00, NULL, 0, 1, '2025-10-13 10:16:24', '2025-10-13 10:16:24'),
(51, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 2, 9, 4.00, NULL, 0, 1, '2025-10-13 10:20:52', '2025-10-13 10:20:52'),
(52, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 2, 9, 4.00, NULL, 1, 0, '2025-10-13 10:21:00', '2025-10-13 10:21:00'),
(53, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 2, 9, 4.00, NULL, 0, 1, '2025-10-13 10:44:28', '2025-10-13 10:44:28'),
(54, 'cddaf5f6-35b8-4dda-b21f-3c083312f93c', 2, 9, 4.00, NULL, 1, 0, '2025-10-13 10:44:45', '2025-10-13 10:44:45'),
(55, '72a87905-a303-4950-9ce8-ef6c4c9eb83a', 2, 9, 4.00, NULL, 1, 0, '2025-10-13 11:07:14', '2025-10-13 11:07:14'),
(56, '72a87905-a303-4950-9ce8-ef6c4c9eb83a', 2, 9, 4.00, NULL, 0, 1, '2025-10-13 11:08:00', '2025-10-13 11:08:00'),
(57, 'd107bd4e-184a-4eb9-b885-61358c064b95', 2, 9, 4.00, NULL, 0, 1, '2025-10-13 13:08:36', '2025-10-13 13:08:36'),
(58, 'd107bd4e-184a-4eb9-b885-61358c064b95', 2, 9, 4.00, NULL, 1, 0, '2025-10-13 13:54:20', '2025-10-13 13:54:20'),
(59, 'c95f0da9-ee22-4756-9e89-33b057cff77e', 2, 9, 4.00, NULL, 0, 1, '2025-11-03 12:14:02', '2025-11-03 12:14:02'),
(60, 'c95f0da9-ee22-4756-9e89-33b057cff77e', 2, 9, 4.00, NULL, 1, 0, '2025-11-03 12:14:24', '2025-11-03 12:14:24'),
(61, '4c700060-8ce8-46d0-8365-865fb5276436', 2, 9, 4.00, NULL, 0, 1, '2025-11-03 12:17:06', '2025-11-03 12:17:06'),
(62, '4c700060-8ce8-46d0-8365-865fb5276436', 2, 9, 4.00, NULL, 1, 0, '2025-11-05 11:28:50', '2025-11-05 11:28:50'),
(63, 'be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', 2, 9, 4.00, NULL, 1, 0, '2025-11-05 11:31:32', '2025-11-05 11:31:32'),
(64, 'be8f76a0-7e96-4d5d-8cfd-6fa2f8980801', 2, 9, 3.00, 'good', 0, 1, '2025-11-05 11:31:45', '2025-11-05 11:31:45'),
(65, 'ec15251e-7b06-4e86-8705-9d7832d2c53c', 2, 9, 4.00, 'good 👍', 0, 1, '2025-11-05 11:36:15', '2025-11-05 11:36:15'),
(66, 'ec15251e-7b06-4e86-8705-9d7832d2c53c', 2, 9, 4.00, NULL, 1, 0, '2025-11-05 11:36:16', '2025-11-05 11:36:16'),
(67, 'ea93932a-edbb-458a-9639-1ca659768790', 2, 9, 3.00, 'good 👍', 0, 1, '2025-11-05 11:57:59', '2025-11-05 11:57:59'),
(68, 'ea93932a-edbb-458a-9639-1ca659768790', 2, 9, 3.00, 'good 👍', 1, 0, '2025-11-05 11:59:21', '2025-11-05 11:59:21'),
(69, 'bd969391-93dd-4eaf-9452-f130e0dab76e', 2, 9, 3.00, 'good 👍', 0, 1, '2025-11-05 12:03:15', '2025-11-05 12:03:15'),
(70, '80ecc65f-ac2d-4425-855a-47bd83ca400f', 72, 1, 4.00, NULL, 0, 1, '2025-11-06 08:49:49', '2025-11-06 08:49:49'),
(71, '80ecc65f-ac2d-4425-855a-47bd83ca400f', 72, 1, 4.00, NULL, 1, 0, '2025-11-06 08:49:55', '2025-11-06 08:49:55'),
(72, '5f071cc3-402d-4ea8-a121-b617d3246e9d', 72, 1, 4.00, NULL, 0, 1, '2025-11-06 09:01:28', '2025-11-06 09:01:28'),
(73, '5f071cc3-402d-4ea8-a121-b617d3246e9d', 72, 1, 4.00, NULL, 1, 0, '2025-11-06 09:01:32', '2025-11-06 09:01:32'),
(74, '0b353677-1a98-4a66-ac03-2cbed7efc06b', 2, 1, 2.00, 'good 👍', 0, 1, '2025-11-06 10:30:24', '2025-11-06 10:30:24'),
(75, 'e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', 2, 1, 3.00, 'good 👍', 0, 1, '2025-11-06 10:47:11', '2025-11-06 10:47:11'),
(76, 'e5f2a41a-52e7-4c5d-8929-3643d6ab93a3', 2, 1, 4.00, 'good 👍', 1, 0, '2025-11-06 11:01:01', '2025-11-06 11:01:01');

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

--
-- Table structure for table `request_stops`
--

CREATE TABLE `request_stops` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `poc_name` varchar(191) DEFAULT NULL,
  `poc_mobile` varchar(14) DEFAULT NULL,
  `poc_instruction` varchar(191) DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_stops`
--

INSERT INTO `request_stops` (`id`, `request_id`, `address`, `latitude`, `longitude`, `poc_name`, `poc_mobile`, `poc_instruction`, `completed_at`, `order`, `created_at`, `updated_at`) VALUES
(1, '90c1a996-0444-4631-a952-5283abd22639', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 19.25731560, 76.76468490, NULL, NULL, NULL, NULL, 1, '2025-10-13 05:39:58', '2025-10-13 05:39:58'),
(2, '90c1a996-0444-4631-a952-5283abd22639', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 19.25584320, 76.78183190, NULL, NULL, NULL, NULL, 2, '2025-10-13 05:39:58', '2025-10-13 05:39:58'),
(3, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 'Anusaya E-Square, Gangakhed Road, Apana Nagar, Parbhani, Maharashtra, India', 19.25731560, 76.76468490, NULL, NULL, NULL, '2025-10-13 05:41:42', 1, '2025-10-13 05:40:17', '2025-10-13 05:41:42'),
(4, '6f45efab-6db6-42e3-95f6-396d2eb597b6', 'Shivaji Engineering College, NH 222, Shivaji Engineering College, Parbhani, Maharashtra, India', 19.25584320, 76.78183190, NULL, NULL, NULL, NULL, 2, '2025-10-13 05:40:17', '2025-10-13 05:40:17'),
(5, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', 'Hari Krishna Society, 23, Saraswat Society, Yamuna Nagar, Nana Varachha, Surat, Gujarat 395013, India', 21.22162529, 72.88920164, NULL, NULL, NULL, NULL, 1, '2025-10-13 10:17:42', '2025-10-13 10:17:42'),
(6, '2984be9b-08f1-44bb-8dbe-5bc09b84671c', '156, Harekrishna Society, Mahavir Nagar Society, Nana Varachha, Surat, Gujarat 395011, India', 21.21954814, 72.88824242, NULL, NULL, NULL, '2025-10-13 10:20:06', 2, '2025-10-13 10:17:42', '2025-10-13 10:20:06');

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

--
-- Table structure for table `reward_histories`
--

CREATE TABLE `reward_histories` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `reward_points` double(10,2) NOT NULL DEFAULT 0.00,
  `remarks` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `reward_points`
--

CREATE TABLE `reward_points` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `points_added` double(10,2) NOT NULL DEFAULT 0.00,
  `points_spend` double(10,2) NOT NULL DEFAULT 0.00,
  `balance_reward_points` double(10,2) NOT NULL DEFAULT 0.00,
  `total_reward_points_collected` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `reward_points`
--

INSERT INTO `reward_points` (`id`, `user_id`, `points_added`, `points_spend`, `balance_reward_points`, `total_reward_points_collected`, `created_at`, `updated_at`) VALUES
('2d3125d9-5174-45cc-abca-b5fafbebef80', 61, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:27:23', '2025-11-05 10:27:23'),
('35a46412-3cf9-48e4-9bc5-4d67e556e87c', 64, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:28:45', '2025-11-05 10:28:45'),
('4c9d8f20-38f2-4710-b06f-4d509e259f87', 34, 0.00, 0.00, 0.00, 0.00, '2025-10-17 05:26:34', '2025-10-17 05:26:34'),
('5cf0aaa0-8c23-49b9-b651-467939668133', 32, 0.00, 0.00, 0.00, 0.00, '2025-10-17 05:24:17', '2025-10-17 05:24:17'),
('6785c551-3ec7-46fd-8334-c381969f920c', 4, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:08:02', '2025-09-26 10:08:02'),
('69e4420f-5cff-44fa-8f8d-4bd16b555d72', 7, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:15:59', '2025-09-26 10:15:59'),
('6edf56a6-1b8d-498f-b70f-e8a10815bc40', 65, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:28:47', '2025-11-05 10:28:47'),
('6f0f1cc6-3f58-40dd-ae26-2735739856b9', 31, 0.00, 0.00, 0.00, 0.00, '2025-10-16 10:24:36', '2025-10-16 10:24:36'),
('6f344a7b-c02d-4f21-87c8-f1d70afa4806', 18, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:32:49', '2025-09-26 10:32:49'),
('70b19097-13b6-4f85-8c83-3ec19f2218de', 5, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:11:33', '2025-09-26 10:11:33'),
('908a82ef-570e-4834-8039-506d67a4af77', 66, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:29:18', '2025-11-05 10:29:18'),
('924e1dd6-a87a-402f-b72f-8f2382985f30', 35, 0.00, 0.00, 0.00, 0.00, '2025-10-17 05:27:24', '2025-10-17 05:27:24'),
('ac9d699a-2521-4ca8-9cdc-bf791493c7bd', 30, 0.00, 0.00, 0.00, 0.00, '2025-10-13 12:04:36', '2025-10-13 12:04:36'),
('b01dfa10-2cde-4e04-8de7-191590362b23', 6, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:13:30', '2025-09-26 10:13:30'),
('b9f9ea0b-82bb-407a-b72b-515c7e56eac6', 26, 0.00, 0.00, 0.00, 0.00, '2025-10-06 09:42:37', '2025-10-06 09:42:37'),
('c6169dc9-0f74-4312-b928-b6f770f3f494', 36, 0.00, 0.00, 0.00, 0.00, '2025-10-17 05:28:08', '2025-10-17 05:28:08'),
('c78480d8-cbce-4367-b4cb-72cb79c4b4a0', 8, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:18:56', '2025-09-26 10:18:56'),
('c84d2ad7-ab0f-4bd8-8122-72f80b954c21', 3, 0.00, 0.00, 0.00, 0.00, '2025-09-26 10:04:59', '2025-09-26 10:04:59'),
('d3c69572-3c31-4c5c-b097-e6973b8d26d3', 62, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:27:42', '2025-11-05 10:27:42'),
('dbea757a-a0dd-4bb6-8848-b207daee2622', 33, 0.00, 0.00, 0.00, 0.00, '2025-10-17 05:25:33', '2025-10-17 05:25:33'),
('fb92525d-7025-4f05-b71f-060ab2e79b1e', 63, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:28:14', '2025-11-05 10:28:14'),
('ff1dc43e-7ef2-44b8-b9e5-ff32029dd9ac', 67, 0.00, 0.00, 0.00, 0.00, '2025-11-05 10:29:39', '2025-11-05 10:29:39');

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

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` int(10) UNSIGNED NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `description` varchar(150) DEFAULT NULL,
  `all` tinyint(1) NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` (`id`, `slug`, `name`, `description`, `all`, `locked`, `created_by`, `created_at`, `updated_at`) VALUES
(1, 'super-admin', 'Super Admin', 'Admin group with unrestricted access', 1, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(2, 'user', 'Normal User', 'Normal user with standard access', 0, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(3, 'owner', 'Normal Owner', 'Normal Owner with standard access', 0, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(4, 'driver', 'Driver', 'Driver user with standard access', 0, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(5, 'dispatcher', 'Dispatcher', 'Taxi Dispatcher user with standard access', 0, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(6, 'employee', 'employee', 'Taxi EMployee user with standard access', 0, 1, 1, '2025-09-26 07:06:08', '2025-09-26 08:45:22'),
(7, 'admin', 'Admin', NULL, 0, 0, 1, '2025-11-06 06:16:08', '2025-11-06 06:16:08');

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

--
-- Table structure for table `role_user`
--

CREATE TABLE `role_user` (
  `user_id` int(10) UNSIGNED NOT NULL,
  `role_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `role_user`
--

INSERT INTO `role_user` (`user_id`, `role_id`) VALUES
(1, 1),
(2, 2),
(3, 4),
(4, 4),
(5, 4),
(6, 4),
(7, 4),
(8, 4),
(9, 6),
(10, 2),
(11, 5),
(12, 5),
(13, 5),
(14, 5),
(15, 5),
(16, 5),
(17, 3),
(18, 4),
(19, 4),
(20, 2),
(21, 2),
(22, 5),
(23, 6),
(24, 6),
(25, 6),
(26, 4),
(27, 2),
(28, 2),
(29, 2),
(30, 4),
(31, 4),
(32, 4),
(33, 4),
(34, 4),
(35, 4),
(36, 4),
(37, 6),
(38, 6),
(39, 6),
(40, 6),
(41, 6),
(42, 6),
(43, 3),
(44, 2),
(45, 1),
(46, 1),
(47, 4),
(48, 1),
(49, 4),
(50, 1),
(51, 1),
(52, 1),
(53, 1),
(54, 1),
(55, 1),
(56, 1),
(57, 3),
(58, 4),
(59, 4),
(60, 2),
(61, 4),
(62, 4),
(63, 4),
(64, 4),
(65, 4),
(66, 4),
(67, 4),
(68, 1),
(69, 1),
(70, 1),
(71, 1),
(72, 2),
(73, 7),
(74, 2);

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

--
-- Table structure for table `service_locations`
--

CREATE TABLE `service_locations` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `currency_name` varchar(191) DEFAULT NULL,
  `currency_code` varchar(191) DEFAULT NULL,
  `currency_symbol` varchar(191) DEFAULT NULL,
  `currency_pointer` varchar(191) DEFAULT NULL,
  `timezone` varchar(191) NOT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `service_locations`
--

INSERT INTO `service_locations` (`id`, `company_key`, `name`, `translation_dataset`, `currency_name`, `currency_code`, `currency_symbol`, `currency_pointer`, `timezone`, `country`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('31a576b6-4319-42f5-8f12-0ca092d2826e', NULL, 'Global', '{\"en\":{\"locale\":\"en\",\"name\":\"Global\"}}', 'Indian rupee', 'INR', '₹', 'ltr', 'Asia/Kolkata', 102, 0, '2025-11-06 07:17:32', '2025-11-06 07:19:40', NULL),
('92f7c0cd-f637-4519-847a-7255fc0d8b75', NULL, 'Chhatrapati Shivaji Maharaj International Airport', '{\"en\":{\"locale\":\"en\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\"}}', 'Indian rupee', 'INR', '₹', 'ltr', 'America/Boise', 102, 1, '2025-10-16 09:13:31', '2025-10-16 09:13:31', NULL),
('c70dfe2a-a3ca-40c6-a16f-9b05d039715f', NULL, 'Global', '{\"en\":{\"locale\":\"en\",\"name\":\"Global\"}}', 'US dollar', 'USD', '$', 'ltr', 'America/Boise', 237, 1, '2025-09-26 08:35:15', '2025-09-26 08:35:15', NULL);

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

--
-- Table structure for table `service_location_translations`
--

CREATE TABLE `service_location_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `service_location_translations`
--

INSERT INTO `service_location_translations` (`id`, `service_location_id`, `name`, `locale`, `created_at`, `updated_at`) VALUES
(1, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Global', 'en', NULL, NULL),
(2, '92f7c0cd-f637-4519-847a-7255fc0d8b75', 'Chhatrapati Shivaji Maharaj International Airport', 'en', NULL, NULL),
(3, '31a576b6-4319-42f5-8f12-0ca092d2826e', 'Global', 'en', NULL, NULL);

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

--
-- Table structure for table `sessions`
--

CREATE TABLE `sessions` (
  `id` varchar(191) NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` longtext NOT NULL,
  `last_activity` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `field` enum('select','text','file','password') NOT NULL DEFAULT 'text',
  `category` varchar(191) DEFAULT NULL,
  `value` varchar(191) DEFAULT NULL,
  `option_value` varchar(191) DEFAULT NULL,
  `group_name` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `settings`
--

INSERT INTO `settings` (`id`, `name`, `field`, `category`, `value`, `option_value`, `group_name`, `created_at`, `updated_at`) VALUES
(1, 'service_tax_for_food', 'text', 'tax_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(2, 'trip_dispatch_type', 'select', 'trip_settings', '1', '{\"one-by-one\":1,\"to-all-drivers\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(3, 'minimum_wallet_amount_for_transfer', 'text', 'Wallet', '500', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(4, 'driver_search_radius', 'text', 'trip_settings', '3', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(5, 'can_round_the_bill_values', 'select', 'trip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(6, 'minimum_trip_distane', 'text', 'trip_settings', '25', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(7, 'enable_luggage_preference_for_user', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(8, 'maximum_time_for_find_drivers_for_bitting_ride', 'text', 'trip_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(9, 'maximum_time_for_accept_reject_bidding_ride', 'text', 'trip_settings', '5', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(10, 'enable_shipment_load_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(11, 'enable_shipment_unload_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(12, 'enable_digital_signature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(13, 'user_can_make_a_ride_after_x_miniutes', 'text', 'trip_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(14, 'user_can_cancel_a_order_in_x_Seconds', 'text', 'trip_settings', '60', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(15, 'minimum_time_for_search_drivers_for_schedule_ride', 'text', 'trip_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(16, 'minimum_time_for_starting_trip_drivers_for_schedule_ride', 'text', 'trip_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(17, 'maximum_time_for_find_drivers_for_regular_ride', 'text', 'trip_settings', '5', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(18, 'trip_accept_reject_duration_for_driver', 'text', 'trip_settings', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(19, 'how_many_times_a_driver_can_enable_the_my_route_booking_per_day', 'text', 'customization_settings', '1', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(20, 'enable_my_route_booking_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(21, 'enable_web_booking_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(22, 'enable_sub_vehicle_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(23, 'map_type', 'select', 'map_settings', 'open_street_map', '{\"google_map\":\"google\",\"open_street_map\":\"open_street\"}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(24, 'enable_vase_map', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(25, 'enable_modules_for_applications', 'select', 'customization_settings', 'both', '{\"taxi\":\"taxi\",\"delivery\":\"delivery\",\"both\":\"both\",\"food_delivery\":\"food_delivery\"}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(26, 'logo', 'file', 'general', 'in5QYUTPKOE1ISas244rLX88E4F400mgsMdP3kUn.png', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 08:24:34'),
(27, 'favicon', 'file', 'general', 'cGHhFUHyoN9Sai6LUaz5z5cTobNVW84sBH5X79Zg.png', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 08:24:34'),
(28, 'loginbg', 'file', 'general', 'XxLpl3fgsHgQ4wQO44FjjzK1OFcgrMac4bUmCob6.jpg', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 10:51:39'),
(29, 'owner_loginbg', 'file', 'general', 'TU5ZQHWQjVMkFq3BXtYVHlqmHeHcA6TedKV0jVmd.jpg', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 10:51:39'),
(30, 'nav_color', 'text', 'general', '#c3ff00', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(31, 'sidebar_color', 'text', 'general', '#c3ff00', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(32, 'sidebar_text_color', 'text', 'general', '#ffffff', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(33, 'footer_content1', 'text', 'general', '2025-2026 © MXDrive.', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(34, 'footer_content2', 'text', 'general', 'Design & Develop by MXDrive', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(35, 'app_name', 'text', 'general', 'MXDrive', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(36, 'facebook', 'text', 'general', 'https://facebook.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(37, 'instagram', 'text', 'general', 'https://instagram.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(38, 'linkedin', 'text', 'general', 'https://linkedin.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(39, 'twitter', 'text', 'general', 'https://twitter.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(40, 'currency_code', 'text', 'general', 'INR', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(41, 'currency_symbol', 'text', 'general', '₹', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(42, 'default_currency_code_for_mobile_app', 'text', 'customization_settings', 'INR', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(43, 'default_country_code_for_mobile_app', 'text', 'customization_settings', 'IN', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(44, 'contact_us_mobile1', 'text', 'general', '0000000000', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(45, 'contact_us_mobile2', 'text', 'general', '0000000000', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(46, 'contact_us_link', 'text', 'general', 'https://mxdrivex.atharvatek.com/', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(47, 'default_latitude', 'text', 'general', '11.21215', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(48, 'default_longitude', 'text', 'general', '76.54545', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(49, 'enable_country_restrict_on_map', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(50, 'show_wallet_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(51, 'show_bank_info_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(52, 'bidding_low_percentage', 'text', 'trip_settings', '50', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(53, 'bidding_high_percentage', 'text', 'trip_settings', '10', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(54, 'bidding_amount_increase_or_decrease', 'text', 'trip_settings', '10', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(55, 'user_bidding_low_percentage', 'text', 'trip_settings', '50', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(56, 'user_bidding_high_percentage', 'text', 'trip_settings', '10', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(57, 'user_bidding_amount_increase_or_decrease', 'text', 'trip_settings', '10', '0', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(58, 'show_wallet_feature_on_mobile_app_driver', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(59, 'show_instant_ride_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(60, 'show_outstation_ride_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(61, 'show_delivery_outstation_ride_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(62, 'enable_outstation_round_trip_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(63, 'show_owner_module_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(64, 'show_wallet_money_transfer_feature_on_mobile_app_for_owner', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(65, 'show_wallet_feature_on_mobile_app_owner', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(66, 'show_wallet_money_transfer_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(67, 'show_wallet_money_transfer_feature_on_mobile_app_for_driver', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(68, 'enable_pet_preference_for_user', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(69, 'enable_document_auto_approval', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(70, 'show_email_otp_feature_on_mobile_app', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(71, 'resteruant_payout_type', 'select', 'general', 'daily', '{\"daily\":\"daily\",\"weekly\":\"weekly\",\"monthly\":\"monthly\"}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(72, 'driver_wallet_minimum_amount_to_get_an_order', 'text', 'Wallet', '-10000', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(73, 'owner_wallet_minimum_amount_to_get_an_order', 'text', 'Wallet', '-10000', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(74, 'referral_commission_for_user', 'text', 'Referral', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(75, 'referral_commission_for_driver', 'text', 'Referral', '30', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(76, 'google_map_key', 'password', 'map_settings', 'Your google map key', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(77, 'show_rental_ride_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(78, 'show_delivery_rental_ride_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(79, 'show_taxi_rental_ride_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(80, 'show_card_payment_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(81, 'show_ride_otp_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(82, 'show_ride_later_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(83, 'show_ride_without_destination', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(84, 'show_incentive_feature_for_driver', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(85, 'mail_mailer', 'text', 'mail_configuration', 'smtp', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(86, 'mail_host', 'text', 'mail_configuration', 'smtp.gmail.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(87, 'mail_port', 'text', 'mail_configuration', '587', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(88, 'mail_username', 'password', 'mail_configuration', 'mxdrive2021@gmail.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(89, 'mail_password', 'password', 'mail_configuration', 'vnlzidnvidfninvdvlnjdfv', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(90, 'mail_encryption', 'text', 'mail_configuration', 'tls', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(91, 'mail_from_address', 'text', 'mail_configuration', 'mxdrive2021@gmail.com', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(92, 'mail_from_name', 'text', 'mail_configuration', 'mxdrive', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(93, 'enable_not_found', 'select', 'general', '1', '{\"enabled\":1,\"disabled\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(94, 'admin_login', 'text', 'general', 'admin', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(95, 'owner_login', 'text', 'general', 'owner-login', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(96, 'dispatcher_login', 'text', 'general', 'dispatch', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(97, 'user_login', 'text', 'general', 'user-login', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(98, 'show_driver_level_feature', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(99, 'driver_register_module', 'select', 'general', 'commission', '{\"commission\":\"commission\",\"subscription\":\"subscription\",\"both\":\"both\"}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(100, 'reward_point_value', 'text', 'general', '1', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(101, 'minimun_reward_point', 'text', 'general', '1', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(102, 'enable_peak_zone_feature', 'text', 'peak_zone_settings', '1', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(103, 'landing_header_bg_color', 'text', 'general', '#ffffff', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(104, 'landing_header_text_color', 'text', 'general', '#212529', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(105, 'landing_header_active_text_color', 'text', 'general', '#c3ff00', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 09:24:34'),
(106, 'landing_footer_bg_color', 'text', 'general', '#000000', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(107, 'landing_footer_text_color', 'text', 'general', '#f1ffff', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(108, 'enable_landing_site', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(109, 'enable_additional_charge_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(110, 'enable_driver_tips_feature', 'select', 'tip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(111, 'minimum_amount_added_to_wallet', 'text', 'Wallet', '50', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(112, 'minimum_tip_amount', 'text', 'tip_settings', '10', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(113, 'enable_driver_profile_disapprove_on_update', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(114, 'show_delivery_ride_pick_otp_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(115, 'show_delivery_ride_drop_otp_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(116, 'enable_support_ticket_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(117, 'enable_map_appearance_change_on_mobile_app', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(118, 'enable_eta_total_update', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(119, 'enable_driver_leaderboard_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(120, 'android_user', 'text', 'general', 'Your Android User App Link', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(121, 'android_driver', 'text', 'general', 'Your Android Driver App Link', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(122, 'ios_user', 'text', 'general', 'Your IOS User App Link', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(123, 'ios_driver', 'text', 'general', 'Your IOS Driver App Link', NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 03:35:18'),
(124, 'enable_multiple_ride_feature', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(125, 'enable_second_ride_for_driver', 'select', 'customization_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(126, 'distance_for_second_ride', 'text', 'customization_settings', '2', NULL, NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
(127, 'enable_maximum_distance_feature', 'select', 'customization_settings', '0', '{\"yes\":1,\"no\":0}', NULL, '2025-09-26 07:06:10', '2025-09-26 07:06:10');

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

--
-- Table structure for table `sos`
--

CREATE TABLE `sos` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `number` varchar(191) NOT NULL,
  `user_type` enum('admin','mobile-users') NOT NULL,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sos`
--

INSERT INTO `sos` (`id`, `company_key`, `service_location_id`, `name`, `number`, `user_type`, `created_by`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('6af8e49c-caa1-46f6-b468-dc8880513448', NULL, NULL, 'A Paul Kol', '+919748913826', 'admin', 1, 1, '2025-09-26 10:46:11', '2025-09-26 10:46:11', NULL),
('9588c8e9-4c61-4df7-bf2f-fad6339a8748', NULL, NULL, 'Advance Talktime', '52141', 'mobile-users', 3, 1, '2025-10-13 08:51:33', '2025-10-13 08:51:33', NULL),
('98e1d2fe-b673-429e-b773-2834993f8ca8', NULL, NULL, 'Account Info', '111', 'mobile-users', 3, 1, '2025-10-13 08:50:30', '2025-10-13 08:50:30', NULL),
('d23bc015-f3c4-43c2-aa9d-7c8a37601efc', NULL, NULL, 'Account Info', '111', 'mobile-users', 2, 1, '2025-10-13 09:10:38', '2025-10-13 09:10:38', NULL);

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

--
-- Table structure for table `states`
--

CREATE TABLE `states` (
  `id` char(36) NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `subscriptions`
--

CREATE TABLE `subscriptions` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` text DEFAULT NULL,
  `subscription_duration` int(11) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `amount` double NOT NULL,
  `vehicle_type_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `subscription_details`
--

CREATE TABLE `subscription_details` (
  `id` char(36) NOT NULL,
  `subscription_id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `payment_opt` int(11) NOT NULL COMMENT '0 => card,1 => cash,2 => wallet,3=>wallet/cash',
  `amount` double NOT NULL,
  `expired_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `subscription_type` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `sub_vehicle_types`
--

CREATE TABLE `sub_vehicle_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `vehicle_type_id` char(36) NOT NULL,
  `sub_vehicle_type_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_tickets`
--

CREATE TABLE `support_tickets` (
  `id` char(36) NOT NULL,
  `ticket_id` varchar(191) NOT NULL,
  `title_id` char(36) NOT NULL,
  `users_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `assign_to` longtext DEFAULT NULL,
  `request_id` varchar(191) DEFAULT NULL,
  `status` tinyint(4) NOT NULL COMMENT '1 => open,2 => acknowledge,3 => closed',
  `support_type` varchar(191) NOT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_ticket_categories`
--

CREATE TABLE `support_ticket_categories` (
  `id` char(36) NOT NULL,
  `category` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_ticket_messages`
--

CREATE TABLE `support_ticket_messages` (
  `id` char(36) NOT NULL,
  `ticket_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `employee_id` longtext DEFAULT NULL,
  `message` longtext DEFAULT NULL,
  `sender_id` int(10) UNSIGNED DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_ticket_multi_files`
--

CREATE TABLE `support_ticket_multi_files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `ticket_id` char(36) DEFAULT NULL,
  `image_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_ticket_titles`
--

CREATE TABLE `support_ticket_titles` (
  `id` char(36) NOT NULL,
  `title` text DEFAULT NULL,
  `category_type` longtext DEFAULT NULL,
  `title_type` varchar(191) DEFAULT NULL,
  `user_type` enum('user','driver') DEFAULT NULL,
  `translation_dataset` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `support_ticket_titles_translations`
--

CREATE TABLE `support_ticket_titles_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `ticket_title_id` char(36) NOT NULL,
  `title` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `tests`
--

CREATE TABLE `tests` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `third_party_settings`
--

CREATE TABLE `third_party_settings` (
  `id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `value` text DEFAULT NULL,
  `module` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `third_party_settings`
--

INSERT INTO `third_party_settings` (`id`, `name`, `value`, `module`, `created_at`, `updated_at`) VALUES
('035edc8c-9978-4838-a4d7-bbdd4a1de1a3', 'xendi_pay_test_api_key', 'Enter Xendi Pay Test Api Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('03ff9a0c-c0a7-43e3-b8ba-4c7e9330dda2', 'enable_recaptcha', '0', 'recaptcha', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('074eddf4-973b-478c-8f33-8c1cbc5ba0d2', 'twilio_sid', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('0d9a010a-11c0-4996-928e-8403fec5351b', 'khalti_pay_live_api_key', 'Enter Khalti Pay Live Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('0e7f62fa-89ba-4de6-85a8-99a3f32eb191', 'mercadopago_test_access_token', 'Enter Mercadopago Test Access Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('1077e80c-4d4f-4fd8-a329-479beb8abf4a', 'myfatoora_live_token', 'Enter MyFatoora Live Bearer Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('14f53736-2671-4208-afea-33247c313fae', 'reacptcha_secret_key', 'your-recaptcha-secret-key', 'recaptcha', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('15b4f652-4e22-4b24-9482-179a04f69627', 'mercadopago_live_public_key', 'Enter Mercadopago Production Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('162c53b3-79c9-4340-8d3f-ea226e625226', 'sms_ala_mobile_number', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('172b96b7-9a47-46c9-b608-484f040ca996', 'enable_stripe_authorization', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('17592ce3-d720-4cdf-83bf-fa02c25b4b18', 'mercadopago_live_access_token', 'Enter Mercadopago Production Access Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('18fd3b92-c770-4bf5-9593-28c0c59a12ab', 'xendit_pay_live_api_key', 'Enter Xendit Pay Live Api Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('191b5be6-63d4-4f7e-8cf4-c9c3608ca613', 'mail_from_name', 'MXDrive', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('1cc99f51-4095-469b-b1a5-751cfd4911ac', 'enable_razorpay', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('21cf3dbc-d59b-4ec8-9072-64705ac1096e', 'openpix_live_api_key', 'Enter Openpix Live Public Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('230ee12d-97ff-426d-bb98-f61ee02727af', 'mail_from_address', 'webmaster@technofuels.com', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('2368277c-d513-464d-b901-f71df1e2bcf0', 'mercadopago_test_public_key', 'Enter Mercadopago Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('26da22ed-2ef2-4207-8be2-ff9e7ddae166', 'firebase_database_url', 'https://morexs-43ceb-default-rtdb.firebaseio.com', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('276ceefc-f5d1-4bb2-9845-ba9b4b64ff78', 'flexpaie_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('32f8623f-3233-4c53-bbfe-ebaff194a831', 'twilio_token', 'Your Twilio Token', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('33b4a24b-7915-49d1-9f53-1df3d9e7c036', 'stripe_test_publishable_key', 'Enter Stripe Test Publish Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('3b797b73-3e64-452e-874e-276661678978', 'paymongo_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('3b8f72b4-6451-493c-bb5b-4f4cc879fa77', 'sparrow_token', 'Your Sparrow Token', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('3bb17c38-819b-4e6d-b2f6-25503b927909', 'paystack_production_secret_key', 'Your Paystack Production Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('3c3c89cf-ea9e-4753-8d92-c23a7d058f2b', 'enable_myfatoora', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('41607bc3-2bdd-4129-bf36-6cd4b9192e60', 'stripe_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('41a72759-8ee3-445e-9583-e9b04d16f27d', 'cash_free_production_app_id', 'Enter Cashfree Production App ID', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('41cdb8c6-d6c2-40c0-87e1-5d037ccf5846', 'sms_india_hub_api_key', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('464bb996-a061-4284-b390-cafde7983f17', 'enable_cashfree', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('49ea6675-b430-4146-9514-389c207060c8', 'razor_pay_secrect_key', 'Enter Razor Pay Secrect key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('4b9cd55b-0105-46cb-8c31-8723c3e11560', 'msg91_auth_key', 'Your MSG91 Token', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('4cd33942-93e3-4069-8b53-6b03c2371c13', 'mail_mailer', 'smtp', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('4d67bea6-fa8d-4e05-9965-e89e32721f31', 'sms_india_hub_sid', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('4f671a00-48a2-48a4-b36c-7c6c9c7ad376', 'cash_free_secret_key', 'Enter Cashfree Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('51e5cfdb-27d4-48b0-86e3-e94ae45b6eb6', 'firebase_project_id', 'morexs-43ceb', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('54d94807-cb1c-49fd-a24b-4087e7a0689d', 'map_type', 'google_map', 'map', '2025-09-26 07:06:10', '2025-10-06 10:16:18'),
('557efeb7-3501-4703-a28f-d7c6f6a0ccb0', 'razor_pay_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('5e1dddd5-56d9-4ab9-a3a9-38823e160d3d', 'razor_pay_live_api_key', 'Enter Razor Pay Live Api Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('648188b7-9758-401e-8491-25d5fa08811a', 'google_map_key', 'AIzaSyAWbWNOIN2NVRIHbjhflvEh4JDr2ZkJ3xA', 'map', '2025-09-26 07:06:10', '2025-10-06 10:16:18'),
('67136963-0a87-4a75-bf20-eba5dbcb6d72', 'mail_port', '587', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('674c952a-0884-44a2-84fa-b48db1fee2e6', 'google_map_key_for_distance_matrix', 'AIzaSyAWbWNOIN2NVRIHbjhflvEh4JDr2ZkJ3xA', 'map', '2025-09-26 07:06:10', '2025-10-06 10:16:18'),
('68636b75-bb95-4bef-8250-a43b4dec52c7', 'enable_msg91', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('68945b8c-be3a-43df-85aa-5c4054f668ea', 'openpix_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('6c96e811-cb30-4ea5-95a0-e66c55428785', 'flutter_wave_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('72223963-4477-470b-93ea-8bcf32924ef5', 'enable_openpix', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('75d3b6a8-efbc-4a34-920d-247ec96e41c5', 'myfatoora_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('7666c0a7-fe82-4e8e-a9b0-ffc7b7b5f523', 'mercadopago_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('7df04429-d856-4254-880c-ff736f7bb820', 'khalti_pay_test_api_key', 'Enter Khalti Pay Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('7ea6046b-f2d7-443d-979c-bbaf2eb0be2c', 'enable_stripe', '1', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('81f08f9a-b2cd-4fbe-9e74-b69bbbe3ce3a', 'razor_pay_test_secrect_key', 'Enter Razor pay Test Secrect Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('82a61161-06f7-4dac-8a14-9251f476e7ea', 'sparrow_sender_id', 'Your Sparrow Sender ID', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('84245abf-e591-42fd-b7c1-ccd9bd22140f', 'cash_free_production_secret_key', 'Enter Cashfree Production Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('85989b53-3c8b-40ea-b5b7-be414b330e59', 'mail_encryption', 'tls', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('85f4fe6c-d3f5-4c55-bee3-7e6c73067ef4', 'cash_free_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('89023229-7498-4e93-8f36-ddd38c86adc7', 'stripe_test_secret_key', 'Enter Stripe Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('8a836f60-d7ed-4e5e-8aef-bbd41f7f3966', 'paystack_test_secret_key', 'Your Paystack Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('8b514bb7-3056-402d-a83d-aaa631cb0124', 'enable_firebase_otp', '1', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('90f51b93-352b-4b9b-b907-a0645aaf1515', 'twilio_mobile_number', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('914f14e4-6653-4327-b702-3f1e46cf19e3', 'openpix_test_api_key', 'Enter Open Pix Test Public Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('96b66ca0-4a69-4a1d-ac9d-5032db843ad4', 'sms_ala_token', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('977351b1-eaf1-4abb-826d-4e6c4bd5b37f', 'enable_sms_ala', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('99345138-91c0-4230-bd72-3a6c4ed358e2', 'enable_flutterwave', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('a114fae9-7eb4-4b7d-953b-3c8e26bd6724', 'cash_free_app_id', 'Enter Cashfree Test App ID', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('a45e41c8-0df6-46d7-9632-e1ae5c74060d', 'stripe_live_publishable_key', 'Enter Stripe Production Publish Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('a96bd657-b4d5-41f3-b811-35a3755fae55', 'enable_paystack', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('ab947c10-616c-414c-b5e1-5b7eece7ddaf', 'firebase_app_id', '1:413746415391:web:be74a252b44a0150cb122a', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('ac29a16e-f9f5-4d52-9416-2225788ddc97', 'paystack_production_publish_key', NULL, 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('adc82154-082d-4d6a-91cd-0b5e6c9a338b', 'stripe_live_secret_key', 'Enter Stripe Production Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('b66ebae2-f9b5-42cb-89db-021774e4aa0c', 'msg91_template_id', 'Your MSG91 Template ID', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('b8188869-5081-429e-9d9e-df2167978b1b', 'mail_username', 'webmaster@technofuels.com', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('bb5a6812-e3d8-4af5-bd2f-4983a4df46b7', 'sms_ala_api_key', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('be6a4248-f938-4691-8d5d-b57345d53b01', 'enable_xendit', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('bfad771b-b57d-4ffc-acf3-fa1e0ecf7594', 'enable_sms_india_hub', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('bfead617-df7b-461d-9448-54a2baa246c3', 'mail_host', 'smtp.hostinger.com', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('bff6e063-4296-45b0-a345-f120102548df', 'paymongo_test_secret_key', 'Enter Paymongo Test Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('c2293036-6ccf-425e-913d-f88b16bac478', 'firebase_api_key', 'AIzaSyAqHU4r6M3RThKLPFHjJr6kOlLownsJtWE', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('c26ec4ea-2204-4abe-965a-95f6a83c8ab4', 'paymongo_live_secret_key', 'Enter Paymongo Live Secret Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('c312170b-04f3-4fef-b1c0-f1a498f3f01e', 'enable_sparrow', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('c6464f1d-b63b-440d-a407-f6159de63c1f', 'reacptcha_site_key', 'your-recaptcha-site-key', 'recaptcha', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('c6e63911-26d7-4f82-8d0f-866bf75463b3', 'flexpaie_test_bearer_token', 'Enter FlexPaie Test Bearer Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('c83f472f-a9bd-4e96-bc7c-fd56977763b3', 'firebase_messaging_sender_id', '413746415391', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('c9fc3032-1ba1-4b54-a8df-904cc333f129', 'firebase_auth_domain', 'morexs-43ceb.firebaseapp.com', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('d172b3b3-eec6-4d4d-ab7a-9526937476a5', 'enable_mercadopago', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('d2a0c47e-6666-4d72-9cc9-4d9db3b28e82', 'flexpaie_production_bearer_token', 'Enter FlexPaie Live Bearer Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('d35a785f-0142-4b46-9635-0e7765fd294d', 'enable_vase_map', '1', 'map', '2025-09-26 07:06:10', '2025-09-26 07:06:10'),
('d4d68b2d-3830-4aaf-b7cf-99f53d944654', 'mail_password', 'mkTjzvw4N~k', 'mail_config', '2025-11-03 12:16:19', '2025-11-03 12:16:19'),
('d5550a27-eda1-4d90-9463-701be601fd7e', 'xendi_pay_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('dddfbdc7-73cb-4d95-9fa5-bc63ff14f4b9', 'sms_ala_api_secret_key', NULL, 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('e1da5991-7a94-4dcb-92f8-96a241ef564f', 'enable_flexpaie', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('e51df023-0ab7-4b45-9125-ac0821f09c26', 'myfatoora_test_token', 'Enter MyFatoora Test Bearer Token', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('ea793ff7-7e75-4834-998b-0224a7330b6b', 'razor_pay_test_api_key', 'Enter Razor Pay Test Api Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('eb729878-0925-4f82-ae06-aaf0fd6d1167', 'enable_khalti', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('ec7fd425-2ec5-4203-904e-e08f2f2e3274', 'enable_paymongo', '0', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('f078cfd6-0775-4bcf-90ad-698bd8cb28f6', 'enable_twilio', '0', 'sms', '2025-10-13 11:53:04', '2025-10-13 11:53:04'),
('f291f188-f909-4163-8a0f-d917c41fc9ec', 'flutter_wave_test_secret_key', 'Enter Flutter-Wave Test Public Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('f29cb168-5653-49f2-bc19-ee2e12ea4bde', 'firebase_storage_bucket', 'morexs-43ceb.appspot.com', 'firebase', '2025-10-06 10:10:35', '2025-10-06 10:10:35'),
('f2c825c5-60c1-446a-a239-e3675703ee67', 'khalti_pay_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('f418949b-c4a7-4740-8def-ce58a82d9c32', 'paystack_environment', 'test', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('f51ff914-7fc1-4631-9107-a15ab7ea5562', 'flutter_wave_production_secret_key', 'Enter Flutter-Wave Live Public Key', 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18'),
('fad3a444-86b4-4f4f-8187-d01368f8223e', 'paystack_test_publish_key', NULL, 'payment', '2025-10-06 10:11:18', '2025-10-06 10:11:18');

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

--
-- Table structure for table `time_zones`
--

CREATE TABLE `time_zones` (
  `id` char(36) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `time_zones`
--

INSERT INTO `time_zones` (`id`, `name`, `timezone`, `active`, `created_at`, `updated_at`) VALUES
('0045a6ac-41fa-4e2b-b0cb-bb29b9ee51c5', 'Tiraspol', 'Europe/Tiraspol', 1, NULL, NULL),
('00d9d64d-8d8c-4501-8d89-8373597a2192', 'Dublin', 'Europe/Dublin', 1, NULL, NULL),
('010f2705-0632-409b-994f-3fc126a8c735', 'Boise', 'America/Boise', 1, NULL, NULL),
('01a5b108-b2d0-4def-8e6a-ccacd5bcf157', 'Eucla', 'Australia/Eucla', 1, NULL, NULL),
('01e2c401-54e3-4c43-8763-ad15b47c7900', 'Honolulu (Hawaii)', 'Pacific/Honolulu', 1, NULL, NULL),
('0250b09c-c63d-46f4-8b35-283375c7495d', 'Vatican', 'Europe/Vatican', 1, NULL, NULL),
('02ca939b-32e7-4fc1-9cc1-7f07817e4d59', 'Ho Chi Minh', 'Asia/Ho_Chi_Minh', 1, NULL, NULL),
('0386c9b9-4181-4732-9e33-ea959a773f2f', 'Riga', 'Europe/Riga', 1, NULL, NULL),
('03f55bd7-3dbc-49b9-bd8a-58f055c9836a', 'Lord Howe', 'Australia/Lord_Howe', 1, NULL, NULL),
('047cfe27-9ad2-4e4b-a108-bea884f8190b', 'Louisville', 'America/Louisville', 1, NULL, NULL),
('04be169d-c9ff-49b0-b4a7-a0b71e2d5e8c', 'Miquelon', 'America/Miquelon', 1, NULL, NULL),
('04ca4e38-c243-4ffe-90f2-6183775c7e77', 'Novokuznetsk', 'Asia/Novokuznetsk', 1, NULL, NULL),
('053b02e5-4757-41a4-9fb4-efc62fb054d9', 'Anadyr', 'Asia/Anadyr', 1, NULL, NULL),
('066af162-c555-4b34-99b8-15f300ea616b', 'Canary', 'Atlantic/Canary', 1, NULL, NULL),
('0706ab9e-c662-49b4-8fa8-dd789f9e7da6', 'Ojinaga', 'America/Ojinaga', 1, NULL, NULL),
('0740ac75-c92c-4ab2-a5f8-bf606baa105b', 'Kiritimati', 'Pacific/Kiritimati', 1, NULL, NULL),
('07fe13d1-6e49-43b8-932e-ba582c3fd07c', 'Belem', 'America/Belem', 1, NULL, NULL),
('0aa943ad-f03e-4daa-85b2-4d55ffb1ac00', 'Ujung Pandang', 'Asia/Ujung_Pandang', 1, NULL, NULL),
('0b1c9fe0-202e-4c5a-a43c-dabd8da3b442', 'Argentina - San Luis', 'America/Argentina/San_Luis', 1, NULL, NULL),
('0b95ad77-4d67-4b91-9f13-da2abf3c2580', 'Majuro', 'Pacific/Majuro', 1, NULL, NULL),
('0c0eea39-57cb-4b50-ba4c-504e19782e2b', 'Tripoli', 'Africa/Tripoli', 1, NULL, NULL),
('0c1bf77f-55a1-421a-a552-bb01442984a7', 'Vilnius', 'Europe/Vilnius', 1, NULL, NULL),
('0d1145c0-c4a0-4eba-9523-92aacf01e0c5', 'Godthab', 'America/Godthab', 1, NULL, NULL),
('0f0a3868-743e-4684-892d-f4dcf961a142', 'Dushanbe', 'Asia/Dushanbe', 1, NULL, NULL),
('0f7ae639-c3ed-480b-a0ba-30cf19019eca', 'Tasmania', 'Australia/Tasmania', 1, NULL, NULL),
('0fd21edf-30e7-467b-a3ff-8d798dd301ce', 'Resolute', 'America/Resolute', 1, NULL, NULL),
('10f18e3f-02d1-4ca5-a7ce-b850cb44bca1', 'Guadalcanal', 'Pacific/Guadalcanal', 1, NULL, NULL),
('1123c9b9-4220-4fe7-bd6a-4630c0482bb5', 'Hobart', 'Australia/Hobart', 1, NULL, NULL),
('11793649-d40a-40b8-862c-17469f01373c', 'Danmarkshavn', 'America/Danmarkshavn', 1, NULL, NULL),
('11f3d48e-e766-40cd-8428-c137ad885ca0', 'Singapore', 'Asia/Singapore', 1, NULL, NULL),
('1258e0fe-a285-4f61-bbf0-91e139079b7e', 'Santarem', 'America/Santarem', 1, NULL, NULL),
('131e72a6-1b75-410a-b502-c54fcdd2a6c9', 'Phoenix', 'America/Phoenix', 1, NULL, NULL),
('136cb846-5187-4f0e-b2f9-3c853b5e1a16', 'Ulaanbaatar', 'Asia/Ulaanbaatar', 1, NULL, NULL),
('14bc2b2b-53c4-4553-8a28-c40ae69e7652', 'London', 'Europe/London', 1, NULL, NULL),
('156f7213-b40e-4067-ab30-f1bb08ff9951', 'Ashkhabad', 'Asia/Ashkhabad', 1, NULL, NULL),
('15c10838-dc18-4e5c-8628-c36f5bd02114', 'Rainy River', 'America/Rainy_River', 1, NULL, NULL),
('15dae4d8-eb22-4bb1-8582-a9c196062968', 'Melbourne', 'Australia/Melbourne', 1, NULL, NULL),
('167ef0f7-3402-4aa7-bb81-d180cca8cda9', 'Bishkek', 'Asia/Bishkek', 1, NULL, NULL),
('16e4b4a7-93e4-49e7-a80d-416487f52aec', 'Asuncion', 'America/Asuncion', 1, NULL, NULL),
('18d3f974-d2fa-4c26-bb5e-b7be6240c960', 'Kolkata', 'Asia/Kolkata', 1, NULL, NULL),
('19d66342-f048-47f7-b28a-62c509a5bbd2', 'St Vincent', 'America/St_Vincent', 1, NULL, NULL),
('1a39ac82-94ed-41f1-aaac-4c0673dd2364', 'Addis Ababa', 'Africa/Addis_Ababa', 1, NULL, NULL),
('1b60239d-3507-4c68-9368-624563733325', 'Rosario', 'America/Rosario', 1, NULL, NULL),
('1c170807-5e68-4bab-871d-ccd9856a04cf', 'Funafuti', 'Pacific/Funafuti', 1, NULL, NULL),
('1c4dba3d-abe3-47e0-a1cd-217109db7e02', 'Nome', 'America/Nome', 1, NULL, NULL),
('1d52d2d9-3747-4883-b3e6-82dfc50ea902', 'Ljubljana', 'Europe/Ljubljana', 1, NULL, NULL),
('1d8d87f8-d237-4c11-a674-3f19beb5c4f6', 'Riyadh', 'Asia/Riyadh', 1, NULL, NULL),
('1dcd576e-129e-4a37-8bf6-a488aca0ff20', 'Indiana - Petersburg', 'America/Indiana/Petersburg', 1, NULL, NULL),
('1e385e00-a317-40a8-bbfe-ff6e45d4bc59', 'Guyana', 'America/Guyana', 1, NULL, NULL),
('1e4453fe-acb3-4b14-8147-a89bc43e26b1', 'Douala', 'Africa/Douala', 1, NULL, NULL),
('1e4d19d1-9d9a-4620-8db4-01b8536bdd49', 'Manaus', 'America/Manaus', 1, NULL, NULL),
('1e56a3d2-e4a6-4444-8807-d3a924f77389', 'Panama', 'America/Panama', 1, NULL, NULL),
('1ef8e6e1-bb8a-4d47-bfc7-12b9d22877b1', 'Windhoek', 'Africa/Windhoek', 1, NULL, NULL),
('1fa7f84a-2793-47af-aec7-754eca301d72', 'Anguilla', 'America/Anguilla', 1, NULL, NULL),
('20070cf5-d0ff-414c-b6e3-d1231feddda4', 'Yap', 'Pacific/Yap', 1, NULL, NULL),
('218347db-f2ec-41bb-aa84-ea3c9c6cb0e0', 'Macquarie', 'Antarctica/Macquarie', 1, NULL, NULL),
('21a31b91-4212-4456-94a8-5e552e0dc3d2', 'Aden', 'Asia/Aden', 1, NULL, NULL),
('223a3edf-8942-4b24-9667-ee7edacccd58', 'La Paz', 'America/La_Paz', 1, NULL, NULL),
('22a2a955-8b34-4f8a-9a6f-aa9fb99b248f', 'Argentina - Ushuaia', 'America/Argentina/Ushuaia', 1, NULL, NULL),
('22acc2cf-e6bd-410d-a9c6-4f3c9660a84a', 'Puerto Rico', 'America/Puerto_Rico', 1, NULL, NULL),
('22b4fd4e-fcb6-42bc-9ca1-646eadd97578', 'Niue', 'Pacific/Niue', 1, NULL, NULL),
('2477b845-cc13-4afe-8e51-82cd7f0ce13b', 'Jakarta', 'Asia/Jakarta', 1, NULL, NULL),
('24e9ea0a-e455-41c5-820b-872ece51415c', 'Cuiaba', 'America/Cuiaba', 1, NULL, NULL),
('2566ee02-c743-4cf3-bb67-8d9fb4397890', 'Jayapura', 'Asia/Jayapura', 1, NULL, NULL),
('25ae1946-d499-43de-82dc-9d5340e5ecb6', 'Blanc-Sablon', 'America/Blanc-Sablon', 1, NULL, NULL),
('25f22430-9051-42f9-b192-4a57fe18539b', 'Casablanca', 'Africa/Casablanca', 1, NULL, NULL),
('263e7216-45ae-47c3-8061-9175291b7ead', 'Skopje', 'Europe/Skopje', 1, NULL, NULL),
('273de04a-9d3f-486c-a976-9ec0242700f8', 'Sydney', 'Australia/Sydney', 1, NULL, NULL),
('276df61c-1391-4099-8ebe-4e812dc45d7a', 'Kentucky - Monticello', 'America/Kentucky/Monticello', 1, NULL, NULL),
('27a06a73-b88e-4a11-819b-e7354f4196aa', 'Bangkok', 'Asia/Bangkok', 1, NULL, NULL),
('286af7e6-b80e-4331-8a63-ebf61184b53d', 'Samarkand', 'Asia/Samarkand', 1, NULL, NULL),
('286e726a-c296-4520-8ceb-769f514cca8a', 'Amman', 'Asia/Amman', 1, NULL, NULL),
('28eb9f02-5a3c-49bf-a775-d84e82b13a04', 'Niamey', 'Africa/Niamey', 1, NULL, NULL),
('2b1c77dd-219f-41c5-9b6f-e0eb40c39ef9', 'Palmer', 'Antarctica/Palmer', 1, NULL, NULL),
('2c8dd237-8614-4a37-9c62-fefd960c6208', 'Bermuda', 'Atlantic/Bermuda', 1, NULL, NULL),
('2d145c8a-9bbf-466b-8c81-7994a7e09583', 'Coral Harbour', 'America/Coral_Harbour', 1, NULL, NULL),
('2fa25ff6-17eb-4498-b1f2-0feff49b3a01', 'Denver', 'America/Denver', 1, NULL, NULL),
('308c78ee-0d1a-4e7a-b6b6-59c188837646', 'Shanghai', 'Asia/Shanghai', 1, NULL, NULL),
('30dfb568-8c4d-4adb-a8a7-897162609e0d', 'Calcutta', 'Asia/Calcutta', 1, NULL, NULL),
('31b64813-7af3-44e5-b795-3f5305d5140f', 'Harare', 'Africa/Harare', 1, NULL, NULL),
('31d5aa4c-e516-4f4b-bdbd-e50e1c0f69d4', 'Bangui', 'Africa/Bangui', 1, NULL, NULL),
('339b2f53-8790-49b5-ad5e-8429904458cb', 'Zagreb', 'Europe/Zagreb', 1, NULL, NULL),
('33d0251e-fb6c-4148-85fd-064366d5d790', 'Pyongyang', 'Asia/Pyongyang', 1, NULL, NULL),
('346389fa-e40e-4e7c-b332-18b5a452ac8b', 'Kashgar', 'Asia/Kashgar', 1, NULL, NULL),
('34a2201e-8a24-43b3-9cba-70963ed1390d', 'Caracas', 'America/Caracas', 1, NULL, NULL),
('352faaea-c5a4-44b0-a924-d14008b8c268', 'Apia', 'Pacific/Apia', 1, NULL, NULL),
('3550e673-37c1-41d9-a107-ab58c0f14eb8', 'NSW', 'Australia/NSW', 1, NULL, NULL),
('3584a861-4c04-4ac6-86fa-f0391f54fe7b', 'Argentina - Cordoba', 'America/Argentina/Cordoba', 1, NULL, NULL),
('3683513d-9b48-47a3-91b9-53e27789beeb', 'Chatham', 'Pacific/Chatham', 1, NULL, NULL),
('3780925a-f81f-4829-97ad-b64c2f84c706', 'Johnston', 'Pacific/Johnston', 1, NULL, NULL),
('37f3814e-3707-4ed8-b8f4-f4028fd0f30c', 'Brunei', 'Asia/Brunei', 1, NULL, NULL),
('381d3ecb-e475-4c51-8018-3d86b1db8398', 'Istanbul', 'Europe/Istanbul', 1, NULL, NULL),
('38c76caa-a67f-4f50-8653-16c9995fcc83', 'Maldives', 'Indian/Maldives', 1, NULL, NULL),
('38d0fd15-ca5e-4ccf-af90-921439542c10', 'Tunis', 'Africa/Tunis', 1, NULL, NULL),
('39ef24b2-d5cb-4554-b52d-1b2d8e6aded7', 'Broken Hill', 'Australia/Broken_Hill', 1, NULL, NULL),
('3a6723a2-3c36-4c11-952e-1ee31b89d969', 'Kampala', 'Africa/Kampala', 1, NULL, NULL),
('3aa38f7f-573b-45f3-bb59-93915f8cc0d8', 'Tortola', 'America/Tortola', 1, NULL, NULL),
('3b917485-342e-4a55-b97f-40faf6b47fec', 'Thule', 'America/Thule', 1, NULL, NULL),
('3d937d9e-2175-4c18-a7da-46ad067584bc', 'Brisbane', 'Australia/Brisbane', 1, NULL, NULL),
('3e9300dd-7c85-4cf4-988f-c8d953788801', 'Dili', 'Asia/Dili', 1, NULL, NULL),
('3f9a3f5d-d805-4707-a567-cdf4d57341e4', 'South Georgia', 'Atlantic/South_Georgia', 1, NULL, NULL),
('3ffe0121-712e-4608-9407-3298c3ea1870', 'Reykjavik', 'Atlantic/Reykjavik', 1, NULL, NULL),
('40b66cb0-e168-406f-8f4c-2e855df9843b', 'Honolulu', 'Pacific/Honolulu', 1, NULL, NULL),
('40e4cec2-47f3-4884-a6b1-83129a2b6b53', 'Banjul', 'Africa/Banjul', 1, NULL, NULL),
('41fe8297-1de3-477f-aeb3-d1253be115d5', 'South', 'Australia/South', 1, NULL, NULL),
('4204921f-071b-4a8c-80d0-574d429c2f41', 'Tegucigalpa', 'America/Tegucigalpa', 1, NULL, NULL),
('42426508-a3e7-4c5f-8771-76bfcece6f4a', 'Virgin', 'America/Virgin', 1, NULL, NULL),
('428d2780-070f-46f9-996a-6455f7e3de2f', 'Montevideo', 'America/Montevideo', 1, NULL, NULL),
('42e44d5e-b0ad-4a99-849c-7f230a79184d', 'Pontianak', 'Asia/Pontianak', 1, NULL, NULL),
('440f13ed-59cb-45fb-906d-319e40c7fc17', 'Rarotonga', 'Pacific/Rarotonga', 1, NULL, NULL),
('4485a72a-8097-4ff6-85be-842a7a8cd3fa', 'El Aaiun', 'Africa/El_Aaiun', 1, NULL, NULL),
('457f2647-fbb5-4335-aca7-89e7857f45a6', 'Argentina - Mendoza', 'America/Argentina/Mendoza', 1, NULL, NULL),
('465a5563-7c1a-48be-9c50-1803d049f5e5', 'Indiana - Vevay', 'America/Indiana/Vevay', 1, NULL, NULL),
('474147cb-4c47-4f9a-899b-4050c1d1c7ed', 'Ensenada', 'America/Ensenada', 1, NULL, NULL),
('47580a9f-d57a-4f73-94a3-3ac87e9d0e37', 'Lusaka', 'Africa/Lusaka', 1, NULL, NULL),
('47586297-370d-410a-b3ad-ef21cd8798f0', 'Tel Aviv', 'Asia/Tel_Aviv', 1, NULL, NULL),
('4a51f929-0f13-44e5-ab58-1878fd590fa1', 'Kaliningrad', 'Europe/Kaliningrad', 1, NULL, NULL),
('4a7291ba-9348-4d19-aec9-354156b98728', 'Faroe', 'Atlantic/Faroe', 1, NULL, NULL),
('4c1156d8-20d8-44ec-ad27-4d020c9bea9f', 'Mahe', 'Indian/Mahe', 1, NULL, NULL),
('4c24a9de-97c7-4196-97fa-91f02e433afd', 'Jujuy', 'America/Jujuy', 1, NULL, NULL),
('4cf0767a-486d-42c5-ad78-11171d2c9fe8', 'Rome', 'Europe/Rome', 1, NULL, NULL),
('4d892bf5-316a-4057-a455-6ac25352ccaf', 'Macau', 'Asia/Macau', 1, NULL, NULL),
('4dfbef6f-54d5-4f8d-bdc0-368951637b23', 'Volgograd', 'Europe/Volgograd', 1, NULL, NULL),
('4e3d619b-5474-4d7e-a9b8-0f9d390548aa', 'Jerusalem', 'Asia/Jerusalem', 1, NULL, NULL),
('4ee4e3e2-166b-4137-9e6c-f1bc9ab04387', 'Knox IN', 'America/Knox_IN', 1, NULL, NULL),
('4fd03d0d-d926-48b6-b183-39251c9a544e', 'Truk', 'Pacific/Truk', 1, NULL, NULL),
('4feb121f-b093-4289-9ce3-ea32860657d3', 'Novosibirsk', 'Asia/Novosibirsk', 1, NULL, NULL),
('50389d71-8a6d-4ebf-997b-3b421f5475bf', 'Guatemala', 'America/Guatemala', 1, NULL, NULL),
('5118c6e3-9ecb-4db7-9d6b-ce40696003fe', 'Ashgabat', 'Asia/Ashgabat', 1, NULL, NULL),
('51827c15-92c8-40b4-be53-a59626e5c679', 'Tehran', 'Asia/Tehran', 1, NULL, NULL),
('51b7918c-118d-426d-8ca7-3989b2fabc08', 'Stockholm', 'Europe/Stockholm', 1, NULL, NULL),
('524de407-19b8-470a-bc62-d4e64b55f409', 'Fortaleza', 'America/Fortaleza', 1, NULL, NULL),
('52a27301-5c1c-445d-981f-cad328910aa8', 'Juneau', 'America/Juneau', 1, NULL, NULL),
('53049133-78e7-4eb2-9e37-a3004aa85321', 'Hovd', 'Asia/Hovd', 1, NULL, NULL),
('530b2795-7ae4-459a-9d8e-c957f82afbc7', 'Ceuta', 'Africa/Ceuta', 1, NULL, NULL),
('53391507-b510-4744-87f4-c2d2c44f9edf', 'Minsk', 'Europe/Minsk', 1, NULL, NULL),
('5370d4f3-fc85-46a4-b391-f2d9f272aa76', 'Whitehorse', 'America/Whitehorse', 1, NULL, NULL),
('53dfc0b1-9400-4dee-812e-6fe4f3b564ec', 'North Dakota - New Salem', 'America/North_Dakota/New_Salem', 1, NULL, NULL),
('54554bf7-bb18-4f83-b945-0e69c65158ae', 'Khartoum', 'Africa/Khartoum', 1, NULL, NULL),
('547a6f3a-9245-4103-9cdb-3a0829ddc185', 'Irkutsk', 'Asia/Irkutsk', 1, NULL, NULL),
('547ef540-921a-4dd8-8809-aefc5c5d9c14', 'Jan Mayen', 'Atlantic/Jan_Mayen', 1, NULL, NULL),
('558c8fb5-e39a-4ab2-a8af-138238c905d2', 'Port Moresby', 'Pacific/Port_Moresby', 1, NULL, NULL),
('55b58be3-0158-4c40-8aef-e257e6282bb9', 'Havana', 'America/Havana', 1, NULL, NULL),
('56ed4a63-8d03-4cac-9753-0e6c490beff5', 'Argentina - ComodRivadavia', 'America/Argentina/ComodRivadavia', 1, NULL, NULL),
('579936fa-1c87-46ef-93e7-747949bf910f', 'Canberra', 'Australia/Canberra', 1, NULL, NULL),
('581ee8bb-2f01-4abc-944d-191503ad3ad1', 'Kentucky - Louisville', 'America/Kentucky/Louisville', 1, NULL, NULL),
('584366de-beff-4464-b21f-4089be01bd7f', 'Indianapolis', 'America/Indianapolis', 1, NULL, NULL),
('58ebf541-9e1e-4a44-be3f-95ee9a920a73', 'Recife', 'America/Recife', 1, NULL, NULL),
('5996cd38-83ac-436c-9abc-039c43b708c7', 'Nouakchott', 'Africa/Nouakchott', 1, NULL, NULL),
('5a07f51c-5cf6-4517-abf0-9d5fc15d40f4', 'Kiev', 'Europe/Kiev', 1, NULL, NULL),
('5adf73b5-cdfa-400f-8d4b-7d3a02fdadb1', 'Norfolk', 'Pacific/Norfolk', 1, NULL, NULL),
('5aef0ce5-57ec-48ff-92ff-8badd1b78e84', 'Cambridge Bay', 'America/Cambridge_Bay', 1, NULL, NULL),
('5afd2357-8790-477d-84f9-1d8dc2454c87', 'Tbilisi', 'Asia/Tbilisi', 1, NULL, NULL),
('5b0ab416-f961-445c-937a-ef8ef72781be', 'Andorra', 'Europe/Andorra', 1, NULL, NULL),
('5b8173d9-7bd3-4499-88c5-1df9e153fb87', 'New York (Eastern)', 'America/New_York', 1, NULL, NULL),
('5ba38144-75d2-49b3-a938-420215e638b3', 'Thimphu', 'Asia/Thimphu', 1, NULL, NULL),
('5bd02e3c-0519-46d3-810e-f04b5c71b045', 'Chongqing', 'Asia/Chongqing', 1, NULL, NULL),
('5c1dd54f-d7c6-47d1-88c0-4572738dbcfa', 'Phnom Penh', 'Asia/Phnom_Penh', 1, NULL, NULL),
('5c780193-9fc4-41c9-b337-3c177e5f067b', 'Cairo', 'Africa/Cairo', 1, NULL, NULL),
('5cde932e-92d5-453d-91c8-48be5d4f41c2', 'Aqtobe', 'Asia/Aqtobe', 1, NULL, NULL),
('5d9a14be-df10-4476-9363-7b9ce8ec615f', 'Abidjan', 'Africa/Abidjan', 1, NULL, NULL),
('5d9bdbbb-b982-4baf-99db-d125aa0892b5', 'Faeroe', 'Atlantic/Faeroe', 1, NULL, NULL),
('5ddaf746-3925-4102-9efe-f9f4c0193e99', 'Fort Wayne', 'America/Fort_Wayne', 1, NULL, NULL),
('5e800125-e362-4349-a176-74f9b119e18a', 'Catamarca', 'America/Catamarca', 1, NULL, NULL),
('5ed88f67-57dc-45a4-9672-263450dc9f32', 'Grand Turk', 'America/Grand_Turk', 1, NULL, NULL),
('5eddbe0d-1371-4e69-8510-ecd23ade895d', 'Tashkent', 'Asia/Tashkent', 1, NULL, NULL),
('5fabf255-5f0d-4a99-9d84-a463a7a4e5f7', 'Gaborone', 'Africa/Gaborone', 1, NULL, NULL),
('5fe893b0-f80c-43b8-bb54-513bf4eba9fa', 'Phoenix (MST)', 'America/Phoenix', 1, NULL, NULL),
('601e39c2-5d7b-4086-b509-ac000c9e3800', 'Buenos Aires', 'America/Buenos_Aires', 1, NULL, NULL),
('6085079b-41cf-4a68-8a0c-08371877ea99', 'Matamoros', 'America/Matamoros', 1, NULL, NULL),
('60c3e77f-1ec8-43c1-b11e-f30414c3906f', 'Guernsey', 'Europe/Guernsey', 1, NULL, NULL),
('60dddb16-23f3-49b7-96ec-85580fb240b1', 'Santiago', 'America/Santiago', 1, NULL, NULL),
('616b3c10-e436-4d12-b283-cb2d3bbbe63c', 'Katmandu', 'Asia/Katmandu', 1, NULL, NULL),
('61a23d8e-3318-4ef5-8216-5237e72a5880', 'St Thomas', 'America/St_Thomas', 1, NULL, NULL),
('61aa6006-f270-44f4-a028-52a779369265', 'McMurdo', 'Antarctica/McMurdo', 1, NULL, NULL),
('62093f7e-5d3e-4a8d-bdd7-30a194bcb286', 'Harbin', 'Asia/Harbin', 1, NULL, NULL),
('631166bf-6b75-453c-bee5-13c48dea79de', 'Los Angeles', 'America/Los_Angeles', 1, NULL, NULL),
('63133fda-5da1-46d4-b9e0-f8fb07597e85', 'Kabul', 'Asia/Kabul', 1, NULL, NULL),
('63f93e60-3a95-41fd-b8ae-02d8752aabdf', 'Indiana - Vincennes', 'America/Indiana/Vincennes', 1, NULL, NULL),
('644b8514-d0ce-420b-b403-0ab104eba8a7', 'Detroit', 'America/Detroit', 1, NULL, NULL),
('645492a1-6a7b-46ee-a45e-79e2ba79dee7', 'Damascus', 'Asia/Damascus', 1, NULL, NULL),
('66e23e2d-47bc-4099-8f23-126169810c7a', 'Antigua', 'America/Antigua', 1, NULL, NULL),
('6755f2bc-cf98-4710-b596-cf47f150eac7', 'Paris', 'Europe/Paris', 1, NULL, NULL),
('6789a7e1-0b0c-45db-9721-1d9b58823adb', 'Timbuktu', 'Africa/Timbuktu', 1, NULL, NULL),
('6814f88b-ac64-470c-91de-e0b826d7a93a', 'Hermosillo', 'America/Hermosillo', 1, NULL, NULL),
('681abaaa-e14b-4618-9629-e98cccb0967c', 'Tirane', 'Europe/Tirane', 1, NULL, NULL),
('6829dbfc-46ba-4913-86d6-bea95e2be11b', 'Managua', 'America/Managua', 1, NULL, NULL),
('68829374-093c-4728-a58b-4aaf4c00d056', 'Port of Spain', 'America/Port_of_Spain', 1, NULL, NULL),
('6970de5e-3541-4212-b0ab-727fe8b637a6', 'Freetown', 'Africa/Freetown', 1, NULL, NULL),
('697dbd07-0706-4cd5-8f6a-1a9627fcf0c9', 'Nicosia', 'Asia/Nicosia', 1, NULL, NULL),
('69a675f5-524d-4594-a3eb-1b6a62fe4d97', 'Luanda', 'Africa/Luanda', 1, NULL, NULL),
('69fc9f5a-1117-4fbd-80a2-95475cd9645d', 'Anchorage', 'America/Anchorage', 1, NULL, NULL),
('6b102da4-a5c8-4117-b660-6418db43ecbf', 'St Helena', 'Atlantic/St_Helena', 1, NULL, NULL),
('6caab835-d1e0-463a-a2e7-3c3cb85047fe', 'Costa Rica', 'America/Costa_Rica', 1, NULL, NULL),
('6cc0f974-7ab2-4b12-80a1-f820ff404ab9', 'Kamchatka', 'Asia/Kamchatka', 1, NULL, NULL),
('6d10cc9b-f0e8-4c60-95c7-7668f99f9a4c', 'Chicago (Central)', 'America/Chicago', 1, NULL, NULL),
('6d474fd2-fd74-4449-a0f7-c6a57c9df8a9', 'South Pole', 'Antarctica/South_Pole', 1, NULL, NULL),
('6d8c7287-75df-46dc-abd8-222b929356cb', 'Istanbul', 'Asia/Istanbul', 1, NULL, NULL),
('6e54f075-59ac-4bf2-8952-11ffc627936e', 'Gibraltar', 'Europe/Gibraltar', 1, NULL, NULL),
('6ea197fd-b0f3-4f77-8e49-89195f5630a4', 'Magadan', 'Asia/Magadan', 1, NULL, NULL),
('6ebb7f5a-b7c4-40b4-800f-d2d54b4e9a9a', 'Bucharest', 'Europe/Bucharest', 1, NULL, NULL),
('6f7b99d9-952d-44b3-b6e6-3d086a343085', 'Nipigon', 'America/Nipigon', 1, NULL, NULL),
('7001919c-bc72-46ae-a301-c394f679ed9d', 'Montreal', 'America/Montreal', 1, NULL, NULL),
('70163b6d-82d5-45dc-a6e7-38fd64c0f2d7', 'Nairobi', 'Africa/Nairobi', 1, NULL, NULL),
('708f9491-7181-403b-a120-58fa0f69249b', 'Ponape', 'Pacific/Ponape', 1, NULL, NULL),
('70e13b33-2ced-4338-a75c-21770b6305a8', 'Luxembourg', 'Europe/Luxembourg', 1, NULL, NULL),
('70f7380b-eab2-45a9-9cc7-a51f02ee07d6', 'Simferopol', 'Europe/Simferopol', 1, NULL, NULL),
('71200562-4a76-4aee-bd1c-6383896f2f69', 'Kinshasa', 'Africa/Kinshasa', 1, NULL, NULL),
('71eadcf9-4eeb-4606-9230-01c2e6cae0af', 'Moscow', 'Europe/Moscow', 1, NULL, NULL),
('72014392-9684-4c2b-b54d-c687f341c99e', 'Santa Isabel', 'America/Santa_Isabel', 1, NULL, NULL),
('720b81c0-00fe-4172-8e42-1ebe7217feb6', 'Cordoba', 'America/Cordoba', 1, NULL, NULL),
('727fe77a-c36f-4c56-9b24-1e71b41c1d38', 'Darwin', 'Australia/Darwin', 1, NULL, NULL),
('72afb30f-d0d9-450c-83ef-eeee2736e145', 'Swift Current', 'America/Swift_Current', 1, NULL, NULL),
('7341bd35-b321-4872-89d6-21c121b6b6ca', 'Chisinau', 'Europe/Chisinau', 1, NULL, NULL),
('736fde30-e0cf-4b3f-8b5d-685b06185858', 'Tongatapu', 'Pacific/Tongatapu', 1, NULL, NULL),
('73715cbc-b6f8-4a6d-b9b4-7cc2944a3be7', 'Belize', 'America/Belize', 1, NULL, NULL),
('740de7cd-7699-4664-a84b-b2015327b3ae', 'El Salvador', 'America/El_Salvador', 1, NULL, NULL),
('74baaeac-bb36-4839-ac35-8aced3ff90d0', 'Mexico City', 'America/Mexico_City', 1, NULL, NULL),
('74d8c4da-c000-4372-a580-e9045dc6ceb8', 'Ndjamena', 'Africa/Ndjamena', 1, NULL, NULL),
('754b1fa4-47ec-4050-a9f6-e3c43a4c4ef1', 'Atka', 'America/Atka', 1, NULL, NULL),
('76516596-c526-4481-bb8b-37c2c298ba57', 'Indiana - Marengo', 'America/Indiana/Marengo', 1, NULL, NULL),
('775c0661-5ec5-41df-9a79-884953633981', 'Vancouver', 'America/Vancouver', 1, NULL, NULL),
('77cd1693-6583-468e-b4dc-d16f37fe1e9d', 'Madeira', 'Atlantic/Madeira', 1, NULL, NULL),
('78a480df-a1ca-4c2e-8115-af6c4d67ddfe', 'Uzhgorod', 'Europe/Uzhgorod', 1, NULL, NULL),
('78c059fa-5f01-4782-82d6-d8fa26fbaa35', 'Monaco', 'Europe/Monaco', 1, NULL, NULL),
('79642169-414a-420e-b811-c2b8eda4099a', 'Yakutat', 'America/Yakutat', 1, NULL, NULL),
('79d79616-4334-45d0-8e5c-eec3fe136ca5', 'Mauritius', 'Indian/Mauritius', 1, NULL, NULL),
('7a389fb6-dcd4-477e-93cf-b6f943de7b87', 'Porto-Novo', 'Africa/Porto-Novo', 1, NULL, NULL),
('7a45e1c1-0b51-42e4-a025-403b53ee3312', 'Chungking', 'Asia/Chungking', 1, NULL, NULL),
('7b530ed5-8c08-440f-ad41-933f9db910c6', 'Yekaterinburg', 'Asia/Yekaterinburg', 1, NULL, NULL),
('7b632dac-7764-44fc-839e-b01ea50cfd21', 'Yakutsk', 'Asia/Yakutsk', 1, NULL, NULL),
('7be3e5a6-9053-43be-8f0b-6999037d0c62', 'Muscat', 'Asia/Muscat', 1, NULL, NULL),
('7dc4c6a4-96a3-4e71-bc63-a421cd50fb56', 'Manila', 'Asia/Manila', 1, NULL, NULL),
('7e6fbf69-f8b4-49b9-9a4a-db00871ab6c0', 'Rothera', 'Antarctica/Rothera', 1, NULL, NULL),
('7e95ad37-3b1a-4b66-a148-2e253b68f781', 'Libreville', 'Africa/Libreville', 1, NULL, NULL),
('7f200ab6-fb76-4eb0-ba0f-88335ab0c6b3', 'Djibouti', 'Africa/Djibouti', 1, NULL, NULL),
('7f46acae-8db1-4cb6-844e-a93e8544cbd7', 'Argentina - La Rioja', 'America/Argentina/La_Rioja', 1, NULL, NULL),
('7f92bd58-09f5-48db-84b2-32cbbafb0772', 'Dawson', 'America/Dawson', 1, NULL, NULL),
('7fb47ad2-74aa-445a-b138-281bd18962a2', 'Toronto', 'America/Toronto', 1, NULL, NULL),
('7fb98038-326d-4677-b510-345b3d7f71e7', 'Samara', 'Europe/Samara', 1, NULL, NULL),
('80d04ac7-0126-42c9-80dc-8d8d1eec8179', 'St Lucia', 'America/St_Lucia', 1, NULL, NULL),
('80e331b4-a23d-4199-b27b-3e2272c10564', 'Bamako', 'Africa/Bamako', 1, NULL, NULL),
('8151e6d3-6b42-4a05-8257-9b675afb99e8', 'Los Angeles (Pacific)', 'America/Los_Angeles', 1, NULL, NULL),
('81ca5ba2-1f5f-4a1f-aaa2-8b571868fa5c', 'Mogadishu', 'Africa/Mogadishu', 1, NULL, NULL),
('82b15435-05a4-431c-9711-b788d1f85a3c', 'Winnipeg', 'America/Winnipeg', 1, NULL, NULL),
('82c5efb9-8ddf-4929-a521-18b3b075ad3b', 'Grenada', 'America/Grenada', 1, NULL, NULL),
('8349d150-6aea-4f54-a382-f0e15320e1ac', 'Saipan', 'Pacific/Saipan', 1, NULL, NULL),
('83ac674d-4ece-4fcf-bda2-ced6702e5888', 'Rio Branco', 'America/Rio_Branco', 1, NULL, NULL),
('83dc8ff5-e0e3-4766-8a3d-54c8880d9eeb', 'Argentina - Rio Gallegos', 'America/Argentina/Rio_Gallegos', 1, NULL, NULL),
('83e43202-1709-49af-b789-94f3ce14705d', 'Zurich', 'Europe/Zurich', 1, NULL, NULL),
('8490dea0-9758-4a13-922f-638c12272ab9', 'Thimbu', 'Asia/Thimbu', 1, NULL, NULL),
('84cf7eca-cfb6-4d91-b246-af1333ef59d7', 'Maceio', 'America/Maceio', 1, NULL, NULL),
('855e9cc9-a295-466d-96f5-2e810a6b6747', 'Makassar', 'Asia/Makassar', 1, NULL, NULL),
('85957722-024d-4864-991a-f0f703c0ec60', 'Marquesas', 'Pacific/Marquesas', 1, NULL, NULL),
('86c007c9-dcc1-4220-bacf-c8deb1a41a1b', 'Lagos', 'Africa/Lagos', 1, NULL, NULL),
('871192e4-5626-4567-8c5c-12d98a248744', 'Goose Bay', 'America/Goose_Bay', 1, NULL, NULL),
('872cdfe3-eb92-448a-8f5c-120a579403c1', 'Bahrain', 'Asia/Bahrain', 1, NULL, NULL),
('8914dd1b-5505-4bec-a099-f4b811a6dfa0', 'Montserrat', 'America/Montserrat', 1, NULL, NULL),
('89b5a3c3-491e-4e33-b364-7793e9aa2c4b', 'Cayenne', 'America/Cayenne', 1, NULL, NULL),
('89d1ca4c-6674-4171-b2af-b19f190fc41d', 'Perth', 'Australia/Perth', 1, NULL, NULL),
('8aade509-a7dd-4e1e-b4a7-cc74c0ac9f60', 'Berlin', 'Europe/Berlin', 1, NULL, NULL),
('8ab58627-1e55-4a3b-af6e-d6aaf85ad118', 'Helsinki', 'Europe/Helsinki', 1, NULL, NULL),
('8aea5a23-3314-4d9b-aa59-ea232abae2db', 'Denver (Mountain)', 'America/Denver', 1, NULL, NULL),
('8b933389-ffd6-435a-bbc5-3042300d9788', 'Monrovia', 'Africa/Monrovia', 1, NULL, NULL),
('8b9679a3-a22e-437a-9133-f3d1d8cbb5e8', 'Argentina - Catamarca', 'America/Argentina/Catamarca', 1, NULL, NULL),
('8bc4e124-9552-402f-b9c9-0e093b675d03', 'Kwajalein', 'Pacific/Kwajalein', 1, NULL, NULL),
('8c4b9800-e712-4b44-ad27-696a32a86548', 'Menominee', 'America/Menominee', 1, NULL, NULL),
('8c98b1ad-24bd-4ef4-9a05-c14757dcf1e2', 'Barbados', 'America/Barbados', 1, NULL, NULL),
('8cdb4563-0bb0-41dd-a67d-052dd1736f43', 'Merida', 'America/Merida', 1, NULL, NULL),
('8d119d38-5ce6-41ad-9a1d-50aba42808c0', 'Aruba', 'America/Aruba', 1, NULL, NULL),
('8dbc8835-217b-4211-85dd-190fb8d145d4', 'Comoro', 'Indian/Comoro', 1, NULL, NULL),
('8edf200e-70c3-4050-b6fd-d418119c5cb3', 'Ulan Bator', 'Asia/Ulan_Bator', 1, NULL, NULL),
('8f7a560f-726e-46d7-b9a5-6cad0a043805', 'Qyzylorda', 'Asia/Qyzylorda', 1, NULL, NULL),
('91618f1b-7226-4e30-8024-743985ddfbfb', 'Enderbury', 'Pacific/Enderbury', 1, NULL, NULL),
('917385d1-bfdd-4567-b67c-64b67a52e230', 'Glace Bay', 'America/Glace_Bay', 1, NULL, NULL),
('91f1e5dc-c80f-4d75-b2ae-2603ae491e91', 'Regina', 'America/Regina', 1, NULL, NULL),
('9339c564-a833-47ff-b9df-4beb2b20a0a6', 'Noumea', 'Pacific/Noumea', 1, NULL, NULL),
('9375f750-e675-4b70-b258-f6cf4049da25', 'Wake', 'Pacific/Wake', 1, NULL, NULL),
('949e37de-8f41-4dc3-ad71-6290beffd02c', 'Dhaka', 'Asia/Dhaka', 1, NULL, NULL),
('95108e58-9a63-4d38-b66f-ff48635be680', 'Podgorica', 'Europe/Podgorica', 1, NULL, NULL),
('9531fecd-da26-4cee-a3c2-09d1bb2b2222', 'Argentina - Buenos Aires', 'America/Argentina/Buenos_Aires', 1, NULL, NULL),
('95ef4add-95df-4da5-9f98-d35041d88ca9', 'Nassau', 'America/Nassau', 1, NULL, NULL),
('97497072-2671-43da-adcb-73f94f5d5e38', 'Iqaluit', 'America/Iqaluit', 1, NULL, NULL),
('97a2cab4-4a92-4bc8-9cf5-9cd20ca8f0a7', 'Belfast', 'Europe/Belfast', 1, NULL, NULL),
('97abe081-9cd0-4eb2-acff-01339ef77bbb', 'Sakhalin', 'Asia/Sakhalin', 1, NULL, NULL),
('984daea3-65dd-4161-97c1-1e45c58fd9b8', 'Inuvik', 'America/Inuvik', 1, NULL, NULL),
('9ad226a9-484d-42e2-83c4-3277c5ba616e', 'Copenhagen', 'Europe/Copenhagen', 1, NULL, NULL),
('9cf3543f-56bf-4a5a-b828-f7691be6a270', 'Lima', 'America/Lima', 1, NULL, NULL),
('9d52c3ad-cc99-44b2-a180-bb8471e4ec07', 'Kosrae', 'Pacific/Kosrae', 1, NULL, NULL),
('9d80e10c-0e5b-4087-8123-684a7913cdd3', 'UTC', 'UTC', 1, NULL, NULL),
('9d819f01-2606-4271-9098-13a1647186dc', 'Tahiti', 'Pacific/Tahiti', 1, NULL, NULL),
('9d9088d9-9a4d-432f-93d2-1ddc64ef5fc3', 'Jamaica', 'America/Jamaica', 1, NULL, NULL),
('9ea1ff1b-ba3a-4295-91bb-67902c878ab4', 'Baghdad', 'Asia/Baghdad', 1, NULL, NULL),
('9eab4103-b6f9-4c21-965d-a846f1cf79c7', 'Thunder Bay', 'America/Thunder_Bay', 1, NULL, NULL),
('9f01ceb8-a3fa-4032-9d6e-dee625d11792', 'Wallis', 'Pacific/Wallis', 1, NULL, NULL),
('9f07c63a-467d-4070-b994-163dde348251', 'Lubumbashi', 'Africa/Lubumbashi', 1, NULL, NULL),
('9fb07501-5fc4-4c40-a4fb-f7cfe9299f1a', 'Seoul', 'Asia/Seoul', 1, NULL, NULL),
('a03aac83-916b-48b2-beeb-fa786585400e', 'Tokyo', 'Asia/Tokyo', 1, NULL, NULL),
('a0608148-69e1-4c00-8f96-95892296e33e', 'Cancun', 'America/Cancun', 1, NULL, NULL),
('a0956b23-cb98-4970-8df4-553ef82a5804', 'Sarajevo', 'Europe/Sarajevo', 1, NULL, NULL),
('a0e9b09b-5f35-4df8-9d6b-37dcdfb2750b', 'Guayaquil', 'America/Guayaquil', 1, NULL, NULL),
('a119f69c-1114-48b1-b1a4-f1a5a223b70f', 'Campo Grande', 'America/Campo_Grande', 1, NULL, NULL),
('a1378623-0d9a-4a37-925e-fed09067ab03', 'Colombo', 'Asia/Colombo', 1, NULL, NULL),
('a2e8f893-30f4-4af2-805c-62b2d155f216', 'Belgrade', 'Europe/Belgrade', 1, NULL, NULL),
('a2f2d7c5-fe93-42d5-a2ce-b7707be37df2', 'Nicosia', 'Europe/Nicosia', 1, NULL, NULL),
('a305ee89-0d6a-402b-8a87-08521b69ec9c', 'Mayotte', 'Indian/Mayotte', 1, NULL, NULL),
('a32f60eb-d4ac-4ddf-a8a5-42391f466c35', 'Taipei', 'Asia/Taipei', 1, NULL, NULL),
('a477d5b3-eb3d-4f67-83ae-05a2c7f9515e', 'Longyearbyen', 'Arctic/Longyearbyen', 1, NULL, NULL),
('a48bb260-0f93-4749-8666-bd2a93caac53', 'Bogota', 'America/Bogota', 1, NULL, NULL),
('a5eb06e9-a8c4-4295-9e4a-bc6b87325b11', 'Samoa', 'Pacific/Samoa', 1, NULL, NULL),
('a62b7788-d605-4776-abf8-094d58baf758', 'Zaporozhye', 'Europe/Zaporozhye', 1, NULL, NULL),
('a674e26c-2e20-4f6c-9b59-9a8245e83c15', 'Warsaw', 'Europe/Warsaw', 1, NULL, NULL),
('a6a65a9f-cc14-4fd5-8a08-642eaeb0d2f5', 'Palau', 'Pacific/Palau', 1, NULL, NULL),
('a775a258-0121-40ab-add8-12c35ff48d3c', 'Gaza', 'Asia/Gaza', 1, NULL, NULL),
('a7a839e0-2565-4ead-bbe2-a41a5003794b', 'Pago Pago', 'Pacific/Pago_Pago', 1, NULL, NULL),
('a8e3c19f-3711-4477-be6f-cb81983be4ca', 'Porto Acre', 'America/Porto_Acre', 1, NULL, NULL),
('a8f6cb74-3c1a-4818-9dd5-fcabbb0084bf', 'Yellowknife', 'America/Yellowknife', 1, NULL, NULL),
('a9199049-85b2-48f4-a52b-79bc2f5ec4b8', 'St Kitts', 'America/St_Kitts', 1, NULL, NULL),
('a95b4b10-77d2-453e-ac5a-5a9aa2a85986', 'Nauru', 'Pacific/Nauru', 1, NULL, NULL),
('aaaba7c4-85a5-4076-9b58-3d33f95ed1a6', 'Amsterdam', 'Europe/Amsterdam', 1, NULL, NULL),
('ac168e4d-d920-4351-ae2c-245a104b66aa', 'Argentina - Tucuman', 'America/Argentina/Tucuman', 1, NULL, NULL),
('ac936457-01a0-4435-ad6c-cf9d8a39ca90', 'Omsk', 'Asia/Omsk', 1, NULL, NULL),
('add2bb2e-05a1-48cf-9773-bc1cbb963291', 'Pangnirtung', 'America/Pangnirtung', 1, NULL, NULL),
('ae7cf86c-8c07-4582-86b3-e27ec22f98bb', 'Eirunepe', 'America/Eirunepe', 1, NULL, NULL),
('af0a6fb2-ac49-4db2-911f-400992502318', 'Davis', 'Antarctica/Davis', 1, NULL, NULL),
('af3f476c-bd1b-4257-b03f-441cdfbf500f', 'Conakry', 'Africa/Conakry', 1, NULL, NULL),
('af6c7073-8b29-4564-acb6-0b0e99eb5bce', 'Tarawa', 'Pacific/Tarawa', 1, NULL, NULL),
('af7c8eeb-0b69-4790-b95b-41788d70bdd8', 'Easter', 'Pacific/Easter', 1, NULL, NULL),
('afb41c54-c225-4d8e-bb9c-52cc79cfc400', 'North', 'Australia/North', 1, NULL, NULL),
('afc40b53-2522-408f-8b64-133dfbec197a', 'Santo Domingo', 'America/Santo_Domingo', 1, NULL, NULL),
('b0584043-df94-453d-bcaa-58ced35e4ceb', 'Cocos', 'Indian/Cocos', 1, NULL, NULL),
('b0d71f99-3efd-4978-8f22-10f40db008de', 'Algiers', 'Africa/Algiers', 1, NULL, NULL),
('b0da4491-254b-49dc-8494-0e6a302b895b', 'Dar es Salaam', 'Africa/Dar_es_Salaam', 1, NULL, NULL),
('b0dec8a2-a599-4896-8de5-05fce0322497', 'Boa Vista', 'America/Boa_Vista', 1, NULL, NULL),
('b27078ad-128a-4276-932a-e35c1bbba128', 'Lindeman', 'Australia/Lindeman', 1, NULL, NULL),
('b451e142-90f4-4df7-a2ff-6b64babc5a99', 'Chihuahua', 'America/Chihuahua', 1, NULL, NULL),
('b4948b30-96f9-464d-9cfa-1f3fa3d7352b', 'New York', 'America/New_York', 1, NULL, NULL),
('b4aa98af-9f79-434e-8c20-b3b6217951af', 'Adelaide', 'Australia/Adelaide', 1, NULL, NULL),
('b5c5fba4-99fa-43e9-a1c8-738ec0fbc5e2', 'Puerto Rico (Atlantic)', 'America/Puerto_Rico', 1, NULL, NULL),
('b701bd00-560a-4611-85c1-f008354bfe1a', 'Oslo', 'Europe/Oslo', 1, NULL, NULL),
('b71d03f7-0564-4159-8d8f-f67e3af8df87', 'Antananarivo', 'Indian/Antananarivo', 1, NULL, NULL),
('b7a332e1-e566-43c8-8672-632798e2f776', 'Asmera', 'Africa/Asmera', 1, NULL, NULL),
('b8bf6bfc-2780-4c4a-afc2-499237aa8975', 'Auckland', 'Pacific/Auckland', 1, NULL, NULL),
('b96009c1-e18b-4872-8730-d136db615f6b', 'Midway', 'Pacific/Midway', 1, NULL, NULL),
('ba0f58c2-8533-4fc5-a67c-e293472de9bf', 'Reunion', 'Indian/Reunion', 1, NULL, NULL),
('bac2a016-c08f-42f1-a3d2-58b78722ce26', 'Urumqi', 'Asia/Urumqi', 1, NULL, NULL),
('bb07e0bc-f996-44b1-96c4-f28717dd1a9d', 'DumontDUrville', 'Antarctica/DumontDUrville', 1, NULL, NULL),
('bbb95771-c115-46ca-9492-70bd8d1274af', 'Indiana - Knox', 'America/Indiana/Knox', 1, NULL, NULL),
('bc9320b7-f50c-4dc2-8581-baa76070c682', 'Chicago', 'America/Chicago', 1, NULL, NULL),
('bce5567a-7eae-4a05-9f55-d5a38e45d835', 'Kuala Lumpur', 'Asia/Kuala_Lumpur', 1, NULL, NULL),
('bd1dd37b-f232-40cc-ba37-02b8f8ddfe85', 'Shiprock', 'America/Shiprock', 1, NULL, NULL),
('bdbd9fda-e6d7-4acb-9ae2-0b68171d15cb', 'Prague', 'Europe/Prague', 1, NULL, NULL),
('bdcf4d97-35c2-46ad-b5ce-c9c0a1677a3f', 'West', 'Australia/West', 1, NULL, NULL),
('bf396ae6-34bc-49bb-9247-f96be8522c0e', 'Vientiane', 'Asia/Vientiane', 1, NULL, NULL),
('bfc716e4-d2b7-4dcc-b9e1-de0cbec93b49', 'Baku', 'Asia/Baku', 1, NULL, NULL),
('c16a0098-3d19-4387-b473-9c50f88cb97d', 'Lisbon', 'Europe/Lisbon', 1, NULL, NULL),
('c2b09703-e425-4e02-9498-06eda36282dc', 'Vienna', 'Europe/Vienna', 1, NULL, NULL),
('c2d1bb54-715a-4f92-9098-3cee57153b74', 'Dubai', 'Asia/Dubai', 1, NULL, NULL),
('c61d40c9-b666-4713-ad6f-9e6bee510057', 'Noronha', 'America/Noronha', 1, NULL, NULL),
('c90f4221-6dbd-4cd5-b23c-8794c92215cf', 'Currie', 'Australia/Currie', 1, NULL, NULL),
('ca08058c-ed11-4940-80a2-bf275020a0d9', 'Edmonton', 'America/Edmonton', 1, NULL, NULL),
('ca8b99aa-5c12-4c70-9609-c58b828ed6fe', 'Dominica', 'America/Dominica', 1, NULL, NULL),
('cbf53b1e-644b-4664-bcee-170a07cbdc4a', 'Monterrey', 'America/Monterrey', 1, NULL, NULL),
('cc61a466-98a0-490b-b40e-a733f85fdb99', 'Kuwait', 'Asia/Kuwait', 1, NULL, NULL),
('cca062df-987a-49c5-9995-fb1bf9e0b78f', 'Galapagos', 'Pacific/Galapagos', 1, NULL, NULL),
('ccb9bb53-b5d4-421b-ac16-da29dc27c2db', 'Araguaina', 'America/Araguaina', 1, NULL, NULL),
('cd160e59-a088-48b2-8eb5-b8ebfd9afd89', 'Tijuana', 'America/Tijuana', 1, NULL, NULL),
('cd36e73d-71f0-4567-9ad1-ce80064594eb', 'Isle of Man', 'Europe/Isle_of_Man', 1, NULL, NULL),
('cde481ee-d0aa-4721-a3d0-00ad9249264e', 'Scoresbysund', 'America/Scoresbysund', 1, NULL, NULL),
('ce4a6fcc-f19d-4361-9469-f3413d246d34', 'Pitcairn', 'Pacific/Pitcairn', 1, NULL, NULL),
('ce902b08-d276-4ec3-bf41-2be0b570451b', 'Lome', 'Africa/Lome', 1, NULL, NULL),
('cfe7c315-3df1-4492-a769-8ead7a80d479', 'Choibalsan', 'Asia/Choibalsan', 1, NULL, NULL),
('cfea4a57-673c-4965-9235-cab06f8c2beb', 'Accra', 'Africa/Accra', 1, NULL, NULL),
('d001d70e-896d-4242-816c-d3745a7eec7d', 'Dakar', 'Africa/Dakar', 1, NULL, NULL),
('d19a6440-1367-414d-a7ea-84cb894d6b39', 'Johannesburg', 'Africa/Johannesburg', 1, NULL, NULL),
('d1b215d6-2c7d-474d-ad7c-e4ca0a2178ef', 'Victoria', 'Australia/Victoria', 1, NULL, NULL),
('d1fef387-11f4-43e3-90e4-4da0361839ff', 'Atikokan', 'America/Atikokan', 1, NULL, NULL),
('d2764430-735d-4ccd-88f6-d1444e037d37', 'Cayman', 'America/Cayman', 1, NULL, NULL),
('d30b485e-d720-42d5-b9a5-234be45be076', 'Yerevan', 'Asia/Yerevan', 1, NULL, NULL),
('d30d3064-4f5e-4c94-9c93-43d0eaa0f036', 'Almaty', 'Asia/Almaty', 1, NULL, NULL),
('d32801ad-14f0-411e-b774-7a7b89b8c71d', 'Brussels', 'Europe/Brussels', 1, NULL, NULL),
('d3e6a103-5378-47eb-906c-4918b889ed92', 'Gambier', 'Pacific/Gambier', 1, NULL, NULL),
('d401d09f-73e7-402f-926e-a80485d56973', 'Curacao', 'America/Curacao', 1, NULL, NULL),
('d40b001d-a1d0-4914-a05d-edcae38e0fbd', 'Maseru', 'Africa/Maseru', 1, NULL, NULL),
('d4694a2b-e9af-44b4-944d-c25d3b76c3c5', 'Guadeloupe', 'America/Guadeloupe', 1, NULL, NULL),
('d4cd265f-6375-4f66-84f0-80989c5d7ad9', 'Fakaofo', 'Pacific/Fakaofo', 1, NULL, NULL),
('d4ebb8bc-b130-47bd-86d3-7d13a43a3538', 'Indiana - Indianapolis', 'America/Indiana/Indianapolis', 1, NULL, NULL),
('d4fadbe2-440f-479b-9f26-5446181988f3', 'Mbabane', 'Africa/Mbabane', 1, NULL, NULL),
('d5e3f152-49e6-44f7-9842-f662016aa68b', 'Chagos', 'Indian/Chagos', 1, NULL, NULL),
('d6ad24da-7e51-474b-afed-5139562061f5', 'Indiana - Tell City', 'America/Indiana/Tell_City', 1, NULL, NULL),
('d72909eb-8386-4da0-9ef2-5ef68f551177', 'Halifax', 'America/Halifax', 1, NULL, NULL),
('d754d781-a419-4adc-9e94-14052a7969ad', 'Bissau', 'Africa/Bissau', 1, NULL, NULL),
('d789833f-a1df-4936-9327-1e7e85be6f19', 'Anchorage (Alaska)', 'America/Anchorage', 1, NULL, NULL),
('d80f91ed-301b-499d-ab88-d6dcec4e9910', 'Yancowinna', 'Australia/Yancowinna', 1, NULL, NULL),
('d8553b13-c6dd-403b-8ce7-5797f4d39d91', 'Fiji', 'Pacific/Fiji', 1, NULL, NULL),
('d86f1714-2753-4a0f-8091-71ee994f4674', 'Port-au-Prince', 'America/Port-au-Prince', 1, NULL, NULL),
('d9160064-c62f-4906-85cb-5eb0dabca860', 'LHI', 'Australia/LHI', 1, NULL, NULL),
('d9945e53-dcd5-4815-92d1-f85924ff71fe', 'Qatar', 'Asia/Qatar', 1, NULL, NULL),
('da833e18-4786-487a-bd72-1f60c93c287b', 'Macao', 'Asia/Macao', 1, NULL, NULL),
('da982759-a6b5-4957-af73-2d269fa9fbbb', 'Bahia', 'America/Bahia', 1, NULL, NULL),
('dac586f6-fada-467f-b6f3-346047221af2', 'Kathmandu', 'Asia/Kathmandu', 1, NULL, NULL),
('dc16753c-d725-478a-abea-e618feef78b0', 'Brazzaville', 'Africa/Brazzaville', 1, NULL, NULL),
('dc67aeeb-5c38-4dae-a618-4d4686287f7c', 'Mariehamn', 'Europe/Mariehamn', 1, NULL, NULL),
('dcb8dc10-f752-41bc-a823-56a3fbc977ab', 'Madrid', 'Europe/Madrid', 1, NULL, NULL),
('dd1691c5-9f14-490f-b688-1988a369eda4', 'Oral', 'Asia/Oral', 1, NULL, NULL),
('dd4ba873-5f4a-45aa-9da8-1e794ac59a90', 'Christmas', 'Indian/Christmas', 1, NULL, NULL),
('de25f2f3-0625-4d6a-ae6f-365b2d58b99e', 'Sao Paulo', 'America/Sao_Paulo', 1, NULL, NULL),
('de6fe182-91a6-4060-a848-64b60e6b41f4', 'Adak', 'America/Adak', 1, NULL, NULL),
('dfc00fc1-a288-4d2b-92e7-8a6023327163', 'Guam', 'Pacific/Guam', 1, NULL, NULL),
('e0acc537-9893-4ff2-87bf-f5dd9ab34b98', 'Paramaribo', 'America/Paramaribo', 1, NULL, NULL),
('e11f8ba0-8bc6-4f2c-8522-e501fb38b964', 'Hong Kong', 'Asia/Hong_Kong', 1, NULL, NULL),
('e1b35916-c537-4eda-86ac-1e7567fd1234', 'Mawson', 'Antarctica/Mawson', 1, NULL, NULL),
('e1d7eb7c-9a2d-4f54-adac-2a86acb6f88a', 'Porto Velho', 'America/Porto_Velho', 1, NULL, NULL),
('e3fc5ad7-84e5-4124-94a3-17da24ce3b68', 'Kuching', 'Asia/Kuching', 1, NULL, NULL),
('e420759f-93da-4e75-913f-d2a4ada2938d', 'Efate', 'Pacific/Efate', 1, NULL, NULL),
('e43463e2-958f-47a6-89ec-4d22db37ca4e', 'Kigali', 'Africa/Kigali', 1, NULL, NULL),
('e46fd24c-9998-4f66-8d26-fda91edf099a', 'Azores', 'Atlantic/Azores', 1, NULL, NULL),
('e4a6e03b-567b-4c8b-89d0-15161d2fcee4', 'Vostok', 'Antarctica/Vostok', 1, NULL, NULL),
('e5402904-5daf-494e-a2fb-f452b82cc7df', 'Kerguelen', 'Indian/Kerguelen', 1, NULL, NULL),
('e5da9c65-d755-4fba-8555-8fcc7be5d98c', 'Sao Tome', 'Africa/Sao_Tome', 1, NULL, NULL),
('e6703008-c6e1-479c-b6cb-1db21349f531', 'Mendoza', 'America/Mendoza', 1, NULL, NULL),
('e6ad148e-4621-4ecf-b288-cb2230cff19f', 'Aqtau', 'Asia/Aqtau', 1, NULL, NULL),
('e8286e70-eac8-487f-be52-677019d25314', 'Argentina - Jujuy', 'America/Argentina/Jujuy', 1, NULL, NULL),
('e879051b-0939-494b-86a7-70c28dc36858', 'Budapest', 'Europe/Budapest', 1, NULL, NULL),
('e8974cae-0fe9-4316-8840-dcc94e6f420a', 'Syowa', 'Antarctica/Syowa', 1, NULL, NULL),
('e9074329-11d9-4fae-b16e-6a247f332803', 'Athens', 'Europe/Athens', 1, NULL, NULL),
('e9ee05fe-c0cc-40d8-b2ac-003126dc321d', 'San Marino', 'Europe/San_Marino', 1, NULL, NULL),
('ea2f286c-8772-41d6-b357-dba697e816d9', 'Vaduz', 'Europe/Vaduz', 1, NULL, NULL),
('ea630a08-0f2b-497b-b249-90ebc832e21d', 'Rangoon', 'Asia/Rangoon', 1, NULL, NULL),
('eaaee6c4-f66e-438d-bcfe-f38a9d7eb09c', 'Argentina - San Juan', 'America/Argentina/San_Juan', 1, NULL, NULL),
('eaba50c6-e33e-4627-bb6d-5879826d1e58', 'Indiana - Winamac', 'America/Indiana/Winamac', 1, NULL, NULL),
('ebab8fd7-5c80-450d-a40a-3c599e4137e2', 'Vladivostok', 'Asia/Vladivostok', 1, NULL, NULL),
('ebb3ce1d-36e9-4af1-814b-fd63a95c5887', 'Maputo', 'Africa/Maputo', 1, NULL, NULL),
('ed28971c-6f51-4f35-9dad-89d08ee08b1e', 'Argentina - Salta', 'America/Argentina/Salta', 1, NULL, NULL),
('efcdc110-733d-4a06-a57c-78fb65510e85', 'St Johns', 'America/St_Johns', 1, NULL, NULL),
('f01edc3c-a16b-417d-a98d-34deb05e8950', 'Bratislava', 'Europe/Bratislava', 1, NULL, NULL),
('f0518a06-f939-4137-a6bc-f2f9f5d40ed6', 'Malta', 'Europe/Malta', 1, NULL, NULL),
('f095a13f-8b6e-4f8c-b104-a5885257d74b', 'Dawson Creek', 'America/Dawson_Creek', 1, NULL, NULL),
('f21feecc-fab4-4363-99dc-e55b0af4b7c6', 'Martinique', 'America/Martinique', 1, NULL, NULL),
('f256d414-aa64-4262-b6aa-6fc590b94a77', 'Saigon', 'Asia/Saigon', 1, NULL, NULL),
('f28df587-2ea3-42f6-9afa-17d133e019e5', 'Casey', 'Antarctica/Casey', 1, NULL, NULL),
('f4ea474f-3965-4b41-a6b1-99f0b1384a11', 'Sofia', 'Europe/Sofia', 1, NULL, NULL),
('f507bfeb-1ba4-4ff3-9d2a-8ed0fe5531d5', 'Queensland', 'Australia/Queensland', 1, NULL, NULL),
('f57fa837-ffba-4d6a-8d58-452853f0b6ba', 'Karachi', 'Asia/Karachi', 1, NULL, NULL),
('f5873d6c-c0bc-4e09-af9f-3f4257549cb0', 'Bujumbura', 'Africa/Bujumbura', 1, NULL, NULL),
('f63f8a12-aa69-42bd-b14d-de9a87fcba58', 'Stanley', 'Atlantic/Stanley', 1, NULL, NULL),
('f67b350c-625f-4855-bffa-b84d5fcdecf1', 'Malabo', 'Africa/Malabo', 1, NULL, NULL),
('f6ad450e-5bdd-48dd-a1b9-331dd3bcd236', 'Beirut', 'Asia/Beirut', 1, NULL, NULL),
('f7092fe8-e86a-4142-8baa-847186831da1', 'Krasnoyarsk', 'Asia/Krasnoyarsk', 1, NULL, NULL),
('f70bed58-1487-40d7-b090-2b4e2e092bdc', 'Cape Verde', 'Atlantic/Cape_Verde', 1, NULL, NULL),
('f7305f0e-178d-48ed-8579-8de10d023350', 'Blantyre', 'Africa/Blantyre', 1, NULL, NULL),
('f736badb-e79c-4ef4-b633-b27bfb69d65f', 'Asmara', 'Africa/Asmara', 1, NULL, NULL),
('f7fc3aac-e549-49c3-a85d-89fec37a9d75', 'St Barthelemy', 'America/St_Barthelemy', 1, NULL, NULL),
('f7fe966a-ee8a-4d91-8483-64c5c6d561ae', 'Mazatlan', 'America/Mazatlan', 1, NULL, NULL),
('f860a7fd-48b4-40c3-a2a1-430a7ed9e67a', 'Moncton', 'America/Moncton', 1, NULL, NULL),
('f8c9bf10-3e59-4a90-81b6-87f5aaaaa3b8', 'Jersey', 'Europe/Jersey', 1, NULL, NULL),
('f9b59e63-3766-4c87-bdd1-4d0081246b5a', 'Rankin Inlet', 'America/Rankin_Inlet', 1, NULL, NULL),
('fa299ed8-4be9-4dc1-bbd3-b50b2482ff4e', 'Ouagadougou', 'Africa/Ouagadougou', 1, NULL, NULL),
('fafd994b-b842-42a2-bbc7-90edba45737d', 'ACT', 'Australia/ACT', 1, NULL, NULL),
('fbcf6c02-94a0-4b5a-a77d-efc63fbec098', 'Tallinn', 'Europe/Tallinn', 1, NULL, NULL),
('fcbb789d-4348-4dd3-8555-1293e9ab50e9', 'North Dakota - Center', 'America/North_Dakota/Center', 1, NULL, NULL),
('feaf37ba-9e07-4285-b11b-d1c2038e6826', 'Dacca', 'Asia/Dacca', 1, NULL, NULL),
('feb5df7e-b495-4eec-9008-accb1b15e03f', 'Marigot', 'America/Marigot', 1, NULL, NULL);

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

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `username` varchar(25) DEFAULT NULL,
  `map_type` varchar(191) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `mobile` varchar(14) NOT NULL,
  `ride_otp` int(11) DEFAULT NULL,
  `gender` varchar(191) DEFAULT NULL,
  `profile_picture` varchar(191) DEFAULT NULL,
  `stripe_customer_id` varchar(191) DEFAULT NULL,
  `is_deleted_at` timestamp NULL DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `email_confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `mobile_confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `email_confirmation_token` varchar(191) DEFAULT NULL,
  `fcm_token` varchar(191) DEFAULT NULL,
  `apn_token` varchar(191) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `referred_by` int(10) UNSIGNED DEFAULT NULL,
  `rating` double(8,2) NOT NULL DEFAULT 0.00,
  `lang` varchar(191) DEFAULT NULL,
  `zone_id` char(36) DEFAULT NULL,
  `current_lat` double(15,8) DEFAULT NULL,
  `current_lng` double(15,8) DEFAULT NULL,
  `rating_total` double(8,2) NOT NULL DEFAULT 0.00,
  `no_of_ratings` int(11) NOT NULL DEFAULT 0,
  `login_by` enum('android','ios') DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `last_known_ip` varchar(45) DEFAULT NULL,
  `last_login_at` timestamp NULL DEFAULT NULL,
  `social_provider` varchar(191) DEFAULT NULL,
  `is_bid_app` tinyint(1) NOT NULL DEFAULT 0,
  `social_nickname` varchar(191) DEFAULT NULL,
  `social_id` varchar(191) DEFAULT NULL,
  `social_token` longtext DEFAULT NULL,
  `social_token_secret` longtext DEFAULT NULL,
  `social_refresh_token` longtext DEFAULT NULL,
  `social_expires_in` varchar(191) DEFAULT NULL,
  `social_avatar` varchar(191) DEFAULT NULL,
  `social_avatar_original` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `authorization_code` varchar(191) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `name`, `company_key`, `username`, `map_type`, `email`, `password`, `mobile`, `ride_otp`, `gender`, `profile_picture`, `stripe_customer_id`, `is_deleted_at`, `country`, `timezone`, `active`, `email_confirmed`, `mobile_confirmed`, `email_confirmation_token`, `fcm_token`, `apn_token`, `refferal_code`, `referred_by`, `rating`, `lang`, `zone_id`, `current_lat`, `current_lng`, `rating_total`, `no_of_ratings`, `login_by`, `remember_token`, `last_known_ip`, `last_login_at`, `social_provider`, `is_bid_app`, `social_nickname`, `social_id`, `social_token`, `social_token_secret`, `social_refresh_token`, `social_expires_in`, `social_avatar`, `social_avatar_original`, `created_at`, `updated_at`, `authorization_code`, `deleted_at`, `service_location_id`) VALUES
(1, 'master', NULL, NULL, NULL, 'mastermcx@miracuves.com', '$2y$10$H5bzLqO57X4WqelvtyTfR.rC2zb45tT4bbfuaiQ1jHsMoO6Irrq.e', '9999999999', NULL, NULL, '5L3l357XHzjssyl708oJVl2zZPyAMrs3kl5wGIFA.jpg', NULL, NULL, NULL, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'RHeAX0RjhO8sp328oKsAVSA9a0KTW0Lda2mTGpBbQO1KZfAl2mFDLfQC75lk', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 07:06:10', '2025-11-06 05:44:41', NULL, NULL, NULL),
(2, 'User', NULL, NULL, NULL, 'user@demo.com', '$2y$10$KczwR3WyI3zKGY5jmmZB9ey/rSdMybdxY6I8Ijf5oF97YRRQwt0J.', '9876543210', 1987, 'male', 'bOODZQBwQOXZfRIfBOz7ZVMeoIxtLkhRrGqoqu0l.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, 'd4x2odwgRRS8X8nZfJK5gm:APA91bEbsQ-y_TgMGjfUiCaCDRSPbhqNfP-tpafbiAIjazTwSLkLDC7_gHeykkAMMiCKLyu0EdMZuDvAgmESX_-PcnOGsIJb1Ha8kXwDYBHtJHfBZoN25Nw', NULL, NULL, NULL, 3.83, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.25545830, 76.76697670, 138.00, 36, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 08:37:21', '2025-11-06 11:01:04', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(3, 'Jhon Doe', NULL, NULL, 'google_map', 'driver@demo.com', '$2y$10$kEfyvy8yKUx6KXfP2akaeOaTVtx0QXgpRQcW5qh6tpfFEynl3d7L6', '9999999999', NULL, 'male', 'DUFJEcdSqDY8qIslF5VkSlFNJRjuVfcS56HZf6dI.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'd0O7pCksR6G0AdCsBo_F3H:APA91bFvork_bhkOiEyiR0KvswBqARMCexOtHw3PgwTrqY3wPOuu8j-DwAPORnrH6eSh-t4HFtxXXNDccfXzJWVbcT4eoYYYCPo8pXd8aax5x8ebkSj9uGQ', NULL, '8bMZEB', NULL, 3.83, NULL, 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.25529880, 76.76684460, 46.00, 12, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:04:59', '2025-11-06 11:01:01', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(4, 'Russel', NULL, NULL, NULL, 'driver1@demo.com', '$2y$10$eBkBMw.IOB985EhN1fpYZus2t8JVvTrnIpvGe.gppbo4HkF3/mRVu', '8989898787', NULL, NULL, 'j36HmzJxUZlZvKgvtNpxbPj3nRgn2tRW9PCjuMmP.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, 'z4v8Y2', NULL, 0.00, NULL, 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 21.23000500, 72.90089670, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:08:02', '2025-10-16 08:47:41', NULL, '2025-10-16 08:47:41', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(5, 'Aman', NULL, NULL, NULL, 'driver2@demo.com', '$2y$10$o2ru26x1oaQdP0WmbuUWS.GLR6/4g/tZXOKMp2dCT3fASPWB34HgG', '8998788767', NULL, NULL, '0ATzSKyOwQUOMbkrAmxppWY6bBeW5WLsaS17XGm3.jpg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'ucfci9', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:11:33', '2025-09-26 10:11:33', NULL, NULL, NULL),
(6, 'Johnson', NULL, NULL, NULL, 'driver3@demo.com', '$2y$10$JVd.yKFh92UxsDTYtgoQ1.5j1Bk7/TU.A6iN6UEgUQe4cNIEGvEfS', '7889098767', NULL, NULL, 'IgIIAail9rKJiETEvrNFdZBy8rqghnj7veQxRyHQ.jpg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, '9RsFba', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:13:30', '2025-09-26 10:13:30', NULL, NULL, NULL),
(7, 'Camila', NULL, NULL, NULL, 'driver4@demo.com', '$2y$10$YglG78ur.epixbIkKkumb.wGOrJ3gh5mrXAkuzFoku/PL7yQJmgMO', '9889988990', NULL, NULL, 'Nb0mbor7FJJkSMYp4rgkcwQeYzVGCVNQwGJjvBEF.jpg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'A6W9jB', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:15:59', '2025-09-26 10:15:59', NULL, NULL, NULL),
(8, 'Amir', NULL, NULL, NULL, 'driver5@demo.com', '$2y$10$QauD2dJFscy6sgCeP5lh/Oe0LLu1S0eOPagp.ik8yu27c.4qRMT8W', '9090909090', NULL, NULL, 'LvbutLiAz3vAh5msn4ImmuSderu42fT9vT0Bi6vE.jpg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'o1HJ4C', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:18:56', '2025-09-26 10:18:56', NULL, NULL, NULL),
(9, 'employee', NULL, NULL, NULL, 'employee@demo.com', '$2y$10$9fN2of5UrcqorTQ2gcCUHuq27dqpxCU/sTDRr/qTsF3Z17bnfUeLK', '1231234567', NULL, NULL, 'ePoF5n8X5cDTjDwRaOViDjrcwhK3hJbRHNkj0iEo.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'r4YMBg7gJsOTnhqOIKNaW83EtazSEMA6wu70uuJYHSWvMDAXwx5kdeQwaiBC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:22:14', '2025-09-29 06:48:55', NULL, NULL, NULL),
(10, 'User1', NULL, NULL, NULL, 'user1@demo.com', '$2y$10$AQzMYT.q.Gfrwi4xcRNW9./hKMf2xvdb3YqfwdWi.YvMm28nmwOMe', '9898989898', NULL, 'male', 'BG0jVyBBz2X6iWH5CZDCvTpCrV6n6G0z8bgugEoB.jpg', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:22:44', '2025-10-16 12:09:10', NULL, NULL, NULL),
(11, 'Aron', NULL, NULL, NULL, 'aron@demo.com', '$2y$10$o5et2p0UB8OsvWlciRa2su6AS4m2rNGKYkLU6DKL1i.yDxeeCiPRa', '123456789', NULL, NULL, 'DnLafJgroMjjdXAJgzSqMpUvxyJsYJ8pvYqv2Jou.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:25:43', '2025-09-26 10:25:43', NULL, NULL, NULL),
(12, 'Aron', NULL, NULL, NULL, 'aron@demo.com', '$2y$10$IhOO0.YXOhBkRHEin3J65eErVy2uhffpg60/wc5j6AGg3W6XlGpYq', '123456789', NULL, NULL, 'oN7mdbymnUdpxxCTjN8Da9wBPp7HxZDzi4xQlpdf.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:26:12', '2025-09-26 10:26:12', NULL, NULL, NULL),
(13, 'Aron', NULL, NULL, NULL, 'aron@demo.com', '$2y$10$nWXd3dsfv5HS9Spriv7WkuLJCa1DAioLuo/2rS3KdsMM1MGi3FnnG', '123456789', NULL, NULL, 'd7qFg3JShh6sq0ZnrOZRkuIrwV73C9Gk146kBvc8.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:26:43', '2025-09-26 10:26:43', NULL, NULL, NULL),
(14, 'Aron', NULL, NULL, NULL, 'aron@demo.com', '$2y$10$Idozyks.wO5gqG5zNTFC0ek4h2sq/iNuzAKaSiHKisuZIP2pCEhqa', '123456789', NULL, NULL, 'VSgjU55gnWFn3QeM1SJqtpCvAMQcWKifMi8PpIFf.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:26:51', '2025-09-26 10:26:51', NULL, NULL, NULL),
(15, 'Aron', NULL, NULL, NULL, 'aron@demo.com', '$2y$10$mP7t/JlINDrTmg5UfPJ3UefBvX4MuVE2d.J2.Jkhr5vzWyttbsb5a', '123456789', NULL, NULL, 'hi54w0vqIzM3UbCCe2JmaZ62oxmy1GXO5gs3Huow.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:27:53', '2025-09-26 10:27:53', NULL, NULL, NULL),
(16, 'dispatcher', NULL, NULL, NULL, 'dispatcher@demo.com', '$2y$10$ZkYI4znid0GxbCDfW4S3tem44j/N7vVo.7C1zLBuRV0TZZtcveybK', '1234567890', NULL, NULL, 'IjFNkrARBc8F2h5RUmc3LkaYKjgBVAtRUKUgEGAV.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'ej2dBDMhdy1FAPyx6ZQZbiVriKHYvizXJncnXWbLWiWIVb7rq8lbCCVhra04', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:28:18', '2025-10-17 11:04:24', NULL, NULL, NULL),
(17, 'Owner', NULL, NULL, NULL, 'owner@demo.com', '$2y$10$i0UIP3VusBmUEPiuRufr0uf1xGXMNmstn0MS27R7ONjf9ameOXrTq', '123456789', NULL, NULL, NULL, NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'C34tR2jyznEB0gQghYSV7ZIV52IZLC9pO04t47M6XDsVpMvzEm7f8HARJPKs', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:30:54', '2025-09-29 06:55:51', NULL, NULL, NULL),
(18, 'Martin', NULL, NULL, NULL, 'driver6@demo.com', '$2y$10$ngRRTNM2WSdVzP6tB.wFBe2xtwBm6UpJiVJqM34Cz138iCURlplEK', '9876543219', NULL, NULL, 'nI3BhghZv7435bQqk6OLwKEbrBfVOwL7XvMOoJZz.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'cgBiShZJSTOIXENqpUDERz:APA91bFDpHU-jQKXZ9MGeaskfddPdcqYnKFqLxRg_mmuZfztIcgNIws6DfY2BNHmQfRzjfejF05HFvb4emHFblS1jUBvgeXPZYrNGg9UMygjS3YfKnPqkm8', NULL, 'BuQWOD', NULL, 0.00, NULL, 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.25526700, 76.76701530, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:32:49', '2025-10-13 04:42:18', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(19, 'fleetdriver', NULL, NULL, NULL, 'fleerdriver@demo.com', '$2y$10$SBUcwLsGbSFynLUUg4OfreEBTlut/a2HcDnC70B10Yr3E06EzkiF.', '123456789', NULL, 'male', 'SAFpQst7FmSi0agDhZbat2nJnYuiZmllTFyzRvGm.png', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, 'qnRNzW', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:37:33', '2025-09-26 10:37:33', NULL, NULL, NULL),
(20, 'shubhkar', NULL, NULL, NULL, 'testing@demo.com', '$2y$10$orQ3suvYEluoltk1MDXcCeY0CzKcr8JphXwiCXLmuTltEOOL98g0i', '9876543218', 1241, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'fiwDAIqdTyCot5I3rTTzqA:APA91bEHUZjV6AfKOmaiEXhxk-YO1XzSZBjVqYTYNYK5IR-pNjn5vrF2HkFQ5HtwWkaBVR3bdXQ3IXdgQezl_hmyDUO6I0xuXEdWdlQx6xnwZ9fQCO6emvA', NULL, 'CgvzEx', NULL, 4.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.15819590, 73.11558580, 4.00, 1, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:50:56', '2025-11-06 06:18:14', NULL, '2025-11-06 06:18:14', 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(21, 'User2', NULL, NULL, NULL, 'user2@demo.com', '$2y$10$ayeGIateIGBi3JOywiAVQexcc8pcq1h09c4Mlisa..Atbv9DCAVYy', '9696969696', NULL, 'male', 'kwl4tDkBPJoIpSR16I3HWIQkgH8PeBjmnAbkAtq3.jpg', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-26 10:50:56', '2025-09-26 10:50:56', NULL, NULL, NULL),
(22, 'Dispatcher 1', NULL, NULL, NULL, 'dispatcher1@demo.com', '$2y$10$Bg/HUJUSxGFGFQybyggTGeD7sjx0Cmxw28mZUuQU9eFMpAXxarJSC', '9876543217', NULL, NULL, 'MYVUqRKeSMCmuOELhDGkdKCVAfXo7F16fOsikQkT.jpg', NULL, NULL, 237, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'gxlMAXmFjagDCrVyySFWUMLfsitO1i8NTbiGppZQFGI9L16dowf5m2DAD7Ki', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-29 06:31:30', '2025-09-29 06:31:30', NULL, NULL, NULL),
(23, 'Employee 1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$BA0qKW3Fbe9meNhn/j8afub0yIJn5Y3LYc85giKcUeUGyftkNJxd2', '9876543216', NULL, NULL, 'HCz7M6rwuljWZ9tbn4QPiVsrAuP80VeP3F9FYd7e.jpg', NULL, NULL, 37, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-29 06:37:12', '2025-09-29 06:37:12', NULL, NULL, NULL),
(24, 'Employee 1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$guX9jE/dVeAcGGBJ4DZdY.y1wOzJ/bjzM34d.qgTBalUCnstzn/VS', '9876543210', NULL, NULL, '2WkfOqCCEwkx5qyD6xAtYv0nNcwhzH0iMPnxMUcg.jpg', NULL, NULL, 37, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-29 06:38:37', '2025-09-29 06:38:37', NULL, NULL, NULL),
(25, 'Employee 1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$3uF9IXS8bvZUN/ptMMsbwexf73Im7cYGDgfOwX4Sn.A501PK6ZoAe', '8766789098', NULL, NULL, 'lDeXFBSwnlzgJgq1LFS3zS86z1SVnwxuYxotuOEp.jpg', NULL, NULL, 37, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-29 06:39:02', '2025-09-29 06:40:05', NULL, '2025-09-29 06:40:05', NULL),
(26, 'Driver', NULL, NULL, 'google_map', NULL, '$2y$10$LT05IWVMnIMEaw/UzLLACufMYpeXPbQUhFokcnCIGrvSmqTJGeXa2', '8780161809', NULL, 'male', 'QGo8Tef2SqXoASbAM2GYKr3od8ilwXszLIljD95e.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'ecPvDjLVQ1GsWI0kIq6Cpo:APA91bHkbRrJOgGebBzi31P7gpjRymkOGRczosoGmdNZBo5-4YsuNxYZZi3-XQSEBrlfhj8LViw8QW5NgI6OXJC2BJRJfcVE59qToT-eVhrwMp3lGvjob-M', NULL, '1rALaB', NULL, 4.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 20.80813270, 75.76951740, 100.00, 25, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-06 09:42:37', '2025-11-06 10:48:09', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(27, 'user', NULL, NULL, NULL, NULL, '$2y$10$zTXJEqmd3wEk913IDF4xpu0sQP/j7J9of.W0pQMKAIUJkKaboqheq', '8780152048', 7280, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, 'zXufXL', NULL, 0.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.15822170, 73.11572170, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-08 11:31:43', '2025-10-08 11:32:21', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(28, 'driver', NULL, NULL, NULL, 'driver987@demo.com', '$2y$10$O8bV2/WIe8FifKOczBMKmuaOlzlODiXfksiUEXnPvUUrnP7ZzxQli', '8780161807', 4424, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, 'qOXtAV', NULL, 0.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 21.23000500, 72.90089670, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 10:58:39', '2025-10-13 11:02:23', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(29, 'driver', NULL, NULL, NULL, 'driver345@demo.com', '$2y$10$KyO1XOhJ61Kf/zAjL50VY.Ji9SgVMMs912uasTNLp5yv.luJJgH/G', '65789054321', 5241, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'dFZezacQRDKFwAbhnUqHmC:APA91bFS1mgpcM6PuHj6ZuoIt0OtwDe2mBOs0HCk5Sq2OnQChC4nawMH9L7NynIh6O--DCFVNu8EDqly1YdboN8kuPNd-BGgUGBVWVLRK8rR3ahkd1-vHYQ', NULL, 'q6cQpz', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 11:13:29', '2025-10-13 11:13:29', NULL, NULL, NULL),
(30, 'fbfb', NULL, NULL, NULL, 'gdfhdfhd@gmail.com', '$2y$10$Fu0n4MglI1ptr9AOBjGp9OspQKwQwckN7jgQHOX1xCt4BnqZ.MdVS', '7654321890', NULL, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'dbM0MI7tSd-hsjOay3Wz36:APA91bEBXdfYfQWmS8O2eaQ9VGm81xXceMfX0lSecoyi9np-VELH91qGYcSy4W0pukQHbaH3DVTJhuCulaq6ROXfTXWU4CHXVRlt-KBIA6HrVTxqDmeTgck', NULL, 'xPToqw', NULL, 0.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 21.23000500, 72.90089670, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-13 12:04:36', '2025-10-13 12:04:43', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(31, 'test', NULL, NULL, NULL, 'test@demo1.com', '$2y$10$XjRph15n2cafDoMZGJ55fueKwMbtpWX8m0stBSlhrhoHopB9QOP4e', '1234554321', NULL, NULL, 'nSH2HZv7zc2kkaNaBNEneIRXG8A1rFS1OLID3cVr.jpg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'ebnjSc', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-16 10:24:36', '2025-10-16 10:24:36', NULL, NULL, NULL),
(32, 'teste', NULL, NULL, NULL, 'test@jahds.com', '$2y$10$K8TDE0sIHWL4DPO.zqF0b.Nkyj2ybAM3aPxnsqZIIV7qOljBXOGiy', '1234543215', NULL, NULL, 'ry1rlKZbBKAQiiKdsa8HJr5ygPg3ztkLDxn7g7gK.jpeg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'lWMyP0', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:24:17', '2025-10-17 05:24:17', NULL, NULL, NULL),
(33, 'testet', NULL, NULL, NULL, 'test@jshdfjdomo.com', '$2y$10$SvACYAPOhE8C5oOgpTBTtexHl3Jh4gDnguhsvHMCdED75UrfiI66u', '123454321', NULL, NULL, 'Ez9S2vNTrvFiHQ6NypEIMoPSU2Y8hQNNOOUwSDWa.jpeg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'lzNaV8', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:25:33', '2025-11-06 07:35:29', NULL, '2025-11-06 07:35:29', NULL),
(34, 'test', NULL, NULL, NULL, 'test@sfiod.com', '$2y$10$57tGgjozkXUExH2TP3On.uiI/h5BLlkkmB9LqolB5pe58DlA0ubjm', '1234554320', NULL, NULL, 'hQpwtc2K8bm2LyTR9JcyQqf3u218slnEfb6Pu2oP.jpeg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'WtJbWC', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:26:34', '2025-10-17 05:26:34', NULL, NULL, NULL),
(35, 'test', NULL, NULL, NULL, 'test@ushdfdc.om', '$2y$10$E2wuLVmT4hsRD0aE/N9NQeccpZz3wjouyjkMYW2kArAPsMhQ9MUcS', '1234567897', NULL, NULL, '69wbLwQq7tvReHfybAtL7udByJppy8SugBOTgR0N.jpeg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'jsjLti', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:27:24', '2025-10-17 05:27:24', NULL, NULL, NULL),
(36, 'fdfdsfd', NULL, NULL, NULL, 'fefse@jdsfk.omc', '$2y$10$XDzANQK.DpJsKRt3K/wiH.7uGFfyk5s6wlgvT5eCoEZdWAR8UTOzS', '1234554312', NULL, NULL, 'SZMyFUbaLQTu9H6puuIoszn8IRSMWyWrFU9ElIc1.jpeg', NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'f33iAT', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:28:08', '2025-11-06 07:35:21', NULL, '2025-11-06 07:35:21', NULL),
(37, 'employee1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$/Z3BOA/UwOL97tQ1m3LwIuEyOJ5Dejvkn5yWoU8sYMg3zj814zuN.', '1234567890', NULL, NULL, 'MqtCYPUb3JGfD2NfB1xpzg6T4rUgQWEq5EpHc425.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:55:23', '2025-10-17 05:55:23', NULL, NULL, NULL),
(38, 'employee1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$ljVJId9SWZRIx2vVHPq/tOM36bu/R04fR3NxV7LQFK/2iME5PcoTS', '1234567890', NULL, NULL, 'qgtxvgcYyrLF7dfEz9ksFGREwi6UkmJYXZYK7FrB.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:55:42', '2025-10-17 05:55:42', NULL, NULL, NULL),
(39, 'employee1', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$uNUF6bPMmH8W7YSM7/djA.u.BmW5PUQloUJ8vtM09D0Sr27pYtoNa', '1234567890', NULL, NULL, 'HkC5wBrtMscN31dQt8PZbYmj5KBMMlDgjx35ZOuw.jpg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:55:59', '2025-10-17 05:55:59', NULL, NULL, NULL),
(40, 'test', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$SSYICEhrbDXHFw6Ioa2nu.spLwtyb0xzRZ4Z.XBkIGonW0LAmJ0I2', '9876543210', NULL, NULL, 'ziQuACjok7mRz1x7ZXrJtBFlgvemwfbpznT2CLgE.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:57:09', '2025-10-17 05:57:09', NULL, NULL, NULL),
(41, 'test', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$nhJ3J/LylHrN9crhxCJN4.PsuQDUdR.M1oQWH.hYqBGuGhyPLP1Ga', '9876543210', NULL, NULL, 'pWiQMxF7gO2rPebIEDjnxzhweuadIAX3vSAwSbVE.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:57:52', '2025-10-17 05:57:52', NULL, NULL, NULL),
(42, 'test', NULL, NULL, NULL, 'employee1@demo.com', '$2y$10$V2/VQkC8QCwB134BAbJP/eNXppGwjUctxIKaUkhgZ3Dy1HVNwhT1e', '9898989898', NULL, NULL, 'Wr56yyaPvWDJVi6ui2nf4EDQExlRb2qocfr1IOuA.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 05:58:15', '2025-10-17 05:58:15', NULL, NULL, NULL),
(43, 'Test1', NULL, NULL, NULL, 'test3231@fkdsjfjskd.com', '$2y$10$Seo1c.pkCAtFc4Cxu03IjedAvey.7qCM5eFFM8c6SSRrQbXCc6jH.', '1234554321', NULL, NULL, NULL, NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 06:22:18', '2025-10-17 06:22:18', NULL, NULL, NULL),
(44, NULL, NULL, NULL, NULL, NULL, NULL, '9714128363', NULL, NULL, NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'PBYRxc', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 06:40:03', '2025-10-17 06:40:03', NULL, NULL, NULL),
(45, 'Aron', NULL, NULL, NULL, 'Aron@demo.com', '$2y$10$b1ruIKMpWkZGs1PAEsnGzeAXZc6Ncx1aJBSF5WJb/yW0/yCkcliLi', '8945612325', NULL, NULL, NULL, NULL, NULL, 100, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 09:44:43', '2025-10-17 10:36:22', NULL, '2025-10-17 10:36:22', NULL),
(46, 'Arjun', NULL, NULL, NULL, 'Arjun@demo.com', '$2y$10$KhIYEX8Fd0IDFU535HNwg.8uRLdtwTCZLwhfexyJnPQIbaXKZzwxm', '4561237892', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:03:02', '2025-10-17 10:36:16', NULL, '2025-10-17 10:36:16', NULL),
(47, 'test', NULL, NULL, NULL, 'driver1@demo.com', '$2y$10$DU0Aisfex/ArheNXojIefeJznwHIaKzu1uJfJ0FLyZXt0YUOnVo/y', '1234567894', NULL, 'male', '0KBOqbuK8mVYHEqBtAlJH3u1KmnDFzBahiRWB5q3.webp', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, 'cCXc3o80RAepu0_sF_Ir90:APA91bG8jt_Z-yCT_jQnE0mBlStGO2rcPpbn5SDdpQJOF_Z_VI5-1fgW1o9OY3F2ildF_0I0mCpp2fxBQixo5Itxdii3ZTI5d4uvx8jxxGeZkoprWlNiI7Y', NULL, 'k2F6JE', NULL, 0.00, NULL, 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 20.80957000, 75.77873500, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:19:11', '2025-11-06 07:06:45', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(48, 'Harmony Guard Pharmacy', NULL, NULL, NULL, 'Arun@demo.com', '$2y$10$9saD6XkGtWkUefrNxWmpfOiiFO5ihXFaOWM6zHs.3sPx2KYspQO3O', '7894561230', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:37:28', '2025-11-06 07:24:25', NULL, '2025-11-06 07:24:25', NULL),
(49, 'test', NULL, NULL, NULL, 'driver11@demo.com', '$2y$10$3KAs7cAYCVjBlGggXbYbOeRavE..lrcZ.V3jdwIAIhWSNWhOXw/qa', '1234567896', NULL, 'male', 'pokJfBW9Aqt6SsyM4mzLMjdaACoyX2KSZ0pYYcwW.jpg', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, 'AYgJBm', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:38:04', '2025-10-17 10:38:04', NULL, NULL, NULL),
(50, 'Aron', NULL, NULL, NULL, 'ari@demo.com', '$2y$10$tBVffK4EKUU80WNbPnzeAuh1hffoDJj31ooDLQlXtuUfSE0ybw3wO', '789456130', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:47:04', '2025-11-06 07:24:30', NULL, '2025-11-06 07:24:30', NULL),
(51, 'Aron', NULL, NULL, NULL, 'ari@demo.com', '$2y$10$MBV1umWX3bFOWbN3LOBcQOx0RFHJXNu2GNcMhyzVJ3P9tykwsdaay', '789456130', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:47:08', '2025-10-17 10:47:08', NULL, NULL, NULL),
(52, 'Aron', NULL, NULL, NULL, 'ari@demo.com', '$2y$10$AptO8Aa7piVVnGQeBsvy8u8e4n2BYCch7sIzrJq/VncaYISVftUl2', '789456130', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:47:10', '2025-10-17 10:47:10', NULL, NULL, NULL),
(53, 'Aron', NULL, NULL, NULL, 'Arunn@demo.com', '$2y$10$fK10d3CywCB1qbe2JNCMcONNo2tfYHqs4fjiWMj8TO/QWN1xrD3O6', '7894561230', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:48:21', '2025-10-17 10:48:21', NULL, NULL, NULL),
(54, 'Arun', NULL, NULL, NULL, 'Arunn@demo.com', '$2y$10$GLmFbL5pvVIQ8zt0aeJXIuhGgICKNyPLGw3TPLx.o1dmXi.v748Hq', '7894561230', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:48:40', '2025-10-17 10:48:40', NULL, NULL, NULL),
(55, 'Arun', NULL, NULL, NULL, 'Arunn@demo.com', '$2y$10$vzr3QWvjgNOdvOGefpDJyugAZLr430G1mvJPz6QrhsskiMmHQ96Me', '7894561230', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:48:51', '2025-10-17 10:48:51', NULL, NULL, NULL),
(56, 'Arun', NULL, NULL, NULL, 'Arunn@demo.com', '$2y$10$AHMjbLgTzOpbwuKhplMf1eI8K3ZzTF4EYR5gvujY.en1R94exIoE2', '7894561235', NULL, NULL, NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 10:49:57', '2025-11-06 07:24:37', NULL, '2025-11-06 07:24:37', NULL),
(57, 'Aron', NULL, NULL, NULL, 'Aron@demo.com', '$2y$10$t1nx29d59wxXOrep4pVo4.6EjKCxIwkWyZu84KEnwze5KZ1kodSOC', '7412589636', NULL, NULL, NULL, NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 11:11:45', '2025-10-17 11:23:26', NULL, '2025-10-17 11:23:26', NULL),
(58, 'test', NULL, NULL, NULL, 'driver22@demo.com', '$2y$10$H8h0jM0atfw6anK4vSI1t.UkWi7Q8S8o4k8sAhRCEam1aoHOf1j.6', '4556785687', NULL, 'male', 'BMTWSmtKOvtsQ8boL1v7KcT28o8ZMHJxV4TnJnGN.webp', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, 'mYCbSK', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 12:05:44', '2025-10-17 12:05:44', NULL, NULL, NULL),
(59, 'test', NULL, NULL, NULL, 'driver13@demo.com', '$2y$10$YHiHFA27h3hjOVRd90/7UusCEG7ZWDmUkNkQdok4gc0jaDckHMRlS', '3434343434', NULL, 'male', 'RggmuBc1GhXVuB8BAKpZnj6Bma6KaHpy5KtoqmaL.webp', NULL, NULL, 102, NULL, 1, 0, 0, NULL, NULL, NULL, 'hjLGEL', NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-10-17 12:11:54', '2025-10-17 12:11:54', NULL, NULL, NULL),
(60, 'james taylor', NULL, NULL, NULL, NULL, '$2y$10$vS9gdW1BG6nVCVRaY.Vexe98GqTTa1nwx4uIOxxb09FbjoUSDwIYa', '7387115672', 1123, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, 'reULqh', NULL, 0.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 19.25492900, 76.76737590, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:23:50', '2025-11-05 11:45:09', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(61, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$YtPUH678g59ryk0Rci53Xu36pjsm5h1l/nubvDSbtxVIYQqkkMPv.', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, '6xV3LF', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:27:23', '2025-11-06 08:22:01', NULL, '2025-11-06 08:22:01', NULL),
(62, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$Uo7LhO3kWvfz1qrVMBw2pOCjM2swYM1UfrYC/grwgm.VeJdHJHR/a', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, '8Y6sPy', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:27:42', '2025-11-06 08:22:14', NULL, '2025-11-06 08:22:14', NULL),
(63, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$hf45aJSrOUX/kwgzR4hRROXPtY62VVjGvhE4aL131SpAgGQUmkfNi', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, 'nrvQOx', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:28:14', '2025-11-06 08:22:27', NULL, '2025-11-06 08:22:27', NULL),
(64, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$H2XrlsmF17Ak/NA9WODsV.aX7BgmQm2sEpeEuFmOQdLIbb4f2nUQK', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, 'i3dcOW', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:28:45', '2025-11-06 08:22:36', NULL, '2025-11-06 08:22:36', NULL),
(65, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$HTI6QXJinVusEAZ64HI6CuTP3uQcF0/xcN2BRfsddIw4GbL6I9jRO', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, 'TyNtr2', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:28:47', '2025-11-06 08:22:45', NULL, '2025-11-06 08:22:45', NULL),
(66, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$fBXRano1ywdhQ9w36y2nQO1.GkGBIV.mbI8ORiJk6eK48FatpYQ4G', '9874561230', NULL, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'eJ7fLBTbSAec8SnB5G8JdY:APA91bG8I171Z5-j7sJv-GvFI6DanNwwNH-6MCg0_lmFSaj-klB88kjrDvvbFaQqzZ9sf3ywLQwNfq7MrF_jqIuc5zlp4BZ0JxvSdmyWZyRx6hq7tGlQpok', NULL, 'fvmcqQ', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:29:18', '2025-11-06 08:22:56', NULL, '2025-11-06 08:22:56', NULL),
(67, 'Robert', NULL, NULL, NULL, NULL, '$2y$10$8SRovMLi82YBgpxSpbKZbumBxIrlpEjY7RCeXrVJjiFN8znU8U3HW', '7894561230', NULL, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, 'eBM6cpbfTDCEWRRSBsNnUy:APA91bFUBfWpG1ypEH6eu50SwPlJ_npueLJwSZ0UCRk7LnU5T90RAbCf5xeTH4ggiC9w8IU0HH5cKtsCXECuYU8EhbztdGIx_1JuTCrmF8EYIhDdcgc55WM', NULL, 'ajIx9e', NULL, 0.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 20.80957000, 75.77873500, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-05 10:29:39', '2025-11-06 06:57:47', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(68, 'admin', NULL, NULL, NULL, 'admin@demo.com', '$2y$10$.t0g7ZYqfGtg/d9Pla.pLeg4zPgxxPFNJLyeinfpHOD8hQ0NPbJwG', '9876543210', NULL, NULL, 'CkvV5SwrzUUkk3fzFlqtgOZZ6ZI2jvJufiUTxQgI.jpeg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, 'YpJLM6XNhjiBDBS7LgmQFiWbKPyuU2UB4MaAZufPpoNF5J7cQ4llRUjtCMf8', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 05:48:46', '2025-11-06 06:43:02', NULL, NULL, NULL),
(69, 'admin', NULL, NULL, NULL, 'admin@demo.com', '$2y$10$lGbtUhR0yZNaSBMSrN4pKORIGmZSpM/F58GFiInH40k4/xsDUE9CK', '9876543210', NULL, NULL, 'be3e0sK0kOR5aHiRK0IRp8E8b0Gs4IDkp8R5ocCN.jpeg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 05:49:10', '2025-11-06 05:49:10', NULL, NULL, NULL),
(70, 'admin', NULL, NULL, NULL, 'admin@demo.com', '$2y$10$zNbddmA7ltbLI2z4hsA5r.CediLTLdiTWZGPiXtUR9bq7fXf1224u', '9876543210', NULL, NULL, 'kyI5sSQZj2NENlmaNGklrkwstCTGae4AruDxdXcq.jpeg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 05:49:23', '2025-11-06 05:49:23', NULL, NULL, NULL),
(71, 'admin', NULL, NULL, NULL, 'admin@demo.com', '$2y$10$CYxaRR0bvBI3eK0aiAIgp.GpCjj8tbcgqLLYmgSkihrcGyorthsU2', '9876543219', NULL, NULL, 'E4agNDg7uvgHrx21Nb7zRKkH09Ho0TPU20r0v03x.jpeg', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 05:49:51', '2025-11-06 07:24:50', NULL, '2025-11-06 07:24:50', NULL),
(72, 'User', NULL, NULL, NULL, NULL, '$2y$10$X771e6FXfGYJyIZX7iUy7uNs3CJw4vEPGy3q4Hc4ze26kohthcRT6', '1234567890', 1154, 'male', NULL, NULL, NULL, 102, 'America/Boise', 1, 0, 1, NULL, NULL, NULL, '1CMA1t', NULL, 4.00, 'en', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 21.23000500, 72.90089670, 8.00, 2, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 06:19:09', '2025-11-06 09:38:28', NULL, NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f'),
(73, 'Admin Demo', NULL, NULL, NULL, 'admin@demo.com', '$2y$10$8QZNIdL/Ql1dfUTLVwx5PunBj5xQczolhD.yEfuv5Dt2U0KyWEyky', '9876345654', NULL, NULL, '1PhQEfOT68acM8D0kAv0LfxdK7xtyp8DFn2P8LiY.png', NULL, NULL, 102, 'America/Boise', 1, 0, 0, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, NULL, NULL, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 07:25:34', '2025-11-06 07:25:34', NULL, NULL, NULL),
(74, 'John Doe', NULL, NULL, NULL, 'jonh@demo.com', '$2y$10$bjd4EO5Txc9dGkcQuhYgTeLHBc06HFZZJpLb9cNIuxv6Xg/fWfIQC', '1236504789', 3089, 'male', NULL, NULL, NULL, 102, NULL, 1, 0, 1, NULL, 'fA1LDqmHTCW5ohKsz2pYbr:APA91bFyM8EmcNCxbrWGr6z15niKzJ-HnNGzLl-sBzsfmh7BLOlDG6t3lxLd6Q3SWszXPAkZVGCkxix8UmK1sGWeUYC_YHH12w86IfW2qteJlFgmmuzyF5I', NULL, 'wmmAus', NULL, 0.00, 'en', NULL, NULL, NULL, 0.00, 0, 'android', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-11-06 10:56:15', '2025-11-06 10:56:15', NULL, NULL, NULL);

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

--
-- Table structure for table `users_bank_info`
--

CREATE TABLE `users_bank_info` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `account_name` varchar(191) DEFAULT NULL,
  `account_no` varchar(191) DEFAULT NULL,
  `bank_code` varchar(191) DEFAULT NULL,
  `bank_name` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `users_imported`
--

CREATE TABLE `users_imported` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `valid_file` tinyint(1) NOT NULL DEFAULT 0,
  `invalid_file` tinyint(1) NOT NULL DEFAULT 0,
  `invalid_file_path` varchar(191) DEFAULT NULL,
  `status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `user_details`
--

CREATE TABLE `user_details` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `mobile` varchar(191) NOT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `country_code` varchar(191) DEFAULT NULL,
  `gender` enum('male','fe-male','others') NOT NULL,
  `profile` varchar(191) DEFAULT NULL,
  `token` varchar(191) DEFAULT NULL,
  `token_expiry` timestamp NULL DEFAULT NULL,
  `device_token` varchar(191) DEFAULT NULL,
  `login_by` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `user_driver_notifications`
--

CREATE TABLE `user_driver_notifications` (
  `id` char(36) NOT NULL,
  `notify_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `read_at` timestamp NULL DEFAULT NULL,
  `push_enum` varchar(191) DEFAULT NULL,
  `title` varchar(191) DEFAULT NULL,
  `body` longtext DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `chat_id` varchar(191) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `user_wallet`
--

CREATE TABLE `user_wallet` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_wallet`
--

INSERT INTO `user_wallet` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`) VALUES
('03057ee2-0567-48ee-b63a-53060de03106', 29, 0.00, 0.00, 0.00, '2025-10-13 11:13:29', '2025-10-13 11:13:29'),
('0b31f872-9931-4763-87be-3ff006ab0578', 2, 0.00, 0.00, 0.00, '2025-09-26 08:37:21', '2025-09-26 08:37:21'),
('2195aa7f-5914-4445-9957-2e4143a24a1c', 44, 0.00, 0.00, 0.00, '2025-10-17 06:40:03', '2025-10-17 06:40:03'),
('2ab5ff8b-2b61-4b95-b902-6076736a5349', 72, 0.00, 0.00, 0.00, '2025-11-06 06:19:09', '2025-11-06 06:19:09'),
('3001bd53-be04-4678-bd4d-8dd24027bbe1', 10, 0.00, 0.00, 0.00, '2025-09-26 10:22:44', '2025-09-26 10:22:44'),
('4721d1d8-9296-40ec-9112-6d55d89656c0', 60, 0.00, 0.00, 0.00, '2025-11-05 10:23:50', '2025-11-05 10:23:50'),
('59bc8bb5-7736-43db-b9a7-c0570da3f1bf', 21, 0.00, 0.00, 0.00, '2025-09-26 10:50:56', '2025-09-26 10:50:56'),
('77a3a834-7aa3-444c-a469-066648567994', 20, 0.00, 0.00, 0.00, '2025-09-26 10:50:56', '2025-09-26 10:50:56'),
('b81c1015-4b7b-40a0-a052-5e594afe3004', 27, 0.00, 0.00, 0.00, '2025-10-08 11:31:43', '2025-10-08 11:31:43'),
('d2f69094-e521-401c-bfaf-eb7ec34e1137', 28, 0.00, 0.00, 0.00, '2025-10-13 10:58:39', '2025-10-13 10:58:39'),
('eb5fc82d-b7b3-44aa-9880-f846292b34d3', 74, 0.00, 0.00, 0.00, '2025-11-06 10:56:15', '2025-11-06 10:56:15');

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

--
-- Table structure for table `user_wallet_history`
--

CREATE TABLE `user_wallet_history` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `vehicle_types`
--

CREATE TABLE `vehicle_types` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `icon_types_for` varchar(191) NOT NULL,
  `trip_dispatch_type` enum('bidding','normal','both') DEFAULT 'both',
  `capacity` int(11) NOT NULL DEFAULT 0,
  `size` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `short_description` text DEFAULT NULL,
  `supported_vehicles` text DEFAULT NULL,
  `is_accept_share_ride` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_taxi` enum('taxi','delivery','both') DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `vehicle_types`
--

INSERT INTO `vehicle_types` (`id`, `company_key`, `name`, `translation_dataset`, `icon`, `icon_types_for`, `trip_dispatch_type`, `capacity`, `size`, `description`, `short_description`, `supported_vehicles`, `is_accept_share_ride`, `active`, `created_at`, `updated_at`, `deleted_at`, `is_taxi`) VALUES
('31f0cbbc-27a8-4cde-ac48-93a8dd52254d', NULL, 'Hatchback', NULL, 'cYH0izI19moeh3BbkNeh75M23dj2ISyj84GzKXIW.png', 'hatchback', 'both', 500, NULL, 'Hatchback Ride is the perfect choice for short trips and city commutes. Compact yet comfortable, hatchbacks offer affordable fares, easy maneuverability in traffic, and enough space for small groups or light luggage. Ideal for everyday rides with comfort and convenience at a budget-friendly price.', 'perfect choice for short trips and city commutes', NULL, 0, 1, '2025-09-26 09:40:21', '2025-09-26 09:40:21', NULL, 'taxi'),
('342279b9-db34-4b1f-971f-ffc8a07e9b7c', NULL, 'Taxi', NULL, 'f505sco8ZQ7amBXDAclC8TY7aSn7nJ0BlVpfd1Mv.png', 'car', 'both', 500, NULL, 'Taxi Ride provides you with a quick, reliable, and affordable way to get around the city.', 'Local non-AC taxi cabs', NULL, 0, 1, '2025-09-26 09:27:45', '2025-09-26 09:27:45', NULL, 'taxi'),
('42c789ca-c9f9-4c44-9951-3cdca24ac12a', NULL, 'HCV', NULL, 'QhORu9QlxIpEutpkNFP3wQ3xfB9PgJr1OkaP0Ubf.png', 'hcv', 'both', 35, '30ft (L) x 8.5 ft(W) x 12 ft(H)', 'Built for large-scale logistics and bulk transportation. With high payload capacity and spacious loading area, HCVs are perfect for industries, wholesalers, and businesses that need to move heavy goods across cities or states.', 'Best For: Industrial shipments, construction material, large-scale logistics, and intercity or interstate transport.', NULL, 0, 1, '2025-09-26 10:00:21', '2025-09-26 10:07:15', NULL, 'delivery'),
('54613ea2-2cae-4654-b6a3-646c192ee4bb', NULL, 'Bike', NULL, 'C8xZ3TDk5psHCXG83ElhoFICTlLp7044chJszp9v.png', 'motor_bike', 'both', 100, '2.2 m × 0.8 m × 1.1 m', 'Bike Ride is the fastest and most cost-effective way to navigate through busy city streets. Designed for solo riders or two people, bikes provide unmatched agility in traffic, allowing you to reach your destination quickly.', 'Fast, affordable, and convenient for solo travelers — perfect for quick trips and beating city traffic.', NULL, 0, 1, '2025-09-26 10:11:43', '2025-09-26 10:11:43', NULL, 'both'),
('65af1c75-a4c1-45ac-a450-9c89ca4a3155', NULL, 'LCV', NULL, 'NyfXaHHJU3JOBpUkS9fLhLlbgHpAnUUHIYzX8JrT.png', 'lcv', 'normal', 800, '10ft (L) x 4.5 ft(W) x 6ft (H)', 'LCV Ride is designed for transporting goods safely and efficiently. With ample loading space and strong build, it’s ideal for shifting furniture, appliances, bulk deliveries, or business supplies. Reliable drivers and sturdy vehicles ensure smooth transport for both short and long distances.', 'Best For: Small business deliveries, home shifting, and bulk transport needs.', NULL, 0, 1, '2025-09-26 09:52:06', '2025-09-26 10:07:30', NULL, 'delivery'),
('94fef07a-87c3-4777-830d-9a05d11eea3a', NULL, 'SUV', NULL, 'UYAV8CH4WkSjddBDl2g0Ghi4mgbpcK6DqqboAPPo.png', 'suv', 'both', 700, NULL, 'SUV Ride gives you extra space, comfort, and power for longer trips or when traveling with more people. With roomy seating, higher ground clearance, and ample luggage space, SUVs are ideal for family outings, group travel, or airport rides. They ensure a smooth, comfortable, and premium travel experience, even on rougher roads.', 'Perfect for larger groups, airport transfers, and long-distance travel.', NULL, 0, 1, '2025-09-26 09:44:56', '2025-09-26 09:44:56', NULL, 'taxi'),
('b599844f-9f87-4e56-8501-60b9a2a17a80', NULL, 'Auto', NULL, 'wnXjB6tEICkp6282c6sdyVVJL6yAAKN7Kq5aQFUa.png', 'auto', 'both', 300, NULL, 'offers you a quick, budget-friendly, and comfortable way to travel short distances. With just a few taps, you can book an auto rickshaw right at your doorstep.', '2 min away', NULL, 0, 1, '2025-09-26 09:05:03', '2025-09-26 09:33:32', NULL, 'taxi'),
('c1aa88e5-67da-4b3d-98e4-802a0221db73', NULL, 'Premier', NULL, 'cQrLoO30dXMJNcEOho20aU67QMdks40RK1nfzUhd.png', 'premium', 'normal', 500, NULL, 'Offers a blend of comfort, style, and extra space for a smoother travel experience. With plush seating, air-conditioned interiors, and ample legroom, it’s the ideal choice for business trips, family rides, or long-distance travel.', 'Comfortable sedans, top-quality drivers', NULL, 0, 1, '2025-09-26 10:03:52', '2025-09-26 10:03:52', NULL, 'taxi'),
('c655f0c0-07eb-4647-b810-75166abdcf31', NULL, 'Luxury', NULL, 'laUx77jvjenIsnhM7EVEA0IqK4Xzt0UwcuxE7BjN.png', 'luxury', 'normal', 500, NULL, 'Luxury Ride delivers a premium travel experience with high-end vehicles, exceptional comfort, and professional chauffeurs. Designed for those who prefer style and elegance, luxury cars come with plush interiors, advanced features, and smooth performance.', 'Best For: Corporate executives, weddings, VIP guests, airport transfers, and special events.', NULL, 0, 1, '2025-09-26 10:05:21', '2025-09-26 10:05:21', NULL, 'taxi'),
('e8d723b1-d1e1-4326-b1c9-977551612a4c', NULL, 'EHCV', NULL, 'gu2iAvyk6ewl0JKroK7AuIqmr4O09ZR9pe4OxHyQ.png', 'ehcv', 'both', 1200, '30ft (L) x 8.5 ft(W) x 12 ft(H)', 'EHCV', 'EHCV', NULL, 0, 1, '2025-09-26 11:15:26', '2025-09-26 11:33:19', NULL, 'delivery'),
('fc9eb79a-f121-4342-a155-4229cfeceac6', NULL, 'Car', NULL, '4FHhf83wURJiITGhsiXH3iCwkHZpLwIPXVaLhWVS.png', 'car', 'normal', 500, NULL, 'Car Ride gives you a safe, comfortable, and reliable way to travel across the city or beyond. Whether it’s a quick trip, a daily commute, or a long journey, you can book a car in just a few taps. Enjoy well-maintained vehicles, professional drivers.', 'Affordable compact rides', NULL, 0, 1, '2025-09-26 09:14:57', '2025-11-06 08:01:15', NULL, 'taxi');

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

--
-- Table structure for table `vehicle_type_translations`
--

CREATE TABLE `vehicle_type_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `vehicle_type_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `wallet_withdrawal_requests`
--

CREATE TABLE `wallet_withdrawal_requests` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `requested_amount` double NOT NULL DEFAULT 0,
  `requested_currency` varchar(191) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `payment_status` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `websockets_statistics_entries`
--

CREATE TABLE `websockets_statistics_entries` (
  `id` int(10) UNSIGNED NOT NULL,
  `app_id` varchar(191) NOT NULL,
  `peak_connection_count` int(11) NOT NULL,
  `websocket_message_count` int(11) NOT NULL,
  `api_message_count` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `zones`
--

CREATE TABLE `zones` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `translation_dataset` text DEFAULT NULL,
  `unit` enum('1','2') NOT NULL COMMENT '1 => kilometers,2 => miles',
  `maximum_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `maximum_outstation_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `coordinates` multipolygon DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `default_vehicle_type` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lat` double(15,8) NOT NULL DEFAULT 11.01595600,
  `lng` double(15,8) NOT NULL DEFAULT 76.96898500,
  `default_vehicle_type_for_delivery` char(36) DEFAULT NULL,
  `peak_zone_radius` int(11) DEFAULT 0,
  `peak_zone_duration` double(10,2) DEFAULT 0.00,
  `peak_zone_history_duration` double(10,2) DEFAULT 0.00,
  `peak_zone_ride_count` int(11) DEFAULT 0,
  `distance_price_percentage` int(11) DEFAULT 0 COMMENT 'In percentage'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zones`
--

INSERT INTO `zones` (`id`, `company_key`, `service_location_id`, `name`, `translation_dataset`, `unit`, `maximum_distance`, `maximum_outstation_distance`, `coordinates`, `active`, `default_vehicle_type`, `created_at`, `updated_at`, `lat`, `lng`, `default_vehicle_type_for_delivery`, `peak_zone_radius`, `peak_zone_duration`, `peak_zone_history_duration`, `peak_zone_ride_count`, `distance_price_percentage`) VALUES
('d31481ef-61a0-4386-8ce2-e6c34ebe3217', NULL, 'c70dfe2a-a3ca-40c6-a16f-9b05d039715f', 'Global', '{\"en\":{\"locale\":\"en\",\"name\":\"Global\"}}', '1', 0.00, 0.00, 0xe6100000010600000001000000010300000001000000060000006fbd53179f1d5a40e18405f399725340770cb1a283e131c05a22d454480b364089f34e5d7c7e35404699593558a83ec0b8dea98bcfa06140ab8efcfc3ff44840b8dea98bcf5f664015099aab615a50406fbd53179f1d5a40e18405f399725340, 1, NULL, '2025-09-26 10:39:57', '2025-09-26 10:39:57', 77.79064632, 104.46283515, NULL, 0, 0.00, 0.00, 0, 0);

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

--
-- Table structure for table `zone_bounds`
--

CREATE TABLE `zone_bounds` (
  `id` char(36) NOT NULL,
  `zone_id` char(36) NOT NULL,
  `north` double(8,2) DEFAULT NULL,
  `east` double(8,2) DEFAULT NULL,
  `south` double(8,2) DEFAULT NULL,
  `west` double(8,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `zone_surge_prices`
--

CREATE TABLE `zone_surge_prices` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `zone_type_id` char(36) DEFAULT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `day` varchar(191) DEFAULT NULL,
  `value` int(11) NOT NULL COMMENT 'In percentage',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `zone_translations`
--

CREATE TABLE `zone_translations` (
  `id` int(10) UNSIGNED NOT NULL,
  `zone_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `locale` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_translations`
--

INSERT INTO `zone_translations` (`id`, `zone_id`, `name`, `locale`, `created_at`, `updated_at`) VALUES
(4, 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'Global', 'en', NULL, NULL);

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

--
-- Table structure for table `zone_types`
--

CREATE TABLE `zone_types` (
  `id` char(36) NOT NULL,
  `zone_id` char(36) NOT NULL,
  `type_id` char(36) NOT NULL,
  `bill_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => Not show,1 => show bill',
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `order_number` int(10) UNSIGNED NOT NULL DEFAULT 1,
  `payment_type` varchar(191) NOT NULL,
  `admin_commission_type_for_owner` tinyint(4) DEFAULT NULL,
  `admin_commission_for_owner` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commision_type` tinyint(4) DEFAULT NULL,
  `admin_commision` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `airport_surge` double(10,2) DEFAULT NULL,
  `support_airport_fee` tinyint(1) NOT NULL DEFAULT 0,
  `support_outstation` tinyint(1) NOT NULL DEFAULT 0,
  `admin_commission_type_from_driver` tinyint(4) DEFAULT NULL,
  `admin_commission_from_driver` double(10,2) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_types`
--

INSERT INTO `zone_types` (`id`, `zone_id`, `type_id`, `bill_status`, `transport_type`, `order_number`, `payment_type`, `admin_commission_type_for_owner`, `admin_commission_for_owner`, `admin_commision_type`, `admin_commision`, `service_tax`, `airport_surge`, `support_airport_fee`, `support_outstation`, `admin_commission_type_from_driver`, `admin_commission_from_driver`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('0353aad2-e9fd-4a22-ba1e-e6610dbe7a55', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '65af1c75-a4c1-45ac-a450-9c89ca4a3155', 1, 'delivery', 14, 'cash,online,wallet', 1, 20.00, 1, 20.00, 15.00, 10.00, 1, 1, 1, 20.00, 1, '2025-09-26 11:18:35', '2025-09-26 11:18:35', NULL),
('0e5a4c1a-c726-4f2a-974f-42e60997bf62', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'b599844f-9f87-4e56-8501-60b9a2a17a80', 1, 'taxi', 2, 'cash,online,wallet', 1, 5.00, 1, 5.00, 10.00, 20.00, 1, 1, 1, 5.00, 1, '2025-09-26 11:36:38', '2025-09-26 11:36:38', NULL),
('26b1689e-8339-4b51-a7d9-817e0c4b509f', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '94fef07a-87c3-4777-830d-9a05d11eea3a', 1, 'taxi', 123, 'cash,online,wallet', 1, 5.00, 1, 5.00, 5.00, 50.00, 1, 1, 1, 5.00, 1, '2025-09-26 11:34:46', '2025-09-26 11:34:46', NULL),
('3cfcf96c-b1fa-41d1-b92f-4de2dda2f1bb', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'b599844f-9f87-4e56-8501-60b9a2a17a80', 1, 'taxi', 123, 'cash,online,wallet', 1, 5.00, 2, 5.00, 20.00, 23.00, 1, 1, 2, 5.00, 1, '2025-09-26 11:36:06', '2025-09-26 11:36:06', NULL),
('5114da9b-64a2-41f9-bb30-43fbd4aa2a5c', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'c1aa88e5-67da-4b3d-98e4-802a0221db73', 1, 'taxi', 1234512345, 'online,cash,wallet', 1, 2.00, 1, 2.00, 3.00, 5.00, 1, 1, 1, 2.00, 1, '2025-09-26 11:18:13', '2025-09-26 11:18:13', NULL),
('5c461cda-be1a-4c6d-beeb-bfa2808d759d', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'c655f0c0-07eb-4647-b810-75166abdcf31', 1, 'taxi', 1234567890, 'cash,online,wallet', 2, 2.00, 2, 2.00, 5.00, 5.00, 1, 1, 2, 2.00, 1, '2025-09-26 11:14:53', '2025-09-26 11:14:53', NULL),
('7425a5e0-024b-4ecf-b85c-5bc3fdb712b3', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '42c789ca-c9f9-4c44-9951-3cdca24ac12a', 1, 'delivery', 15, 'cash,online,wallet', 1, 15.00, 1, 15.00, 15.00, 20.00, 1, 1, 1, 15.00, 1, '2025-09-26 11:13:36', '2025-09-26 11:13:36', NULL),
('859e8b5d-fcff-44cc-8bb3-93eaf83fe3a8', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '31f0cbbc-27a8-4cde-ac48-93a8dd52254d', 1, 'taxi', 123343, 'cash,online,wallet', 1, 5.00, 1, 5.00, 12.00, NULL, 0, 0, 1, 5.00, 1, '2025-09-26 11:34:52', '2025-09-26 11:34:52', NULL),
('8da1d1c2-9923-425a-936d-339f4f6f9375', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '54613ea2-2cae-4654-b6a3-646c192ee4bb', 1, 'both', 5, 'cash,online,wallet', 1, 5.00, 1, 5.00, 5.00, 10.00, 1, 1, 1, 5.00, 1, '2025-09-26 10:44:08', '2025-09-26 10:44:08', NULL),
('9d103ba7-53be-4ffa-b792-2668ad6212d3', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'c1aa88e5-67da-4b3d-98e4-802a0221db73', 1, 'taxi', 123, 'online,wallet,cash', 1, 4.00, 1, 2.00, 2.00, 5.00, 1, 0, 1, 5.00, 1, '2025-09-26 11:18:52', '2025-09-26 11:18:52', NULL),
('e33631d9-6e1f-48a7-9c4d-a370580bb343', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', '342279b9-db34-4b1f-971f-ffc8a07e9b7c', 1, 'taxi', 5, 'cash,online,wallet', 1, 10.00, 1, 10.00, 5.00, 20.00, 1, 1, 1, 10.00, 1, '2025-09-26 11:35:30', '2025-09-26 11:35:30', NULL),
('e9b87f67-553f-4c5d-a08f-d1e89220aaf8', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'e8d723b1-d1e1-4326-b1c9-977551612a4c', 1, 'delivery', 10, 'cash,online,wallet', 1, 10.00, 1, 10.00, 10.00, 15.00, 1, 1, 1, 10.00, 1, '2025-09-26 11:16:50', '2025-09-26 11:16:50', NULL),
('ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 'd31481ef-61a0-4386-8ce2-e6c34ebe3217', 'fc9eb79a-f121-4342-a155-4229cfeceac6', 1, 'taxi', 10, 'cash,online,wallet', 1, 10.00, 1, 10.00, 10.00, 15.00, 1, 1, 1, 10.00, 1, '2025-09-26 11:15:20', '2025-09-26 11:15:20', NULL);

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

--
-- Table structure for table `zone_type_package_prices`
--

CREATE TABLE `zone_type_package_prices` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) NOT NULL,
  `zone_id` char(36) DEFAULT NULL,
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `package_type_id` varchar(191) NOT NULL,
  `distance_price_per_km` varchar(191) NOT NULL,
  `time_price_per_min` varchar(191) NOT NULL,
  `cancellation_fee` varchar(191) NOT NULL,
  `free_distance` varchar(191) NOT NULL,
  `free_min` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `zone_type_price`
--

CREATE TABLE `zone_type_price` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) NOT NULL,
  `price_type` int(11) DEFAULT NULL COMMENT '1 => Ridenow,2 => RideLater',
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `base_distance` int(11) NOT NULL,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `free_waiting_time_in_mins_before_trip_start` int(11) NOT NULL DEFAULT 0,
  `free_waiting_time_in_mins_after_trip_start` int(11) NOT NULL DEFAULT 0,
  `waiting_charge` double(10,2) NOT NULL DEFAULT 0.00,
  `price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `outstation_base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `outstation_price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `outstation_base_distance` int(11) NOT NULL,
  `outstation_price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee_for_user` int(11) NOT NULL DEFAULT 60 COMMENT 'In percentage',
  `cancellation_fee_for_driver` int(11) NOT NULL DEFAULT 60 COMMENT 'In percentage',
  `fee_goes_to` enum('driver','admin','partially_driver_admin') NOT NULL DEFAULT 'admin',
  `driver_get_fee_percentage` int(11) NOT NULL DEFAULT 0 COMMENT 'In percentage',
  `admin_get_fee_percentage` int(11) NOT NULL DEFAULT 0 COMMENT 'In percentage',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_type_price`
--

INSERT INTO `zone_type_price` (`id`, `zone_type_id`, `price_type`, `base_price`, `base_distance`, `price_per_distance`, `free_waiting_time_in_mins_before_trip_start`, `free_waiting_time_in_mins_after_trip_start`, `waiting_charge`, `price_per_time`, `cancellation_fee`, `outstation_base_price`, `outstation_price_per_distance`, `outstation_base_distance`, `outstation_price_per_time`, `cancellation_fee_for_user`, `cancellation_fee_for_driver`, `fee_goes_to`, `driver_get_fee_percentage`, `admin_get_fee_percentage`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('13d93aa6-1d3f-44a8-8ec0-6e885582ed3b', '859e8b5d-fcff-44cc-8bb3-93eaf83fe3a8', 1, 29.00, 23, 23.00, 10, 10, 10.00, 23.00, 0.00, 0.00, 0.00, 0, 0.00, 10, 10, 'driver', 0, 0, 1, '2025-09-26 11:34:52', '2025-09-26 11:34:52', NULL),
('2e4babc2-bf61-4251-9d34-194c8f5b701c', '3cfcf96c-b1fa-41d1-b92f-4de2dda2f1bb', 1, 12.00, 20, 30.00, 20, 20, 30.00, 30.00, 0.00, 50.00, 50.00, 30, 40.00, 5, 5, 'driver', 0, 0, 1, '2025-09-26 11:36:06', '2025-09-26 11:36:06', NULL),
('340cbee5-e053-461b-98b9-b43bdc2b0542', '5c461cda-be1a-4c6d-beeb-bfa2808d759d', 1, 12.00, 25, 25.00, 5, 5, 5.00, 10.00, 0.00, 5.00, 5.00, 5, 5.00, 2, 2, 'admin', 0, 0, 1, '2025-09-26 11:14:53', '2025-09-26 11:14:53', NULL),
('3c728d97-a2a1-44ad-a54a-f70a07bece73', '9d103ba7-53be-4ffa-b792-2668ad6212d3', 1, 1000.00, 10, 995.00, 18, 21, 12.00, 20.00, 0.00, 0.00, 0.00, 0, 0.00, 2, 2, 'driver', 0, 0, 1, '2025-09-26 11:18:52', '2025-09-26 11:18:52', NULL),
('423e4917-7b00-438a-9ae0-edd0adce6229', 'ed93d8c5-9a8b-4ed1-b22f-dbfc845c3e96', 1, 10.00, 10, 10.00, 10, 10, 10.00, 10.00, 0.00, 20.00, 20.00, 20, 20.00, 15, 10, 'admin', 0, 0, 1, '2025-09-26 11:15:20', '2025-09-26 11:15:20', NULL),
('589a70a3-b219-41dc-aada-c5e43b6fce4c', 'e9b87f67-553f-4c5d-a08f-d1e89220aaf8', 1, 10.00, 10, 10.00, 10, 10, 10.00, 10.00, 0.00, 20.00, 20.00, 20, 20.00, 10, 10, 'admin', 0, 0, 1, '2025-09-26 11:16:50', '2025-09-26 11:16:50', NULL),
('9c0a4f96-ba10-4d54-bc90-955404d6355a', '7425a5e0-024b-4ecf-b85c-5bc3fdb712b3', 1, 15.00, 15, 15.00, 15, 15, 15.00, 15.00, 0.00, 25.00, 25.00, 25, 25.00, 10, 5, 'admin', 0, 0, 1, '2025-09-26 11:13:36', '2025-09-26 11:13:36', NULL),
('a0976db2-2a36-479c-aeff-e023d4b83a3e', '26b1689e-8339-4b51-a7d9-817e0c4b509f', 1, 20.00, 20, 12.00, 20, 20, 20.00, 20.00, 0.00, 50.00, 20.00, 50, 50.00, 20, 30, 'admin', 0, 0, 1, '2025-09-26 11:34:46', '2025-09-26 11:34:46', NULL),
('b14eb445-3deb-4914-a322-f5abacb8bf58', '0e5a4c1a-c726-4f2a-974f-42e60997bf62', 1, 5.00, 1, 10.00, 5, 5, 5.00, 10.00, 0.00, 20.00, 20.00, 20, 20.00, 5, 10, 'admin', 0, 0, 1, '2025-09-26 11:36:38', '2025-09-26 11:36:38', NULL),
('b7dd15b7-543e-497c-8d6e-c46bd620c20b', '8da1d1c2-9923-425a-936d-339f4f6f9375', 1, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 0.00, 10.00, 10.00, 10, 10.00, 10, 5, 'admin', 0, 0, 1, '2025-09-26 10:44:08', '2025-09-26 10:44:08', NULL),
('c3088c7c-e585-4b73-8c93-75a029dc8779', 'e33631d9-6e1f-48a7-9c4d-a370580bb343', 1, 10.00, 1, 10.00, 5, 5, 5.00, 10.00, 0.00, 20.00, 20.00, 4, 20.00, 10, 5, 'admin', 0, 0, 1, '2025-09-26 11:35:30', '2025-09-26 11:35:30', NULL),
('d7ea1b52-3a1b-4605-a045-d90373fd1151', '0353aad2-e9fd-4a22-ba1e-e6610dbe7a55', 1, 15.00, 13, 10.00, 5, 5, 5.00, 5.00, 0.00, 25.00, 10.00, 25, 10.00, 15, 5, 'admin', 0, 0, 1, '2025-09-26 11:18:35', '2025-09-26 11:18:35', NULL),
('dac3bb1b-07e4-499b-9cce-3ccf8d8510bf', '5114da9b-64a2-41f9-bb30-43fbd4aa2a5c', 1, 10.00, 10, 10.00, 5, 5, 10.00, 10.00, 0.00, 20.00, 23.00, 25, 28.00, 5, 5, 'admin', 0, 0, 1, '2025-09-26 11:18:13', '2025-09-26 11:18:13', NULL);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `adhocs`
--
ALTER TABLE `adhocs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `adhoc_users_request_id_foreign` (`request_id`);

--
-- Indexes for table `admin_details`
--
ALTER TABLE `admin_details`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `admin_details_mobile_unique` (`mobile`),
  ADD KEY `admin_details_user_id_foreign` (`user_id`),
  ADD KEY `admin_details_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `admin_notifications`
--
ALTER TABLE `admin_notifications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `admin_notifications_user_id_foreign` (`user_id`);

--
-- Indexes for table `airports`
--
ALTER TABLE `airports`
  ADD PRIMARY KEY (`id`),
  ADD KEY `airports_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `banner_images`
--
ALTER TABLE `banner_images`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `cancellation_reasons`
--
ALTER TABLE `cancellation_reasons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `cancellation_reason_translations`
--
ALTER TABLE `cancellation_reason_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `cancellation_reason_translations_cancellation_reason_id_foreign` (`cancellation_reason_id`);

--
-- Indexes for table `card_info`
--
ALTER TABLE `card_info`
  ADD PRIMARY KEY (`id`),
  ADD KEY `card_info_user_id_foreign` (`user_id`);

--
-- Indexes for table `car_makes`
--
ALTER TABLE `car_makes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `car_models`
--
ALTER TABLE `car_models`
  ADD PRIMARY KEY (`id`),
  ADD KEY `car_models_make_id_foreign` (`make_id`);

--
-- Indexes for table `chat`
--
ALTER TABLE `chat`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `chats`
--
ALTER TABLE `chats`
  ADD PRIMARY KEY (`id`),
  ADD KEY `chats_request_id_foreign` (`request_id`),
  ADD KEY `chats_user_id_foreign` (`user_id`);

--
-- Indexes for table `chat_messages`
--
ALTER TABLE `chat_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `chat_messages_chat_id_foreign` (`chat_id`);

--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cities_slug_unique` (`slug`),
  ADD KEY `cities_state_id_index` (`state_id`);

--
-- Indexes for table `companies`
--
ALTER TABLE `companies`
  ADD PRIMARY KEY (`id`),
  ADD KEY `companies_admin_id_foreign` (`admin_id`),
  ADD KEY `companies_country_foreign` (`country`);

--
-- Indexes for table `complaints`
--
ALTER TABLE `complaints`
  ADD PRIMARY KEY (`id`),
  ADD KEY `complaints_user_id_foreign` (`user_id`),
  ADD KEY `complaints_driver_id_foreign` (`driver_id`),
  ADD KEY `complaints_complaint_title_id_foreign` (`complaint_title_id`),
  ADD KEY `complaints_owner_id_foreign` (`owner_id`);

--
-- Indexes for table `complaint_titles`
--
ALTER TABLE `complaint_titles`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `complaint_title_translations`
--
ALTER TABLE `complaint_title_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `complaint_title_translations_complaint_title_id_foreign` (`complaint_title_id`);

--
-- Indexes for table `conversations`
--
ALTER TABLE `conversations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `conversations_user_id_foreign` (`user_id`),
  ADD KEY `conversations_admin_id_foreign` (`admin_id`);

--
-- Indexes for table `countries`
--
ALTER TABLE `countries`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `developers`
--
ALTER TABLE `developers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `developers_mobile_unique` (`mobile`),
  ADD KEY `developers_user_id_foreign` (`user_id`);

--
-- Indexes for table `dispatcher_location`
--
ALTER TABLE `dispatcher_location`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `distance_matrixes`
--
ALTER TABLE `distance_matrixes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `drivers`
--
ALTER TABLE `drivers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `drivers_user_id_foreign` (`user_id`),
  ADD KEY `drivers_car_make_foreign` (`car_make`),
  ADD KEY `drivers_car_model_foreign` (`car_model`),
  ADD KEY `drivers_country_foreign` (`country`),
  ADD KEY `drivers_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `drivers_owner_id_foreign` (`owner_id`),
  ADD KEY `drivers_fleet_id_foreign` (`fleet_id`),
  ADD KEY `drivers_subscription_detail_id_foreign` (`subscription_detail_id`),
  ADD KEY `drivers_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `drivers_imported`
--
ALTER TABLE `drivers_imported`
  ADD PRIMARY KEY (`id`),
  ADD KEY `drivers_imported_user_id_foreign` (`user_id`);

--
-- Indexes for table `driver_availabilities`
--
ALTER TABLE `driver_availabilities`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `driver_bank_infos`
--
ALTER TABLE `driver_bank_infos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_bank_infos_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_bank_infos_method_id_foreign` (`method_id`),
  ADD KEY `driver_bank_infos_field_id_foreign` (`field_id`);

--
-- Indexes for table `driver_details`
--
ALTER TABLE `driver_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_details_company_foreign` (`company`),
  ADD KEY `driver_details_current_zone_foreign` (`current_zone`),
  ADD KEY `driver_details_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_documents`
--
ALTER TABLE `driver_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_documents_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `driver_enabled_routes`
--
ALTER TABLE `driver_enabled_routes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_enabled_routes_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_incentive_histories`
--
ALTER TABLE `driver_incentive_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_incentive_histories_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_level_details`
--
ALTER TABLE `driver_level_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_level_details_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_level_details_level_id_foreign` (`level_id`);

--
-- Indexes for table `driver_level_ups`
--
ALTER TABLE `driver_level_ups`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_level_ups_zone_type_id_foreign` (`zone_type_id`);

--
-- Indexes for table `driver_needed_documents`
--
ALTER TABLE `driver_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `driver_preferences`
--
ALTER TABLE `driver_preferences`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_preferences_preference_id_foreign` (`preference_id`),
  ADD KEY `driver_preferences_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_privileged_vehicles`
--
ALTER TABLE `driver_privileged_vehicles`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_privileged_vehicles_owner_id_foreign` (`owner_id`),
  ADD KEY `driver_privileged_vehicles_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_privileged_vehicles_fleet_id_foreign` (`fleet_id`);

--
-- Indexes for table `driver_rejected_requests`
--
ALTER TABLE `driver_rejected_requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_rejected_requests_request_id_foreign` (`request_id`),
  ADD KEY `driver_rejected_requests_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_subscriptions`
--
ALTER TABLE `driver_subscriptions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_subscriptions_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_vehicle_types`
--
ALTER TABLE `driver_vehicle_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_vehicle_types_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `driver_vehicle_types_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_wallet`
--
ALTER TABLE `driver_wallet`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_wallet_user_id_foreign` (`user_id`);

--
-- Indexes for table `driver_wallet_history`
--
ALTER TABLE `driver_wallet_history`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_wallet_history_card_id_foreign` (`card_id`),
  ADD KEY `driver_wallet_history_user_id_foreign` (`user_id`),
  ADD KEY `driver_wallet_history_admin_id_foreign` (`admin_id`),
  ADD KEY `driver_wallet_history_request_id_foreign` (`request_id`);

--
-- Indexes for table `emails`
--
ALTER TABLE `emails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);

--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `faqs_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `favorite_places`
--
ALTER TABLE `favorite_places`
  ADD PRIMARY KEY (`id`),
  ADD KEY `favorite_places_user_id_foreign` (`user_id`);

--
-- Indexes for table `favourite_locations`
--
ALTER TABLE `favourite_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `favourite_locations_user_id_foreign` (`user_id`);

--
-- Indexes for table `fields`
--
ALTER TABLE `fields`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fields_method_id_foreign` (`method_id`);

--
-- Indexes for table `fleets`
--
ALTER TABLE `fleets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fleets_owner_id_foreign` (`owner_id`),
  ADD KEY `fleets_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `fleets_brand_foreign` (`brand`),
  ADD KEY `fleets_model_foreign` (`model`),
  ADD KEY `fleets_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `fleet_documents`
--
ALTER TABLE `fleet_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fleet_documents_fleet_id_foreign` (`fleet_id`),
  ADD KEY `fleet_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `fleet_needed_documents`
--
ALTER TABLE `fleet_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `goods_types`
--
ALTER TABLE `goods_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `goods_type_translations`
--
ALTER TABLE `goods_type_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `goods_type_translations_goods_type_id_foreign` (`goods_type_id`);

--
-- Indexes for table `incentives`
--
ALTER TABLE `incentives`
  ADD PRIMARY KEY (`id`),
  ADD KEY `incentives_zone_type_id_foreign` (`zone_type_id`);

--
-- Indexes for table `invoice_configurations`
--
ALTER TABLE `invoice_configurations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`);

--
-- Indexes for table `landingpagecms`
--
ALTER TABLE `landingpagecms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_abouts`
--
ALTER TABLE `landing_abouts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_contacts`
--
ALTER TABLE `landing_contacts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_drivers`
--
ALTER TABLE `landing_drivers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_email`
--
ALTER TABLE `landing_email`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_headers`
--
ALTER TABLE `landing_headers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_homes`
--
ALTER TABLE `landing_homes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_quicklinks`
--
ALTER TABLE `landing_quicklinks`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `landing_users`
--
ALTER TABLE `landing_users`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `language`
--
ALTER TABLE `language`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `linked_social_accounts`
--
ALTER TABLE `linked_social_accounts`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `linked_social_accounts_provider_id_unique` (`provider_id`);

--
-- Indexes for table `ltm_translations`
--
ALTER TABLE `ltm_translations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mail_otp_verifications`
--
ALTER TABLE `mail_otp_verifications`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `mail_otp_verifications_email_unique` (`email`);

--
-- Indexes for table `mail_templates`
--
ALTER TABLE `mail_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `messages`
--
ALTER TABLE `messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `messages_conversation_id_foreign` (`conversation_id`);

--
-- Indexes for table `methods`
--
ALTER TABLE `methods`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mobile_app_settings`
--
ALTER TABLE `mobile_app_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mobile_builds`
--
ALTER TABLE `mobile_builds`
  ADD PRIMARY KEY (`id`),
  ADD KEY `mobile_builds_project_id_foreign` (`project_id`),
  ADD KEY `mobile_builds_flavour_id_foreign` (`flavour_id`);

--
-- Indexes for table `mobile_otp_verifications`
--
ALTER TABLE `mobile_otp_verifications`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notification_channels`
--
ALTER TABLE `notification_channels`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notification_channels_translations`
--
ALTER TABLE `notification_channels_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fk_notification_channel_id` (`notification_channel_id`);

--
-- Indexes for table `onboarding_screen`
--
ALTER TABLE `onboarding_screen`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `onboarding_screen_translations`
--
ALTER TABLE `onboarding_screen_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `onboarding_screen_translations_onboarding_screen_id_foreign` (`onboarding_screen_id`);

--
-- Indexes for table `owners`
--
ALTER TABLE `owners`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owners_user_id_foreign` (`user_id`),
  ADD KEY `owners_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `owner_bank_infos`
--
ALTER TABLE `owner_bank_infos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_bank_infos_owner_id_foreign` (`owner_id`),
  ADD KEY `owner_bank_infos_method_id_foreign` (`method_id`),
  ADD KEY `owner_bank_infos_field_id_foreign` (`field_id`);

--
-- Indexes for table `owner_documents`
--
ALTER TABLE `owner_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_documents_owner_id_foreign` (`owner_id`),
  ADD KEY `owner_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `owner_hired_drivers`
--
ALTER TABLE `owner_hired_drivers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_hired_drivers_owner_id_foreign` (`owner_id`),
  ADD KEY `owner_hired_drivers_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `owner_needed_documents`
--
ALTER TABLE `owner_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `owner_wallets`
--
ALTER TABLE `owner_wallets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_wallets_user_id_foreign` (`user_id`);

--
-- Indexes for table `owner_wallet_histories`
--
ALTER TABLE `owner_wallet_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_wallet_histories_card_id_foreign` (`card_id`),
  ADD KEY `owner_wallet_histories_user_id_foreign` (`user_id`),
  ADD KEY `owner_wallet_histories_admin_id_foreign` (`admin_id`),
  ADD KEY `owner_wallet_histories_request_id_foreign` (`request_id`);

--
-- Indexes for table `package_types`
--
ALTER TABLE `package_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
  ADD UNIQUE KEY `password_resets_email_unique` (`email`);

--
-- Indexes for table `password_reset_tokens`
--
ALTER TABLE `password_reset_tokens`
  ADD PRIMARY KEY (`email`);

--
-- Indexes for table `peak_zones`
--
ALTER TABLE `peak_zones`
  ADD PRIMARY KEY (`id`),
  ADD KEY `peak_zones_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `permissions_slug_unique` (`slug`);

--
-- Indexes for table `permission_role`
--
ALTER TABLE `permission_role`
  ADD PRIMARY KEY (`role_id`,`permission_id`),
  ADD KEY `permission_role_permission_id_foreign` (`permission_id`);

--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `poc_clients`
--
ALTER TABLE `poc_clients`
  ADD PRIMARY KEY (`id`),
  ADD KEY `poc_clients_user_id_foreign` (`user_id`),
  ADD KEY `poc_clients_project_id_foreign` (`project_id`);

--
-- Indexes for table `preferences`
--
ALTER TABLE `preferences`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `preference_prices`
--
ALTER TABLE `preference_prices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `preference_prices_preference_id_foreign` (`preference_id`),
  ADD KEY `preference_prices_zone_type_id_foreign` (`zone_type_id`);

--
-- Indexes for table `pre_payment_datas`
--
ALTER TABLE `pre_payment_datas`
  ADD KEY `pre_payment_datas_driver_id_foreign` (`driver_id`),
  ADD KEY `pre_payment_datas_request_id_foreign` (`request_id`);

--
-- Indexes for table `projects`
--
ALTER TABLE `projects`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `project_flavours`
--
ALTER TABLE `project_flavours`
  ADD PRIMARY KEY (`id`),
  ADD KEY `project_flavours_project_id_foreign` (`project_id`);

--
-- Indexes for table `promo`
--
ALTER TABLE `promo`
  ADD PRIMARY KEY (`id`),
  ADD KEY `promo_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `promo_code_users`
--
ALTER TABLE `promo_code_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `promo_code_users_promo_code_id_foreign` (`promo_code_id`),
  ADD KEY `promo_code_users_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `promo_users`
--
ALTER TABLE `promo_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `promo_users_promo_code_id_foreign` (`promo_code_id`),
  ADD KEY `promo_users_user_id_foreign` (`user_id`),
  ADD KEY `promo_users_request_id_foreign` (`request_id`);

--
-- Indexes for table `recent_searches`
--
ALTER TABLE `recent_searches`
  ADD PRIMARY KEY (`id`),
  ADD KEY `recent_searches_user_id_foreign` (`user_id`);

--
-- Indexes for table `recent_searches_stops`
--
ALTER TABLE `recent_searches_stops`
  ADD PRIMARY KEY (`id`),
  ADD KEY `recent_searches_stops_recent_searche_id_foreign` (`recent_searche_id`);

--
-- Indexes for table `requests`
--
ALTER TABLE `requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `requests_user_id_foreign` (`user_id`),
  ADD KEY `requests_promo_id_foreign` (`promo_id`),
  ADD KEY `requests_dispatcher_id_foreign` (`dispatcher_id`),
  ADD KEY `requests_zone_type_id_foreign` (`zone_type_id`),
  ADD KEY `requests_driver_id_foreign` (`driver_id`),
  ADD KEY `requests_service_location_id_foreign` (`service_location_id`),
  ADD KEY `requests_rental_package_id_foreign` (`rental_package_id`),
  ADD KEY `requests_owner_id_foreign` (`owner_id`),
  ADD KEY `requests_fleet_id_foreign` (`fleet_id`),
  ADD KEY `requests_goods_type_id_foreign` (`goods_type_id`),
  ADD KEY `requests_booked_by_foreign` (`booked_by`);

--
-- Indexes for table `requests_meta`
--
ALTER TABLE `requests_meta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `requests_meta_request_id_foreign` (`request_id`),
  ADD KEY `requests_meta_user_id_foreign` (`user_id`),
  ADD KEY `requests_meta_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_bills`
--
ALTER TABLE `request_bills`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_bills_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_cancellation_fees`
--
ALTER TABLE `request_cancellation_fees`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_cancellation_fees_paid_request_id_foreign` (`paid_request_id`),
  ADD KEY `request_cancellation_fees_request_id_foreign` (`request_id`),
  ADD KEY `request_cancellation_fees_user_id_foreign` (`user_id`),
  ADD KEY `request_cancellation_fees_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_delivery_proofs`
--
ALTER TABLE `request_delivery_proofs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_delivery_proofs_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_eta`
--
ALTER TABLE `request_eta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_eta_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_places`
--
ALTER TABLE `request_places`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_places_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_preferences`
--
ALTER TABLE `request_preferences`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_preferences_preference_price_id_foreign` (`preference_price_id`),
  ADD KEY `request_preferences_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_ratings`
--
ALTER TABLE `request_ratings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_ratings_request_id_foreign` (`request_id`),
  ADD KEY `request_ratings_user_id_foreign` (`user_id`),
  ADD KEY `request_ratings_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_stops`
--
ALTER TABLE `request_stops`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_stops_request_id_foreign` (`request_id`);

--
-- Indexes for table `reward_histories`
--
ALTER TABLE `reward_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `reward_histories_user_id_foreign` (`user_id`),
  ADD KEY `reward_histories_request_id_foreign` (`request_id`);

--
-- Indexes for table `reward_points`
--
ALTER TABLE `reward_points`
  ADD PRIMARY KEY (`id`),
  ADD KEY `reward_points_user_id_foreign` (`user_id`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_slug_unique` (`slug`);

--
-- Indexes for table `role_user`
--
ALTER TABLE `role_user`
  ADD PRIMARY KEY (`user_id`,`role_id`),
  ADD KEY `role_user_role_id_foreign` (`role_id`);

--
-- Indexes for table `service_locations`
--
ALTER TABLE `service_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `service_locations_country_foreign` (`country`);

--
-- Indexes for table `service_location_translations`
--
ALTER TABLE `service_location_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `service_location_translations_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `sessions`
--
ALTER TABLE `sessions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sessions_user_id_index` (`user_id`),
  ADD KEY `sessions_last_activity_index` (`last_activity`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sos`
--
ALTER TABLE `sos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sos_service_location_id_foreign` (`service_location_id`),
  ADD KEY `sos_created_by_foreign` (`created_by`);

--
-- Indexes for table `states`
--
ALTER TABLE `states`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `states_slug_unique` (`slug`);

--
-- Indexes for table `subscriptions`
--
ALTER TABLE `subscriptions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `subscriptions_vehicle_type_id_foreign` (`vehicle_type_id`);

--
-- Indexes for table `subscription_details`
--
ALTER TABLE `subscription_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `subscription_details_driver_id_foreign` (`driver_id`),
  ADD KEY `subscription_details_subscription_id_foreign` (`subscription_id`);

--
-- Indexes for table `sub_vehicle_types`
--
ALTER TABLE `sub_vehicle_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sub_vehicle_types_vehicle_type_id_foreign` (`vehicle_type_id`),
  ADD KEY `sub_vehicle_types_sub_vehicle_type_id_foreign` (`sub_vehicle_type_id`);

--
-- Indexes for table `support_tickets`
--
ALTER TABLE `support_tickets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `support_tickets_title_id_foreign` (`title_id`),
  ADD KEY `support_tickets_users_id_foreign` (`users_id`),
  ADD KEY `support_tickets_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `support_ticket_categories`
--
ALTER TABLE `support_ticket_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `support_ticket_messages`
--
ALTER TABLE `support_ticket_messages`
  ADD PRIMARY KEY (`id`),
  ADD KEY `support_ticket_messages_ticket_id_foreign` (`ticket_id`),
  ADD KEY `support_ticket_messages_user_id_foreign` (`user_id`);

--
-- Indexes for table `support_ticket_multi_files`
--
ALTER TABLE `support_ticket_multi_files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `support_ticket_multi_files_ticket_id_foreign` (`ticket_id`);

--
-- Indexes for table `support_ticket_titles`
--
ALTER TABLE `support_ticket_titles`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `support_ticket_titles_translations`
--
ALTER TABLE `support_ticket_titles_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `support_ticket_titles_translations_ticket_title_id_foreign` (`ticket_title_id`);

--
-- Indexes for table `tests`
--
ALTER TABLE `tests`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `third_party_settings`
--
ALTER TABLE `third_party_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `time_zones`
--
ALTER TABLE `time_zones`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_username_unique` (`username`),
  ADD KEY `users_country_foreign` (`country`),
  ADD KEY `users_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `users_bank_info`
--
ALTER TABLE `users_bank_info`
  ADD PRIMARY KEY (`id`),
  ADD KEY `users_bank_info_user_id_foreign` (`user_id`);

--
-- Indexes for table `users_imported`
--
ALTER TABLE `users_imported`
  ADD PRIMARY KEY (`id`),
  ADD KEY `users_imported_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_details`
--
ALTER TABLE `user_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_details_user_id_foreign` (`user_id`),
  ADD KEY `user_details_country_foreign` (`country`);

--
-- Indexes for table `user_driver_notifications`
--
ALTER TABLE `user_driver_notifications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_driver_notifications_notify_id_foreign` (`notify_id`),
  ADD KEY `user_driver_notifications_user_id_foreign` (`user_id`),
  ADD KEY `user_driver_notifications_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `user_wallet`
--
ALTER TABLE `user_wallet`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_wallet_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_wallet_history`
--
ALTER TABLE `user_wallet_history`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_wallet_history_card_id_foreign` (`card_id`),
  ADD KEY `user_wallet_history_user_id_foreign` (`user_id`),
  ADD KEY `user_wallet_history_admin_id_foreign` (`admin_id`),
  ADD KEY `user_wallet_history_request_id_foreign` (`request_id`);

--
-- Indexes for table `vehicle_types`
--
ALTER TABLE `vehicle_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vehicle_type_translations`
--
ALTER TABLE `vehicle_type_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `vehicle_type_translations_vehicle_type_id_foreign` (`vehicle_type_id`);

--
-- Indexes for table `wallet_withdrawal_requests`
--
ALTER TABLE `wallet_withdrawal_requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `wallet_withdrawal_requests_driver_id_foreign` (`driver_id`),
  ADD KEY `wallet_withdrawal_requests_user_id_foreign` (`user_id`),
  ADD KEY `wallet_withdrawal_requests_owner_id_foreign` (`owner_id`);

--
-- Indexes for table `websockets_statistics_entries`
--
ALTER TABLE `websockets_statistics_entries`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `zones`
--
ALTER TABLE `zones`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zones_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `zone_bounds`
--
ALTER TABLE `zone_bounds`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_bounds_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_surge_prices`
--
ALTER TABLE `zone_surge_prices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_surge_prices_zone_type_id_foreign` (`zone_type_id`);

--
-- Indexes for table `zone_translations`
--
ALTER TABLE `zone_translations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_translations_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_types`
--
ALTER TABLE `zone_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_types_zone_id_foreign` (`zone_id`),
  ADD KEY `zone_types_type_id_foreign` (`type_id`);

--
-- Indexes for table `zone_type_package_prices`
--
ALTER TABLE `zone_type_package_prices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_type_package_prices_zone_type_id_foreign` (`zone_type_id`),
  ADD KEY `zone_type_package_prices_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_type_price`
--
ALTER TABLE `zone_type_price`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_type_price_zone_type_id_foreign` (`zone_type_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `adhocs`
--
ALTER TABLE `adhocs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `cancellation_reason_translations`
--
ALTER TABLE `cancellation_reason_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `car_makes`
--
ALTER TABLE `car_makes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `car_models`
--
ALTER TABLE `car_models`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `chat_messages`
--
ALTER TABLE `chat_messages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `complaint_title_translations`
--
ALTER TABLE `complaint_title_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `countries`
--
ALTER TABLE `countries`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=247;

--
-- AUTO_INCREMENT for table `dispatcher_location`
--
ALTER TABLE `dispatcher_location`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `distance_matrixes`
--
ALTER TABLE `distance_matrixes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `drivers`
--
ALTER TABLE `drivers`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;

--
-- AUTO_INCREMENT for table `drivers_imported`
--
ALTER TABLE `drivers_imported`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `driver_availabilities`
--
ALTER TABLE `driver_availabilities`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140;

--
-- AUTO_INCREMENT for table `driver_enabled_routes`
--
ALTER TABLE `driver_enabled_routes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `driver_needed_documents`
--
ALTER TABLE `driver_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `driver_preferences`
--
ALTER TABLE `driver_preferences`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `driver_privileged_vehicles`
--
ALTER TABLE `driver_privileged_vehicles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `driver_rejected_requests`
--
ALTER TABLE `driver_rejected_requests`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `driver_vehicle_types`
--
ALTER TABLE `driver_vehicle_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `favorite_places`
--
ALTER TABLE `favorite_places`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `favourite_locations`
--
ALTER TABLE `favourite_locations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `fields`
--
ALTER TABLE `fields`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `fleet_needed_documents`
--
ALTER TABLE `fleet_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `goods_types`
--
ALTER TABLE `goods_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `goods_type_translations`
--
ALTER TABLE `goods_type_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `landing_email`
--
ALTER TABLE `landing_email`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `language`
--
ALTER TABLE `language`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

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

--
-- AUTO_INCREMENT for table `linked_social_accounts`
--
ALTER TABLE `linked_social_accounts`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ltm_translations`
--
ALTER TABLE `ltm_translations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `methods`
--
ALTER TABLE `methods`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=363;

--
-- AUTO_INCREMENT for table `mobile_builds`
--
ALTER TABLE `mobile_builds`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `notification_channels_translations`
--
ALTER TABLE `notification_channels_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=149;

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

--
-- AUTO_INCREMENT for table `owner_hired_drivers`
--
ALTER TABLE `owner_hired_drivers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `owner_needed_documents`
--
ALTER TABLE `owner_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `package_types`
--
ALTER TABLE `package_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=297;

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

--
-- AUTO_INCREMENT for table `preferences`
--
ALTER TABLE `preferences`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `preference_prices`
--
ALTER TABLE `preference_prices`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `projects`
--
ALTER TABLE `projects`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `project_flavours`
--
ALTER TABLE `project_flavours`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `promo_code_users`
--
ALTER TABLE `promo_code_users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `promo_users`
--
ALTER TABLE `promo_users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `recent_searches`
--
ALTER TABLE `recent_searches`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;

--
-- AUTO_INCREMENT for table `recent_searches_stops`
--
ALTER TABLE `recent_searches_stops`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `requests_meta`
--
ALTER TABLE `requests_meta`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=88;

--
-- AUTO_INCREMENT for table `request_bills`
--
ALTER TABLE `request_bills`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;

--
-- AUTO_INCREMENT for table `request_cancellation_fees`
--
ALTER TABLE `request_cancellation_fees`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `request_delivery_proofs`
--
ALTER TABLE `request_delivery_proofs`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

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

--
-- AUTO_INCREMENT for table `request_places`
--
ALTER TABLE `request_places`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=127;

--
-- AUTO_INCREMENT for table `request_preferences`
--
ALTER TABLE `request_preferences`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `request_ratings`
--
ALTER TABLE `request_ratings`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=77;

--
-- AUTO_INCREMENT for table `request_stops`
--
ALTER TABLE `request_stops`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `service_location_translations`
--
ALTER TABLE `service_location_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=128;

--
-- AUTO_INCREMENT for table `subscriptions`
--
ALTER TABLE `subscriptions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sub_vehicle_types`
--
ALTER TABLE `sub_vehicle_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `support_ticket_multi_files`
--
ALTER TABLE `support_ticket_multi_files`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `support_ticket_titles_translations`
--
ALTER TABLE `support_ticket_titles_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tests`
--
ALTER TABLE `tests`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75;

--
-- AUTO_INCREMENT for table `users_imported`
--
ALTER TABLE `users_imported`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vehicle_type_translations`
--
ALTER TABLE `vehicle_type_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wallet_withdrawal_requests`
--
ALTER TABLE `wallet_withdrawal_requests`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `websockets_statistics_entries`
--
ALTER TABLE `websockets_statistics_entries`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `zone_surge_prices`
--
ALTER TABLE `zone_surge_prices`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `zone_translations`
--
ALTER TABLE `zone_translations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  ADD CONSTRAINT `adhoc_users_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `admin_details`
--
ALTER TABLE `admin_details`
  ADD CONSTRAINT `admin_details_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `admin_details_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `admin_notifications`
--
ALTER TABLE `admin_notifications`
  ADD CONSTRAINT `admin_notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `airports`
--
ALTER TABLE `airports`
  ADD CONSTRAINT `airports_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `cancellation_reason_translations`
--
ALTER TABLE `cancellation_reason_translations`
  ADD CONSTRAINT `cancellation_reason_translations_cancellation_reason_id_foreign` FOREIGN KEY (`cancellation_reason_id`) REFERENCES `cancellation_reasons` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `card_info`
--
ALTER TABLE `card_info`
  ADD CONSTRAINT `card_info_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `car_models`
--
ALTER TABLE `car_models`
  ADD CONSTRAINT `car_models_make_id_foreign` FOREIGN KEY (`make_id`) REFERENCES `car_makes` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `chats`
--
ALTER TABLE `chats`
  ADD CONSTRAINT `chats_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `chats_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `chat_messages`
--
ALTER TABLE `chat_messages`
  ADD CONSTRAINT `chat_messages_chat_id_foreign` FOREIGN KEY (`chat_id`) REFERENCES `chat` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `companies`
--
ALTER TABLE `companies`
  ADD CONSTRAINT `companies_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `companies_country_foreign` FOREIGN KEY (`country`) REFERENCES `countries` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `complaints`
--
ALTER TABLE `complaints`
  ADD CONSTRAINT `complaints_complaint_title_id_foreign` FOREIGN KEY (`complaint_title_id`) REFERENCES `complaint_titles` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `complaints_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `complaints_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `complaints_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `complaint_title_translations`
--
ALTER TABLE `complaint_title_translations`
  ADD CONSTRAINT `complaint_title_translations_complaint_title_id_foreign` FOREIGN KEY (`complaint_title_id`) REFERENCES `complaint_titles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `conversations`
--
ALTER TABLE `conversations`
  ADD CONSTRAINT `conversations_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admin_details` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `conversations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `developers`
--
ALTER TABLE `developers`
  ADD CONSTRAINT `developers_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `drivers`
--
ALTER TABLE `drivers`
  ADD CONSTRAINT `drivers_car_make_foreign` FOREIGN KEY (`car_make`) REFERENCES `car_makes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_car_model_foreign` FOREIGN KEY (`car_model`) REFERENCES `car_models` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_country_foreign` FOREIGN KEY (`country`) REFERENCES `countries` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_fleet_id_foreign` FOREIGN KEY (`fleet_id`) REFERENCES `fleets` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`),
  ADD CONSTRAINT `drivers_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `drivers_vehicle_type_foreign` FOREIGN KEY (`vehicle_type`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `drivers_imported`
--
ALTER TABLE `drivers_imported`
  ADD CONSTRAINT `drivers_imported_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_bank_infos`
--
ALTER TABLE `driver_bank_infos`
  ADD CONSTRAINT `driver_bank_infos_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_bank_infos_field_id_foreign` FOREIGN KEY (`field_id`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_bank_infos_method_id_foreign` FOREIGN KEY (`method_id`) REFERENCES `methods` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_details`
--
ALTER TABLE `driver_details`
  ADD CONSTRAINT `driver_details_company_foreign` FOREIGN KEY (`company`) REFERENCES `companies` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `driver_details_current_zone_foreign` FOREIGN KEY (`current_zone`) REFERENCES `zones` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `driver_details_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_documents`
--
ALTER TABLE `driver_documents`
  ADD CONSTRAINT `driver_documents_document_id_foreign` FOREIGN KEY (`document_id`) REFERENCES `driver_needed_documents` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_documents_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_enabled_routes`
--
ALTER TABLE `driver_enabled_routes`
  ADD CONSTRAINT `driver_enabled_routes_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_incentive_histories`
--
ALTER TABLE `driver_incentive_histories`
  ADD CONSTRAINT `driver_incentive_histories_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_level_details`
--
ALTER TABLE `driver_level_details`
  ADD CONSTRAINT `driver_level_details_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_level_details_level_id_foreign` FOREIGN KEY (`level_id`) REFERENCES `driver_level_ups` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_level_ups`
--
ALTER TABLE `driver_level_ups`
  ADD CONSTRAINT `driver_level_ups_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_preferences`
--
ALTER TABLE `driver_preferences`
  ADD CONSTRAINT `driver_preferences_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_preferences_preference_id_foreign` FOREIGN KEY (`preference_id`) REFERENCES `preferences` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_privileged_vehicles`
--
ALTER TABLE `driver_privileged_vehicles`
  ADD CONSTRAINT `driver_privileged_vehicles_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_privileged_vehicles_fleet_id_foreign` FOREIGN KEY (`fleet_id`) REFERENCES `fleets` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_privileged_vehicles_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_rejected_requests`
--
ALTER TABLE `driver_rejected_requests`
  ADD CONSTRAINT `driver_rejected_requests_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_rejected_requests_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_subscriptions`
--
ALTER TABLE `driver_subscriptions`
  ADD CONSTRAINT `driver_subscriptions_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_vehicle_types`
--
ALTER TABLE `driver_vehicle_types`
  ADD CONSTRAINT `driver_vehicle_types_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_vehicle_types_vehicle_type_foreign` FOREIGN KEY (`vehicle_type`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_wallet`
--
ALTER TABLE `driver_wallet`
  ADD CONSTRAINT `driver_wallet_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `driver_wallet_history`
--
ALTER TABLE `driver_wallet_history`
  ADD CONSTRAINT `driver_wallet_history_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admin_details` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_wallet_history_card_id_foreign` FOREIGN KEY (`card_id`) REFERENCES `card_info` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_wallet_history_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `driver_wallet_history_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `favorite_places`
--
ALTER TABLE `favorite_places`
  ADD CONSTRAINT `favorite_places_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `favourite_locations`
--
ALTER TABLE `favourite_locations`
  ADD CONSTRAINT `favourite_locations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fields`
--
ALTER TABLE `fields`
  ADD CONSTRAINT `fields_method_id_foreign` FOREIGN KEY (`method_id`) REFERENCES `methods` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fleets`
--
ALTER TABLE `fleets`
  ADD CONSTRAINT `fleets_brand_foreign` FOREIGN KEY (`brand`) REFERENCES `car_makes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fleets_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fleets_model_foreign` FOREIGN KEY (`model`) REFERENCES `car_models` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fleets_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fleets_vehicle_type_foreign` FOREIGN KEY (`vehicle_type`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fleet_documents`
--
ALTER TABLE `fleet_documents`
  ADD CONSTRAINT `fleet_documents_document_id_foreign` FOREIGN KEY (`document_id`) REFERENCES `fleet_needed_documents` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fleet_documents_fleet_id_foreign` FOREIGN KEY (`fleet_id`) REFERENCES `fleets` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `goods_type_translations`
--
ALTER TABLE `goods_type_translations`
  ADD CONSTRAINT `goods_type_translations_goods_type_id_foreign` FOREIGN KEY (`goods_type_id`) REFERENCES `goods_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `incentives`
--
ALTER TABLE `incentives`
  ADD CONSTRAINT `incentives_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `messages`
--
ALTER TABLE `messages`
  ADD CONSTRAINT `messages_conversation_id_foreign` FOREIGN KEY (`conversation_id`) REFERENCES `conversations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `mobile_builds`
--
ALTER TABLE `mobile_builds`
  ADD CONSTRAINT `mobile_builds_flavour_id_foreign` FOREIGN KEY (`flavour_id`) REFERENCES `project_flavours` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `mobile_builds_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `notification_channels_translations`
--
ALTER TABLE `notification_channels_translations`
  ADD CONSTRAINT `fk_notification_channel_id` FOREIGN KEY (`notification_channel_id`) REFERENCES `notification_channels` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `onboarding_screen_translations`
--
ALTER TABLE `onboarding_screen_translations`
  ADD CONSTRAINT `onboarding_screen_translations_onboarding_screen_id_foreign` FOREIGN KEY (`onboarding_screen_id`) REFERENCES `onboarding_screen` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owners`
--
ALTER TABLE `owners`
  ADD CONSTRAINT `owners_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owners_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owner_bank_infos`
--
ALTER TABLE `owner_bank_infos`
  ADD CONSTRAINT `owner_bank_infos_field_id_foreign` FOREIGN KEY (`field_id`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_bank_infos_method_id_foreign` FOREIGN KEY (`method_id`) REFERENCES `methods` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_bank_infos_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owner_documents`
--
ALTER TABLE `owner_documents`
  ADD CONSTRAINT `owner_documents_document_id_foreign` FOREIGN KEY (`document_id`) REFERENCES `owner_needed_documents` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_documents_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owner_hired_drivers`
--
ALTER TABLE `owner_hired_drivers`
  ADD CONSTRAINT `owner_hired_drivers_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_hired_drivers_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owner_wallets`
--
ALTER TABLE `owner_wallets`
  ADD CONSTRAINT `owner_wallets_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `owner_wallet_histories`
--
ALTER TABLE `owner_wallet_histories`
  ADD CONSTRAINT `owner_wallet_histories_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admin_details` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_wallet_histories_card_id_foreign` FOREIGN KEY (`card_id`) REFERENCES `card_info` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_wallet_histories_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `owner_wallet_histories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `peak_zones`
--
ALTER TABLE `peak_zones`
  ADD CONSTRAINT `peak_zones_zone_id_foreign` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `permission_role`
--
ALTER TABLE `permission_role`
  ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `poc_clients`
--
ALTER TABLE `poc_clients`
  ADD CONSTRAINT `poc_clients_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `poc_clients_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `preference_prices`
--
ALTER TABLE `preference_prices`
  ADD CONSTRAINT `preference_prices_preference_id_foreign` FOREIGN KEY (`preference_id`) REFERENCES `preferences` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `preference_prices_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `pre_payment_datas`
--
ALTER TABLE `pre_payment_datas`
  ADD CONSTRAINT `pre_payment_datas_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `pre_payment_datas_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `project_flavours`
--
ALTER TABLE `project_flavours`
  ADD CONSTRAINT `project_flavours_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `promo`
--
ALTER TABLE `promo`
  ADD CONSTRAINT `promo_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `promo_code_users`
--
ALTER TABLE `promo_code_users`
  ADD CONSTRAINT `promo_code_users_promo_code_id_foreign` FOREIGN KEY (`promo_code_id`) REFERENCES `promo` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `promo_code_users_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `promo_users`
--
ALTER TABLE `promo_users`
  ADD CONSTRAINT `promo_users_promo_code_id_foreign` FOREIGN KEY (`promo_code_id`) REFERENCES `promo` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `promo_users_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `promo_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `recent_searches`
--
ALTER TABLE `recent_searches`
  ADD CONSTRAINT `recent_searches_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `recent_searches_stops`
--
ALTER TABLE `recent_searches_stops`
  ADD CONSTRAINT `recent_searches_stops_recent_searche_id_foreign` FOREIGN KEY (`recent_searche_id`) REFERENCES `recent_searches` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `requests`
--
ALTER TABLE `requests`
  ADD CONSTRAINT `requests_booked_by_foreign` FOREIGN KEY (`booked_by`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_dispatcher_id_foreign` FOREIGN KEY (`dispatcher_id`) REFERENCES `admin_details` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_fleet_id_foreign` FOREIGN KEY (`fleet_id`) REFERENCES `fleets` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_goods_type_id_foreign` FOREIGN KEY (`goods_type_id`) REFERENCES `goods_types` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_promo_id_foreign` FOREIGN KEY (`promo_id`) REFERENCES `promo` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_rental_package_id_foreign` FOREIGN KEY (`rental_package_id`) REFERENCES `package_types` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `requests_meta`
--
ALTER TABLE `requests_meta`
  ADD CONSTRAINT `requests_meta_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_meta_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `requests_meta_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_bills`
--
ALTER TABLE `request_bills`
  ADD CONSTRAINT `request_bills_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_cancellation_fees`
--
ALTER TABLE `request_cancellation_fees`
  ADD CONSTRAINT `request_cancellation_fees_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_cancellation_fees_paid_request_id_foreign` FOREIGN KEY (`paid_request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_cancellation_fees_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_cancellation_fees_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_delivery_proofs`
--
ALTER TABLE `request_delivery_proofs`
  ADD CONSTRAINT `request_delivery_proofs_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_eta`
--
ALTER TABLE `request_eta`
  ADD CONSTRAINT `request_eta_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_places`
--
ALTER TABLE `request_places`
  ADD CONSTRAINT `request_places_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_preferences`
--
ALTER TABLE `request_preferences`
  ADD CONSTRAINT `request_preferences_preference_price_id_foreign` FOREIGN KEY (`preference_price_id`) REFERENCES `preference_prices` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_preferences_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_ratings`
--
ALTER TABLE `request_ratings`
  ADD CONSTRAINT `request_ratings_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_ratings_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `request_ratings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `request_stops`
--
ALTER TABLE `request_stops`
  ADD CONSTRAINT `request_stops_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `reward_histories`
--
ALTER TABLE `reward_histories`
  ADD CONSTRAINT `reward_histories_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `reward_histories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `reward_points`
--
ALTER TABLE `reward_points`
  ADD CONSTRAINT `reward_points_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `role_user`
--
ALTER TABLE `role_user`
  ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `service_locations`
--
ALTER TABLE `service_locations`
  ADD CONSTRAINT `service_locations_country_foreign` FOREIGN KEY (`country`) REFERENCES `countries` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `service_location_translations`
--
ALTER TABLE `service_location_translations`
  ADD CONSTRAINT `service_location_translations_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sos`
--
ALTER TABLE `sos`
  ADD CONSTRAINT `sos_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `sos_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `subscriptions`
--
ALTER TABLE `subscriptions`
  ADD CONSTRAINT `subscriptions_vehicle_type_id_foreign` FOREIGN KEY (`vehicle_type_id`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `subscription_details`
--
ALTER TABLE `subscription_details`
  ADD CONSTRAINT `subscription_details_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `subscription_details_subscription_id_foreign` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sub_vehicle_types`
--
ALTER TABLE `sub_vehicle_types`
  ADD CONSTRAINT `sub_vehicle_types_sub_vehicle_type_id_foreign` FOREIGN KEY (`sub_vehicle_type_id`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `sub_vehicle_types_vehicle_type_id_foreign` FOREIGN KEY (`vehicle_type_id`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `support_tickets`
--
ALTER TABLE `support_tickets`
  ADD CONSTRAINT `support_tickets_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `support_tickets_title_id_foreign` FOREIGN KEY (`title_id`) REFERENCES `support_ticket_titles` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `support_tickets_users_id_foreign` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `support_ticket_messages`
--
ALTER TABLE `support_ticket_messages`
  ADD CONSTRAINT `support_ticket_messages_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `support_tickets` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `support_ticket_messages_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `support_ticket_multi_files`
--
ALTER TABLE `support_ticket_multi_files`
  ADD CONSTRAINT `support_ticket_multi_files_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `support_tickets` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `support_ticket_titles_translations`
--
ALTER TABLE `support_ticket_titles_translations`
  ADD CONSTRAINT `support_ticket_titles_translations_ticket_title_id_foreign` FOREIGN KEY (`ticket_title_id`) REFERENCES `support_ticket_titles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `users`
--
ALTER TABLE `users`
  ADD CONSTRAINT `users_country_foreign` FOREIGN KEY (`country`) REFERENCES `countries` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `users_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`);

--
-- Constraints for table `users_bank_info`
--
ALTER TABLE `users_bank_info`
  ADD CONSTRAINT `users_bank_info_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `users_imported`
--
ALTER TABLE `users_imported`
  ADD CONSTRAINT `users_imported_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `user_details`
--
ALTER TABLE `user_details`
  ADD CONSTRAINT `user_details_country_foreign` FOREIGN KEY (`country`) REFERENCES `countries` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_details_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `user_driver_notifications`
--
ALTER TABLE `user_driver_notifications`
  ADD CONSTRAINT `user_driver_notifications_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_driver_notifications_notify_id_foreign` FOREIGN KEY (`notify_id`) REFERENCES `notifications` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_driver_notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `user_wallet`
--
ALTER TABLE `user_wallet`
  ADD CONSTRAINT `user_wallet_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `user_wallet_history`
--
ALTER TABLE `user_wallet_history`
  ADD CONSTRAINT `user_wallet_history_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admin_details` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_wallet_history_card_id_foreign` FOREIGN KEY (`card_id`) REFERENCES `card_info` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_wallet_history_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_wallet_history_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `vehicle_type_translations`
--
ALTER TABLE `vehicle_type_translations`
  ADD CONSTRAINT `vehicle_type_translations_vehicle_type_id_foreign` FOREIGN KEY (`vehicle_type_id`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `wallet_withdrawal_requests`
--
ALTER TABLE `wallet_withdrawal_requests`
  ADD CONSTRAINT `wallet_withdrawal_requests_driver_id_foreign` FOREIGN KEY (`driver_id`) REFERENCES `drivers` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `wallet_withdrawal_requests_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `owners` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `wallet_withdrawal_requests_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zones`
--
ALTER TABLE `zones`
  ADD CONSTRAINT `zones_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_bounds`
--
ALTER TABLE `zone_bounds`
  ADD CONSTRAINT `zone_bounds_zone_id_foreign` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_surge_prices`
--
ALTER TABLE `zone_surge_prices`
  ADD CONSTRAINT `zone_surge_prices_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_translations`
--
ALTER TABLE `zone_translations`
  ADD CONSTRAINT `zone_translations_zone_id_foreign` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_types`
--
ALTER TABLE `zone_types`
  ADD CONSTRAINT `zone_types_type_id_foreign` FOREIGN KEY (`type_id`) REFERENCES `vehicle_types` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `zone_types_zone_id_foreign` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_type_package_prices`
--
ALTER TABLE `zone_type_package_prices`
  ADD CONSTRAINT `zone_type_package_prices_zone_id_foreign` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `zone_type_package_prices_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `zone_type_price`
--
ALTER TABLE `zone_type_price`
  ADD CONSTRAINT `zone_type_price_zone_type_id_foreign` FOREIGN KEY (`zone_type_id`) REFERENCES `zone_types` (`id`) ON DELETE CASCADE;
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 */;
